git-gui: Switch internal blame structure to Tcl lists

The Tcl list datatype is significantly faster to work with than
the array type, especially if our indexes are a consecutive set
of numbers, like say line numbers in a file.

This rather large change reorganizes the internal data structure
of the blame viewer to use a proper Tcl list for the annotation
information about a line.  Each line is given its own list within
the larger line_data list, where the indexes correspond to various
facts about that particular line.

The interface does seem to be more responsive this way, with less
time required by Tcl to process blame, and to switch to another
version of the same file.  It could just be a placebo effect, but
either way most Tcl experts perfer lists for this type of work over
arrays.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
This commit is contained in:
Shawn O. Pearce 2007-06-02 16:01:43 -04:00
parent 14c4dfd3d1
commit 2f85b7e4b4

View File

@ -45,8 +45,7 @@ field old_bgcolor {} ; # background of current selection
field total_lines 0 ; # total length of file field total_lines 0 ; # total length of file
field blame_lines 0 ; # number of lines computed field blame_lines 0 ; # number of lines computed
field have_commit ; # array commit -> 1 field have_commit ; # array commit -> 1
field line_commit ; # array line -> sha1 commit field line_data ; # list of {commit origfile origline}
field line_file ; # array line -> file name
field r_commit ; # commit currently being parsed field r_commit ; # commit currently being parsed
field r_orig_line ; # original line number field r_orig_line ; # original line number
@ -314,8 +313,6 @@ method _load {} {
set total_lines 0 set total_lines 0
set blame_lines 0 set blame_lines 0
array unset have_commit array unset have_commit
array unset line_commit
array unset line_file
} }
if {[winfo exists $w.status.c]} { if {[winfo exists $w.status.c]} {
@ -338,6 +335,12 @@ method _load {} {
} }
lappend history [list $commit $path] lappend history [list $commit $path]
# Index 0 is always empty. There is never line 0 as
# we use only 1 based lines, as that matches both with
# git-blame output and with Tk's text widget.
#
set line_data [list [list]]
set status "Loading $commit:[escape_path $path]..." set status "Loading $commit:[escape_path $path]..."
$w_path conf -text [escape_path $path] $w_path conf -text [escape_path $path]
if {$commit eq {}} { if {$commit eq {}} {
@ -401,6 +404,7 @@ method _read_file {fd} {
while {[gets $fd line] >= 0} { while {[gets $fd line] >= 0} {
regsub "\r\$" $line {} line regsub "\r\$" $line {} line
incr total_lines incr total_lines
lappend line_data {}
if {$total_lines > 1} { if {$total_lines > 1} {
foreach i $w_columns {$i insert end "\n"} foreach i $w_columns {$i insert end "\n"}
@ -499,24 +503,22 @@ method _read_blame {fd} {
set first_lno $lno set first_lno $lno
while { while {
![catch {set ncmit $line_commit([expr {$first_lno - 1}])}] $first_lno > 1
&& ![catch {set nfile $line_file([expr {$first_lno - 1}])}] && $cmit eq [lindex $line_data [expr {$first_lno - 1}] 0]
&& $ncmit eq $cmit && $file eq [lindex $line_data [expr {$first_lno - 1}] 1]
&& $nfile eq $file
} { } {
incr first_lno -1 incr first_lno -1
} }
while {$n > 0} { while {$n > 0} {
set lno_e "$lno.0 lineend + 1c" set lno_e "$lno.0 lineend + 1c"
if {![catch {set g g$line_commit($lno)}]} { if {[lindex $line_data $lno] ne {}} {
set g [lindex $line_data $lno 0]
foreach i $w_columns { foreach i $w_columns {
$i tag remove g$g $lno.0 $lno_e $i tag remove g$g $lno.0 $lno_e
} }
} }
lset line_data $lno [list $cmit $file]
set line_commit($lno) $cmit
set line_file($lno) $file
$w_cgrp delete $lno.0 "$lno.0 lineend" $w_cgrp delete $lno.0 "$lno.0 lineend"
if {$lno == $first_lno} { if {$lno == $first_lno} {
@ -546,10 +548,8 @@ method _read_blame {fd} {
} }
while { while {
![catch {set ncmit $line_commit($lno)}] $cmit eq [lindex $line_data $lno 0]
&& ![catch {set nfile $line_file($lno)}] && $file eq [lindex $line_data $lno 1]
&& $ncmit eq $cmit
&& $nfile eq $file
} { } {
$w_cgrp delete $lno.0 "$lno.0 lineend" $w_cgrp delete $lno.0 "$lno.0 lineend"
@ -599,12 +599,12 @@ method _click {cur_w pos} {
method _load_commit {pos} { method _load_commit {pos} {
set lno [lindex [split [$w_cgrp index $pos] .] 0] set lno [lindex [split [$w_cgrp index $pos] .] 0]
if {[catch {set cmit $line_commit($lno)}]} return set dat [lindex $line_data $lno]
if {[catch {set file $line_file($lno) }]} return if {$dat ne {}} {
set commit [lindex $dat 0]
set commit $cmit set path [lindex $dat 1]
set path $file _load $this
_load $this }
} }
method _showcommit {lno} { method _showcommit {lno} {
@ -618,10 +618,15 @@ method _showcommit {lno} {
$w_cmit conf -state normal $w_cmit conf -state normal
$w_cmit delete 0.0 end $w_cmit delete 0.0 end
if {[catch {set cmit $line_commit($lno)}]} {
set dat [lindex $line_data $lno]
if {$dat eq {}} {
set cmit {} set cmit {}
$w_cmit insert end "Loading annotation..." $w_cmit insert end "Loading annotation..."
} else { } else {
set cmit [lindex $dat 0]
set file [lindex $dat 1]
set old_bgcolor [$w_file tag cget g$cmit -background] set old_bgcolor [$w_file tag cget g$cmit -background]
foreach i $w_columns { foreach i $w_columns {
$i tag conf g$cmit -background $active_color $i tag conf g$cmit -background $active_color
@ -682,9 +687,9 @@ method _showcommit {lno} {
$w_cmit insert end "$committer_name $committer_email" header_val $w_cmit insert end "$committer_name $committer_email" header_val
$w_cmit insert end "$committer_time\n" header_val $w_cmit insert end "$committer_time\n" header_val
if {$line_file($lno) ne $path} { if {$file ne $path} {
$w_cmit insert end "Original File:\t" header_key $w_cmit insert end "Original File:\t" header_key
$w_cmit insert end "[escape_path $line_file($lno)]\n" header_val $w_cmit insert end "[escape_path $file]\n" header_val
} }
$w_cmit insert end "\n$msg" $w_cmit insert end "\n$msg"
@ -702,21 +707,24 @@ method _showcommit {lno} {
method _copycommit {} { method _copycommit {} {
set pos @$::cursorX,$::cursorY set pos @$::cursorX,$::cursorY
set lno [lindex [split [$::cursorW index $pos] .] 0] set lno [lindex [split [$::cursorW index $pos] .] 0]
if {![catch {set commit $line_commit($lno)}]} { set dat [lindex $line_data $lno]
if {$dat ne {}} {
clipboard clear clipboard clear
clipboard append \ clipboard append \
-format STRING \ -format STRING \
-type STRING \ -type STRING \
-- $commit -- [lindex $dat 0]
} }
} }
method _show_tooltip {cur_w pos} { method _show_tooltip {cur_w pos} {
set lno [lindex [split [$cur_w index $pos] .] 0] set lno [lindex [split [$cur_w index $pos] .] 0]
if {[catch {set cmit $line_commit($lno)}]} { set dat [lindex $line_data $lno]
if {$dat eq {}} {
_hide_tooltip $this _hide_tooltip $this
return return
} }
set cmit [lindex $dat 0]
if {$cmit eq $highlight_commit} { if {$cmit eq $highlight_commit} {
_hide_tooltip $this _hide_tooltip $this
@ -745,7 +753,9 @@ method _open_tooltip {cur_w} {
[expr {$pos_x - [winfo rootx $cur_w]}] \ [expr {$pos_x - [winfo rootx $cur_w]}] \
[expr {$pos_y - [winfo rooty $cur_w]}]] ,] [expr {$pos_y - [winfo rooty $cur_w]}]] ,]
set lno [lindex [split [$cur_w index $pos] .] 0] set lno [lindex [split [$cur_w index $pos] .] 0]
set cmit $line_commit($lno) set dat [lindex $line_data $lno]
set cmit [lindex $dat 0]
set file [lindex $dat 1]
set author_name {} set author_name {}
set author_email {} set author_email {}
@ -775,7 +785,6 @@ method _open_tooltip {cur_w} {
$author_name $author_email $author_time $author_name $author_email $author_time
$summary" $summary"
set file $line_file($lno)
if {$file ne $path} { if {$file ne $path} {
append tooltip_text " append tooltip_text "