Code

git-gui: Run blame twice on the same file and display both outputs
[git.git] / lib / blame.tcl
1 # git-gui blame viewer
2 # Copyright (C) 2006, 2007 Shawn Pearce
4 class blame {
6 image create photo ::blame::img_back_arrow -data {R0lGODlhGAAYAIUAAPwCBEzKXFTSZIz+nGzmhGzqfGTidIT+nEzGXHTqhGzmfGzifFzadETCVES+VARWDFzWbHzyjAReDGTadFTOZDSyRDyyTCymPARaFGTedFzSbDy2TCyqRCyqPARaDAyCHES6VDy6VCyiPAR6HCSeNByWLARyFARiDARqFGTifARiFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAEAAAAALAAAAAAYABgAAAajQIBwSCwaj8ikcsk0BppJwRPqHEypQwHBis0WDAdEFyBIKBaMAKLBdjQeSkFBYTBAIvgEoS6JmhUTEwIUDQ4VFhcMGEhyCgoZExoUaxsWHB0THkgfAXUGAhoBDSAVFR0XBnCbDRmgog0hpSIiDJpJIyEQhBUcJCIlwA22SSYVogknEg8eD82qSigdDSknY0IqJQXPYxIl1dZCGNvWw+Dm510GQQAh/mhDcmVhdGVkIGJ5IEJNUFRvR0lGIFBybyB2ZXJzaW9uIDIuNQ0KqSBEZXZlbENvciAxOTk3LDE5OTguIEFsbCByaWdodHMgcmVzZXJ2ZWQuDQpodHRwOi8vd3d3LmRldmVsY29yLmNvbQA7}
8 # Persistant data (survives loads)
9 #
10 field history {}; # viewer history: {commit path}
11 field header    ; # array commit,key -> header field
13 # Tk UI control paths
14 #
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 status     ; # text variable bound to status bar
25 field old_height ; # last known height of $w.file_pane
27 # Tk UI colors
28 #
29 field active_color #c0edc5
30 field group_colors {
31         #d6d6d6
32         #e1e1e1
33         #ececec
34 }
36 # Current blame data; cleared/reset on each load
37 #
38 field commit               ; # input commit to blame
39 field path                 ; # input filename to view in $commit
41 field current_fd        {} ; # background process running
42 field highlight_line    -1 ; # current line selected
43 field highlight_column  {} ; # current commit column selected
44 field highlight_commit  {} ; # sha1 of commit selected
45 field old_bgcolor       {} ; # background of current selection
47 field total_lines       0  ; # total length of file
48 field blame_lines       0  ; # number of lines computed
49 field have_commit          ; # array commit -> 1
50 field amov_data            ; # list of {commit origfile origline}
51 field asim_data            ; # list of {commit origfile origline}
53 field r_commit             ; # commit currently being parsed
54 field r_orig_line          ; # original line number
55 field r_final_line         ; # final line number
56 field r_line_count         ; # lines in this region
58 field tooltip_wm        {} ; # Current tooltip toplevel, if open
59 field tooltip_timer     {} ; # Current timer event for our tooltip
60 field tooltip_commit    {} ; # Commit in tooltip
61 field tooltip_text      {} ; # Text in current tooltip
63 constructor new {i_commit i_path} {
64         global cursor_ptr
66         set commit $i_commit
67         set path   $i_path
69         make_toplevel top w
70         wm title $top "[appname] ([reponame]): File Viewer"
72         frame $w.header -background orange
73         label $w.header.commit_l \
74                 -text {Commit:} \
75                 -background orange \
76                 -anchor w \
77                 -justify left
78         set w_back $w.header.commit_b
79         label $w_back \
80                 -image ::blame::img_back_arrow \
81                 -borderwidth 0 \
82                 -relief flat \
83                 -state disabled \
84                 -background orange \
85                 -activebackground orange
86         bind $w_back <Button-1> "
87                 if {\[$w_back cget -state\] eq {normal}} {
88                         [cb _history_menu]
89                 }
90                 "
91         label $w.header.commit \
92                 -textvariable @commit \
93                 -background orange \
94                 -anchor w \
95                 -justify left
96         label $w.header.path_l \
97                 -text {File:} \
98                 -background orange \
99                 -anchor w \
100                 -justify left
101         set w_path $w.header.path
102         label $w_path \
103                 -background orange \
104                 -anchor w \
105                 -justify left
106         pack $w.header.commit_l -side left
107         pack $w_back -side left
108         pack $w.header.commit -side left
109         pack $w_path -fill x -side right
110         pack $w.header.path_l -side right
112         panedwindow $w.file_pane -orient vertical
113         frame $w.file_pane.out
114         frame $w.file_pane.cm
115         $w.file_pane add $w.file_pane.out \
116                 -sticky nsew \
117                 -minsize 100 \
118                 -height 100 \
119                 -width 100
120         $w.file_pane add $w.file_pane.cm \
121                 -sticky nsew \
122                 -minsize 25 \
123                 -height 25 \
124                 -width 100
126         set w_line $w.file_pane.out.linenumber_t
127         text $w_line \
128                 -takefocus 0 \
129                 -highlightthickness 0 \
130                 -padx 0 -pady 0 \
131                 -background white -borderwidth 0 \
132                 -state disabled \
133                 -wrap none \
134                 -height 40 \
135                 -width 6 \
136                 -font font_diff
137         $w_line tag conf linenumber -justify right -rmargin 5
139         set w_amov $w.file_pane.out.amove_t
140         text $w_amov \
141                 -takefocus 0 \
142                 -highlightthickness 0 \
143                 -padx 0 -pady 0 \
144                 -background white -borderwidth 0 \
145                 -state disabled \
146                 -wrap none \
147                 -height 40 \
148                 -width 5 \
149                 -font font_diff
150         $w_amov tag conf author_abbr -justify right -rmargin 5
151         $w_amov tag conf curr_commit
152         $w_amov tag conf prior_commit -foreground blue -underline 1
153         $w_amov tag bind prior_commit \
154                 <Button-1> \
155                 "[cb _load_commit $w_amov @amov_data @%x,%y];break"
157         set w_asim $w.file_pane.out.asimple_t
158         text $w_asim \
159                 -takefocus 0 \
160                 -highlightthickness 0 \
161                 -padx 0 -pady 0 \
162                 -background white -borderwidth 0 \
163                 -state disabled \
164                 -wrap none \
165                 -height 40 \
166                 -width 4 \
167                 -font font_diff
168         $w_asim tag conf author_abbr -justify right
169         $w_asim tag conf curr_commit
170         $w_asim tag conf prior_commit -foreground blue -underline 1
171         $w_asim tag bind prior_commit \
172                 <Button-1> \
173                 "[cb _load_commit $w_asim @asim_data @%x,%y];break"
175         set w_file $w.file_pane.out.file_t
176         text $w_file \
177                 -takefocus 0 \
178                 -highlightthickness 0 \
179                 -padx 0 -pady 0 \
180                 -background white -borderwidth 0 \
181                 -state disabled \
182                 -wrap none \
183                 -height 40 \
184                 -width 80 \
185                 -xscrollcommand [list $w.file_pane.out.sbx set] \
186                 -font font_diff
188         set w_columns [list $w_amov $w_asim $w_line $w_file]
190         scrollbar $w.file_pane.out.sbx \
191                 -orient h \
192                 -command [list $w_file xview]
193         scrollbar $w.file_pane.out.sby \
194                 -orient v \
195                 -command [list scrollbar2many $w_columns yview]
196         eval grid $w_columns $w.file_pane.out.sby -sticky nsew
197         grid conf \
198                 $w.file_pane.out.sbx \
199                 -column [expr {[llength $w_columns] - 1}] \
200                 -sticky we
201         grid columnconfigure \
202                 $w.file_pane.out \
203                 [expr {[llength $w_columns] - 1}] \
204                 -weight 1
205         grid rowconfigure $w.file_pane.out 0 -weight 1
207         set w_cviewer $w.file_pane.cm.t
208         text $w_cviewer \
209                 -background white -borderwidth 0 \
210                 -state disabled \
211                 -wrap none \
212                 -height 10 \
213                 -width 80 \
214                 -xscrollcommand [list $w.file_pane.cm.sbx set] \
215                 -yscrollcommand [list $w.file_pane.cm.sby set] \
216                 -font font_diff
217         $w_cviewer tag conf still_loading \
218                 -font font_uiitalic \
219                 -justify center
220         $w_cviewer tag conf header_key \
221                 -tabs {3c} \
222                 -background $active_color \
223                 -font font_uibold
224         $w_cviewer tag conf header_val \
225                 -background $active_color \
226                 -font font_ui
227         $w_cviewer tag raise sel
228         scrollbar $w.file_pane.cm.sbx \
229                 -orient h \
230                 -command [list $w_cviewer xview]
231         scrollbar $w.file_pane.cm.sby \
232                 -orient v \
233                 -command [list $w_cviewer yview]
234         pack $w.file_pane.cm.sby -side right -fill y
235         pack $w.file_pane.cm.sbx -side bottom -fill x
236         pack $w_cviewer -expand 1 -fill both
238         frame $w.status \
239                 -borderwidth 1 \
240                 -relief sunken
241         label $w.status.l \
242                 -textvariable @status \
243                 -anchor w \
244                 -justify left
245         pack $w.status.l -side left
247         menu $w.ctxm -tearoff 0
248         $w.ctxm add command \
249                 -label "Copy Commit" \
250                 -command [cb _copycommit]
252         foreach i $w_columns {
253                 $i conf -cursor $cursor_ptr
254                 $i conf -yscrollcommand [list many2scrollbar \
255                         $w_columns yview $w.file_pane.out.sby]
256                 bind $i <Button-1> "
257                         [cb _hide_tooltip]
258                         [cb _click $i @%x,%y]
259                         focus $i
260                 "
261                 bind $i <Any-Motion>  [cb _show_tooltip $i @%x,%y]
262                 bind $i <Any-Enter>   [cb _hide_tooltip]
263                 bind $i <Any-Leave>   [cb _hide_tooltip]
264                 bind_button3 $i "
265                         [cb _hide_tooltip]
266                         set cursorX %x
267                         set cursorY %y
268                         set cursorW %W
269                         tk_popup $w.ctxm %X %Y
270                 "
271         }
273         foreach i [concat $w_columns $w_cviewer] {
274                 bind $i <Key-Up>        {catch {%W yview scroll -1 units};break}
275                 bind $i <Key-Down>      {catch {%W yview scroll  1 units};break}
276                 bind $i <Key-Left>      {catch {%W xview scroll -1 units};break}
277                 bind $i <Key-Right>     {catch {%W xview scroll  1 units};break}
278                 bind $i <Key-k>         {catch {%W yview scroll -1 units};break}
279                 bind $i <Key-j>         {catch {%W yview scroll  1 units};break}
280                 bind $i <Key-h>         {catch {%W xview scroll -1 units};break}
281                 bind $i <Key-l>         {catch {%W xview scroll  1 units};break}
282                 bind $i <Control-Key-b> {catch {%W yview scroll -1 pages};break}
283                 bind $i <Control-Key-f> {catch {%W yview scroll  1 pages};break}
284         }
286         bind $w_cviewer <Button-1> [list focus $w_cviewer]
287         bind $top <Visibility> [list focus $top]
288         bind $w_file <Destroy> [list delete_this $this]
290         grid configure $w.header -sticky ew
291         grid configure $w.file_pane -sticky nsew
292         grid configure $w.status -sticky ew
293         grid columnconfigure $top 0 -weight 1
294         grid rowconfigure $top 0 -weight 0
295         grid rowconfigure $top 1 -weight 1
296         grid rowconfigure $top 2 -weight 0
298         set req_w [winfo reqwidth  $top]
299         set req_h [winfo reqheight $top]
300         if {$req_w < 600} {set req_w 600}
301         if {$req_h < 400} {set req_h 400}
302         set g "${req_w}x${req_h}"
303         wm geometry $top $g
304         update
306         set old_height [winfo height $w.file_pane]
307         $w.file_pane sash place 0 \
308                 [lindex [$w.file_pane sash coord 0] 0] \
309                 [expr {int($old_height * 0.70)}]
310         bind $w.file_pane <Configure> \
311         "if {{$w.file_pane} eq {%W}} {[cb _resize %h]}"
313         _load $this
316 method _load {} {
317         _hide_tooltip $this
319         if {$total_lines != 0 || $current_fd ne {}} {
320                 if {$current_fd ne {}} {
321                         catch {close $current_fd}
322                         set current_fd {}
323                 }
325                 foreach i $w_columns {
326                         $i conf -state normal
327                         $i delete 0.0 end
328                         foreach cmit [array names have_commit] {
329                                 $i tag delete g$cmit
330                         }
331                         $i conf -state disabled
332                 }
334                 set highlight_line -1
335                 set highlight_column {}
336                 set highlight_commit {}
337                 set total_lines 0
338                 array unset have_commit
339         }
341         if {[winfo exists $w.status.c]} {
342                 $w.status.c coords bar 0 0 0 20
343         } else {
344                 canvas $w.status.c \
345                         -width 100 \
346                         -height [expr {int([winfo reqheight $w.status.l] * 0.6)}] \
347                         -borderwidth 1 \
348                         -relief groove \
349                         -highlightt 0
350                 $w.status.c create rectangle 0 0 0 20 -tags bar -fill navy
351                 pack $w.status.c -side right
352         }
354         if {$history eq {}} {
355                 $w_back conf -state disabled
356         } else {
357                 $w_back conf -state normal
358         }
359         lappend history [list $commit $path]
361         # Index 0 is always empty.  There is never line 0 as
362         # we use only 1 based lines, as that matches both with
363         # git-blame output and with Tk's text widget.
364         #
365         set amov_data [list [list]]
366         set asim_data [list [list]]
368         set status "Loading $commit:[escape_path $path]..."
369         $w_path conf -text [escape_path $path]
370         if {$commit eq {}} {
371                 set fd [open $path r]
372         } else {
373                 set cmd [list git cat-file blob "$commit:$path"]
374                 set fd [open "| $cmd" r]
375         }
376         fconfigure $fd -blocking 0 -translation lf -encoding binary
377         fileevent $fd readable [cb _read_file $fd]
378         set current_fd $fd
381 method _history_menu {} {
382         set m $w.backmenu
383         if {[winfo exists $m]} {
384                 $m delete 0 end
385         } else {
386                 menu $m -tearoff 0
387         }
389         for {set i [expr {[llength $history] - 2}]
390                 } {$i >= 0} {incr i -1} {
391                 set e [lindex $history $i]
392                 set c [lindex $e 0]
393                 set f [lindex $e 1]
395                 if {[regexp {^[0-9a-f]{40}$} $c]} {
396                         set t [string range $c 0 8]...
397                 } elseif {$c eq {}} {
398                         set t {Working Directory}
399                 } else {
400                         set t $c
401                 }
402                 if {![catch {set summary $header($c,summary)}]} {
403                         append t " $summary"
404                         if {[string length $t] > 70} {
405                                 set t [string range $t 0 66]...
406                         }
407                 }
409                 $m add command -label $t -command [cb _goback $i $c $f]
410         }
411         set X [winfo rootx $w_back]
412         set Y [expr {[winfo rooty $w_back] + [winfo height $w_back]}]
413         tk_popup $m $X $Y
416 method _goback {i c f} {
417         set history [lrange $history 0 [expr {$i - 1}]]
418         set commit $c
419         set path $f
420         _load $this
423 method _read_file {fd} {
424         if {$fd ne $current_fd} {
425                 catch {close $fd}
426                 return
427         }
429         foreach i $w_columns {$i conf -state normal}
430         while {[gets $fd line] >= 0} {
431                 regsub "\r\$" $line {} line
432                 incr total_lines
433                 lappend amov_data {}
434                 lappend asim_data {}
436                 if {$total_lines > 1} {
437                         foreach i $w_columns {$i insert end "\n"}
438                 }
440                 $w_line insert end "$total_lines" linenumber
441                 $w_file insert end "$line"
442         }
444         set ln_wc [expr {[string length $total_lines] + 2}]
445         if {[$w_line cget -width] < $ln_wc} {
446                 $w_line conf -width $ln_wc
447         }
449         foreach i $w_columns {$i conf -state disabled}
451         if {[eof $fd]} {
452                 close $fd
453                 _exec_blame $this $w_asim @asim_data [list] {}
454         }
455 } ifdeleted { catch {close $fd} }
457 method _exec_blame {cur_w cur_d options cur_s} {
458         set cmd [list nice git blame]
459         set cmd [concat $cmd $options]
460         lappend cmd --incremental
461         if {$commit eq {}} {
462                 lappend cmd --contents $path
463         } else {
464                 lappend cmd $commit
465         }
466         lappend cmd -- $path
467         set fd [open "| $cmd" r]
468         fconfigure $fd -blocking 0 -translation lf -encoding binary
469         fileevent $fd readable [cb _read_blame $fd $cur_w $cur_d $cur_s]
470         set current_fd $fd
471         set blame_lines 0
472         _status $this $cur_s
475 method _read_blame {fd cur_w cur_d cur_s} {
476         upvar #0 $cur_d line_data
478         if {$fd ne $current_fd} {
479                 catch {close $fd}
480                 return
481         }
483         $cur_w conf -state normal
484         while {[gets $fd line] >= 0} {
485                 if {[regexp {^([a-z0-9]{40}) (\d+) (\d+) (\d+)$} $line line \
486                         cmit original_line final_line line_count]} {
487                         set r_commit     $cmit
488                         set r_orig_line  $original_line
489                         set r_final_line $final_line
490                         set r_line_count $line_count
492                         if {[catch {set g $have_commit($cmit)}]} {
493                                 set bg [lindex $group_colors 0]
494                                 set group_colors [lrange $group_colors 1 end]
495                                 lappend group_colors $bg
496                                 foreach i $w_columns {
497                                         $i tag conf g$cmit -background $bg
498                                 }
499                                 set have_commit($cmit) 1
500                         }
501                 } elseif {[string match {filename *} $line]} {
502                         set file [string range $line 9 end]
503                         set n    $r_line_count
504                         set lno  $r_final_line
505                         set cmit $r_commit
507                         if {[regexp {^0{40}$} $cmit]} {
508                                 set commit_abbr work
509                                 set commit_type curr_commit
510                         } elseif {$cmit eq $commit} {
511                                 set commit_abbr this
512                                 set commit_type curr_commit
513                         } else {
514                                 set commit_type prior_commit
515                                 set commit_abbr [string range $cmit 0 3]
516                         }
518                         set author_abbr {}
519                         set a_name {}
520                         catch {set a_name $header($cmit,author)}
521                         while {$a_name ne {}} {
522                                 if {![regexp {^([[:upper:]])} $a_name _a]} break
523                                 append author_abbr $_a
524                                 unset _a
525                                 if {![regsub \
526                                         {^[[:upper:]][^\s]*\s+} \
527                                         $a_name {} a_name ]} break
528                         }
529                         if {$author_abbr eq {}} {
530                                 set author_abbr { |}
531                         } else {
532                                 set author_abbr [string range $author_abbr 0 3]
533                         }
534                         unset a_name
536                         set first_lno $lno
537                         while {
538                            $first_lno > 1
539                         && $cmit eq [lindex $line_data [expr {$first_lno - 1}] 0]
540                         && $file eq [lindex $line_data [expr {$first_lno - 1}] 1]
541                         } {
542                                 incr first_lno -1
543                         }
545                         while {$n > 0} {
546                                 set lno_e "$lno.0 lineend + 1c"
547                                 if {[lindex $line_data $lno] ne {}} {
548                                         set g [lindex $line_data $lno 0]
549                                         foreach i $w_columns {
550                                                 $i tag remove g$g $lno.0 $lno_e
551                                         }
552                                 }
553                                 lset line_data $lno [list $cmit $file]
555                                 $cur_w delete $lno.0 "$lno.0 lineend"
556                                 if {$lno == $first_lno} {
557                                         $cur_w insert $lno.0 $commit_abbr $commit_type
558                                 } elseif {$lno == [expr {$first_lno + 1}]} {
559                                         $cur_w insert $lno.0 $author_abbr author_abbr
560                                 } else {
561                                         $cur_w insert $lno.0 { |}
562                                 }
564                                 foreach i $w_columns {
565                                         $i tag add g$cmit $lno.0 $lno_e
566                                 }
568                                 if {$highlight_column eq $cur_w} {
569                                         if {$highlight_line == -1
570                                          && [lindex [$w_file yview] 0] == 0} {
571                                                 $w_file see $lno.0
572                                                 set highlight_line $lno
573                                         }
574                                         if {$highlight_line == $lno} {
575                                                 _showcommit $this $cur_w $lno
576                                         }
577                                 }
579                                 incr n -1
580                                 incr lno
581                                 incr blame_lines
582                         }
584                         while {
585                            $cmit eq [lindex $line_data $lno 0]
586                         && $file eq [lindex $line_data $lno 1]
587                         } {
588                                 $cur_w delete $lno.0 "$lno.0 lineend"
590                                 if {$lno == $first_lno} {
591                                         $cur_w insert $lno.0 $commit_abbr $commit_type
592                                 } elseif {$lno == [expr {$first_lno + 1}]} {
593                                         $cur_w insert $lno.0 $author_abbr author_abbr
594                                 } else {
595                                         $cur_w insert $lno.0 { |}
596                                 }
597                                 incr lno
598                         }
600                 } elseif {[regexp {^([a-z-]+) (.*)$} $line line key data]} {
601                         set header($r_commit,$key) $data
602                 }
603         }
604         $cur_w conf -state disabled
606         if {[eof $fd]} {
607                 close $fd
608                 if {$cur_w eq $w_asim} {
609                         _exec_blame $this $w_amov @amov_data \
610                                 [list -M -C -C] \
611                                 { move/copy tracking}
612                 } else {
613                         set current_fd {}
614                         set status {Annotation complete.}
615                         destroy $w.status.c
616                 }
617         } else {
618                 _status $this $cur_s
619         }
620 } ifdeleted { catch {close $fd} }
622 method _status {cur_s} {
623         set have  $blame_lines
624         set total $total_lines
625         set pdone 0
626         if {$total} {set pdone [expr {100 * $have / $total}]}
628         set status [format \
629                 "Loading%s annotations... %i of %i lines annotated (%2i%%)" \
630                 $cur_s $have $total $pdone]
631         $w.status.c coords bar 0 0 $pdone 20
634 method _click {cur_w pos} {
635         set lno [lindex [split [$cur_w index $pos] .] 0]
636         _showcommit $this $cur_w $lno
639 method _load_commit {cur_w cur_d pos} {
640         upvar #0 $cur_d line_data
641         set lno [lindex [split [$cur_w index $pos] .] 0]
642         set dat [lindex $line_data $lno]
643         if {$dat ne {}} {
644                 set commit [lindex $dat 0]
645                 set path   [lindex $dat 1]
646                 _load $this
647         }
650 method _showcommit {cur_w lno} {
651         global repo_config
653         if {$highlight_commit ne {}} {
654                 foreach i $w_columns {
655                         $i tag conf g$highlight_commit -background $old_bgcolor
656                 }
657         }
659         if {$cur_w eq $w_amov} {
660                 set dat [lindex $amov_data $lno]
661                 set highlight_column $w_amov
662         } else {
663                 set dat [lindex $asim_data $lno]
664                 set highlight_column $w_asim
665         }
667         $w_cviewer conf -state normal
668         $w_cviewer delete 0.0 end
670         if {$dat eq {}} {
671                 set cmit {}
672                 $w_cviewer insert end "Loading annotation..." still_loading
673         } else {
674                 set cmit [lindex $dat 0]
675                 set file [lindex $dat 1]
677                 set old_bgcolor [$w_file tag cget g$cmit -background]
678                 foreach i $w_columns {
679                         $i tag conf g$cmit -background $active_color
680                 }
682                 set author_name {}
683                 set author_email {}
684                 set author_time {}
685                 catch {set author_name $header($cmit,author)}
686                 catch {set author_email $header($cmit,author-mail)}
687                 catch {set author_time [clock format \
688                         $header($cmit,author-time) \
689                         -format {%Y-%m-%d %H:%M:%S}
690                 ]}
692                 set committer_name {}
693                 set committer_email {}
694                 set committer_time {}
695                 catch {set committer_name $header($cmit,committer)}
696                 catch {set committer_email $header($cmit,committer-mail)}
697                 catch {set committer_time [clock format \
698                         $header($cmit,committer-time) \
699                         -format {%Y-%m-%d %H:%M:%S}
700                 ]}
702                 if {[catch {set msg $header($cmit,message)}]} {
703                         set msg {}
704                         catch {
705                                 set fd [open "| git cat-file commit $cmit" r]
706                                 fconfigure $fd -encoding binary -translation lf
707                                 if {[catch {set enc $repo_config(i18n.commitencoding)}]} {
708                                         set enc utf-8
709                                 }
710                                 while {[gets $fd line] > 0} {
711                                         if {[string match {encoding *} $line]} {
712                                                 set enc [string tolower [string range $line 9 end]]
713                                         }
714                                 }
715                                 set msg [encoding convertfrom $enc [read $fd]]
716                                 set msg [string trim $msg]
717                                 close $fd
719                                 set author_name [encoding convertfrom $enc $author_name]
720                                 set committer_name [encoding convertfrom $enc $committer_name]
722                                 set header($cmit,author) $author_name
723                                 set header($cmit,committer) $committer_name
724                         }
725                         set header($cmit,message) $msg
726                 }
728                 $w_cviewer insert end "commit $cmit\n" header_key
729                 $w_cviewer insert end "Author:\t" header_key
730                 $w_cviewer insert end "$author_name $author_email" header_val
731                 $w_cviewer insert end "  $author_time\n" header_val
733                 $w_cviewer insert end "Committer:\t" header_key
734                 $w_cviewer insert end "$committer_name $committer_email" header_val
735                 $w_cviewer insert end "  $committer_time\n" header_val
737                 if {$file ne $path} {
738                         $w_cviewer insert end "Original File:\t" header_key
739                         $w_cviewer insert end "[escape_path $file]\n" header_val
740                 }
742                 $w_cviewer insert end "\n$msg"
743         }
744         $w_cviewer conf -state disabled
746         set highlight_line $lno
747         set highlight_commit $cmit
749         if {$highlight_commit eq $tooltip_commit} {
750                 _hide_tooltip $this
751         }
754 method _copycommit {} {
755         set pos @$::cursorX,$::cursorY
756         set lno [lindex [split [$::cursorW index $pos] .] 0]
757         set dat [lindex $amov_data $lno]
758         if {$dat ne {}} {
759                 clipboard clear
760                 clipboard append \
761                         -format STRING \
762                         -type STRING \
763                         -- [lindex $dat 0]
764         }
767 method _show_tooltip {cur_w pos} {
768         set lno [lindex [split [$cur_w index $pos] .] 0]
769         if {$cur_w eq $w_amov} {
770                 set dat [lindex $amov_data $lno]
771         } else {
772                 set dat [lindex $asim_data $lno]
773         }
774         if {$dat eq {}} {
775                 _hide_tooltip $this
776                 return
777         }
778         set cmit [lindex $dat 0]
780         if {$cmit eq $highlight_commit} {
781                 _hide_tooltip $this
782                 return
783         }
785         if {$cmit eq $tooltip_commit} {
786                 _position_tooltip $this
787         } elseif {$tooltip_wm ne {}} {
788                 _open_tooltip $this $cur_w
789         } elseif {$tooltip_timer eq {}} {
790                 set tooltip_timer [after 1000 [cb _open_tooltip $cur_w]]
791         }
794 method _open_tooltip {cur_w} {
795         set tooltip_timer {}
796         set pos_x [winfo pointerx $cur_w]
797         set pos_y [winfo pointery $cur_w]
798         if {[winfo containing $pos_x $pos_y] ne $cur_w} {
799                 _hide_tooltip $this
800                 return
801         }
803         set pos @[join [list \
804                 [expr {$pos_x - [winfo rootx $cur_w]}] \
805                 [expr {$pos_y - [winfo rooty $cur_w]}]] ,]
806         set lno [lindex [split [$cur_w index $pos] .] 0]
807         if {$cur_w eq $w_amov} {
808                 set dat [lindex $amov_data $lno]
809         } else {
810                 set dat [lindex $asim_data $lno]
811         }
812         set cmit [lindex $dat 0]
813         set file [lindex $dat 1]
815         set author_name {}
816         set author_email {}
817         set author_time {}
818         catch {set author_name $header($cmit,author)}
819         catch {set author_email $header($cmit,author-mail)}
820         catch {set author_time [clock format \
821                 $header($cmit,author-time) \
822                 -format {%Y-%m-%d %H:%M:%S}
823         ]}
825         set committer_name {}
826         set committer_email {}
827         set committer_time {}
828         catch {set committer_name $header($cmit,committer)}
829         catch {set committer_email $header($cmit,committer-mail)}
830         catch {set committer_time [clock format \
831                 $header($cmit,committer-time) \
832                 -format {%Y-%m-%d %H:%M:%S}
833         ]}
835         set summary {}
836         catch {set summary $header($cmit,summary)}
838         set tooltip_commit $cmit
839         set tooltip_text "commit $cmit
840 $author_name $author_email  $author_time
841 $summary"
843         if {$file ne $path} {
844                 append tooltip_text "
846 Original File: $file"
847         }
849         if {$tooltip_wm ne "$cur_w.tooltip"} {
850                 _hide_tooltip $this
852                 set tooltip_wm [toplevel $cur_w.tooltip -borderwidth 1]
853                 wm overrideredirect $tooltip_wm 1
854                 wm transient $tooltip_wm [winfo toplevel $cur_w]
855                 pack [label $tooltip_wm.label \
856                         -background lightyellow \
857                         -foreground black \
858                         -textvariable @tooltip_text \
859                         -justify left]
860         }
861         _position_tooltip $this
864 method _position_tooltip {} {
865         set req_w [winfo reqwidth  $tooltip_wm.label]
866         set req_h [winfo reqheight $tooltip_wm.label]
867         set pos_x [expr {[winfo pointerx .] +  5}]
868         set pos_y [expr {[winfo pointery .] + 10}]
870         set g "${req_w}x${req_h}"
871         if {$pos_x >= 0} {append g +}
872         append g $pos_x
873         if {$pos_y >= 0} {append g +}
874         append g $pos_y
876         wm geometry $tooltip_wm $g
877         raise $tooltip_wm
880 method _hide_tooltip {} {
881         if {$tooltip_wm ne {}} {
882                 destroy $tooltip_wm
883                 set tooltip_wm {}
884                 set tooltip_commit {}
885         }
886         if {$tooltip_timer ne {}} {
887                 after cancel $tooltip_timer
888                 set tooltip_timer {}
889         }
892 method _resize {new_height} {
893         set diff [expr {$new_height - $old_height}]
894         if {$diff == 0} return
896         set my [expr {[winfo height $w.file_pane] - 25}]
897         set o [$w.file_pane sash coord 0]
898         set ox [lindex $o 0]
899         set oy [expr {[lindex $o 1] + $diff}]
900         if {$oy < 0}   {set oy 0}
901         if {$oy > $my} {set oy $my}
902         $w.file_pane sash place 0 $ox $oy
904         set old_height $new_height