2 # Copyright (C) 2006, 2007 Shawn Pearce
6 image create
photo ::blame::img_back_arrow -data {R0lGODlhGAAYAIUAAPwCBEzKXFTSZIz
+nGzmhGzqfGTidIT
+nEzGXHTqhGzmfGzifFzadETCVES
+VARWDFzWbHzyjAReDGTadFTOZDSyRDyyTCymPARaFGTedFzSbDy2TCyqRCyqPARaDAyCHES6VDy6VCyiPAR6HCSeNByWLARyFARiDARqFGTifARiFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAEAAAAALAAAAAAYABgAAAajQIBwSCwaj8ikcsk0BppJwRPqHEypQwHBis0WDAdEFyBIKBaMAKLBdjQeSkFBYTBAIvgEoS6JmhUTEwIUDQ4VFhcMGEhyCgoZExoUaxsWHB0THkgfAXUGAhoBDSAVFR0XBnCbDRmgog0hpSIiDJpJIyEQhBUcJCIlwA22SSYVogknEg8eD82qSigdDSknY0IqJQXPYxIl1dZCGNvWw
+Dm510GQQAh
/mhDcmVhdGVkIGJ5IEJNUFRvR0lGIFBybyB2ZXJzaW9uIDIuNQ0KqSBEZXZlbENvciAxOTk3LDE5OTguIEFsbCByaWdodHMgcmVzZXJ2ZWQuDQpodHRwOi8vd3d3LmRldmVsY29yLmNvbQA7
}
8 # Persistent data (survives loads)
10 field
history {}; # viewer history: {commit path}
11 field header
; # array commit,key -> header field
15 field w
; # top window in this viewer
16 field w_back
; # our back button
17 field w_path
; # label showing the current file path
18 field w_columns
; # list of all column widgets in the viewer
19 field w_line
; # text column: all line numbers
20 field w_amov
; # text column: annotations + move tracking
21 field w_asim
; # text column: annotations (simple computation)
22 field w_file
; # text column: actual file data
23 field w_cviewer
; # pane showing commit message
24 field finder
; # find mini-dialog frame
25 field gotoline
; # line goto mini-dialog frame
26 field status
; # status mega-widget instance
27 field status_operation
; # operation displayed by status mega-widget
28 field old_height
; # last known height of $w.file_pane
33 variable active_color
#c0edc5
34 variable group_colors
{
40 # Current blame data; cleared/reset on each load
42 field commit
; # input commit to blame
43 field path
; # input filename to view in $commit
45 field current_fd
{} ; # background process running
46 field highlight_line
-1 ; # current line selected
47 field highlight_column
{} ; # current commit column selected
48 field highlight_commit
{} ; # sha1 of commit selected
50 field total_lines
0 ; # total length of file
51 field blame_lines
0 ; # number of lines computed
52 field amov_data
; # list of {commit origfile origline}
53 field asim_data
; # list of {commit origfile origline}
55 field r_commit
; # commit currently being parsed
56 field r_orig_line
; # original line number
57 field r_final_line
; # final line number
58 field r_line_count
; # lines in this region
60 field tooltip_wm
{} ; # Current tooltip toplevel, if open
61 field tooltip_t
{} ; # Text widget in $tooltip_wm
62 field tooltip_timer
{} ; # Current timer event for our tooltip
63 field tooltip_commit
{} ; # Commit(s) in tooltip
65 constructor new
{i_commit i_path i_jump
} {
66 global cursor_ptr M1B M1T have_tk85 use_ttk NS
74 wm title
$top [mc
"%s (%s): File Viewer" [appname
] [reponame
]]
76 set font_w
[font measure font_diff
"0"]
79 tlabel
$w.header.commit_l
\
80 -text [mc
"Commit:"] \
85 set w_back
$w.header.commit_b
87 -image ::blame::img_back_arrow \
93 -activebackground gold
94 bind $w_back <Button-1
> "
95 if {\[$w_back cget -state\] eq {normal}} {
99 tlabel
$w.header.commit
\
100 -textvariable @commit
\
105 tlabel
$w.header.path_l
\
111 set w_path
$w.header.path
117 pack $w.header.commit_l
-side left
118 pack $w_back -side left
119 pack $w.header.commit
-side left
120 pack $w_path -fill x
-side right
121 pack $w.header.path_l
-side right
123 panedwindow $w.file_pane
-orient vertical
-borderwidth 0 -sashwidth 3
124 frame $w.file_pane.out
-relief flat
-borderwidth 1
125 frame $w.file_pane.cm
-relief sunken
-borderwidth 1
126 $w.file_pane add
$w.file_pane.out
\
131 $w.file_pane add
$w.file_pane.cm
\
137 set w_line
$w.file_pane.out.linenumber_t
140 -highlightthickness 0 \
150 $w_line tag conf linenumber
-justify right
-rmargin 5
152 set w_amov
$w.file_pane.out.amove_t
155 -highlightthickness 0 \
165 $w_amov tag conf author_abbr
-justify right
-rmargin 5
166 $w_amov tag conf curr_commit
167 $w_amov tag conf prior_commit
-foreground blue
-underline 1
168 $w_amov tag
bind prior_commit
\
170 "[cb _load_commit $w_amov @amov_data @%x,%y];break"
172 set w_asim
$w.file_pane.out.asimple_t
175 -highlightthickness 0 \
185 $w_asim tag conf author_abbr
-justify right
186 $w_asim tag conf curr_commit
187 $w_asim tag conf prior_commit
-foreground blue
-underline 1
188 $w_asim tag
bind prior_commit
\
190 "[cb _load_commit $w_asim @asim_data @%x,%y];break"
192 set w_file
$w.file_pane.out.file_t
195 -highlightthickness 0 \
204 -xscrollcommand [list $w.file_pane.out.sbx
set] \
207 $w_file configure
-inactiveselectbackground darkblue
209 $w_file tag conf found
\
212 set w_columns
[list $w_amov $w_asim $w_line $w_file]
214 ${NS
}::scrollbar $w.file_pane.out.sbx
\
216 -command [list $w_file xview
]
217 ${NS
}::scrollbar $w.file_pane.out.sby
\
219 -command [list scrollbar2many
$w_columns yview
]
220 eval grid $w_columns $w.file_pane.out.sby
-sticky nsew
222 $w.file_pane.out.sbx
\
224 -columnspan [expr {[llength $w_columns] + 1}] \
226 grid columnconfigure
\
228 [expr {[llength $w_columns] - 1}] \
230 grid rowconfigure
$w.file_pane.out
0 -weight 1
232 set finder
[::searchbar::new \
233 $w.file_pane.out.ff
$w_file \
235 -columnspan [expr {[llength $w_columns] + 1}] \
238 set gotoline
[::linebar::new \
239 $w.file_pane.out.lf
$w_file \
241 -columnspan [expr {[llength $w_columns] + 1}] \
244 set w_cviewer
$w.file_pane.cm.t
253 -xscrollcommand [list $w.file_pane.cm.sbx
set] \
254 -yscrollcommand [list $w.file_pane.cm.sby
set] \
256 $w_cviewer tag conf still_loading
\
257 -font font_uiitalic
\
259 $w_cviewer tag conf header_key
\
261 -background $active_color \
263 $w_cviewer tag conf header_val
\
264 -background $active_color \
266 $w_cviewer tag
raise sel
267 ${NS
}::scrollbar $w.file_pane.cm.sbx
\
269 -command [list $w_cviewer xview
]
270 ${NS
}::scrollbar $w.file_pane.cm.sby
\
272 -command [list $w_cviewer yview
]
273 pack $w.file_pane.cm.sby
-side right
-fill y
274 pack $w.file_pane.cm.sbx
-side bottom
-fill x
275 pack $w_cviewer -expand 1 -fill both
277 set status
[::status_bar::new $w.status
]
278 set status_operation
{}
280 menu $w.ctxm
-tearoff 0
281 $w.ctxm add command
\
282 -label [mc
"Copy Commit"] \
283 -command [cb _copycommit
]
284 $w.ctxm add separator
285 $w.ctxm add command
\
286 -label [mc
"Find Text..."] \
288 -command [cb _show_finder
]
289 $w.ctxm add command
\
290 -label [mc
"Goto Line..."] \
291 -accelerator "Ctrl-G" \
292 -command [cb _show_linebar
]
294 build_encoding_menu
$w.ctxm.enc
[cb _setencoding
]
295 $w.ctxm add cascade
\
296 -label [mc
"Encoding"] \
298 $w.ctxm add command
\
299 -label [mc
"Do Full Copy Detection"] \
300 -command [cb _fullcopyblame
]
301 $w.ctxm add separator
302 $w.ctxm add command
\
303 -label [mc
"Show History Context"] \
304 -command [cb _gitkcommit
]
305 $w.ctxm add command
\
306 -label [mc
"Blame Parent Commit"] \
307 -command [cb _blameparent
]
309 foreach i
$w_columns {
310 for {set g
0} {$g < [llength $group_colors]} {incr g
} {
311 $i tag conf color
$g -background [lindex $group_colors $g]
315 $w_file tag
raise found
319 $i conf
-cursor $cursor_ptr
320 $i conf
-yscrollcommand \
321 "[list ::searchbar::scrolled $finder]
322 [list many2scrollbar $w_columns yview $w.file_pane.out.sby]"
325 [cb _click $i @%x,%y]
328 bind $i <Any-Motion
> [cb _show_tooltip
$i @%x
,%y
]
329 bind $i <Any-Enter
> [cb _hide_tooltip
]
330 bind $i <Any-Leave
> [cb _hide_tooltip
]
331 bind $i <Deactivate
> [cb _hide_tooltip
]
337 tk_popup $w.ctxm %X %Y
339 bind $i <Shift-Tab
> "[list focus $w_cviewer];break"
340 bind $i <Tab
> "[cb _focus_search $w_cviewer];break"
343 foreach i
[concat $w_columns $w_cviewer] {
344 bind $i <Key-Up
> {catch {%W yview scroll
-1 units
};break}
345 bind $i <Key-Down
> {catch {%W yview scroll
1 units
};break}
346 bind $i <Key-Left
> {catch {%W xview scroll
-1 units
};break}
347 bind $i <Key-Right
> {catch {%W xview scroll
1 units
};break}
348 bind $i <Key-k
> {catch {%W yview scroll
-1 units
};break}
349 bind $i <Key-j
> {catch {%W yview scroll
1 units
};break}
350 bind $i <Key-h
> {catch {%W xview scroll
-1 units
};break}
351 bind $i <Key-l
> {catch {%W xview scroll
1 units
};break}
352 bind $i <Control-Key-b
> {catch {%W yview scroll
-1 pages
};break}
353 bind $i <Control-Key-f
> {catch {%W yview scroll
1 pages
};break}
356 bind $w_cviewer <Shift-Tab
> "[cb _focus_search $w_file];break"
357 bind $w_cviewer <Tab
> "[list focus $w_file];break"
358 bind $w_cviewer <Button-1
> [list focus $w_cviewer]
359 bind $w_file <Visibility
> [cb _focus_search
$w_file]
360 bind $top <F7
> [cb _show_finder
]
361 bind $top <Key-slash
> [cb _show_finder
]
362 bind $top <Control-Key-s
> [cb _show_finder
]
363 bind $top <Escape
> [list searchbar
::hide $finder]
364 bind $top <F3
> [list searchbar
::find_next $finder]
365 bind $top <Shift-F3
> [list searchbar
::find_prev $finder]
366 bind $top <Control-Key-g
> [cb _show_linebar
]
367 catch { bind $top <Shift-Key-XF86_Switch_VT_3
> [list searchbar
::find_prev $finder] }
369 grid configure
$w.header
-sticky ew
370 grid configure
$w.file_pane
-sticky nsew
371 grid configure
$w.status
-sticky ew
372 grid columnconfigure
$top 0 -weight 1
373 grid rowconfigure
$top 0 -weight 0
374 grid rowconfigure
$top 1 -weight 1
375 grid rowconfigure
$top 2 -weight 0
377 set req_w
[winfo reqwidth
$top]
378 set req_h
[winfo reqheight
$top]
379 set scr_w
[expr {[winfo screenwidth
$top] - 40}]
380 set scr_h
[expr {[winfo screenheight
$top] - 120}]
381 set opt_w
[expr {$font_w * (80 + 5*3 + 3)}]
382 if {$req_w < $opt_w} {set req_w
$opt_w}
383 if {$req_w > $scr_w} {set req_w
$scr_w}
384 set opt_h
[expr {$req_w*4/3}]
385 if {$req_h < $scr_h} {set req_h
$scr_h}
386 if {$req_h > $opt_h} {set req_h
$opt_h}
387 set g
"${req_w}x${req_h}"
391 set old_height
[winfo height
$w.file_pane
]
392 $w.file_pane sash
place 0 \
393 [lindex [$w.file_pane sash coord
0] 0] \
394 [expr {int
($old_height * 0.80)}]
395 bind $w.file_pane
<Configure
> \
396 "if {{$w.file_pane} eq {%W}} {[cb _resize %h]}"
398 wm protocol
$top WM_DELETE_WINDOW
"destroy $top"
399 bind $top <Destroy
> [cb _handle_destroy
%W
]
404 method _focus_search
{win
} {
405 if {[searchbar
::visible $finder]} {
406 focus [searchbar
::editor $finder]
412 method _handle_destroy
{win
} {
420 if {$current_fd ne
{}} {
421 kill_file_process
$current_fd
422 catch {close $current_fd}
427 method _load
{jump
} {
428 variable group_colors
432 if {$total_lines != 0 ||
$current_fd ne
{}} {
435 foreach i
$w_columns {
436 $i conf
-state normal
438 foreach g
[$i tag names
] {
439 if {[regexp {^g
[0-9a-f
]{40}$} $g]} {
443 $i conf
-state disabled
446 $w_cviewer conf
-state normal
447 $w_cviewer delete
0.0 end
448 $w_cviewer conf
-state disabled
450 set highlight_line
-1
451 set highlight_column
{}
452 set highlight_commit
{}
456 if {$history eq
{}} {
457 $w_back conf
-state disabled
459 $w_back conf
-state normal
462 # Index 0 is always empty. There is never line 0 as
463 # we use only 1 based lines, as that matches both with
464 # git-blame output and with Tk's text widget.
466 set amov_data
[list [list]]
467 set asim_data
[list [list]]
469 $status show
[mc
"Reading %s..." "$commit:[escape_path $path]"]
470 $w_path conf
-text [escape_path
$path]
473 if {![is_config_false gui.textconv
] && [git-version
>= 1.7.2]} {
474 set filter
[gitattr
$path diff
set]
475 set textconv
[get_config
[join [list diff
$filter textconv
] .
]]
476 if {$filter ne
{set} && $textconv ne
{}} {
481 if {$do_textconv ne
0} {
482 set fd
[open_cmd_pipe
$textconv $path]
484 set fd
[open $path r
]
486 fconfigure $fd -eofchar {}
488 if {$do_textconv ne
0} {
489 set fd
[git_read cat-file
--textconv "$commit:$path"]
491 set fd
[git_read cat-file blob
"$commit:$path"]
497 -encoding [get_path_encoding
$path]
498 fileevent $fd readable
[cb _read_file
$fd $jump]
502 method _history_menu
{} {
504 if {[winfo exists
$m]} {
510 for {set i
[expr {[llength $history] - 1}]
511 } {$i >= 0} {incr i
-1} {
512 set e
[lindex $history $i]
516 if {[regexp {^
[0-9a-f
]{40}$} $c]} {
517 set t
[string range
$c 0 8]...
518 } elseif
{$c eq
{}} {
519 set t
{Working Directory
}
523 if {![catch {set summary
$header($c,summary
)}]} {
525 if {[string length
$t] > 70} {
526 set t
[string range
$t 0 66]...
530 $m add command
-label $t -command [cb _goback
$i]
532 set X
[winfo rootx
$w_back]
533 set Y
[expr {[winfo rooty
$w_back] + [winfo height
$w_back]}]
538 set dat
[lindex $history $i]
539 set history [lrange $history 0 [expr {$i - 1}]]
540 set commit
[lindex $dat 0]
541 set path
[lindex $dat 1]
542 _load
$this [lrange $dat 2 5]
545 method _read_file
{fd jump
} {
546 if {$fd ne
$current_fd} {
551 foreach i
$w_columns {$i conf
-state normal
}
552 while {[gets $fd line
] >= 0} {
553 regsub "\r\$" $line {} line
558 if {$total_lines > 1} {
559 foreach i
$w_columns {$i insert end
"\n"}
562 $w_line insert end
"$total_lines" linenumber
563 $w_file insert end
"$line"
566 set ln_wc
[expr {[string length
$total_lines] + 2}]
567 if {[$w_line cget
-width] < $ln_wc} {
568 $w_line conf
-width $ln_wc
571 foreach i
$w_columns {$i conf
-state disabled
}
574 fconfigure $fd -blocking 1; # enable error reporting on close
575 if {[catch {close $fd} err
]} {
576 tk_messageBox -icon error -title [mc Error
] \
580 # If we don't force Tk to update the widgets *right now*
581 # none of our jump commands will cause a change in the UI.
585 if {[llength $jump] == 1} {
586 set highlight_line
[lindex $jump 0]
587 $w_file see
"$highlight_line.0"
588 } elseif
{[llength $jump] == 4} {
589 set highlight_column
[lindex $jump 0]
590 set highlight_line
[lindex $jump 1]
591 $w_file xview moveto
[lindex $jump 2]
592 $w_file yview moveto
[lindex $jump 3]
595 _exec_blame
$this $w_asim @asim_data
\
597 [mc
"Loading copy/move tracking annotations..."]
599 } ifdeleted
{ catch {close $fd} }
601 method _exec_blame
{cur_w cur_d
options cur_s
} {
602 lappend options --incremental --encoding=utf-8
604 lappend options --contents $path
606 lappend options $commit
609 # We may recurse in from another call to _exec_blame and already have
610 # a status operation.
611 if {$status_operation == {}} {
612 set status_operation
[$status start
\
614 [mc
"lines annotated"]]
616 $status_operation restart
$cur_s
619 lappend options -- $path
620 set fd
[eval git_read
--nice blame
$options]
621 fconfigure $fd -blocking 0 -translation lf
-encoding utf-8
622 fileevent $fd readable
[cb _read_blame
$fd $cur_w $cur_d]
627 method _read_blame
{fd cur_w cur_d
} {
628 upvar #0 $cur_d line_data
629 variable group_colors
631 if {$fd ne
$current_fd} {
636 $cur_w conf
-state normal
637 while {[gets $fd line
] >= 0} {
638 if {[regexp {^
([a-z0-9
]{40}) (\d
+) (\d
+) (\d
+)$} $line line
\
639 cmit original_line final_line line_count
]} {
641 set r_orig_line
$original_line
642 set r_final_line
$final_line
643 set r_line_count
$line_count
644 } elseif
{[string match
{filename *} $line]} {
645 set file [string range
$line 9 end
]
647 set lno
$r_final_line
651 if {[regexp {^
0{40}$} $cmit]} {
653 set commit_type curr_commit
654 } elseif
{$cmit eq
$commit} {
656 set commit_type curr_commit
658 set commit_type prior_commit
659 set commit_abbr
[string range
$cmit 0 3]
664 catch {set a_name
$header($cmit,author
)}
665 while {$a_name ne
{}} {
666 if {$author_abbr ne
{}
667 && [string index
$a_name 0] eq
{'
}} {
668 regsub {^'
[^'
]+'
\s
+} $a_name {} a_name
670 if {![regexp {^
([[:upper
:]])} $a_name _a
]} break
671 append author_abbr
$_a
674 {^
[[:upper
:]][^
\s
]*\s
+} \
675 $a_name {} a_name
]} break
677 if {$author_abbr eq
{}} {
680 set author_abbr
[string range
$author_abbr 0 3]
687 && $cmit eq
[lindex $line_data [expr {$first_lno - 1}] 0]
688 && $file eq
[lindex $line_data [expr {$first_lno - 1}] 1]
694 if {$first_lno < $lno} {
695 foreach g
[$w_file tag names
$first_lno.0] {
696 if {[regexp {^color
[0-9]+$} $g]} {
702 set i
[lsort [concat \
703 [$w_file tag names
"[expr {$first_lno - 1}].0"] \
704 [$w_file tag names
"[expr {$lno + $n}].0"] \
706 for {set g
0} {$g < [llength $group_colors]} {incr g
} {
707 if {[lsearch -sorted -exact $i color
$g] == -1} {
718 set lno_e
"$lno.0 lineend + 1c"
719 if {[lindex $line_data $lno] ne
{}} {
720 set g
[lindex $line_data $lno 0]
721 foreach i
$w_columns {
722 $i tag remove g
$g $lno.0 $lno_e
725 lset line_data
$lno [list $cmit $file $oln]
727 $cur_w delete
$lno.0 "$lno.0 lineend"
728 if {$lno == $first_lno} {
729 $cur_w insert
$lno.0 $commit_abbr $commit_type
730 } elseif
{$lno == [expr {$first_lno + 1}]} {
731 $cur_w insert
$lno.0 $author_abbr author_abbr
733 $cur_w insert
$lno.0 { |
}
736 foreach i
$w_columns {
737 if {$cur_w eq
$w_amov} {
739 {$g < [llength $group_colors]} \
741 $i tag remove color
$g $lno.0 $lno_e
743 $i tag add
$color $lno.0 $lno_e
745 $i tag add g
$cmit $lno.0 $lno_e
748 if {$highlight_column eq
$cur_w} {
749 if {$highlight_line == -1
750 && [lindex [$w_file yview
] 0] == 0} {
752 set highlight_line
$lno
754 if {$highlight_line == $lno} {
755 _showcommit
$this $cur_w $lno
766 $cmit eq
[lindex $line_data $lno 0]
767 && $file eq
[lindex $line_data $lno 1]
769 $cur_w delete
$lno.0 "$lno.0 lineend"
771 if {$lno == $first_lno} {
772 $cur_w insert
$lno.0 $commit_abbr $commit_type
773 } elseif
{$lno == [expr {$first_lno + 1}]} {
774 $cur_w insert
$lno.0 $author_abbr author_abbr
776 $cur_w insert
$lno.0 { |
}
779 if {$cur_w eq
$w_amov} {
780 foreach i
$w_columns {
782 {$g < [llength $group_colors]} \
784 $i tag remove color
$g $lno.0 $lno_e
786 $i tag add
$color $lno.0 $lno_e
793 } elseif
{[regexp {^
([a-z-
]+) (.
*)$} $line line key data
]} {
794 set header
($r_commit,$key) $data
797 $cur_w conf
-state disabled
801 if {$cur_w eq
$w_asim} {
802 # Switches for original location detection
803 set threshold
[get_config gui.copyblamethreshold
]
804 set original_options
[list "-C$threshold"]
806 if {![is_config_true gui.fastcopyblame
]} {
807 # thorough copy search; insert before the threshold
808 set original_options
[linsert $original_options 0 -C]
810 if {[git-version
>= 1.5.3]} {
811 lappend original_options
-w ; # ignore indentation changes
814 _exec_blame
$this $w_amov @amov_data
\
816 [mc
"Loading original location annotations..."]
819 $status_operation stop
[mc
"Annotation complete."]
820 set status_operation
{}
823 $status_operation update $blame_lines $total_lines
825 } ifdeleted
{ catch {close $fd} }
827 method _find_commit_bound
{data_list start_idx delta
} {
828 upvar #0 $data_list line_data
830 set limit
[expr {[llength $line_data] - 1}]
831 set base_commit
[lindex $line_data $pos 0]
833 while {$pos > 0 && $pos < $limit} {
834 set new_pos
[expr {$pos + $delta}]
835 if {[lindex $line_data $new_pos 0] ne
$base_commit} {
845 method _fullcopyblame
{} {
846 if {$current_fd ne
{}} {
851 -message [mc
"Annotation process is already running."]
856 # Switches for original location detection
857 set threshold
[get_config gui.copyblamethreshold
]
858 set original_options
[list -C -C "-C$threshold"]
860 if {[git-version
>= 1.5.3]} {
861 lappend original_options
-w ; # ignore indentation changes
864 # Find the line range
865 set pos
@$::cursorX,$::cursorY
866 set lno
[lindex [split [$::cursorW index
$pos] .
] 0]
867 set min_amov_lno
[_find_commit_bound
$this @amov_data
$lno -1]
868 set max_amov_lno
[_find_commit_bound
$this @amov_data
$lno 1]
869 set min_asim_lno
[_find_commit_bound
$this @asim_data
$lno -1]
870 set max_asim_lno
[_find_commit_bound
$this @asim_data
$lno 1]
872 if {$min_asim_lno < $min_amov_lno} {
873 set min_amov_lno
$min_asim_lno
876 if {$max_asim_lno > $max_amov_lno} {
877 set max_amov_lno
$max_asim_lno
880 lappend original_options
-L "$min_amov_lno,$max_amov_lno"
883 for {set i
$min_amov_lno} {$i <= $max_amov_lno} {incr i
} {
884 lset amov_data
$i [list ]
887 # Start the back-end process
888 _exec_blame
$this $w_amov @amov_data
\
890 [mc
"Running thorough copy detection..."]
893 method _click
{cur_w pos
} {
894 set lno
[lindex [split [$cur_w index
$pos] .
] 0]
895 _showcommit
$this $cur_w $lno
898 method _setencoding
{enc
} {
899 force_path_encoding
$path $enc
903 [lindex [$w_file xview
] 0] \
904 [lindex [$w_file yview
] 0] \
908 method _load_commit
{cur_w cur_d pos
} {
909 upvar #0 $cur_d line_data
910 set lno
[lindex [split [$cur_w index
$pos] .
] 0]
911 set dat
[lindex $line_data $lno]
913 _load_new_commit
$this \
916 [list [lindex $dat 2]]
920 method _load_new_commit
{new_commit new_path jump
} {
921 lappend history [list \
925 [lindex [$w_file xview
] 0] \
926 [lindex [$w_file yview
] 0] \
929 set commit
$new_commit
934 method _showcommit
{cur_w lno
} {
936 variable active_color
938 if {$highlight_commit ne
{}} {
939 foreach i
$w_columns {
940 $i tag conf g
$highlight_commit -background {}
941 $i tag
lower g
$highlight_commit
945 if {$cur_w eq
$w_asim} {
946 set dat
[lindex $asim_data $lno]
947 set highlight_column
$w_asim
949 set dat
[lindex $amov_data $lno]
950 set highlight_column
$w_amov
953 $w_cviewer conf
-state normal
954 $w_cviewer delete
0.0 end
958 $w_cviewer insert end
[mc
"Loading annotation..."] still_loading
960 set cmit
[lindex $dat 0]
961 set file [lindex $dat 1]
963 foreach i
$w_columns {
964 $i tag conf g
$cmit -background $active_color
967 $w_file tag
raise found
975 catch {set author_name
$header($cmit,author
)}
976 catch {set author_email
$header($cmit,author-mail
)}
977 catch {set author_time
[format_date
$header($cmit,author-time
)]}
979 set committer_name
{}
980 set committer_email
{}
981 set committer_time
{}
982 catch {set committer_name
$header($cmit,committer
)}
983 catch {set committer_email
$header($cmit,committer-mail
)}
984 catch {set committer_time
[format_date
$header($cmit,committer-time
)]}
986 if {[catch {set msg
$header($cmit,message)}]} {
989 set fd
[git_read cat-file commit
$cmit]
990 fconfigure $fd -encoding binary -translation lf
991 # By default commits are assumed to be in utf-8
993 while {[gets $fd line
] > 0} {
994 if {[string match
{encoding *} $line]} {
995 set enc
[string tolower
[string range
$line 9 end
]]
1001 set enc
[tcl_encoding
$enc]
1003 set msg
[encoding convertfrom
$enc $msg]
1005 set msg
[string trim
$msg]
1007 set header
($cmit,message) $msg
1010 $w_cviewer insert end
"commit $cmit\n" header_key
1011 $w_cviewer insert end
[strcat
[mc
"Author:"] "\t"] header_key
1012 $w_cviewer insert end
"$author_name $author_email" header_val
1013 $w_cviewer insert end
" $author_time\n" header_val
1015 $w_cviewer insert end
[strcat
[mc
"Committer:"] "\t"] header_key
1016 $w_cviewer insert end
"$committer_name $committer_email" header_val
1017 $w_cviewer insert end
" $committer_time\n" header_val
1019 if {$file ne
$path} {
1020 $w_cviewer insert end
[strcat
[mc
"Original File:"] "\t"] header_key
1021 $w_cviewer insert end
"[escape_path $file]\n" header_val
1024 $w_cviewer insert end
"\n$msg"
1026 $w_cviewer conf
-state disabled
1028 set highlight_line
$lno
1029 set highlight_commit
$cmit
1031 if {[lsearch -exact $tooltip_commit $highlight_commit] != -1} {
1036 method _get_click_amov_info
{} {
1037 set pos
@$::cursorX,$::cursorY
1038 set lno
[lindex [split [$::cursorW index
$pos] .
] 0]
1039 return [lindex $amov_data $lno]
1042 method _copycommit
{} {
1043 set dat
[_get_click_amov_info
$this]
1053 method _format_offset_date
{base offset
} {
1054 set exval
[expr {$base + $offset*24*60*60}]
1055 return [clock format $exval -format {%Y-
%m-
%d
}]
1058 method _gitkcommit
{} {
1061 set dat
[_get_click_amov_info
$this]
1063 set cmit
[lindex $dat 0]
1065 # If the line belongs to the working copy, use HEAD instead
1066 if {$cmit eq
$nullid} {
1067 if {[catch {set cmit
[git rev-parse
--verify HEAD
]} err
]} {
1068 error_popup
[strcat
[mc
"Cannot find HEAD commit:"] "\n\n$err"]
1073 set radius
[get_config gui.blamehistoryctx
]
1074 set cmdline
[list --select-commit
=$cmit]
1078 set committer_time
{}
1080 catch {set author_time
$header($cmit,author-time
)}
1081 catch {set committer_time
$header($cmit,committer-time
)}
1083 if {$committer_time eq
{}} {
1084 set committer_time
$author_time
1087 set after_time
[_format_offset_date
$this $committer_time [expr {-$radius}]]
1088 set before_time
[_format_offset_date
$this $committer_time $radius]
1090 lappend cmdline
--after=$after_time --before=$before_time
1093 lappend cmdline
$cmit
1096 if {$commit ne
{}} {
1097 set base_rev
$commit
1100 if {$base_rev ne
$cmit} {
1101 lappend cmdline
$base_rev
1108 method _blameparent
{} {
1111 set dat
[_get_click_amov_info
$this]
1113 set cmit
[lindex $dat 0]
1114 set new_path
[lindex $dat 1]
1116 # Allow using Blame Parent on lines modified in the working copy
1117 if {$cmit eq
$nullid} {
1118 set parent_ref
"HEAD"
1120 set parent_ref
"$cmit^"
1122 if {[catch {set cparent
[git rev-parse
--verify $parent_ref]} err
]} {
1123 error_popup
[strcat
[mc
"Cannot find parent commit:"] "\n\n$err"]
1129 # Generate a diff between the commit and its parent,
1130 # and use the hunks to update the line number.
1131 # Request zero context to simplify calculations.
1132 if {$cmit eq
$nullid} {
1133 set diffcmd
[list diff-index
--unified=0 $cparent -- $new_path]
1135 set diffcmd
[list diff-tree
--unified=0 $cparent $cmit -- $new_path]
1137 if {[catch {set fd
[eval git_read
$diffcmd]} err
]} {
1138 $status_operation stop
[mc
"Unable to display parent"]
1139 error_popup
[strcat
[mc
"Error loading diff:"] "\n\n$err"]
1143 set r_orig_line
[lindex $dat 2]
1149 fileevent $fd readable
[cb _read_diff_load_commit
\
1150 $fd $cparent $new_path $r_orig_line]
1155 method _read_diff_load_commit
{fd cparent new_path tline
} {
1156 if {$fd ne
$current_fd} {
1161 while {[gets $fd line
] >= 0} {
1162 if {[regexp {^
@@ -(\d
+)(,(\d
+))?
\+(\d
+)(,(\d
+))?
@@} $line line
\
1163 old_line osz old_size new_line nsz new_size
]} {
1165 if {$osz eq
{}} { set old_size
1 }
1166 if {$nsz eq
{}} { set new_size
1 }
1168 if {$new_line <= $tline} {
1169 if {[expr {$new_line + $new_size}] > $tline} {
1170 # Target line within the hunk
1171 set line_shift
[expr {
1172 ($new_size-$old_size)*($tline-$new_line)/$new_size
1175 set line_shift
[expr {$new_size-$old_size}]
1178 set r_orig_line
[expr {$r_orig_line - $line_shift}]
1187 _load_new_commit
$this \
1192 } ifdeleted
{ catch {close $fd} }
1194 method _show_tooltip
{cur_w pos
} {
1195 if {$tooltip_wm ne
{}} {
1196 _open_tooltip
$this $cur_w
1197 } elseif
{$tooltip_timer eq
{}} {
1198 set tooltip_timer
[after 1000 [cb _open_tooltip
$cur_w]]
1202 method _open_tooltip
{cur_w
} {
1203 set tooltip_timer
{}
1204 set pos_x
[winfo pointerx
$cur_w]
1205 set pos_y
[winfo pointery
$cur_w]
1206 if {[winfo containing
$pos_x $pos_y] ne
$cur_w} {
1211 if {$tooltip_wm ne
"$cur_w.tooltip"} {
1214 set tooltip_wm
[toplevel $cur_w.tooltip
-borderwidth 1]
1215 catch {wm attributes
$tooltip_wm -type tooltip
}
1216 wm overrideredirect
$tooltip_wm 1
1217 wm transient
$tooltip_wm [winfo toplevel $cur_w]
1218 set tooltip_t
$tooltip_wm.
label
1221 -highlightthickness 0 \
1225 -background lightyellow
\
1227 $tooltip_t tag conf section_header
-font font_uibold
1230 $tooltip_t conf
-state normal
1231 $tooltip_t delete
0.0 end
1234 set pos
@[join [list \
1235 [expr {$pos_x - [winfo rootx
$cur_w]}] \
1236 [expr {$pos_y - [winfo rooty
$cur_w]}]] ,]
1237 set lno
[lindex [split [$cur_w index
$pos] .
] 0]
1238 if {$cur_w eq
$w_amov} {
1239 set dat
[lindex $amov_data $lno]
1242 set dat
[lindex $asim_data $lno]
1243 set org
[lindex $amov_data $lno]
1251 set cmit
[lindex $dat 0]
1252 set tooltip_commit
[list $cmit]
1257 catch {set author_name
$header($cmit,author
)}
1258 catch {set summary
$header($cmit,summary
)}
1259 catch {set author_time
[format_date
$header($cmit,author-time
)]}
1261 $tooltip_t insert end
"commit $cmit\n"
1262 $tooltip_t insert end
"$author_name $author_time\n"
1263 $tooltip_t insert end
"$summary"
1265 if {$org ne
{} && [lindex $org 0] ne
$cmit} {
1266 set save
[$tooltip_t get
0.0 end
]
1267 $tooltip_t delete
0.0 end
1269 set cmit
[lindex $org 0]
1270 set file [lindex $org 1]
1271 lappend tooltip_commit
$cmit
1276 catch {set author_name
$header($cmit,author
)}
1277 catch {set summary
$header($cmit,summary
)}
1278 catch {set author_time
[format_date
$header($cmit,author-time
)]}
1280 $tooltip_t insert end
[strcat
[mc
"Originally By:"] "\n"] section_header
1281 $tooltip_t insert end
"commit $cmit\n"
1282 $tooltip_t insert end
"$author_name $author_time\n"
1283 $tooltip_t insert end
"$summary\n"
1285 if {$file ne
$path} {
1286 $tooltip_t insert end
[strcat
[mc
"In File:"] " "] section_header
1287 $tooltip_t insert end
"$file\n"
1290 $tooltip_t insert end
"\n"
1291 $tooltip_t insert end
[strcat
[mc
"Copied Or Moved Here By:"] "\n"] section_header
1292 $tooltip_t insert end
$save
1295 $tooltip_t conf
-state disabled
1296 _position_tooltip
$this
1298 # On MacOS raising a window causes it to acquire focus.
1299 # Tk 8.5 on MacOS seems to properly support wm transient,
1300 # so we can safely counter the effect there.
1301 if {$::have_tk85 && [is_MacOSX
]} {
1311 method _position_tooltip
{} {
1312 set max_h
[lindex [split [$tooltip_t index end
] .
] 0]
1314 for {set i
1} {$i <= $max_h} {incr i
} {
1315 set c
[lindex [split [$tooltip_t index
"$i.0 lineend"] .
] 1]
1316 if {$c > $max_w} {set max_w
$c}
1318 $tooltip_t conf
-width $max_w -height $max_h
1320 set req_w
[winfo reqwidth
$tooltip_t]
1321 set req_h
[winfo reqheight
$tooltip_t]
1322 set pos_x
[expr {[winfo pointerx .
] + 5}]
1323 set pos_y
[expr {[winfo pointery .
] + 10}]
1325 set g
"${req_w}x${req_h}"
1326 if {[tk windowingsystem
] eq
"win32" ||
$pos_x >= 0} {append g
+}
1328 if {[tk windowingsystem
] eq
"win32" ||
$pos_y >= 0} {append g
+}
1331 wm geometry
$tooltip_wm $g
1337 method _hide_tooltip
{} {
1338 if {$tooltip_wm ne
{}} {
1341 set tooltip_commit
{}
1343 if {$tooltip_timer ne
{}} {
1344 after cancel
$tooltip_timer
1345 set tooltip_timer
{}
1349 method _resize
{new_height
} {
1350 set diff
[expr {$new_height - $old_height}]
1351 if {$diff == 0} return
1353 set my
[expr {[winfo height
$w.file_pane
] - 25}]
1354 set o
[$w.file_pane sash coord
0]
1355 set ox
[lindex $o 0]
1356 set oy
[expr {[lindex $o 1] + $diff}]
1357 if {$oy < 0} {set oy
0}
1358 if {$oy > $my} {set oy
$my}
1359 $w.file_pane sash
place 0 $ox $oy
1361 set old_height
$new_height
1364 method _show_finder
{} {
1365 linebar
::hide $gotoline
1366 searchbar
::show $finder
1369 method _show_linebar
{} {
1370 searchbar
::hide $finder
1371 linebar
::show $gotoline