2 # Copyright (C) 2006, 2007 Shawn Pearce
5 global ui_diff current_diff_path current_diff_header
6 global ui_index ui_workdir
8 $ui_diff conf
-state normal
9 $ui_diff delete
0.0 end
10 $ui_diff conf
-state disabled
12 set current_diff_path
{}
13 set current_diff_header
{}
15 $ui_index tag remove in_diff
0.0 end
16 $ui_workdir tag remove in_diff
0.0 end
20 global file_states file_lists
21 global current_diff_path current_diff_side
24 set p
$current_diff_path
26 # No diff is being shown.
27 } elseif
{$current_diff_side eq
{}} {
29 } elseif
{[catch {set s
$file_states($p)}]
30 ||
[lsearch -sorted -exact $file_lists($current_diff_side) $p] == -1} {
32 if {[find_next_diff
$current_diff_side $p {} {[^O
]}]} {
38 set save_pos
[lindex [$ui_diff yview
] 0]
39 show_diff
$p $current_diff_side {} $save_pos
43 proc handle_empty_diff
{} {
44 global current_diff_path file_states file_lists
46 set path
$current_diff_path
47 set s
$file_states($path)
48 if {[lindex $s 0] ne
{_M
}} return
50 info_popup
[mc
"No differences detected.
54 The modification date of this file was updated by another application, but the content within the file was not changed.
56 A rescan will be automatically started to find other files which may have the same state." [short_path
$path]]
63 proc show_diff
{path w
{lno
{}} {scroll_pos
{}}} {
64 global file_states file_lists
65 global is_3way_diff diff_active repo_config
66 global ui_diff ui_index ui_workdir
67 global current_diff_path current_diff_side current_diff_header
68 global current_diff_queue
70 if {$diff_active ||
![lock_index
read]} return
74 set lno
[lsearch -sorted -exact $file_lists($w) $path]
80 $w tag add in_diff
$lno.0 [expr {$lno + 1}].0
84 set s
$file_states($path)
86 set current_diff_path
$path
87 set current_diff_side
$w
88 set current_diff_queue
{}
89 ui_status
[mc
"Loading diff of %s..." [escape_path
$path]]
91 if {[string first
{U
} $m] >= 0} {
92 merge_load_stages
$path [list show_unmerged_diff
$scroll_pos]
93 } elseif
{$m eq
{_O
}} {
94 show_other_diff
$path $w $m $scroll_pos
96 start_show_diff
$scroll_pos
100 proc show_unmerged_diff
{scroll_pos
} {
101 global current_diff_path current_diff_side
102 global merge_stages ui_diff
103 global current_diff_queue
105 if {$merge_stages(2) eq
{}} {
106 lappend current_diff_queue
\
107 [list "LOCAL: deleted\nREMOTE:\n" d
======= \
108 [list ":1:$current_diff_path" ":3:$current_diff_path"]]
109 } elseif
{$merge_stages(3) eq
{}} {
110 lappend current_diff_queue
\
111 [list "REMOTE: deleted\nLOCAL:\n" d
======= \
112 [list ":1:$current_diff_path" ":2:$current_diff_path"]]
113 } elseif
{[lindex $merge_stages(1) 0] eq
{120000}
114 ||
[lindex $merge_stages(2) 0] eq
{120000}
115 ||
[lindex $merge_stages(3) 0] eq
{120000}} {
116 lappend current_diff_queue
\
117 [list "LOCAL:\n" d
======= \
118 [list ":1:$current_diff_path" ":2:$current_diff_path"]]
119 lappend current_diff_queue
\
120 [list "REMOTE:\n" d
======= \
121 [list ":1:$current_diff_path" ":3:$current_diff_path"]]
123 start_show_diff
$scroll_pos
127 advance_diff_queue
$scroll_pos
130 proc advance_diff_queue
{scroll_pos
} {
131 global current_diff_queue ui_diff
133 set item
[lindex $current_diff_queue 0]
134 set current_diff_queue
[lrange $current_diff_queue 1 end
]
136 $ui_diff conf
-state normal
137 $ui_diff insert end
[lindex $item 0] [lindex $item 1]
138 $ui_diff conf
-state disabled
140 start_show_diff
$scroll_pos [lindex $item 2]
143 proc show_other_diff
{path w m scroll_pos
} {
144 global file_states file_lists
145 global is_3way_diff diff_active repo_config
146 global ui_diff ui_index ui_workdir
147 global current_diff_path current_diff_side current_diff_header
149 # - Git won't give us the diff, there's nothing to compare to!
152 set max_sz
[expr {128 * 1024}]
155 set type
[file type
$path]
163 set content
[file readlink
$path]
164 set sz
[string length
$content]
167 set fd
[open $path r
]
168 fconfigure $fd -eofchar {}
169 set content
[read $fd $max_sz]
171 set sz
[file size
$path]
174 error "'$type' not supported"
180 ui_status
[mc
"Unable to display %s" [escape_path
$path]]
181 error_popup
[strcat
[mc
"Error loading file:"] "\n\n$err"]
184 $ui_diff conf
-state normal
185 if {$type eq
{submodule
}} {
186 $ui_diff insert end
[append \
188 [mc
"Git Repository (subproject)"] \
190 } elseif
{![catch {set type
[exec file $path]}]} {
191 set n
[string length
$path]
192 if {[string equal
-length $n $path $type]} {
193 set type
[string range
$type $n end
]
194 regsub {^
:?
\s
*} $type {} type
196 $ui_diff insert end
"* $type\n" d_
@
198 if {[string first
"\0" $content] != -1} {
199 $ui_diff insert end
\
200 [mc
"* Binary file (not showing content)."] \
204 $ui_diff insert end
\
205 "* Untracked file is $sz bytes.
206 * Showing only first $max_sz bytes.
209 $ui_diff insert end
$content
211 $ui_diff insert end
"
212 * Untracked file clipped here by [appname].
213 * To see the entire file, use an external editor.
217 $ui_diff conf
-state disabled
220 if {$scroll_pos ne
{}} {
222 $ui_diff yview moveto
$scroll_pos
229 proc start_show_diff
{scroll_pos
{add_opts
{}}} {
230 global file_states file_lists
231 global is_3way_diff diff_active repo_config
232 global ui_diff ui_index ui_workdir
233 global current_diff_path current_diff_side current_diff_header
235 set path
$current_diff_path
236 set w
$current_diff_side
238 set s
$file_states($path)
242 set current_diff_header
{}
245 if {$w eq
$ui_index} {
246 lappend cmd diff-index
248 } elseif
{$w eq
$ui_workdir} {
249 if {[string first
{U
} $m] >= 0} {
252 lappend cmd diff-files
257 lappend cmd
--no-color
258 if {$repo_config(gui.diffcontext
) >= 1} {
259 lappend cmd
"-U$repo_config(gui.diffcontext)"
261 if {$w eq
$ui_index} {
264 if {$add_opts ne
{}} {
265 eval lappend cmd
$add_opts
271 if {[catch {set fd
[eval git_read
--nice $cmd]} err
]} {
274 ui_status
[mc
"Unable to display %s" [escape_path
$path]]
275 error_popup
[strcat
[mc
"Error loading diff:"] "\n\n$err"]
279 set ::current_diff_inheader 1
284 fileevent $fd readable
[list read_diff
$fd $scroll_pos]
287 proc read_diff
{fd scroll_pos
} {
288 global ui_diff diff_active
289 global is_3way_diff current_diff_header
290 global current_diff_queue
292 $ui_diff conf
-state normal
293 while {[gets $fd line
] >= 0} {
294 # -- Cleanup uninteresting diff header lines.
296 if {$::current_diff_inheader} {
297 if { [string match
{diff
--git *} $line]
298 ||
[string match
{diff
--cc *} $line]
299 ||
[string match
{diff
--combined *} $line]
300 ||
[string match
{--- *} $line]
301 ||
[string match
{+++ *} $line]} {
302 append current_diff_header
$line "\n"
306 if {[string match
{index
*} $line]} continue
307 if {$line eq
{deleted
file mode
120000}} {
308 set line
"deleted symlink"
310 set ::current_diff_inheader 0
312 # -- Automatically detect if this is a 3 way diff.
314 if {[string match
{@@@ *} $line]} {set is_3way_diff
1}
316 if {[string match
{mode
*} $line]
317 ||
[string match
{new
file *} $line]
318 ||
[regexp {^
(old|new
) mode
*} $line]
319 ||
[string match
{deleted
file *} $line]
320 ||
[string match
{deleted symlink
} $line]
321 ||
[string match
{Binary files
* and
* differ
} $line]
322 ||
$line eq
{\ No newline at end of
file}
323 ||
[regexp {^
\* Unmerged path
} $line]} {
325 } elseif
{$is_3way_diff} {
326 set op
[string range
$line 0 1]
336 if {[regexp {^
\+\+([<>]{7} |
={7})} $line _g op
]} {
337 set line
[string replace
$line 0 1 { }]
344 puts "error: Unhandled 3 way diff marker: {$op}"
349 set op
[string index
$line 0]
355 if {[regexp {^
\+([<>]{7} |
={7})} $line _g op
]} {
356 set line
[string replace
$line 0 0 { }]
363 puts "error: Unhandled 2 way diff marker: {$op}"
368 $ui_diff insert end
$line $tags
369 if {[string index
$line end
] eq
"\r"} {
370 $ui_diff tag add d_cr
{end
- 2c
}
372 $ui_diff insert end
"\n" $tags
374 $ui_diff conf
-state disabled
379 if {$current_diff_queue ne
{}} {
380 advance_diff_queue
$scroll_pos
386 if {$scroll_pos ne
{}} {
388 $ui_diff yview moveto
$scroll_pos
392 if {[$ui_diff index end
] eq
{2.0}} {
398 proc apply_hunk
{x y
} {
399 global current_diff_path current_diff_header current_diff_side
400 global ui_diff ui_index file_states
402 if {$current_diff_path eq
{} ||
$current_diff_header eq
{}} return
403 if {![lock_index apply_hunk
]} return
405 set apply_cmd
{apply
--cached --whitespace=nowarn
}
406 set mi
[lindex $file_states($current_diff_path) 0]
407 if {$current_diff_side eq
$ui_index} {
408 set failed_msg
[mc
"Failed to unstage selected hunk."]
409 lappend apply_cmd
--reverse
410 if {[string index
$mi 0] ne
{M
}} {
415 set failed_msg
[mc
"Failed to stage selected hunk."]
416 if {[string index
$mi 1] ne
{M
}} {
422 set s_lno
[lindex [split [$ui_diff index
@$x,$y] .
] 0]
423 set s_lno
[$ui_diff search
-backwards -regexp ^
@@ $s_lno.0 0.0]
429 set e_lno
[$ui_diff search
-forwards -regexp ^
@@ "$s_lno + 1 lines" end
]
435 set p
[eval git_write
$apply_cmd]
436 fconfigure $p -translation binary -encoding binary
437 puts -nonewline $p $current_diff_header
438 puts -nonewline $p [$ui_diff get
$s_lno $e_lno]
440 error_popup
[append $failed_msg "\n\n$err"]
445 $ui_diff conf
-state normal
446 $ui_diff delete
$s_lno $e_lno
447 $ui_diff conf
-state disabled
449 if {[$ui_diff get
1.0 end
] eq
"\n"} {
455 if {$current_diff_side eq
$ui_index} {
457 } elseif
{[string index
$mi 0] eq
{_
}} {
463 display_file
$current_diff_path $mi
464 # This should trigger shift to the next changed file
470 proc apply_line
{x y
} {
471 global current_diff_path current_diff_header current_diff_side
472 global ui_diff ui_index file_states
474 if {$current_diff_path eq
{} ||
$current_diff_header eq
{}} return
475 if {![lock_index apply_hunk
]} return
477 set apply_cmd
{apply
--cached --whitespace=nowarn
}
478 set mi
[lindex $file_states($current_diff_path) 0]
479 if {$current_diff_side eq
$ui_index} {
480 set failed_msg
[mc
"Failed to unstage selected line."]
482 lappend apply_cmd
--reverse
483 if {[string index
$mi 0] ne
{M
}} {
488 set failed_msg
[mc
"Failed to stage selected line."]
490 if {[string index
$mi 1] ne
{M
}} {
496 set the_l
[$ui_diff index
@$x,$y]
498 # operate only on change lines
499 set c1
[$ui_diff get
"$the_l linestart"]
500 if {$c1 ne
{+} && $c1 ne
{-}} {
506 set i_l
[$ui_diff search
-backwards -regexp ^
@@ $the_l 0.0]
511 # $i_l is now at the beginning of a line
513 # pick start line number from hunk header
514 set hh
[$ui_diff get
$i_l "$i_l + 1 lines"]
515 set hh
[lindex [split $hh ,] 0]
516 set hln
[lindex [split $hh -] 1]
518 # There is a special situation to take care of. Consider this hunk:
528 # We used to keep the context lines in the order they appear in the
529 # hunk. But then it is not possible to correctly stage only
530 # "-old 1" and "+new 1" - it would result in this staged text:
537 # (By symmetry it is not possible to *un*stage "old 2" and "new 2".)
539 # We resolve the problem by introducing an asymmetry, namely, when
540 # a "+" line is *staged*, it is moved in front of the context lines
541 # that are generated from the "-" lines that are immediately before
542 # the "+" block. That is, we construct this patch:
551 # But we do *not* treat "-" lines that are *un*staged in a special
554 # With this asymmetry it is possible to stage the change
555 # "old 1" -> "new 1" directly, and to stage the change
556 # "old 2" -> "new 2" by first staging the entire hunk and
557 # then unstaging the change "old 1" -> "new 1".
559 # This is non-empty if and only if we are _staging_ changes;
560 # then it accumulates the consecutive "-" lines (after converting
561 # them to context lines) in order to be moved after the "+" change
566 set i_l
[$ui_diff index
"$i_l + 1 lines"]
568 while {[$ui_diff compare
$i_l < "end - 1 chars"] &&
569 [$ui_diff get
$i_l "$i_l + 2 chars"] ne
{@@}} {
570 set next_l
[$ui_diff index
"$i_l + 1 lines"]
571 set c1
[$ui_diff get
$i_l]
572 if {[$ui_diff compare
$i_l <= $the_l] &&
573 [$ui_diff compare
$the_l < $next_l]} {
574 # the line to stage/unstage
575 set ln
[$ui_diff get
$i_l $next_l]
578 set patch
"$patch$pre_context$ln"
580 set patch
"$patch$ln$pre_context"
583 } elseif
{$c1 ne
{-} && $c1 ne
{+}} {
585 set ln
[$ui_diff get
$i_l $next_l]
586 set patch
"$patch$pre_context$ln"
589 } elseif
{$c1 eq
$to_context} {
590 # turn change line into context line
591 set ln
[$ui_diff get
"$i_l + 1 chars" $next_l]
593 set pre_context
"$pre_context $ln"
595 set patch
"$patch $ln"
601 set patch
"@@ -$hln,$n +$hln,[eval expr $n $sign 1] @@\n$patch"
604 set p
[eval git_write
$apply_cmd]
605 fconfigure $p -translation binary -encoding binary
606 puts -nonewline $p $current_diff_header
607 puts -nonewline $p $patch
609 error_popup
[append $failed_msg "\n\n$err"]