2 # Copyright (C) 2006, 2007 Shawn Pearce
6 image create
photo ::blame::img_back_arrow -data {R0lGODlhGAAYAIUAAPwCBEzKXFTSZIz
+nGzmhGzqfGTidIT
+nEzGXHTqhGzmfGzifFzadETCVES
+VARWDFzWbHzyjAReDGTadFTOZDSyRDyyTCymPARaFGTedFzSbDy2TCyqRCyqPARaDAyCHES6VDy6VCyiPAR6HCSeNByWLARyFARiDARqFGTifARiFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAEAAAAALAAAAAAYABgAAAajQIBwSCwaj8ikcsk0BppJwRPqHEypQwHBis0WDAdEFyBIKBaMAKLBdjQeSkFBYTBAIvgEoS6JmhUTEwIUDQ4VFhcMGEhyCgoZExoUaxsWHB0THkgfAXUGAhoBDSAVFR0XBnCbDRmgog0hpSIiDJpJIyEQhBUcJCIlwA22SSYVogknEg8eD82qSigdDSknY0IqJQXPYxIl1dZCGNvWw
+Dm510GQQAh
/mhDcmVhdGVkIGJ5IEJNUFRvR0lGIFBybyB2ZXJzaW9uIDIuNQ0KqSBEZXZlbENvciAxOTk3LDE5OTguIEFsbCByaWdodHMgcmVzZXJ2ZWQuDQpodHRwOi8vd3d3LmRldmVsY29yLmNvbQA7
}
8 field commit
; # input commit to blame
9 field path
; # input filename to view in $commit
10 field
history {}; # viewer history: {commit path}
12 field w
; # top window in this viewer
13 field w_back
; # our back button
14 field w_path
; # label showing the current file path
15 field w_line
; # text column: all line numbers
16 field w_cgrp
; # text column: abbreviated commit SHA-1s
17 field w_file
; # text column: actual file data
18 field w_cmit
; # pane showing commit message
19 field status
; # text variable bound to status bar
20 field old_height
; # last known height of $w.file_pane
22 field current_fd
{} ; # background process running
23 field highlight_line
-1 ; # current line selected
24 field highlight_commit
{} ; # sha1 of commit selected
26 field total_lines
0 ; # total length of file
27 field blame_lines
0 ; # number of lines computed
28 field commit_count
0 ; # number of commits in $commit_list
29 field commit_list
{} ; # list of commit sha1 in receipt order
30 field order
; # array commit -> receipt order
31 field header
; # array commit,key -> header field
32 field line_commit
; # array line -> sha1 commit
33 field line_file
; # array line -> file name
35 field r_commit
; # commit currently being parsed
36 field r_orig_line
; # original line number
37 field r_final_line
; # final line number
38 field r_line_count
; # lines in this region
40 field tooltip_wm
{} ; # Current tooltip toplevel, if open
41 field tooltip_timer
{} ; # Current timer event for our tooltip
42 field tooltip_commit
{} ; # Commit in tooltip
43 field tooltip_text
{} ; # Text in current tooltip
45 variable active_color
#98e1a0
46 variable group_colors
{
51 constructor new
{i_commit i_path
} {
59 wm title
$top "[appname] ([reponame]): File Viewer"
61 frame $w.header
-background orange
62 label $w.header.commit_l
\
67 set w_back
$w.header.commit_b
69 -image ::blame::img_back_arrow \
74 -activebackground orange
75 bind $w_back <Button-1
> "
76 if {\[$w_back cget -state\] eq {normal}} {
80 label $w.header.commit
\
81 -textvariable @commit
\
85 label $w.header.path_l
\
90 set w_path
$w.header.path
95 pack $w.header.commit_l
-side left
96 pack $w_back -side left
97 pack $w.header.commit
-side left
98 pack $w_path -fill x
-side right
99 pack $w.header.path_l
-side right
101 panedwindow $w.file_pane
-orient vertical
102 frame $w.file_pane.out
103 frame $w.file_pane.cm
104 $w.file_pane add
$w.file_pane.out
\
109 $w.file_pane add
$w.file_pane.cm
\
115 set w_line
$w.file_pane.out.linenumber_t
117 -background white
-borderwidth 0 \
123 $w_line tag conf linenumber
-justify right
125 set w_cgrp
$w.file_pane.out.commit_t
127 -background white
-borderwidth 0 \
133 $w_cgrp tag conf curr_commit
134 $w_cgrp tag conf prior_commit
\
137 $w_cgrp tag
bind prior_commit
\
139 "[cb _load_commit @%x,%y];break"
141 set w_file
$w.file_pane.out.file_t
143 -background white
-borderwidth 0 \
148 -xscrollcommand [list $w.file_pane.out.sbx
set] \
151 scrollbar $w.file_pane.out.sbx
\
153 -command [list $w_file xview
]
154 scrollbar $w.file_pane.out.sby
\
156 -command [list scrollbar2many
[list \
165 $w.file_pane.out.sby
\
167 grid conf
$w.file_pane.out.sbx
-column 2 -sticky we
168 grid columnconfigure
$w.file_pane.out
2 -weight 1
169 grid rowconfigure
$w.file_pane.out
0 -weight 1
171 set w_cmit
$w.file_pane.cm.t
173 -background white
-borderwidth 0 \
178 -xscrollcommand [list $w.file_pane.cm.sbx
set] \
179 -yscrollcommand [list $w.file_pane.cm.sby
set] \
181 $w_cmit tag conf header_key
\
183 -background $active_color \
185 $w_cmit tag conf header_val
\
186 -background $active_color \
188 $w_cmit tag
raise sel
189 scrollbar $w.file_pane.cm.sbx
\
191 -command [list $w_cmit xview
]
192 scrollbar $w.file_pane.cm.sby
\
194 -command [list $w_cmit yview
]
195 pack $w.file_pane.cm.sby
-side right
-fill y
196 pack $w.file_pane.cm.sbx
-side bottom
-fill x
197 pack $w_cmit -expand 1 -fill both
203 -textvariable @status
\
206 pack $w.status.l
-side left
208 menu $w.ctxm
-tearoff 0
209 $w.ctxm add command
\
210 -label "Copy Commit" \
211 -command [cb _copycommit
]
217 $i conf
-cursor $cursor_ptr
218 $i conf
-yscrollcommand \
219 [list many2scrollbar
[list \
223 ] yview
$w.file_pane.out.sby
]
226 [cb _click $i @%x,%y]
229 bind $i <Any-Motion
> [cb _show_tooltip
$i @%x
,%y
]
230 bind $i <Any-Enter
> [cb _hide_tooltip
]
231 bind $i <Any-Leave
> [cb _hide_tooltip
]
237 tk_popup $w.ctxm %X %Y
246 bind $i <Key-Up
> {catch {%W yview scroll
-1 units
};break}
247 bind $i <Key-Down
> {catch {%W yview scroll
1 units
};break}
248 bind $i <Key-Left
> {catch {%W xview scroll
-1 units
};break}
249 bind $i <Key-Right
> {catch {%W xview scroll
1 units
};break}
250 bind $i <Key-k
> {catch {%W yview scroll
-1 units
};break}
251 bind $i <Key-j
> {catch {%W yview scroll
1 units
};break}
252 bind $i <Key-h
> {catch {%W xview scroll
-1 units
};break}
253 bind $i <Key-l
> {catch {%W xview scroll
1 units
};break}
254 bind $i <Control-Key-b
> {catch {%W yview scroll
-1 pages
};break}
255 bind $i <Control-Key-f
> {catch {%W yview scroll
1 pages
};break}
258 bind $w_cmit <Button-1
> [list focus $w_cmit]
259 bind $top <Visibility
> [list focus $top]
260 bind $w_file <Destroy
> [list delete_this
$this]
262 grid configure
$w.header
-sticky ew
263 grid configure
$w.file_pane
-sticky nsew
264 grid configure
$w.status
-sticky ew
265 grid columnconfigure
$top 0 -weight 1
266 grid rowconfigure
$top 0 -weight 0
267 grid rowconfigure
$top 1 -weight 1
268 grid rowconfigure
$top 2 -weight 0
270 set req_w
[winfo reqwidth
$top]
271 set req_h
[winfo reqheight
$top]
272 if {$req_w < 600} {set req_w
600}
273 if {$req_h < 400} {set req_h
400}
274 set g
"${req_w}x${req_h}"
278 set old_height
[winfo height
$w.file_pane
]
279 $w.file_pane sash
place 0 \
280 [lindex [$w.file_pane sash coord
0] 0] \
281 [expr {int
($old_height * 0.70)}]
282 bind $w.file_pane
<Configure
> \
283 "if {{$w.file_pane} eq {%W}} {[cb _resize %h]}"
291 if {$total_lines != 0 ||
$current_fd ne
{}} {
292 if {$current_fd ne
{}} {
293 catch {close $current_fd}
297 set highlight_line
-1
298 set highlight_commit
{}
304 array unset line_commit
305 array unset line_file
307 $w_cgrp conf
-state normal
308 $w_line conf
-state normal
309 $w_file conf
-state normal
311 $w_cgrp delete
0.0 end
312 $w_line delete
0.0 end
313 $w_file delete
0.0 end
315 $w_cgrp conf
-state disabled
316 $w_line conf
-state disabled
317 $w_file conf
-state disabled
320 if {[winfo exists
$w.status.c
]} {
321 $w.status.c coords bar
0 0 0 20
325 -height [expr {int
([winfo reqheight
$w.status.l
] * 0.6)}] \
329 $w.status.c create rectangle
0 0 0 20 -tags bar
-fill navy
330 pack $w.status.c
-side right
333 if {$history eq
{}} {
334 $w_back conf
-state disabled
336 $w_back conf
-state normal
338 lappend history [list $commit $path]
340 set status
"Loading $commit:[escape_path $path]..."
341 $w_path conf
-text [escape_path
$path]
343 set fd
[open $path r
]
345 set cmd
[list git cat-file blob
"$commit:$path"]
346 set fd
[open "| $cmd" r
]
348 fconfigure $fd -blocking 0 -translation lf
-encoding binary
349 fileevent $fd readable
[cb _read_file
$fd]
353 method _history_menu
{} {
355 if {[winfo exists
$m]} {
361 for {set i
[expr {[llength $history] - 2}]
362 } {$i >= 0} {incr i
-1} {
363 set e
[lindex $history $i]
367 if {[regexp {^
[0-9a-f
]{40}$} $c]} {
368 set t
[string range
$c 0 8]...
372 if {![catch {set summary
$header($c,summary
)}]} {
374 if {[string length
$t] > 70} {
375 set t
[string range
$t 0 66]...
379 $m add command
-label $t -command [cb _goback
$i $c $f]
381 set X
[winfo rootx
$w_back]
382 set Y
[expr {[winfo rooty
$w_back] + [winfo height
$w_back]}]
386 method _goback
{i c f
} {
387 set history [lrange $history 0 [expr {$i - 1}]]
393 method _read_file
{fd
} {
394 if {$fd ne
$current_fd} {
399 $w_cgrp conf
-state normal
400 $w_line conf
-state normal
401 $w_file conf
-state normal
402 while {[gets $fd line
] >= 0} {
403 regsub "\r\$" $line {} line
406 if {$total_lines > 1} {
407 $w_cgrp insert end
"\n"
408 $w_line insert end
"\n"
409 $w_file insert end
"\n"
412 $w_line insert end
"$total_lines" linenumber
413 $w_file insert end
"$line"
415 $w_cgrp conf
-state disabled
416 $w_line conf
-state disabled
417 $w_file conf
-state disabled
422 set cmd
{nice git blame
-M -C --incremental}
424 lappend cmd
--contents $path
429 set fd
[open "| $cmd" r
]
430 fconfigure $fd -blocking 0 -translation lf
-encoding binary
431 fileevent $fd readable
[cb _read_blame
$fd]
434 } ifdeleted
{ catch {close $fd} }
436 method _read_blame
{fd
} {
437 variable group_colors
439 if {$fd ne
$current_fd} {
444 $w_cgrp conf
-state normal
445 while {[gets $fd line
] >= 0} {
446 if {[regexp {^
([a-z0-9
]{40}) (\d
+) (\d
+) (\d
+)$} $line line
\
447 cmit original_line final_line line_count
]} {
449 set r_orig_line
$original_line
450 set r_final_line
$final_line
451 set r_line_count
$line_count
453 if {[catch {set g
$order($cmit)}]} {
454 set bg
[lindex $group_colors 0]
455 set group_colors
[lrange $group_colors 1 end
]
456 lappend group_colors
$bg
458 $w_cgrp tag conf g
$cmit -background $bg
459 $w_line tag conf g
$cmit -background $bg
460 $w_file tag conf g
$cmit -background $bg
462 set order
($cmit) $commit_count
464 lappend commit_list
$cmit
466 } elseif
{[string match
{filename *} $line]} {
467 set file [string range
$line 9 end
]
469 set lno
$r_final_line
472 if {[regexp {^
0{40}$} $cmit]} {
474 set commit_type curr_commit
475 } elseif
{$cmit eq
$commit} {
477 set commit_type curr_commit
479 set commit_type prior_commit
480 set commit_abbr
[string range
$cmit 0 4]
485 catch {set a_name
$header($cmit,author
)}
486 while {$a_name ne
{}} {
487 if {![regexp {^
([[:upper
:]])} $a_name _a
]} break
488 append author_abbr
$_a
491 {^
[[:upper
:]][^
\s
]*\s
+} \
492 $a_name {} a_name
]} break
494 if {$author_abbr eq
{}} {
497 set author_abbr
[string range
$author_abbr 0 3]
498 while {[string length
$author_abbr] < 4} {
499 set author_abbr
" $author_abbr"
506 ![catch {set ncmit
$line_commit([expr {$first_lno - 1}])}]
507 && ![catch {set nfile
$line_file([expr {$first_lno - 1}])}]
515 set lno_e
"$lno.0 lineend + 1c"
516 if {![catch {set g g
$line_commit($lno)}]} {
517 $w_cgrp tag remove g
$g $lno.0 $lno_e
518 $w_line tag remove g
$g $lno.0 $lno_e
519 $w_file tag remove g
$g $lno.0 $lno_e
521 $w_cgrp tag remove a
$g $lno.0 $lno_e
522 $w_line tag remove a
$g $lno.0 $lno_e
523 $w_file tag remove a
$g $lno.0 $lno_e
526 set line_commit
($lno) $cmit
527 set line_file
($lno) $file
529 $w_cgrp delete
$lno.0 "$lno.0 lineend"
530 if {$lno == $first_lno} {
531 $w_cgrp insert
$lno.0 $commit_abbr $commit_type
532 } elseif
{$lno == [expr {$first_lno + 1}]} {
533 $w_cgrp insert
$lno.0 $author_abbr
535 $w_cgrp insert
$lno.0 { |
}
538 $w_cgrp tag add g
$cmit $lno.0 $lno_e
539 $w_line tag add g
$cmit $lno.0 $lno_e
540 $w_file tag add g
$cmit $lno.0 $lno_e
542 $w_cgrp tag add a
$cmit $lno.0 $lno_e
543 $w_line tag add a
$cmit $lno.0 $lno_e
544 $w_file tag add a
$cmit $lno.0 $lno_e
546 if {$highlight_line == -1} {
547 if {[lindex [$w_file yview
] 0] == 0} {
549 _showcommit
$this $lno
551 } elseif
{$highlight_line == $lno} {
552 _showcommit
$this $lno
561 ![catch {set ncmit
$line_commit($lno)}]
562 && ![catch {set nfile
$line_file($lno)}]
566 $w_cgrp delete
$lno.0 "$lno.0 lineend"
568 if {$lno == $first_lno} {
569 $w_cgrp insert
$lno.0 $commit_abbr $commit_type
570 } elseif
{$lno == [expr {$first_lno + 1}]} {
571 $w_cgrp insert
$lno.0 $author_abbr
573 $w_cgrp insert
$lno.0 { |
}
578 } elseif
{[regexp {^
([a-z-
]+) (.
*)$} $line line key data
]} {
579 set header
($r_commit,$key) $data
582 $w_cgrp conf
-state disabled
587 set status
{Annotation complete.
}
592 } ifdeleted
{ catch {close $fd} }
595 set have
$blame_lines
596 set total
$total_lines
598 if {$total} {set pdone
[expr {100 * $have / $total}]}
601 "Loading annotations... %i of %i lines annotated (%2i%%)" \
603 $w.status.c coords bar
0 0 $pdone 20
606 method _click
{cur_w pos
} {
607 set lno
[lindex [split [$cur_w index
$pos] .
] 0]
608 if {$lno eq
{}} return
609 _showcommit
$this $lno
612 method _load_commit
{pos
} {
613 set lno
[lindex [split [$w_cgrp index
$pos] .
] 0]
614 if {[catch {set cmit
$line_commit($lno)}]} return
615 if {[catch {set file $line_file($lno) }]} return
622 method _showcommit
{lno
} {
624 variable active_color
626 if {$highlight_commit ne
{}} {
627 set cmit
$highlight_commit
628 $w_cgrp tag conf a
$cmit -background {}
629 $w_line tag conf a
$cmit -background {}
630 $w_file tag conf a
$cmit -background {}
633 $w_cmit conf
-state normal
634 $w_cmit delete
0.0 end
635 if {[catch {set cmit
$line_commit($lno)}]} {
637 $w_cmit insert end
"Loading annotation..."
639 $w_cgrp tag conf a
$cmit -background $active_color
640 $w_line tag conf a
$cmit -background $active_color
641 $w_file tag conf a
$cmit -background $active_color
646 catch {set author_name
$header($cmit,author
)}
647 catch {set author_email
$header($cmit,author-mail
)}
648 catch {set author_time
[clock format \
649 $header($cmit,author-time
) \
650 -format {%Y-
%m-
%d
%H
:%M
:%S
}
653 set committer_name
{}
654 set committer_email
{}
655 set committer_time
{}
656 catch {set committer_name
$header($cmit,committer
)}
657 catch {set committer_email
$header($cmit,committer-mail
)}
658 catch {set committer_time
[clock format \
659 $header($cmit,committer-time
) \
660 -format {%Y-
%m-
%d
%H
:%M
:%S
}
663 if {[catch {set msg
$header($cmit,message)}]} {
666 set fd
[open "| git cat-file commit $cmit" r
]
667 fconfigure $fd -encoding binary -translation lf
668 if {[catch {set enc
$repo_config(i18n.commitencoding
)}]} {
671 while {[gets $fd line
] > 0} {
672 if {[string match
{encoding *} $line]} {
673 set enc
[string tolower
[string range
$line 9 end
]]
676 set msg
[encoding convertfrom
$enc [read $fd]]
677 set msg
[string trim
$msg]
680 set author_name
[encoding convertfrom
$enc $author_name]
681 set committer_name
[encoding convertfrom
$enc $committer_name]
683 set header
($cmit,author
) $author_name
684 set header
($cmit,committer
) $committer_name
686 set header
($cmit,message) $msg
689 $w_cmit insert end
"commit $cmit\n" header_key
690 $w_cmit insert end
"Author:\t" header_key
691 $w_cmit insert end
"$author_name $author_email" header_val
692 $w_cmit insert end
"$author_time\n" header_val
694 $w_cmit insert end
"Committer:\t" header_key
695 $w_cmit insert end
"$committer_name $committer_email" header_val
696 $w_cmit insert end
"$committer_time\n" header_val
698 if {$line_file($lno) ne
$path} {
699 $w_cmit insert end
"Original File:\t" header_key
700 $w_cmit insert end
"[escape_path $line_file($lno)]\n" header_val
703 $w_cmit insert end
"\n$msg"
705 $w_cmit conf
-state disabled
707 set highlight_line
$lno
708 set highlight_commit
$cmit
710 if {$highlight_commit eq
$tooltip_commit} {
715 method _copycommit
{} {
716 set pos
@$::cursorX,$::cursorY
717 set lno
[lindex [split [$::cursorW index
$pos] .
] 0]
718 if {![catch {set commit
$line_commit($lno)}]} {
727 method _show_tooltip
{cur_w pos
} {
728 set lno
[lindex [split [$cur_w index
$pos] .
] 0]
729 if {[catch {set cmit
$line_commit($lno)}]} {
734 if {$cmit eq
$highlight_commit} {
739 if {$cmit eq
$tooltip_commit} {
740 _position_tooltip
$this
741 } elseif
{$tooltip_wm ne
{}} {
742 _open_tooltip
$this $cur_w
743 } elseif
{$tooltip_timer eq
{}} {
744 set tooltip_timer
[after 1000 [cb _open_tooltip
$cur_w]]
748 method _open_tooltip
{cur_w
} {
750 set pos_x
[winfo pointerx
$cur_w]
751 set pos_y
[winfo pointery
$cur_w]
752 if {[winfo containing
$pos_x $pos_y] ne
$cur_w} {
757 set pos
@[join [list \
758 [expr {$pos_x - [winfo rootx
$cur_w]}] \
759 [expr {$pos_y - [winfo rooty
$cur_w]}]] ,]
760 set lno
[lindex [split [$cur_w index
$pos] .
] 0]
761 set cmit
$line_commit($lno)
766 catch {set author_name
$header($cmit,author
)}
767 catch {set author_email
$header($cmit,author-mail
)}
768 catch {set author_time
[clock format \
769 $header($cmit,author-time
) \
770 -format {%Y-
%m-
%d
%H
:%M
:%S
}
773 set committer_name
{}
774 set committer_email
{}
775 set committer_time
{}
776 catch {set committer_name
$header($cmit,committer
)}
777 catch {set committer_email
$header($cmit,committer-mail
)}
778 catch {set committer_time
[clock format \
779 $header($cmit,committer-time
) \
780 -format {%Y-
%m-
%d
%H
:%M
:%S
}
784 catch {set summary
$header($cmit,summary
)}
786 set tooltip_commit
$cmit
787 set tooltip_text
"commit $cmit
788 $author_name $author_email $author_time
791 set file $line_file($lno)
792 if {$file ne
$path} {
793 append tooltip_text
"
795 Original File: $file"
798 if {$tooltip_wm ne
"$cur_w.tooltip"} {
801 set tooltip_wm
[toplevel $cur_w.tooltip
-borderwidth 1]
802 wm overrideredirect
$tooltip_wm 1
803 wm transient
$tooltip_wm [winfo toplevel $cur_w]
804 pack [label $tooltip_wm.
label \
805 -background lightyellow
\
807 -textvariable @tooltip_text
\
810 _position_tooltip
$this
813 method _position_tooltip
{} {
814 set req_w
[winfo reqwidth
$tooltip_wm.
label]
815 set req_h
[winfo reqheight
$tooltip_wm.
label]
816 set pos_x
[expr {[winfo pointerx .
] + 5}]
817 set pos_y
[expr {[winfo pointery .
] + 10}]
819 set g
"${req_w}x${req_h}"
820 if {$pos_x >= 0} {append g
+}
822 if {$pos_y >= 0} {append g
+}
825 wm geometry
$tooltip_wm $g
829 method _hide_tooltip
{} {
830 if {$tooltip_wm ne
{}} {
833 set tooltip_commit
{}
835 if {$tooltip_timer ne
{}} {
836 after cancel
$tooltip_timer
841 method _resize
{new_height
} {
842 set diff
[expr {$new_height - $old_height}]
843 if {$diff == 0} return
845 set my
[expr {[winfo height
$w.file_pane
] - 25}]
846 set o
[$w.file_pane sash coord
0]
848 set oy
[expr {[lindex $o 1] + $diff}]
849 if {$oy < 0} {set oy
0}
850 if {$oy > $my} {set oy
$my}
851 $w.file_pane sash
place 0 $ox $oy
853 set old_height
$new_height