2 # Tcl ignores the next line -*- tcl -*- \
5 # Copyright (C) 2005 Paul Mackerras. All rights reserved.
6 # This program is free software; it may be used, copied, modified
7 # and distributed under the terms of the GNU General Public Licence,
8 # either version 2, or (at your option) any later version.
12 if {[info exists env
(GIT_DIR
)]} {
19 proc getcommits
{rargs
} {
20 global commits commfd phase canv mainfont env
21 global startmsecs nextupdate ncmupdate
22 global ctext maincursor textcursor leftover gitencoding
24 # check that we can find a .git directory somewhere...
26 if {![file isdirectory
$gitdir]} {
27 error_popup
"Cannot find the git directory \"$gitdir\"."
32 set startmsecs
[clock clicks
-milliseconds]
33 set nextupdate
[expr {$startmsecs + 100}]
36 set parse_args
[concat
--default HEAD
$rargs]
37 set parsed_args
[split [eval exec git-rev-parse
$parse_args] "\n"]
39 # if git-rev-parse failed for some reason...
43 set parsed_args
$rargs
46 set commfd
[open
"|git-rev-list --header --topo-order --parents $parsed_args" r
]
48 puts stderr
"Error executing git-rev-list: $err"
52 fconfigure
$commfd -blocking 0 -translation lf
-encoding $gitencoding
53 fileevent
$commfd readable
[list getcommitlines
$commfd]
55 $canv create text
3 3 -anchor nw
-text "Reading commits..." \
56 -font $mainfont -tags textitems
57 . config
-cursor watch
61 proc getcommitlines
{commfd
} {
62 global commits parents cdate children
63 global commitlisted phase nextupdate
64 global stopped redisplaying leftover
66 set stuff
[read $commfd]
68 if {![eof
$commfd]} return
69 # set it blocking so we wait for the process to terminate
70 fconfigure
$commfd -blocking 1
71 if {![catch
{close
$commfd} err
]} {
72 after idle finishcommits
75 if {[string range
$err 0 4] == "usage"} {
77 "Gitk: error reading commits: bad arguments to git-rev-list.\
78 (Note: arguments to gitk are passed to git-rev-list\
79 to allow selection of commits to be displayed.)"
81 set err
"Error reading commits: $err"
88 set i
[string first
"\0" $stuff $start]
90 append leftover
[string range
$stuff $start end
]
93 set cmit
[string range
$stuff $start [expr {$i - 1}]]
95 set cmit
"$leftover$cmit"
98 set start
[expr {$i + 1}]
99 set j
[string first
"\n" $cmit]
102 set ids
[string range
$cmit 0 [expr {$j - 1}]]
105 if {![regexp
{^
[0-9a-f]{40}$
} $id]} {
113 if {[string length
$shortcmit] > 80} {
114 set shortcmit
"[string range $shortcmit 0 80]..."
116 error_popup
"Can't parse git-rev-list output: {$shortcmit}"
119 set id
[lindex
$ids 0]
120 set olds
[lrange
$ids 1 end
]
121 set cmit
[string range
$cmit [expr {$j + 1}] end
]
123 set commitlisted
($id) 1
124 parsecommit
$id $cmit 1 [lrange
$ids 1 end
]
126 if {[clock clicks
-milliseconds] >= $nextupdate} {
129 while {$redisplaying} {
133 set phase
"getcommits"
134 foreach id
$commits {
137 if {[clock clicks
-milliseconds] >= $nextupdate} {
146 proc doupdate
{reading
} {
147 global commfd nextupdate numcommits ncmupdate
150 fileevent
$commfd readable
{}
153 set nextupdate
[expr {[clock clicks
-milliseconds] + 100}]
154 if {$numcommits < 100} {
155 set ncmupdate
[expr {$numcommits + 1}]
156 } elseif
{$numcommits < 10000} {
157 set ncmupdate
[expr {$numcommits + 10}]
159 set ncmupdate
[expr {$numcommits + 100}]
162 fileevent
$commfd readable
[list getcommitlines
$commfd]
166 proc readcommit
{id
} {
167 if [catch
{set contents
[exec git-cat-file commit
$id]}] return
168 parsecommit
$id $contents 0 {}
171 proc parsecommit
{id contents listed olds
} {
172 global commitinfo children nchildren parents nparents cdate ncleft
181 if {![info exists nchildren
($id)]} {
186 set parents
($id) $olds
187 set nparents
($id) [llength
$olds]
189 if {![info exists nchildren
($p)]} {
190 set children
($p) [list
$id]
193 } elseif
{[lsearch
-exact $children($p) $id] < 0} {
194 lappend children
($p) $id
199 set hdrend
[string first
"\n\n" $contents]
201 # should never happen...
202 set hdrend
[string length
$contents]
204 set header
[string range
$contents 0 [expr {$hdrend - 1}]]
205 set comment
[string range
$contents [expr {$hdrend + 2}] end
]
206 foreach line
[split $header "\n"] {
207 set tag
[lindex
$line 0]
208 if {$tag == "author"} {
209 set audate
[lindex
$line end-1
]
210 set auname
[lrange
$line 1 end-2
]
211 } elseif
{$tag == "committer"} {
212 set comdate
[lindex
$line end-1
]
213 set comname
[lrange
$line 1 end-2
]
217 # take the first line of the comment as the headline
218 set i
[string first
"\n" $comment]
220 set headline
[string trim
[string range
$comment 0 $i]]
222 set headline
$comment
225 # git-rev-list indents the comment by 4 spaces;
226 # if we got this via git-cat-file, add the indentation
228 foreach line
[split $comment "\n"] {
229 append newcomment
" "
230 append newcomment
$line
231 append newcomment
"\n"
233 set comment
$newcomment
235 if {$comdate != {}} {
236 set cdate
($id) $comdate
238 set commitinfo
($id) [list
$headline $auname $audate \
239 $comname $comdate $comment]
243 global tagids idtags headids idheads tagcontents
244 global otherrefids idotherrefs
246 set refd
[open
[list | git-ls-remote
[gitdir
]] r
]
247 while {0 <= [set n
[gets
$refd line
]]} {
248 if {![regexp
{^
([0-9a-f]{40}) refs
/([^^
]*)$
} $line \
252 if {![regexp
{^
(tags|heads
)/(.
*)$
} $path match
type name
]} {
256 if {$type == "tags"} {
257 set tagids
($name) $id
258 lappend idtags
($id) $name
263 set commit
[exec git-rev-parse
"$id^0"]
264 if {"$commit" != "$id"} {
265 set tagids
($name) $commit
266 lappend idtags
($commit) $name
270 set tagcontents
($name) [exec git-cat-file tag
"$id"]
272 } elseif
{ $type == "heads" } {
273 set headids
($name) $id
274 lappend idheads
($id) $name
276 set otherrefids
($name) $id
277 lappend idotherrefs
($id) $name
283 proc error_popup msg
{
287 message
$w.m
-text $msg -justify center
-aspect 400
288 pack
$w.m
-side top
-fill x
-padx 20 -pady 20
289 button
$w.ok
-text OK
-command "destroy $w"
290 pack
$w.ok
-side bottom
-fill x
291 bind $w <Visibility
> "grab $w; focus $w"
296 global canv canv2 canv3 linespc charspc ctext cflist textfont
297 global findtype findtypemenu findloc findstring fstring geometry
298 global entries sha1entry sha1string sha1but
299 global maincursor textcursor curtextcursor
300 global rowctxmenu gaudydiff mergemax
303 .bar add cascade
-label "File" -menu .bar.
file
305 .bar.
file add
command -label "Reread references" -command rereadrefs
306 .bar.
file add
command -label "Quit" -command doquit
308 .bar add cascade
-label "Help" -menu .bar.
help
309 .bar.
help add
command -label "About gitk" -command about
310 . configure
-menu .bar
312 if {![info exists geometry
(canv1
)]} {
313 set geometry
(canv1
) [expr {45 * $charspc}]
314 set geometry
(canv2
) [expr {30 * $charspc}]
315 set geometry
(canv3
) [expr {15 * $charspc}]
316 set geometry
(canvh
) [expr {25 * $linespc + 4}]
317 set geometry
(ctextw
) 80
318 set geometry
(ctexth
) 30
319 set geometry
(cflistw
) 30
321 panedwindow .ctop
-orient vertical
322 if {[info exists geometry
(width
)]} {
323 .ctop conf
-width $geometry(width
) -height $geometry(height
)
324 set texth
[expr {$geometry(height
) - $geometry(canvh
) - 56}]
325 set geometry
(ctexth
) [expr {($texth - 8) /
326 [font metrics
$textfont -linespace]}]
330 pack .ctop.top.bar
-side bottom
-fill x
331 set cscroll .ctop.top.csb
332 scrollbar
$cscroll -command {allcanvs yview
} -highlightthickness 0
333 pack
$cscroll -side right
-fill y
334 panedwindow .ctop.top.clist
-orient horizontal
-sashpad 0 -handlesize 4
335 pack .ctop.top.clist
-side top
-fill both
-expand 1
337 set canv .ctop.top.clist.canv
338 canvas
$canv -height $geometry(canvh
) -width $geometry(canv1
) \
340 -yscrollincr $linespc -yscrollcommand "$cscroll set"
341 .ctop.top.clist add
$canv
342 set canv2 .ctop.top.clist.canv2
343 canvas
$canv2 -height $geometry(canvh
) -width $geometry(canv2
) \
344 -bg white
-bd 0 -yscrollincr $linespc
345 .ctop.top.clist add
$canv2
346 set canv3 .ctop.top.clist.canv3
347 canvas
$canv3 -height $geometry(canvh
) -width $geometry(canv3
) \
348 -bg white
-bd 0 -yscrollincr $linespc
349 .ctop.top.clist add
$canv3
350 bind .ctop.top.clist
<Configure
> {resizeclistpanes
%W
%w
}
352 set sha1entry .ctop.top.bar.sha1
353 set entries
$sha1entry
354 set sha1but .ctop.top.bar.sha1label
355 button
$sha1but -text "SHA1 ID: " -state disabled
-relief flat \
356 -command gotocommit
-width 8
357 $sha1but conf
-disabledforeground [$sha1but cget
-foreground]
358 pack .ctop.top.bar.sha1label
-side left
359 entry
$sha1entry -width 40 -font $textfont -textvariable sha1string
360 trace add variable sha1string
write sha1change
361 pack
$sha1entry -side left
-pady 2
363 image create bitmap bm-left
-data {
364 #define left_width 16
365 #define left_height 16
366 static unsigned char left_bits
[] = {
367 0x00, 0x00, 0xc0, 0x01, 0xe0, 0x00, 0x70, 0x00, 0x38, 0x00, 0x1c, 0x00,
368 0x0e, 0x00, 0xff, 0x7f, 0xff, 0x7f, 0xff, 0x7f, 0x0e, 0x00, 0x1c, 0x00,
369 0x38, 0x00, 0x70, 0x00, 0xe0, 0x00, 0xc0, 0x01};
371 image create bitmap bm-right
-data {
372 #define right_width 16
373 #define right_height 16
374 static unsigned char right_bits
[] = {
375 0x00, 0x00, 0xc0, 0x01, 0x80, 0x03, 0x00, 0x07, 0x00, 0x0e, 0x00, 0x1c,
376 0x00, 0x38, 0xff, 0x7f, 0xff, 0x7f, 0xff, 0x7f, 0x00, 0x38, 0x00, 0x1c,
377 0x00, 0x0e, 0x00, 0x07, 0x80, 0x03, 0xc0, 0x01};
379 button .ctop.top.bar.leftbut
-image bm-left
-command goback \
380 -state disabled
-width 26
381 pack .ctop.top.bar.leftbut
-side left
-fill y
382 button .ctop.top.bar.rightbut
-image bm-right
-command goforw \
383 -state disabled
-width 26
384 pack .ctop.top.bar.rightbut
-side left
-fill y
386 button .ctop.top.bar.findbut
-text "Find" -command dofind
387 pack .ctop.top.bar.findbut
-side left
389 set fstring .ctop.top.bar.findstring
390 lappend entries
$fstring
391 entry
$fstring -width 30 -font $textfont -textvariable findstring
392 pack
$fstring -side left
-expand 1 -fill x
394 set findtypemenu
[tk_optionMenu .ctop.top.bar.findtype \
395 findtype Exact IgnCase Regexp
]
396 set findloc
"All fields"
397 tk_optionMenu .ctop.top.bar.findloc findloc
"All fields" Headline \
398 Comments Author Committer Files Pickaxe
399 pack .ctop.top.bar.findloc
-side right
400 pack .ctop.top.bar.findtype
-side right
401 # for making sure type==Exact whenever loc==Pickaxe
402 trace add variable findloc
write findlocchange
404 panedwindow .ctop.cdet
-orient horizontal
406 frame .ctop.cdet.left
407 set ctext .ctop.cdet.left.ctext
408 text
$ctext -bg white
-state disabled
-font $textfont \
409 -width $geometry(ctextw
) -height $geometry(ctexth
) \
410 -yscrollcommand ".ctop.cdet.left.sb set" -wrap none
411 scrollbar .ctop.cdet.left.sb
-command "$ctext yview"
412 pack .ctop.cdet.left.sb
-side right
-fill y
413 pack
$ctext -side left
-fill both
-expand 1
414 .ctop.cdet add .ctop.cdet.left
416 $ctext tag conf filesep
-font [concat
$textfont bold
] -back "#aaaaaa"
418 $ctext tag conf hunksep
-back blue
-fore white
419 $ctext tag conf d0
-back "#ff8080"
420 $ctext tag conf d1
-back green
422 $ctext tag conf hunksep
-fore blue
423 $ctext tag conf d0
-fore red
424 $ctext tag conf d1
-fore "#00a000"
425 $ctext tag conf m0
-fore red
426 $ctext tag conf m1
-fore blue
427 $ctext tag conf m2
-fore green
428 $ctext tag conf m3
-fore purple
429 $ctext tag conf
m4 -fore brown
430 $ctext tag conf mmax
-fore darkgrey
432 $ctext tag conf mresult
-font [concat
$textfont bold
]
433 $ctext tag conf msep
-font [concat
$textfont bold
]
434 $ctext tag conf found
-back yellow
437 frame .ctop.cdet.right
438 set cflist .ctop.cdet.right.cfiles
439 listbox
$cflist -bg white
-selectmode extended
-width $geometry(cflistw
) \
440 -yscrollcommand ".ctop.cdet.right.sb set"
441 scrollbar .ctop.cdet.right.sb
-command "$cflist yview"
442 pack .ctop.cdet.right.sb
-side right
-fill y
443 pack
$cflist -side left
-fill both
-expand 1
444 .ctop.cdet add .ctop.cdet.right
445 bind .ctop.cdet
<Configure
> {resizecdetpanes
%W
%w
}
447 pack .ctop
-side top
-fill both
-expand 1
449 bindall
<1> {selcanvline
%W
%x
%y
}
450 #bindall <B1-Motion> {selcanvline %W %x %y}
451 bindall
<ButtonRelease-4
> "allcanvs yview scroll -5 units"
452 bindall
<ButtonRelease-5
> "allcanvs yview scroll 5 units"
453 bindall
<2> "allcanvs scan mark 0 %y"
454 bindall
<B2-Motion
> "allcanvs scan dragto 0 %y"
455 bind .
<Key-Up
> "selnextline -1"
456 bind .
<Key-Down
> "selnextline 1"
457 bind .
<Key-Right
> "goforw"
458 bind .
<Key-Left
> "goback"
459 bind .
<Key-Prior
> "allcanvs yview scroll -1 pages"
460 bind .
<Key-Next
> "allcanvs yview scroll 1 pages"
461 bindkey
<Key-Delete
> "$ctext yview scroll -1 pages"
462 bindkey
<Key-BackSpace
> "$ctext yview scroll -1 pages"
463 bindkey
<Key-space
> "$ctext yview scroll 1 pages"
464 bindkey p
"selnextline -1"
465 bindkey n
"selnextline 1"
468 bindkey i
"selnextline -1"
469 bindkey k
"selnextline 1"
472 bindkey b
"$ctext yview scroll -1 pages"
473 bindkey d
"$ctext yview scroll 18 units"
474 bindkey u
"$ctext yview scroll -18 units"
475 bindkey
/ {findnext
1}
476 bindkey
<Key-Return
> {findnext
0}
479 bind .
<Control-q
> doquit
480 bind .
<Control-f
> dofind
481 bind .
<Control-g
> {findnext
0}
482 bind .
<Control-r
> findprev
483 bind .
<Control-equal
> {incrfont
1}
484 bind .
<Control-KP_Add
> {incrfont
1}
485 bind .
<Control-minus
> {incrfont
-1}
486 bind .
<Control-KP_Subtract
> {incrfont
-1}
487 bind $cflist <<ListboxSelect>> listboxsel
488 bind . <Destroy> {savestuff %W}
489 bind . <Button-1> "click %W"
490 bind $fstring <Key-Return> dofind
491 bind $sha1entry <Key-Return> gotocommit
492 bind $sha1entry <<PasteSelection>> clearsha1
494 set maincursor [. cget -cursor]
495 set textcursor [$ctext cget -cursor]
496 set curtextcursor $textcursor
498 set rowctxmenu .rowctxmenu
499 menu $rowctxmenu -tearoff 0
500 $rowctxmenu add command -label "Diff this -> selected" \
501 -command {diffvssel 0}
502 $rowctxmenu add command -label "Diff selected -> this" \
503 -command {diffvssel 1}
504 $rowctxmenu add command -label "Make patch" -command mkpatch
505 $rowctxmenu add command -label "Create tag" -command mktag
506 $rowctxmenu add command -label "Write commit to file" -command writecommit
509 # when we make a key binding for the toplevel, make sure
510 # it doesn't get triggered when that key is pressed in the
511 # find string entry widget.
512 proc bindkey {ev script} {
515 set escript [bind Entry $ev]
516 if {$escript == {}} {
517 set escript [bind Entry <Key>]
520 bind $e $ev "$escript; break"
524 # set the focus back to the toplevel for any click outside
535 global canv canv2 canv3 ctext cflist mainfont textfont
536 global stuffsaved findmergefiles gaudydiff maxgraphpct
539 if {$stuffsaved} return
540 if {![winfo viewable .]} return
542 set f [open "~/.gitk-new" w]
543 puts $f [list set mainfont $mainfont]
544 puts $f [list set textfont $textfont]
545 puts $f [list set findmergefiles $findmergefiles]
546 puts $f [list set gaudydiff $gaudydiff]
547 puts $f [list set maxgraphpct $maxgraphpct]
548 puts $f [list set maxwidth $maxwidth]
549 puts $f "set geometry(width) [winfo width .ctop]"
550 puts $f "set geometry(height) [winfo height .ctop]"
551 puts $f "set geometry(canv1) [expr {[winfo width $canv]-2}]"
552 puts $f "set geometry(canv2) [expr {[winfo width $canv2]-2}]"
553 puts $f "set geometry(canv3) [expr {[winfo width $canv3]-2}]"
554 puts $f "set geometry(canvh) [expr {[winfo height $canv]-2}]"
555 set wid [expr {([winfo width $ctext] - 8) \
556 / [font measure $textfont "0"]}]
557 puts $f "set geometry(ctextw) $wid"
558 set wid [expr {([winfo width $cflist] - 11) \
559 / [font measure [$cflist cget -font] "0"]}]
560 puts $f "set geometry(cflistw) $wid"
562 file rename -force "~/.gitk-new" "~/.gitk"
567 proc resizeclistpanes {win w} {
569 if [info exists oldwidth($win)] {
570 set s0 [$win sash coord 0]
571 set s1 [$win sash coord 1]
573 set sash0 [expr {int($w/2 - 2)}]
574 set sash1 [expr {int($w*5/6 - 2)}]
576 set factor [expr {1.0 * $w / $oldwidth($win)}]
577 set sash0 [expr {int($factor * [lindex $s0 0])}]
578 set sash1 [expr {int($factor * [lindex $s1 0])}]
582 if {$sash1 < $sash0 + 20} {
583 set sash1 [expr {$sash0 + 20}]
585 if {$sash1 > $w - 10} {
586 set sash1 [expr {$w - 10}]
587 if {$sash0 > $sash1 - 20} {
588 set sash0 [expr {$sash1 - 20}]
592 $win sash place 0 $sash0 [lindex $s0 1]
593 $win sash place 1 $sash1 [lindex $s1 1]
595 set oldwidth($win) $w
598 proc resizecdetpanes {win w} {
600 if [info exists oldwidth($win)] {
601 set s0 [$win sash coord 0]
603 set sash0 [expr {int($w*3/4 - 2)}]
605 set factor [expr {1.0 * $w / $oldwidth($win)}]
606 set sash0 [expr {int($factor * [lindex $s0 0])}]
610 if {$sash0 > $w - 15} {
611 set sash0 [expr {$w - 15}]
614 $win sash place 0 $sash0 [lindex $s0 1]
616 set oldwidth($win) $w
620 global canv canv2 canv3
626 proc bindall {event action} {
627 global canv canv2 canv3
628 bind $canv $event $action
629 bind $canv2 $event $action
630 bind $canv3 $event $action
635 if {[winfo exists $w]} {
640 wm title $w "About gitk"
644 Copyright © 2005 Paul Mackerras
646 Use and redistribute under the terms of the GNU General Public License} \
647 -justify center -aspect 400
648 pack $w.m -side top -fill x -padx 20 -pady 20
649 button $w.ok -text Close -command "destroy $w"
650 pack $w.ok -side bottom
653 proc assigncolor {id} {
654 global colormap commcolors colors nextcolor
655 global parents nparents children nchildren
656 global cornercrossings crossings
658 if [info exists colormap($id)] return
659 set ncolors [llength $colors]
660 if {$nparents($id) <= 1 && $nchildren($id) == 1} {
661 set child [lindex $children($id) 0]
662 if {[info exists colormap($child)]
663 && $nparents($child) == 1} {
664 set colormap($id) $colormap($child)
669 if {[info exists cornercrossings($id)]} {
670 foreach x $cornercrossings($id) {
671 if {[info exists colormap($x)]
672 && [lsearch -exact $badcolors $colormap($x)] < 0} {
673 lappend badcolors $colormap($x)
676 if {[llength $badcolors] >= $ncolors} {
680 set origbad $badcolors
681 if {[llength $badcolors] < $ncolors - 1} {
682 if {[info exists crossings($id)]} {
683 foreach x $crossings($id) {
684 if {[info exists colormap($x)]
685 && [lsearch -exact $badcolors $colormap($x)] < 0} {
686 lappend badcolors $colormap($x)
689 if {[llength $badcolors] >= $ncolors} {
690 set badcolors $origbad
693 set origbad $badcolors
695 if {[llength $badcolors] < $ncolors - 1} {
696 foreach child $children($id) {
697 if {[info exists colormap($child)]
698 && [lsearch -exact $badcolors $colormap($child)] < 0} {
699 lappend badcolors $colormap($child)
701 if {[info exists parents($child)]} {
702 foreach p $parents($child) {
703 if {[info exists colormap($p)]
704 && [lsearch -exact $badcolors $colormap($p)] < 0} {
705 lappend badcolors $colormap($p)
710 if {[llength $badcolors] >= $ncolors} {
711 set badcolors $origbad
714 for {set i 0} {$i <= $ncolors} {incr i} {
715 set c [lindex $colors $nextcolor]
716 if {[incr nextcolor] >= $ncolors} {
719 if {[lsearch -exact $badcolors $c]} break
725 global canvy canvy0 lineno numcommits nextcolor linespc
726 global mainline mainlinearrow sidelines
727 global nchildren ncleft
728 global displist nhyperspace
735 catch {unset mainline}
736 catch {unset mainlinearrow}
737 catch {unset sidelines}
738 foreach id [array names nchildren] {
739 set ncleft($id) $nchildren($id)
745 proc bindline {t id} {
748 $canv bind $t <Enter> "lineenter %x %y $id"
749 $canv bind $t <Motion> "linemotion %x %y $id"
750 $canv bind $t <Leave> "lineleave $id"
751 $canv bind $t <Button-1> "lineclick %x %y $id 1"
754 proc drawlines {id xtra delold} {
755 global mainline mainlinearrow sidelines lthickness colormap canv
758 $canv delete lines.$id
760 if {[info exists mainline($id)]} {
761 set t [$canv create line $mainline($id) \
762 -width [expr {($xtra + 1) * $lthickness}] \
763 -fill $colormap($id) -tags lines.$id \
764 -arrow $mainlinearrow($id)]
768 if {[info exists sidelines($id)]} {
769 foreach ls $sidelines($id) {
770 set coords [lindex $ls 0]
771 set thick [lindex $ls 1]
772 set arrow [lindex $ls 2]
773 set t [$canv create line $coords -fill $colormap($id) \
774 -width [expr {($thick + $xtra) * $lthickness}] \
775 -arrow $arrow -tags lines.$id]
782 # level here is an index in displist
783 proc drawcommitline {level} {
784 global parents children nparents displist
785 global canv canv2 canv3 mainfont namefont canvy linespc
786 global lineid linehtag linentag linedtag commitinfo
787 global colormap numcommits currentparents dupparents
788 global idtags idline idheads idotherrefs
789 global lineno lthickness mainline mainlinearrow sidelines
790 global commitlisted rowtextx idpos lastuse displist
791 global oldnlines olddlevel olddisplist
795 set id [lindex $displist $level]
796 set lastuse($id) $lineno
797 set lineid($lineno) $id
798 set idline($id) $lineno
799 set ofill [expr {[info exists commitlisted($id)]? "blue": "white"}]
800 if {![info exists commitinfo($id)]} {
802 if {![info exists commitinfo($id)]} {
803 set commitinfo($id) {"No commit information available"}
808 set currentparents {}
810 if {[info exists commitlisted($id)] && [info exists parents($id)]} {
811 foreach p $parents($id) {
812 if {[lsearch -exact $currentparents $p] < 0} {
813 lappend currentparents $p
815 # remember that this parent was listed twice
816 lappend dupparents $p
820 set x [xcoord $level $level $lineno]
822 set canvy [expr {$canvy + $linespc}]
823 allcanvs conf -scrollregion \
824 [list 0 0 0 [expr {$y1 + 0.5 * $linespc + 2}]]
825 if {[info exists mainline($id)]} {
826 lappend mainline($id) $x $y1
827 if {$mainlinearrow($id) ne "none"} {
828 set mainline($id) [trimdiagstart $mainline($id)]
832 set orad [expr {$linespc / 3}]
833 set t [$canv create oval [expr {$x - $orad}] [expr {$y1 - $orad}] \
834 [expr {$x + $orad - 1}] [expr {$y1 + $orad - 1}] \
835 -fill $ofill -outline black -width 1]
837 $canv bind $t <1> {selcanvline {} %x %y}
838 set xt [xcoord [llength $displist] $level $lineno]
839 if {[llength $currentparents] > 2} {
840 set xt [expr {$xt + ([llength $currentparents] - 2) * $linespc}]
842 set rowtextx($lineno) $xt
843 set idpos($id) [list $x $xt $y1]
844 if {[info exists idtags($id)] || [info exists idheads($id)]
845 || [info exists idotherrefs($id)]} {
846 set xt [drawtags $id $x $xt $y1]
848 set headline [lindex $commitinfo($id) 0]
849 set name [lindex $commitinfo($id) 1]
850 set date [lindex $commitinfo($id) 2]
851 set date [formatdate $date]
852 set linehtag($lineno) [$canv create text $xt $y1 -anchor w \
853 -text $headline -font $mainfont ]
854 $canv bind $linehtag($lineno) <Button-3> "rowmenu %X %Y $id"
855 set linentag($lineno) [$canv2 create text 3 $y1 -anchor w \
856 -text $name -font $namefont]
857 set linedtag($lineno) [$canv3 create text 3 $y1 -anchor w \
858 -text $date -font $mainfont]
861 set olddisplist $displist
862 set oldnlines [llength $displist]
865 proc drawtags {id x xt y1} {
866 global idtags idheads idotherrefs
867 global linespc lthickness
868 global canv mainfont idline rowtextx
873 if {[info exists idtags($id)]} {
874 set marks $idtags($id)
875 set ntags [llength $marks]
877 if {[info exists idheads($id)]} {
878 set marks [concat $marks $idheads($id)]
879 set nheads [llength $idheads($id)]
881 if {[info exists idotherrefs($id)]} {
882 set marks [concat $marks $idotherrefs($id)]
888 set delta [expr {int(0.5 * ($linespc - $lthickness))}]
889 set yt [expr {$y1 - 0.5 * $linespc}]
890 set yb [expr {$yt + $linespc - 1}]
894 set wid [font measure $mainfont $tag]
897 set xt [expr {$xt + $delta + $wid + $lthickness + $linespc}]
899 set t [$canv create line $x $y1 [lindex $xvals end] $y1 \
900 -width $lthickness -fill black -tags tag.$id]
902 foreach tag $marks x $xvals wid $wvals {
903 set xl [expr {$x + $delta}]
904 set xr [expr {$x + $delta + $wid + $lthickness}]
905 if {[incr ntags -1] >= 0} {
907 set t [$canv create polygon $x [expr {$yt + $delta}] $xl $yt \
908 $xr $yt $xr $yb $xl $yb $x [expr {$yb - $delta}] \
909 -width 1 -outline black -fill yellow -tags tag.$id]
910 $canv bind $t <1> [list showtag $tag 1]
911 set rowtextx($idline($id)) [expr {$xr + $linespc}]
913 # draw a head or other ref
914 if {[incr nheads -1] >= 0} {
919 set xl [expr {$xl - $delta/2}]
920 $canv create polygon $x $yt $xr $yt $xr $yb $x $yb \
921 -width 1 -outline black -fill $col -tags tag.$id
923 set t [$canv create text $xl $y1 -anchor w -text $tag \
924 -font $mainfont -tags tag.$id]
926 $canv bind $t <1> [list showtag $tag 1]
932 proc notecrossings {id lo hi corner} {
933 global olddisplist crossings cornercrossings
935 for {set i $lo} {[incr i] < $hi} {} {
936 set p [lindex $olddisplist $i]
937 if {$p == {}} continue
939 if {![info exists cornercrossings($id)]
940 || [lsearch -exact $cornercrossings($id) $p] < 0} {
941 lappend cornercrossings($id) $p
943 if {![info exists cornercrossings($p)]
944 || [lsearch -exact $cornercrossings($p) $id] < 0} {
945 lappend cornercrossings($p) $id
948 if {![info exists crossings($id)]
949 || [lsearch -exact $crossings($id) $p] < 0} {
950 lappend crossings($id) $p
952 if {![info exists crossings($p)]
953 || [lsearch -exact $crossings($p) $id] < 0} {
954 lappend crossings($p) $id
960 proc xcoord {i level ln} {
961 global canvx0 xspc1 xspc2
963 set x [expr {$canvx0 + $i * $xspc1($ln)}]
964 if {$i > 0 && $i == $level} {
965 set x [expr {$x + 0.5 * ($xspc2 - $xspc1($ln))}]
966 } elseif {$i > $level} {
967 set x [expr {$x + $xspc2 - $xspc1($ln)}]
972 # it seems Tk can't draw arrows on the end of diagonal line segments...
973 proc trimdiagend {line} {
974 while {[llength $line] > 4} {
975 set x1 [lindex $line end-3]
976 set y1 [lindex $line end-2]
977 set x2 [lindex $line end-1]
978 set y2 [lindex $line end]
979 if {($x1 == $x2) != ($y1 == $y2)} break
980 set line [lreplace $line end-1 end]
985 proc trimdiagstart {line} {
986 while {[llength $line] > 4} {
987 set x1 [lindex $line 0]
988 set y1 [lindex $line 1]
989 set x2 [lindex $line 2]
990 set y2 [lindex $line 3]
991 if {($x1 == $x2) != ($y1 == $y2)} break
992 set line [lreplace $line 0 1]
997 proc drawslants {id needonscreen nohs} {
998 global canv mainline mainlinearrow sidelines
999 global canvx0 canvy xspc1 xspc2 lthickness
1000 global currentparents dupparents
1001 global lthickness linespc canvy colormap lineno geometry
1002 global maxgraphpct maxwidth
1003 global displist onscreen lastuse
1004 global parents commitlisted
1005 global oldnlines olddlevel olddisplist
1006 global nhyperspace numcommits nnewparents
1009 lappend displist $id
1014 set y1 [expr {$canvy - $linespc}]
1017 # work out what we need to get back on screen
1019 if {$onscreen($id) < 0} {
1020 # next to do isn't displayed, better get it on screen...
1021 lappend reins [list $id 0]
1023 # make sure all the previous commits's parents are on the screen
1024 foreach p $currentparents {
1025 if {$onscreen($p) < 0} {
1026 lappend reins [list $p 0]
1029 # bring back anything requested by caller
1030 if {$needonscreen ne {}} {
1031 lappend reins $needonscreen
1035 if {$currentparents == $id && $onscreen($id) == 0 && $reins eq {}} {
1036 set dlevel $olddlevel
1037 set x [xcoord $dlevel $dlevel $lineno]
1038 set mainline($id) [list $x $y1]
1039 set mainlinearrow($id) none
1040 set lastuse($id) $lineno
1041 set displist [lreplace $displist $dlevel $dlevel $id]
1043 set xspc1([expr {$lineno + 1}]) $xspc1($lineno)
1048 set displist [lreplace $displist $olddlevel $olddlevel]
1050 foreach p $currentparents {
1051 set lastuse($p) $lineno
1052 if {$onscreen($p) == 0} {
1053 set displist [linsert $displist $j $p]
1058 if {$onscreen($id) == 0} {
1059 lappend displist $id
1063 # remove the null entry if present
1064 set nullentry [lsearch -exact $displist {}]
1065 if {$nullentry >= 0} {
1066 set displist [lreplace $displist $nullentry $nullentry]
1069 # bring back the ones we need now (if we did it earlier
1070 # it would change displist and invalidate olddlevel)
1072 # test again in case of duplicates in reins
1073 set p [lindex $pi 0]
1074 if {$onscreen($p) < 0} {
1076 set lastuse($p) $lineno
1077 set displist [linsert $displist [lindex $pi 1] $p]
1082 set lastuse($id) $lineno
1084 # see if we need to make any lines jump off into hyperspace
1085 set displ [llength $displist]
1086 if {$displ > $maxwidth} {
1088 foreach x $displist {
1089 lappend ages [list $lastuse($x) $x]
1091 set ages [lsort -integer -index 0 $ages]
1093 while {$displ > $maxwidth} {
1094 set use [lindex $ages $k 0]
1095 set victim [lindex $ages $k 1]
1096 if {$use >= $lineno - 5} break
1098 if {[lsearch -exact $nohs $victim] >= 0} continue
1099 set i [lsearch -exact $displist $victim]
1100 set displist [lreplace $displist $i $i]
1101 set onscreen($victim) -1
1104 if {$i < $nullentry} {
1107 set x [lindex $mainline($victim) end-1]
1108 lappend mainline($victim) $x $y1
1109 set line [trimdiagend $mainline($victim)]
1111 if {$mainlinearrow($victim) ne "none"} {
1112 set line [trimdiagstart $line]
1115 lappend sidelines($victim) [list $line 1 $arrow]
1116 unset mainline($victim)
1120 set dlevel [lsearch -exact $displist $id]
1122 # If we are reducing, put in a null entry
1123 if {$displ < $oldnlines} {
1124 # does the next line look like a merge?
1125 # i.e. does it have > 1 new parent?
1126 if {$nnewparents($id) > 1} {
1127 set i [expr {$dlevel + 1}]
1128 } elseif {$nnewparents([lindex $olddisplist $olddlevel]) == 0} {
1130 if {$nullentry >= 0 && $nullentry < $i} {
1133 } elseif {$nullentry >= 0} {
1136 && [lindex $olddisplist $i] == [lindex $displist $i]} {
1141 if {$dlevel >= $i} {
1146 set displist [linsert $displist $i {}]
1148 if {$dlevel >= $i} {
1154 # decide on the line spacing for the next line
1155 set lj [expr {$lineno + 1}]
1156 set maxw [expr {$maxgraphpct * $geometry(canv1) / 100}]
1157 if {$displ <= 1 || $canvx0 + $displ * $xspc2 <= $maxw} {
1158 set xspc1($lj) $xspc2
1160 set xspc1($lj) [expr {($maxw - $canvx0 - $xspc2) / ($displ - 1)}]
1161 if {$xspc1($lj) < $lthickness} {
1162 set xspc1($lj) $lthickness
1166 foreach idi $reins {
1167 set id [lindex $idi 0]
1168 set j [lsearch -exact $displist $id]
1169 set xj [xcoord $j $dlevel $lj]
1170 set mainline($id) [list $xj $y2]
1171 set mainlinearrow($id) first
1175 foreach id $olddisplist {
1177 if {$id == {}} continue
1178 if {$onscreen($id) <= 0} continue
1179 set xi [xcoord $i $olddlevel $lineno]
1180 if {$i == $olddlevel} {
1181 foreach p $currentparents {
1182 set j [lsearch -exact $displist $p]
1183 set coords [list $xi $y1]
1184 set xj [xcoord $j $dlevel $lj]
1185 if {$xj < $xi - $linespc} {
1186 lappend coords [expr {$xj + $linespc}] $y1
1187 notecrossings $p $j $i [expr {$j + 1}]
1188 } elseif {$xj > $xi + $linespc} {
1189 lappend coords [expr {$xj - $linespc}] $y1
1190 notecrossings $p $i $j [expr {$j - 1}]
1192 if {[lsearch -exact $dupparents $p] >= 0} {
1193 # draw a double-width line to indicate the doubled parent
1194 lappend coords $xj $y2
1195 lappend sidelines($p) [list $coords 2 none]
1196 if {![info exists mainline($p)]} {
1197 set mainline($p) [list $xj $y2]
1198 set mainlinearrow($p) none
1201 # normal case, no parent duplicated
1203 set dx [expr {abs($xi - $xj)}]
1204 if {0 && $dx < $linespc} {
1205 set yb [expr {$y1 + $dx}]
1207 if {![info exists mainline($p)]} {
1209 lappend coords $xj $yb
1211 set mainline($p) $coords
1212 set mainlinearrow($p) none
1214 lappend coords $xj $yb
1216 lappend coords $xj $y2
1218 lappend sidelines($p) [list $coords 1 none]
1224 if {[lindex $displist $i] != $id} {
1225 set j [lsearch -exact $displist $id]
1227 if {$j != $i || $xspc1($lineno) != $xspc1($lj)
1228 || ($olddlevel < $i && $i < $dlevel)
1229 || ($dlevel < $i && $i < $olddlevel)} {
1230 set xj [xcoord $j $dlevel $lj]
1231 lappend mainline($id) $xi $y1 $xj $y2
1238 # search for x in a list of lists
1239 proc llsearch {llist x} {
1242 if {$l == $x || [lsearch -exact $l $x] >= 0} {
1250 proc drawmore {reading} {
1251 global displayorder numcommits ncmupdate nextupdate
1252 global stopped nhyperspace parents commitlisted
1253 global maxwidth onscreen displist currentparents olddlevel
1255 set n [llength $displayorder]
1256 while {$numcommits < $n} {
1257 set id [lindex $displayorder $numcommits]
1258 set ctxend [expr {$numcommits + 10}]
1259 if {!$reading && $ctxend > $n} {
1263 if {$numcommits > 0} {
1264 set dlist [lreplace $displist $olddlevel $olddlevel]
1266 foreach p $currentparents {
1267 if {$onscreen($p) == 0} {
1268 set dlist [linsert $dlist $i $p]
1275 set isfat [expr {[llength $dlist] > $maxwidth}]
1276 if {$nhyperspace > 0 || $isfat} {
1277 if {$ctxend > $n} break
1278 # work out what to bring back and
1279 # what we want to don't want to send into hyperspace
1281 for {set k $numcommits} {$k < $ctxend} {incr k} {
1282 set x [lindex $displayorder $k]
1283 set i [llsearch $dlist $x]
1285 set i [llength $dlist]
1288 if {[lsearch -exact $nohs $x] < 0} {
1291 if {$reins eq {} && $onscreen($x) < 0 && $room} {
1292 set reins [list $x $i]
1295 if {[info exists commitlisted($x)]} {
1297 foreach p $parents($x) {
1298 if {[llsearch $dlist $p] < 0} {
1300 if {[lsearch -exact $nohs $p] < 0} {
1303 if {$reins eq {} && $onscreen($p) < 0 && $room} {
1304 set reins [list $p [expr {$i + $right}]]
1310 set l [lindex $dlist $i]
1311 if {[llength $l] == 1} {
1314 set j [lsearch -exact $l $x]
1315 set l [concat [lreplace $l $j $j] $newp]
1317 set dlist [lreplace $dlist $i $i $l]
1318 if {$room && $isfat && [llength $newp] <= 1} {
1324 set dlevel [drawslants $id $reins $nohs]
1325 drawcommitline $dlevel
1326 if {[clock clicks -milliseconds] >= $nextupdate
1327 && $numcommits >= $ncmupdate} {
1334 # level here is an index in todo
1335 proc updatetodo {level noshortcut} {
1336 global ncleft todo nnewparents
1337 global commitlisted parents onscreen
1339 set id [lindex $todo $level]
1341 if {[info exists commitlisted($id)]} {
1342 foreach p $parents($id) {
1343 if {[lsearch -exact $olds $p] < 0} {
1348 if {!$noshortcut && [llength $olds] == 1} {
1349 set p [lindex $olds 0]
1350 if {$ncleft($p) == 1 && [lsearch -exact $todo $p] < 0} {
1352 set todo [lreplace $todo $level $level $p]
1354 set nnewparents($id) 1
1359 set todo [lreplace $todo $level $level]
1364 set k [lsearch -exact $todo $p]
1366 set todo [linsert $todo $i $p]
1372 set nnewparents($id) $n
1377 proc decidenext {{noread 0}} {
1379 global datemode cdate
1382 # choose which one to do next time around
1383 set todol [llength $todo]
1386 for {set k $todol} {[incr k -1] >= 0} {} {
1387 set p [lindex $todo $k]
1388 if {$ncleft($p) == 0} {
1390 if {![info exists commitinfo($p)]} {
1396 if {$latest == {} || $cdate($p) > $latest} {
1398 set latest $cdate($p)
1408 puts "ERROR: none of the pending commits can be done yet:"
1410 puts " $p ($ncleft($p))"
1419 proc drawcommit {id} {
1420 global phase todo nchildren datemode nextupdate revlistorder
1421 global numcommits ncmupdate displayorder todo onscreen parents
1423 if {$phase != "incrdraw"} {
1429 if {$nchildren($id) == 0} {
1433 if {$revlistorder} {
1434 set level [lsearch -exact $todo $id]
1436 error_popup "oops, $id isn't in todo"
1439 lappend displayorder $id
1442 set level [decidenext 1]
1443 if {$level == {} || $id != [lindex $todo $level]} {
1447 lappend displayorder [lindex $todo $level]
1448 if {[updatetodo $level $datemode]} {
1449 set level [decidenext 1]
1450 if {$level == {}} break
1452 set id [lindex $todo $level]
1453 if {![info exists commitlisted($id)]} {
1461 proc finishcommits {} {
1463 global canv mainfont ctext maincursor textcursor
1465 if {$phase != "incrdraw"} {
1467 $canv create text 3 3 -anchor nw -text "No commits selected" \
1468 -font $mainfont -tags textitems
1473 . config -cursor $maincursor
1474 settextcursor $textcursor
1477 # Don't change the text pane cursor if it is currently the hand cursor,
1478 # showing that we are over a sha1 ID link.
1479 proc settextcursor {c} {
1480 global ctext curtextcursor
1482 if {[$ctext cget -cursor] == $curtextcursor} {
1483 $ctext config -cursor $c
1485 set curtextcursor $c
1489 global nextupdate startmsecs ncmupdate
1490 global displayorder onscreen
1492 if {$displayorder == {}} return
1493 set startmsecs [clock clicks -milliseconds]
1494 set nextupdate [expr {$startmsecs + 100}]
1497 foreach id $displayorder {
1504 global phase stopped redisplaying selectedline
1505 global datemode todo displayorder
1506 global numcommits ncmupdate
1507 global nextupdate startmsecs revlistorder
1509 set level [decidenext]
1513 lappend displayorder [lindex $todo $level]
1514 set hard [updatetodo $level $datemode]
1516 set level [decidenext]
1517 if {$level < 0} break
1523 set drawmsecs [expr {[clock clicks -milliseconds] - $startmsecs}]
1524 #puts "overall $drawmsecs ms for $numcommits commits"
1525 if {$redisplaying} {
1526 if {$stopped == 0 && [info exists selectedline]} {
1527 selectline $selectedline 0
1529 if {$stopped == 1} {
1531 after idle drawgraph
1538 proc findmatches {f} {
1539 global findtype foundstring foundstrlen
1540 if {$findtype == "Regexp"} {
1541 set matches [regexp -indices -all -inline $foundstring $f]
1543 if {$findtype == "IgnCase"} {
1544 set str [string tolower $f]
1550 while {[set j [string first $foundstring $str $i]] >= 0} {
1551 lappend matches [list $j [expr {$j+$foundstrlen-1}]]
1552 set i [expr {$j + $foundstrlen}]
1559 global findtype findloc findstring markedmatches commitinfo
1560 global numcommits lineid linehtag linentag linedtag
1561 global mainfont namefont canv canv2 canv3 selectedline
1562 global matchinglines foundstring foundstrlen
1567 set matchinglines {}
1568 if {$findloc == "Pickaxe"} {
1572 if {$findtype == "IgnCase"} {
1573 set foundstring [string tolower $findstring]
1575 set foundstring $findstring
1577 set foundstrlen [string length $findstring]
1578 if {$foundstrlen == 0} return
1579 if {$findloc == "Files"} {
1583 if {![info exists selectedline]} {
1586 set oldsel $selectedline
1589 set fldtypes {Headline Author Date Committer CDate Comment}
1590 for {set l 0} {$l < $numcommits} {incr l} {
1592 set info $commitinfo($id)
1594 foreach f $info ty $fldtypes {
1595 if {$findloc != "All fields" && $findloc != $ty} {
1598 set matches [findmatches $f]
1599 if {$matches == {}} continue
1601 if {$ty == "Headline"} {
1602 markmatches $canv $l $f $linehtag($l) $matches $mainfont
1603 } elseif {$ty == "Author"} {
1604 markmatches $canv2 $l $f $linentag($l) $matches $namefont
1605 } elseif {$ty == "Date"} {
1606 markmatches $canv3 $l $f $linedtag($l) $matches $mainfont
1610 lappend matchinglines $l
1611 if {!$didsel && $l > $oldsel} {
1617 if {$matchinglines == {}} {
1619 } elseif {!$didsel} {
1620 findselectline [lindex $matchinglines 0]
1624 proc findselectline {l} {
1625 global findloc commentend ctext
1627 if {$findloc == "All fields" || $findloc == "Comments"} {
1628 # highlight the matches in the comments
1629 set f [$ctext get 1.0 $commentend]
1630 set matches [findmatches $f]
1631 foreach match $matches {
1632 set start [lindex $match 0]
1633 set end [expr {[lindex $match 1] + 1}]
1634 $ctext tag add found "1.0 + $start c" "1.0 + $end c"
1639 proc findnext {restart} {
1640 global matchinglines selectedline
1641 if {![info exists matchinglines]} {
1647 if {![info exists selectedline]} return
1648 foreach l $matchinglines {
1649 if {$l > $selectedline} {
1658 global matchinglines selectedline
1659 if {![info exists matchinglines]} {
1663 if {![info exists selectedline]} return
1665 foreach l $matchinglines {
1666 if {$l >= $selectedline} break
1670 findselectline $prev
1676 proc findlocchange {name ix op} {
1677 global findloc findtype findtypemenu
1678 if {$findloc == "Pickaxe"} {
1684 $findtypemenu entryconf 1 -state $state
1685 $findtypemenu entryconf 2 -state $state
1688 proc stopfindproc {{done 0}} {
1689 global findprocpid findprocfile findids
1690 global ctext findoldcursor phase maincursor textcursor
1691 global findinprogress
1693 catch {unset findids}
1694 if {[info exists findprocpid]} {
1696 catch {exec kill $findprocpid}
1698 catch {close $findprocfile}
1701 if {[info exists findinprogress]} {
1702 unset findinprogress
1703 if {$phase != "incrdraw"} {
1704 . config -cursor $maincursor
1705 settextcursor $textcursor
1710 proc findpatches {} {
1711 global findstring selectedline numcommits
1712 global findprocpid findprocfile
1713 global finddidsel ctext lineid findinprogress
1714 global findinsertpos
1716 if {$numcommits == 0} return
1718 # make a list of all the ids to search, starting at the one
1719 # after the selected line (if any)
1720 if {[info exists selectedline]} {
1726 for {set i 0} {$i < $numcommits} {incr i} {
1727 if {[incr l] >= $numcommits} {
1730 append inputids $lineid($l) "\n"
1734 set f [open [list | git-diff-tree --stdin -s -r -S$findstring \
1737 error_popup "Error starting search process: $err"
1741 set findinsertpos end
1743 set findprocpid [pid $f]
1744 fconfigure $f -blocking 0
1745 fileevent $f readable readfindproc
1747 . config -cursor watch
1749 set findinprogress 1
1752 proc readfindproc {} {
1753 global findprocfile finddidsel
1754 global idline matchinglines findinsertpos
1756 set n [gets $findprocfile line]
1758 if {[eof $findprocfile]} {
1766 if {![regexp {^[0-9a-f]{40}} $line id]} {
1767 error_popup "Can't parse git-diff-tree output: $line"
1771 if {![info exists idline($id)]} {
1772 puts stderr "spurious id: $id"
1779 proc insertmatch {l id} {
1780 global matchinglines findinsertpos finddidsel
1782 if {$findinsertpos == "end"} {
1783 if {$matchinglines != {} && $l < [lindex $matchinglines 0]} {
1784 set matchinglines [linsert $matchinglines 0 $l]
1787 lappend matchinglines $l
1790 set matchinglines [linsert $matchinglines $findinsertpos $l]
1801 global selectedline numcommits lineid ctext
1802 global ffileline finddidsel parents nparents
1803 global findinprogress findstartline findinsertpos
1804 global treediffs fdiffids fdiffsneeded fdiffpos
1805 global findmergefiles
1807 if {$numcommits == 0} return
1809 if {[info exists selectedline]} {
1810 set l [expr {$selectedline + 1}]
1815 set findstartline $l
1820 if {$findmergefiles || $nparents($id) == 1} {
1821 foreach p $parents($id) {
1822 if {![info exists treediffs([list $id $p])]} {
1823 append diffsneeded "$id $p\n"
1824 lappend fdiffsneeded [list $id $p]
1828 if {[incr l] >= $numcommits} {
1831 if {$l == $findstartline} break
1834 # start off a git-diff-tree process if needed
1835 if {$diffsneeded ne {}} {
1837 set df [open [list | git-diff-tree -r --stdin << $diffsneeded] r]
1839 error_popup "Error starting search process: $err"
1842 catch {unset fdiffids}
1844 fconfigure $df -blocking 0
1845 fileevent $df readable [list readfilediffs $df]
1849 set findinsertpos end
1851 set p [lindex $parents($id) 0]
1852 . config -cursor watch
1854 set findinprogress 1
1855 findcont [list $id $p]
1859 proc readfilediffs {df} {
1860 global findids fdiffids fdiffs
1862 set n [gets $df line]
1866 if {[catch {close $df} err]} {
1869 error_popup "Error in git-diff-tree: $err"
1870 } elseif {[info exists findids]} {
1874 error_popup "Couldn't find diffs for {$ids}"
1879 if {[regexp {^([0-9a-f]{40}) \(from ([0-9a-f]{40})\)} $line match id p]} {
1880 # start of a new string of diffs
1882 set fdiffids [list $id $p]
1884 } elseif {[string match ":*" $line]} {
1885 lappend fdiffs [lindex $line 5]
1889 proc donefilediff {} {
1890 global fdiffids fdiffs treediffs findids
1891 global fdiffsneeded fdiffpos
1893 if {[info exists fdiffids]} {
1894 while {[lindex $fdiffsneeded $fdiffpos] ne $fdiffids
1895 && $fdiffpos < [llength $fdiffsneeded]} {
1896 # git-diff-tree doesn't output anything for a commit
1897 # which doesn't change anything
1898 set nullids [lindex $fdiffsneeded $fdiffpos]
1899 set treediffs($nullids) {}
1900 if {[info exists findids] && $nullids eq $findids} {
1908 if {![info exists treediffs($fdiffids)]} {
1909 set treediffs($fdiffids) $fdiffs
1911 if {[info exists findids] && $fdiffids eq $findids} {
1918 proc findcont {ids} {
1919 global findids treediffs parents nparents
1920 global ffileline findstartline finddidsel
1921 global lineid numcommits matchinglines findinprogress
1922 global findmergefiles
1924 set id [lindex $ids 0]
1925 set p [lindex $ids 1]
1926 set pi [lsearch -exact $parents($id) $p]
1929 if {$findmergefiles || $nparents($id) == 1} {
1930 if {![info exists treediffs($ids)]} {
1936 foreach f $treediffs($ids) {
1937 set x [findmatches $f]
1945 set pi $nparents($id)
1948 set pi $nparents($id)
1950 if {[incr pi] >= $nparents($id)} {
1952 if {[incr l] >= $numcommits} {
1955 if {$l == $findstartline} break
1958 set p [lindex $parents($id) $pi]
1959 set ids [list $id $p]
1967 # mark a commit as matching by putting a yellow background
1968 # behind the headline
1969 proc markheadline {l id} {
1970 global canv mainfont linehtag commitinfo
1972 set bbox [$canv bbox $linehtag($l)]
1973 set t [$canv create rect $bbox -outline {} -tags matches -fill yellow]
1977 # mark the bits of a headline, author or date that match a find string
1978 proc markmatches {canv l str tag matches font} {
1979 set bbox [$canv bbox $tag]
1980 set x0 [lindex $bbox 0]
1981 set y0 [lindex $bbox 1]
1982 set y1 [lindex $bbox 3]
1983 foreach match $matches {
1984 set start [lindex $match 0]
1985 set end [lindex $match 1]
1986 if {$start > $end} continue
1987 set xoff [font measure $font [string range $str 0 [expr {$start-1}]]]
1988 set xlen [font measure $font [string range $str 0 [expr {$end}]]]
1989 set t [$canv create rect [expr {$x0+$xoff}] $y0 \
1990 [expr {$x0+$xlen+2}] $y1 \
1991 -outline {} -tags matches -fill yellow]
1996 proc unmarkmatches {} {
1997 global matchinglines findids
1998 allcanvs delete matches
1999 catch {unset matchinglines}
2000 catch {unset findids}
2003 proc selcanvline {w x y} {
2004 global canv canvy0 ctext linespc
2005 global lineid linehtag linentag linedtag rowtextx
2006 set ymax [lindex [$canv cget -scrollregion] 3]
2007 if {$ymax == {}} return
2008 set yfrac [lindex [$canv yview] 0]
2009 set y [expr {$y + $yfrac * $ymax}]
2010 set l [expr {int(($y - $canvy0) / $linespc + 0.5)}]
2015 if {![info exists rowtextx($l)] || $x < $rowtextx($l)} return
2021 proc commit_descriptor {p} {
2024 if {[info exists commitinfo($p)]} {
2025 set l [lindex $commitinfo($p) 0]
2030 # append some text to the ctext widget, and make any SHA1 ID
2031 # that we know about be a clickable link.
2032 proc appendwithlinks {text} {
2033 global ctext idline linknum
2035 set start [$ctext index "end - 1c"]
2036 $ctext insert end $text
2037 $ctext insert end "\n"
2038 set links [regexp -indices -all -inline {[0-9a-f]{40}} $text]
2042 set linkid [string range $text $s $e]
2043 if {![info exists idline($linkid)]} continue
2045 $ctext tag add link "$start + $s c" "$start + $e c"
2046 $ctext tag add link$linknum "$start + $s c" "$start + $e c"
2047 $ctext tag bind link$linknum <1> [list selectline $idline($linkid) 1]
2050 $ctext tag conf link -foreground blue -underline 1
2051 $ctext tag bind link <Enter> { %W configure -cursor hand2 }
2052 $ctext tag bind link <Leave> { %W configure -cursor $curtextcursor }
2055 proc selectline {l isnew} {
2056 global canv canv2 canv3 ctext commitinfo selectedline
2057 global lineid linehtag linentag linedtag
2058 global canvy0 linespc parents nparents children
2059 global cflist currentid sha1entry
2060 global commentend idtags idline linknum
2064 if {![info exists lineid($l)] || ![info exists linehtag($l)]} return
2066 set t [eval $canv create rect [$canv bbox $linehtag($l)] -outline {{}} \
2067 -tags secsel -fill [$canv cget -selectbackground]]
2069 $canv2 delete secsel
2070 set t [eval $canv2 create rect [$canv2 bbox $linentag($l)] -outline {{}} \
2071 -tags secsel -fill [$canv2 cget -selectbackground]]
2073 $canv3 delete secsel
2074 set t [eval $canv3 create rect [$canv3 bbox $linedtag($l)] -outline {{}} \
2075 -tags secsel -fill [$canv3 cget -selectbackground]]
2077 set y [expr {$canvy0 + $l * $linespc}]
2078 set ymax [lindex [$canv cget -scrollregion] 3]
2079 set ytop [expr {$y - $linespc - 1}]
2080 set ybot [expr {$y + $linespc + 1}]
2081 set wnow [$canv yview]
2082 set wtop [expr {[lindex $wnow 0] * $ymax}]
2083 set wbot [expr {[lindex $wnow 1] * $ymax}]
2084 set wh [expr {$wbot - $wtop}]
2086 if {$ytop < $wtop} {
2087 if {$ybot < $wtop} {
2088 set newtop [expr {$y - $wh / 2.0}]
2091 if {$newtop > $wtop - $linespc} {
2092 set newtop [expr {$wtop - $linespc}]
2095 } elseif {$ybot > $wbot} {
2096 if {$ytop > $wbot} {
2097 set newtop [expr {$y - $wh / 2.0}]
2099 set newtop [expr {$ybot - $wh}]
2100 if {$newtop < $wtop + $linespc} {
2101 set newtop [expr {$wtop + $linespc}]
2105 if {$newtop != $wtop} {
2109 allcanvs yview moveto [expr {$newtop * 1.0 / $ymax}]
2113 addtohistory [list selectline $l 0]
2120 $sha1entry delete 0 end
2121 $sha1entry insert 0 $id
2122 $sha1entry selection from 0
2123 $sha1entry selection to end
2125 $ctext conf -state normal
2126 $ctext delete 0.0 end
2128 $ctext mark set fmark.0 0.0
2129 $ctext mark gravity fmark.0 left
2130 set info $commitinfo($id)
2131 set date [formatdate [lindex $info 2]]
2132 $ctext insert end "Author: [lindex $info 1] $date\n"
2133 set date [formatdate [lindex $info 4]]
2134 $ctext insert end "Committer: [lindex $info 3] $date\n"
2135 if {[info exists idtags($id)]} {
2136 $ctext insert end "Tags:"
2137 foreach tag $idtags($id) {
2138 $ctext insert end " $tag"
2140 $ctext insert end "\n"
2144 if {[info exists parents($id)]} {
2145 foreach p $parents($id) {
2146 append comment "Parent: [commit_descriptor $p]\n"
2149 if {[info exists children($id)]} {
2150 foreach c $children($id) {
2151 append comment "Child: [commit_descriptor $c]\n"
2155 append comment [lindex $info 5]
2157 # make anything that looks like a SHA1 ID be a clickable link
2158 appendwithlinks $comment
2160 $ctext tag delete Comments
2161 $ctext tag remove found 1.0 end
2162 $ctext conf -state disabled
2163 set commentend [$ctext index "end - 1c"]
2165 $cflist delete 0 end
2166 $cflist insert end "Comments"
2167 if {$nparents($id) == 1} {
2168 startdiff [concat $id $parents($id)]
2169 } elseif {$nparents($id) > 1} {
2174 proc selnextline {dir} {
2176 if {![info exists selectedline]} return
2177 set l [expr {$selectedline + $dir}]
2182 proc unselectline {} {
2185 catch {unset selectedline}
2186 allcanvs delete secsel
2189 proc addtohistory {cmd} {
2190 global history historyindex
2192 if {$historyindex > 0
2193 && [lindex $history [expr {$historyindex - 1}]] == $cmd} {
2197 if {$historyindex < [llength $history]} {
2198 set history [lreplace $history $historyindex end $cmd]
2200 lappend history $cmd
2203 if {$historyindex > 1} {
2204 .ctop.top.bar.leftbut conf -state normal
2206 .ctop.top.bar.leftbut conf -state disabled
2208 .ctop.top.bar.rightbut conf -state disabled
2212 global history historyindex
2214 if {$historyindex > 1} {
2215 incr historyindex -1
2216 set cmd [lindex $history [expr {$historyindex - 1}]]
2218 .ctop.top.bar.rightbut conf -state normal
2220 if {$historyindex <= 1} {
2221 .ctop.top.bar.leftbut conf -state disabled
2226 global history historyindex
2228 if {$historyindex < [llength $history]} {
2229 set cmd [lindex $history $historyindex]
2232 .ctop.top.bar.leftbut conf -state normal
2234 if {$historyindex >= [llength $history]} {
2235 .ctop.top.bar.rightbut conf -state disabled
2239 proc mergediff {id} {
2240 global parents diffmergeid diffmergegca mergefilelist diffpindex
2244 set diffmergegca [findgca $parents($id)]
2245 if {[info exists mergefilelist($id)]} {
2246 if {$mergefilelist($id) ne {}} {
2254 proc findgca {ids} {
2261 set gca [exec git-merge-base $gca $id]
2270 proc contmergediff {ids} {
2271 global diffmergeid diffpindex parents nparents diffmergegca
2272 global treediffs mergefilelist diffids treepending
2274 # diff the child against each of the parents, and diff
2275 # each of the parents against the GCA.
2277 if {[lindex $ids 0] == $diffmergeid && $diffmergegca ne {}} {
2278 set ids [list [lindex $ids 1] $diffmergegca]
2280 if {[incr diffpindex] >= $nparents($diffmergeid)} break
2281 set p [lindex $parents($diffmergeid) $diffpindex]
2282 set ids [list $diffmergeid $p]
2284 if {![info exists treediffs($ids)]} {
2286 if {![info exists treepending]} {
2293 # If a file in some parent is different from the child and also
2294 # different from the GCA, then it's interesting.
2295 # If we don't have a GCA, then a file is interesting if it is
2296 # different from the child in all the parents.
2297 if {$diffmergegca ne {}} {
2299 foreach p $parents($diffmergeid) {
2300 set gcadiffs $treediffs([list $p $diffmergegca])
2301 foreach f $treediffs([list $diffmergeid $p]) {
2302 if {[lsearch -exact $files $f] < 0
2303 && [lsearch -exact $gcadiffs $f] >= 0} {
2308 set files [lsort $files]
2310 set p [lindex $parents($diffmergeid) 0]
2311 set files $treediffs([list $diffmergeid $p])
2312 for {set i 1} {$i < $nparents($diffmergeid) && $files ne {}} {incr i} {
2313 set p [lindex $parents($diffmergeid) $i]
2314 set df $treediffs([list $diffmergeid $p])
2317 if {[lsearch -exact $df $f] >= 0} {
2325 set mergefilelist($diffmergeid) $files
2331 proc showmergediff {} {
2332 global cflist diffmergeid mergefilelist parents
2333 global diffopts diffinhunk currentfile currenthunk filelines
2334 global diffblocked groupfilelast mergefds groupfilenum grouphunks
2336 set files $mergefilelist($diffmergeid)
2338 $cflist insert end $f
2340 set env(GIT_DIFF_OPTS) $diffopts
2342 catch {unset currentfile}
2343 catch {unset currenthunk}
2344 catch {unset filelines}
2345 catch {unset groupfilenum}
2346 catch {unset grouphunks}
2347 set groupfilelast -1
2348 foreach p $parents($diffmergeid) {
2349 set cmd [list | git-diff-tree -p $p $diffmergeid]
2350 set cmd [concat $cmd $mergefilelist($diffmergeid)]
2351 if {[catch {set f [open $cmd r]} err]} {
2352 error_popup "Error getting diffs: $err"
2359 set ids [list $diffmergeid $p]
2360 set mergefds($ids) $f
2361 set diffinhunk($ids) 0
2362 set diffblocked($ids) 0
2363 fconfigure $f -blocking 0
2364 fileevent $f readable [list getmergediffline $f $ids $diffmergeid]
2368 proc getmergediffline {f ids id} {
2369 global diffmergeid diffinhunk diffoldlines diffnewlines
2370 global currentfile currenthunk
2371 global diffoldstart diffnewstart diffoldlno diffnewlno
2372 global diffblocked mergefilelist
2373 global noldlines nnewlines difflcounts filelines
2375 set n [gets $f line]
2377 if {![eof $f]} return
2380 if {!([info exists diffmergeid] && $diffmergeid == $id)} {
2387 if {$diffinhunk($ids) != 0} {
2388 set fi $currentfile($ids)
2389 if {$n > 0 && [regexp {^[-+ \\]} $line match]} {
2390 # continuing an existing hunk
2391 set line [string range $line 1 end]
2392 set p [lindex $ids 1]
2393 if {$match eq "-" || $match eq " "} {
2394 set filelines($p,$fi,$diffoldlno($ids)) $line
2395 incr diffoldlno($ids)
2397 if {$match eq "+" || $match eq " "} {
2398 set filelines($id,$fi,$diffnewlno($ids)) $line
2399 incr diffnewlno($ids)
2401 if {$match eq " "} {
2402 if {$diffinhunk($ids) == 2} {
2403 lappend difflcounts($ids) \
2404 [list $noldlines($ids) $nnewlines($ids)]
2405 set noldlines($ids) 0
2406 set diffinhunk($ids) 1
2408 incr noldlines($ids)
2409 } elseif {$match eq "-" || $match eq "+"} {
2410 if {$diffinhunk($ids) == 1} {
2411 lappend difflcounts($ids) [list $noldlines($ids)]
2412 set noldlines($ids) 0
2413 set nnewlines($ids) 0
2414 set diffinhunk($ids) 2
2416 if {$match eq "-"} {
2417 incr noldlines($ids)
2419 incr nnewlines($ids)
2422 # and if it's \ No newline at end of line, then what?
2426 if {$diffinhunk($ids) == 1 && $noldlines($ids) != 0} {
2427 lappend difflcounts($ids) [list $noldlines($ids)]
2428 } elseif {$diffinhunk($ids) == 2
2429 && ($noldlines($ids) != 0 || $nnewlines($ids) != 0)} {
2430 lappend difflcounts($ids) [list $noldlines($ids) $nnewlines($ids)]
2432 set currenthunk($ids) [list $currentfile($ids) \
2433 $diffoldstart($ids) $diffnewstart($ids) \
2434 $diffoldlno($ids) $diffnewlno($ids) \
2436 set diffinhunk($ids) 0
2437 # -1 = need to block, 0 = unblocked, 1 = is blocked
2438 set diffblocked($ids) -1
2440 if {$diffblocked($ids) == -1} {
2441 fileevent $f readable {}
2442 set diffblocked($ids) 1
2448 if {!$diffblocked($ids)} {
2450 set currentfile($ids) [llength $mergefilelist($diffmergeid)]
2451 set currenthunk($ids) [list $currentfile($ids) 0 0 0 0 {}]
2454 } elseif {[regexp {^diff --git a/(.*) b/} $line match fname]} {
2455 # start of a new file
2456 set currentfile($ids) \
2457 [lsearch -exact $mergefilelist($diffmergeid) $fname]
2458 } elseif {[regexp {^@@ -([0-9]+),([0-9]+) \+([0-9]+),([0-9]+) @@(.*)} \
2459 $line match f1l f1c f2l f2c rest]} {
2460 if {[info exists currentfile($ids)] && $currentfile($ids) >= 0} {
2461 # start of a new hunk
2462 if {$f1l == 0 && $f1c == 0} {
2465 if {$f2l == 0 && $f2c == 0} {
2468 set diffinhunk($ids) 1
2469 set diffoldstart($ids) $f1l
2470 set diffnewstart($ids) $f2l
2471 set diffoldlno($ids) $f1l
2472 set diffnewlno($ids) $f2l
2473 set difflcounts($ids) {}
2474 set noldlines($ids) 0
2475 set nnewlines($ids) 0
2480 proc processhunks {} {
2481 global diffmergeid parents nparents currenthunk
2482 global mergefilelist diffblocked mergefds
2483 global grouphunks grouplinestart grouplineend groupfilenum
2485 set nfiles [llength $mergefilelist($diffmergeid)]
2489 # look for the earliest hunk
2490 foreach p $parents($diffmergeid) {
2491 set ids [list $diffmergeid $p]
2492 if {![info exists currenthunk($ids)]} return
2493 set i [lindex $currenthunk($ids) 0]
2494 set l [lindex $currenthunk($ids) 2]
2495 if {$i < $fi || ($i == $fi && $l < $lno)} {
2502 if {$fi < $nfiles} {
2503 set ids [list $diffmergeid $pi]
2504 set hunk $currenthunk($ids)
2505 unset currenthunk($ids)
2506 if {$diffblocked($ids) > 0} {
2507 fileevent $mergefds($ids) readable \
2508 [list getmergediffline $mergefds($ids) $ids $diffmergeid]
2510 set diffblocked($ids) 0
2512 if {[info exists groupfilenum] && $groupfilenum == $fi
2513 && $lno <= $grouplineend} {
2514 # add this hunk to the pending group
2515 lappend grouphunks($pi) $hunk
2516 set endln [lindex $hunk 4]
2517 if {$endln > $grouplineend} {
2518 set grouplineend $endln
2524 # succeeding stuff doesn't belong in this group, so
2525 # process the group now
2526 if {[info exists groupfilenum]} {
2532 if {$fi >= $nfiles} break
2535 set groupfilenum $fi
2536 set grouphunks($pi) [list $hunk]
2537 set grouplinestart $lno
2538 set grouplineend [lindex $hunk 4]
2542 proc processgroup {} {
2543 global groupfilelast groupfilenum difffilestart
2544 global mergefilelist diffmergeid ctext filelines
2545 global parents diffmergeid diffoffset
2546 global grouphunks grouplinestart grouplineend nparents
2549 $ctext conf -state normal
2552 if {$groupfilelast != $f} {
2553 $ctext insert end "\n"
2554 set here [$ctext index "end - 1c"]
2555 set difffilestart($f) $here
2556 set mark fmark.[expr {$f + 1}]
2557 $ctext mark set $mark $here
2558 $ctext mark gravity $mark left
2559 set header [lindex $mergefilelist($id) $f]
2560 set l [expr {(78 - [string length $header]) / 2}]
2561 set pad [string range "----------------------------------------" 1 $l]
2562 $ctext insert end "$pad $header $pad\n" filesep
2563 set groupfilelast $f
2564 foreach p $parents($id) {
2565 set diffoffset($p) 0
2569 $ctext insert end "@@" msep
2570 set nlines [expr {$grouplineend - $grouplinestart}]
2573 foreach p $parents($id) {
2574 set startline [expr {$grouplinestart + $diffoffset($p)}]
2576 set nl $grouplinestart
2577 if {[info exists grouphunks($p)]} {
2578 foreach h $grouphunks($p) {
2581 for {} {$nl < $l} {incr nl} {
2582 set filelines($p,$f,$ol) $filelines($id,$f,$nl)
2586 foreach chunk [lindex $h 5] {
2587 if {[llength $chunk] == 2} {
2588 set olc [lindex $chunk 0]
2589 set nlc [lindex $chunk 1]
2590 set nnl [expr {$nl + $nlc}]
2591 lappend events [list $nl $nnl $pnum $olc $nlc]
2595 incr ol [lindex $chunk 0]
2596 incr nl [lindex $chunk 0]
2601 if {$nl < $grouplineend} {
2602 for {} {$nl < $grouplineend} {incr nl} {
2603 set filelines($p,$f,$ol) $filelines($id,$f,$nl)
2607 set nlines [expr {$ol - $startline}]
2608 $ctext insert end " -$startline,$nlines" msep
2612 set nlines [expr {$grouplineend - $grouplinestart}]
2613 $ctext insert end " +$grouplinestart,$nlines @@\n" msep
2615 set events [lsort -integer -index 0 $events]
2616 set nevents [llength $events]
2617 set nmerge $nparents($diffmergeid)
2618 set l $grouplinestart
2619 for {set i 0} {$i < $nevents} {set i $j} {
2620 set nl [lindex $events $i 0]
2622 $ctext insert end " $filelines($id,$f,$l)\n"
2625 set e [lindex $events $i]
2626 set enl [lindex $e 1]
2630 set pnum [lindex $e 2]
2631 set olc [lindex $e 3]
2632 set nlc [lindex $e 4]
2633 if {![info exists delta($pnum)]} {
2634 set delta($pnum) [expr {$olc - $nlc}]
2635 lappend active $pnum
2637 incr delta($pnum) [expr {$olc - $nlc}]
2639 if {[incr j] >= $nevents} break
2640 set e [lindex $events $j]
2641 if {[lindex $e 0] >= $enl} break
2642 if {[lindex $e 1] > $enl} {
2643 set enl [lindex $e 1]
2646 set nlc [expr {$enl - $l}]
2649 if {[llength $active] == $nmerge - 1} {
2650 # no diff for one of the parents, i.e. it's identical
2651 for {set pnum 0} {$pnum < $nmerge} {incr pnum} {
2652 if {![info exists delta($pnum)]} {
2653 if {$pnum < $mergemax} {
2661 } elseif {[llength $active] == $nmerge} {
2662 # all parents are different, see if one is very similar
2664 for {set pnum 0} {$pnum < $nmerge} {incr pnum} {
2665 set sim [similarity $pnum $l $nlc $f \
2666 [lrange $events $i [expr {$j-1}]]]
2667 if {$sim > $bestsim} {
2673 lappend ncol m$bestpn
2677 foreach p $parents($id) {
2679 if {![info exists delta($pnum)] || $pnum == $bestpn} continue
2680 set olc [expr {$nlc + $delta($pnum)}]
2681 set ol [expr {$l + $diffoffset($p)}]
2682 incr diffoffset($p) $delta($pnum)
2684 for {} {$olc > 0} {incr olc -1} {
2685 $ctext insert end "-$filelines($p,$f,$ol)\n" m$pnum
2689 set endl [expr {$l + $nlc}]
2691 # show this pretty much as a normal diff
2692 set p [lindex $parents($id) $bestpn]
2693 set ol [expr {$l + $diffoffset($p)}]
2694 incr diffoffset($p) $delta($bestpn)
2695 unset delta($bestpn)
2696 for {set k $i} {$k < $j} {incr k} {
2697 set e [lindex $events $k]
2698 if {[lindex $e 2] != $bestpn} continue
2699 set nl [lindex $e 0]
2700 set ol [expr {$ol + $nl - $l}]
2701 for {} {$l < $nl} {incr l} {
2702 $ctext insert end "+$filelines($id,$f,$l)\n" $ncol
2705 for {} {$c > 0} {incr c -1} {
2706 $ctext insert end "-$filelines($p,$f,$ol)\n" m$bestpn
2709 set nl [lindex $e 1]
2710 for {} {$l < $nl} {incr l} {
2711 $ctext insert end "+$filelines($id,$f,$l)\n" mresult
2715 for {} {$l < $endl} {incr l} {
2716 $ctext insert end "+$filelines($id,$f,$l)\n" $ncol
2719 while {$l < $grouplineend} {
2720 $ctext insert end " $filelines($id,$f,$l)\n"
2723 $ctext conf -state disabled
2726 proc similarity {pnum l nlc f events} {
2727 global diffmergeid parents diffoffset filelines
2730 set p [lindex $parents($id) $pnum]
2731 set ol [expr {$l + $diffoffset($p)}]
2732 set endl [expr {$l + $nlc}]
2736 if {[lindex $e 2] != $pnum} continue
2737 set nl [lindex $e 0]
2738 set ol [expr {$ol + $nl - $l}]
2739 for {} {$l < $nl} {incr l} {
2740 incr same [string length $filelines($id,$f,$l)]
2743 set oc [lindex $e 3]
2744 for {} {$oc > 0} {incr oc -1} {
2745 incr diff [string length $filelines($p,$f,$ol)]
2749 set nl [lindex $e 1]
2750 for {} {$l < $nl} {incr l} {
2751 incr diff [string length $filelines($id,$f,$l)]
2755 for {} {$l < $endl} {incr l} {
2756 incr same [string length $filelines($id,$f,$l)]
2762 return [expr {200 * $same / (2 * $same + $diff)}]
2765 proc startdiff {ids} {
2766 global treediffs diffids treepending diffmergeid
2769 catch {unset diffmergeid}
2770 if {![info exists treediffs($ids)]} {
2771 if {![info exists treepending]} {
2779 proc addtocflist {ids} {
2780 global treediffs cflist
2781 foreach f $treediffs($ids) {
2782 $cflist insert end $f
2787 proc gettreediffs {ids} {
2788 global treediff parents treepending
2789 set treepending $ids
2791 set id [lindex $ids 0]
2792 if [catch {set gdtf [open "|git-diff-tree --no-commit-id -r $id" r]}] return
2793 fconfigure $gdtf -blocking 0
2794 fileevent $gdtf readable [list gettreediffline $gdtf $ids]
2797 proc gettreediffline {gdtf ids} {
2798 global treediff treediffs treepending diffids diffmergeid
2800 set n [gets $gdtf line]
2802 if {![eof $gdtf]} return
2804 set treediffs($ids) $treediff
2806 if {$ids != $diffids} {
2807 gettreediffs $diffids
2809 if {[info exists diffmergeid]} {
2817 set file [lindex $line 5]
2818 lappend treediff $file
2821 proc getblobdiffs {ids} {
2822 global diffopts blobdifffd diffids env curdifftag curtagstart
2823 global difffilestart nextupdate diffinhdr treediffs
2825 set id [lindex $ids 0]
2826 set env(GIT_DIFF_OPTS) $diffopts
2827 set cmd [list | git-diff-tree --no-commit-id -r -p -C $id]
2828 if {[catch {set bdf [open $cmd r]} err]} {
2829 puts "error getting diffs: $err"
2833 fconfigure $bdf -blocking 0
2834 set blobdifffd($ids) $bdf
2835 set curdifftag Comments
2837 catch {unset difffilestart}
2838 fileevent $bdf readable [list getblobdiffline $bdf $diffids]
2839 set nextupdate [expr {[clock clicks -milliseconds] + 100}]
2842 proc getblobdiffline {bdf ids} {
2843 global diffids blobdifffd ctext curdifftag curtagstart
2844 global diffnexthead diffnextnote difffilestart
2845 global nextupdate diffinhdr treediffs
2848 set n [gets $bdf line]
2852 if {$ids == $diffids && $bdf == $blobdifffd($ids)} {
2853 $ctext tag add $curdifftag $curtagstart end
2858 if {$ids != $diffids || $bdf != $blobdifffd($ids)} {
2861 $ctext conf -state normal
2862 if {[regexp {^diff --git a/(.*) b/(.*)} $line match fname newname]} {
2863 # start of a new file
2864 $ctext insert end "\n"
2865 $ctext tag add $curdifftag $curtagstart end
2866 set curtagstart [$ctext index "end - 1c"]
2868 set here [$ctext index "end - 1c"]
2869 set i [lsearch -exact $treediffs($diffids) $fname]
2871 set difffilestart($i) $here
2873 $ctext mark set fmark.$i $here
2874 $ctext mark gravity fmark.$i left
2876 if {$newname != $fname} {
2877 set i [lsearch -exact $treediffs($diffids) $newname]
2879 set difffilestart($i) $here
2881 $ctext mark set fmark.$i $here
2882 $ctext mark gravity fmark.$i left
2885 set curdifftag "f:$fname"
2886 $ctext tag delete $curdifftag
2887 set l [expr {(78 - [string length $header]) / 2}]
2888 set pad [string range "----------------------------------------" 1 $l]
2889 $ctext insert end "$pad $header $pad\n" filesep
2891 } elseif {[regexp {^(---|\+\+\+)} $line]} {
2893 } elseif {[regexp {^@@ -([0-9]+),([0-9]+) \+([0-9]+),([0-9]+) @@(.*)} \
2894 $line match f1l f1c f2l f2c rest]} {
2896 $ctext insert end "\t" hunksep
2897 $ctext insert end " $f1l " d0 " $f2l " d1
2898 $ctext insert end " $rest \n" hunksep
2900 $ctext insert end "$line\n" hunksep
2904 set x [string range $line 0 0]
2905 if {$x == "-" || $x == "+"} {
2906 set tag [expr {$x == "+"}]
2908 set line [string range $line 1 end]
2910 $ctext insert end "$line\n" d$tag
2911 } elseif {$x == " "} {
2913 set line [string range $line 1 end]
2915 $ctext insert end "$line\n"
2916 } elseif {$diffinhdr || $x == "\\"} {
2917 # e.g. "\ No newline at end of file"
2918 $ctext insert end "$line\n" filesep
2920 # Something else we don't recognize
2921 if {$curdifftag != "Comments"} {
2922 $ctext insert end "\n"
2923 $ctext tag add $curdifftag $curtagstart end
2924 set curtagstart [$ctext index "end - 1c"]
2925 set curdifftag Comments
2927 $ctext insert end "$line\n" filesep
2930 $ctext conf -state disabled
2931 if {[clock clicks -milliseconds] >= $nextupdate} {
2933 fileevent $bdf readable {}
2935 fileevent $bdf readable "getblobdiffline $bdf {$ids}"
2940 global difffilestart ctext
2941 set here [$ctext index @0,0]
2942 for {set i 0} {[info exists difffilestart($i)]} {incr i} {
2943 if {[$ctext compare $difffilestart($i) > $here]} {
2944 if {![info exists pos]
2945 || [$ctext compare $difffilestart($i) < $pos]} {
2946 set pos $difffilestart($i)
2950 if {[info exists pos]} {
2955 proc listboxsel {} {
2956 global ctext cflist currentid
2957 if {![info exists currentid]} return
2958 set sel [lsort [$cflist curselection]]
2959 if {$sel eq {}} return
2960 set first [lindex $sel 0]
2961 catch {$ctext yview fmark.$first}
2965 global linespc charspc canvx0 canvy0 mainfont
2966 global xspc1 xspc2 lthickness
2968 set linespc [font metrics $mainfont -linespace]
2969 set charspc [font measure $mainfont "m"]
2970 set canvy0 [expr {3 + 0.5 * $linespc}]
2971 set canvx0 [expr {3 + 0.5 * $linespc}]
2972 set lthickness [expr {int($linespc / 9) + 1}]
2973 set xspc1(0) $linespc
2978 global stopped redisplaying phase
2979 if {$stopped > 1} return
2980 if {$phase == "getcommits"} return
2982 if {$phase == "drawgraph" || $phase == "incrdraw"} {
2989 proc incrfont {inc} {
2990 global mainfont namefont textfont ctext canv phase
2991 global stopped entries
2993 set mainfont [lreplace $mainfont 1 1 [expr {[lindex $mainfont 1] + $inc}]]
2994 set namefont [lreplace $namefont 1 1 [expr {[lindex $namefont 1] + $inc}]]
2995 set textfont [lreplace $textfont 1 1 [expr {[lindex $textfont 1] + $inc}]]
2997 $ctext conf -font $textfont
2998 $ctext tag conf filesep -font [concat $textfont bold]
2999 foreach e $entries {
3000 $e conf -font $mainfont
3002 if {$phase == "getcommits"} {
3003 $canv itemconf textitems -font $mainfont
3009 global sha1entry sha1string
3010 if {[string length $sha1string] == 40} {
3011 $sha1entry delete 0 end
3015 proc sha1change {n1 n2 op} {
3016 global sha1string currentid sha1but
3017 if {$sha1string == {}
3018 || ([info exists currentid] && $sha1string == $currentid)} {
3023 if {[$sha1but cget -state] == $state} return
3024 if {$state == "normal"} {
3025 $sha1but conf -state normal -relief raised -text "Goto: "
3027 $sha1but conf -state disabled -relief flat -text "SHA1 ID: "
3031 proc gotocommit {} {
3032 global sha1string currentid idline tagids
3033 global lineid numcommits
3035 if {$sha1string == {}
3036 || ([info exists currentid] && $sha1string == $currentid)} return
3037 if {[info exists tagids($sha1string)]} {
3038 set id $tagids($sha1string)
3040 set id [string tolower $sha1string]
3041 if {[regexp {^[0-9a-f]{4,39}$} $id]} {
3043 for {set l 0} {$l < $numcommits} {incr l} {
3044 if {[string match $id* $lineid($l)]} {
3045 lappend matches $lineid($l)
3048 if {$matches ne {}} {
3049 if {[llength $matches] > 1} {
3050 error_popup "Short SHA1 id $id is ambiguous"
3053 set id [lindex $matches 0]
3057 if {[info exists idline($id)]} {
3058 selectline $idline($id) 1
3061 if {[regexp {^[0-9a-fA-F]{4,}$} $sha1string]} {
3066 error_popup "$type $sha1string is not known"
3069 proc lineenter {x y id} {
3070 global hoverx hovery hoverid hovertimer
3071 global commitinfo canv
3073 if {![info exists commitinfo($id)]} return
3077 if {[info exists hovertimer]} {
3078 after cancel $hovertimer
3080 set hovertimer [after 500 linehover]
3084 proc linemotion {x y id} {
3085 global hoverx hovery hoverid hovertimer
3087 if {[info exists hoverid] && $id == $hoverid} {
3090 if {[info exists hovertimer]} {
3091 after cancel $hovertimer
3093 set hovertimer [after 500 linehover]
3097 proc lineleave {id} {
3098 global hoverid hovertimer canv
3100 if {[info exists hoverid] && $id == $hoverid} {
3102 if {[info exists hovertimer]} {
3103 after cancel $hovertimer
3111 global hoverx hovery hoverid hovertimer
3112 global canv linespc lthickness
3113 global commitinfo mainfont
3115 set text [lindex $commitinfo($hoverid) 0]
3116 set ymax [lindex [$canv cget -scrollregion] 3]
3117 if {$ymax == {}} return
3118 set yfrac [lindex [$canv yview] 0]
3119 set x [expr {$hoverx + 2 * $linespc}]
3120 set y [expr {$hovery + $yfrac * $ymax - $linespc / 2}]
3121 set x0 [expr {$x - 2 * $lthickness}]
3122 set y0 [expr {$y - 2 * $lthickness}]
3123 set x1 [expr {$x + [font measure $mainfont $text] + 2 * $lthickness}]
3124 set y1 [expr {$y + $linespc + 2 * $lthickness}]
3125 set t [$canv create rectangle $x0 $y0 $x1 $y1 \
3126 -fill \#ffff80 -outline black -width 1 -tags hover]
3128 set t [$canv create text $x $y -anchor nw -text $text -tags hover -font $mainfont]
3132 proc clickisonarrow {id y} {
3133 global mainline mainlinearrow sidelines lthickness
3135 set thresh [expr {2 * $lthickness + 6}]
3136 if {[info exists mainline($id)]} {
3137 if {$mainlinearrow($id) ne "none"} {
3138 if {abs([lindex $mainline($id) 1] - $y) < $thresh} {
3143 if {[info exists sidelines($id)]} {
3144 foreach ls $sidelines($id) {
3145 set coords [lindex $ls 0]
3146 set arrow [lindex $ls 2]
3147 if {$arrow eq "first" || $arrow eq "both"} {
3148 if {abs([lindex $coords 1] - $y) < $thresh} {
3152 if {$arrow eq "last" || $arrow eq "both"} {
3153 if {abs([lindex $coords end] - $y) < $thresh} {
3162 proc arrowjump {id dirn y} {
3163 global mainline sidelines canv canv2 canv3
3166 if {$dirn eq "down"} {
3167 if {[info exists mainline($id)]} {
3168 set y1 [lindex $mainline($id) 1]
3173 if {[info exists sidelines($id)]} {
3174 foreach ls $sidelines($id) {
3175 set y1 [lindex $ls 0 1]
3176 if {$y1 > $y && ($yt eq {} || $y1 < $yt)} {
3182 if {[info exists sidelines($id)]} {
3183 foreach ls $sidelines($id) {
3184 set y1 [lindex $ls 0 end]
3185 if {$y1 < $y && ($yt eq {} || $y1 > $yt)} {
3191 if {$yt eq {}} return
3192 set ymax [lindex [$canv cget -scrollregion] 3]
3193 if {$ymax eq {} || $ymax <= 0} return
3194 set view [$canv yview]
3195 set yspan [expr {[lindex $view 1] - [lindex $view 0]}]
3196 set yfrac [expr {$yt / $ymax - $yspan / 2}]
3200 $canv yview moveto $yfrac
3201 $canv2 yview moveto $yfrac
3202 $canv3 yview moveto $yfrac
3205 proc lineclick {x y id isnew} {
3206 global ctext commitinfo children cflist canv thickerline
3212 # draw this line thicker than normal
3216 set ymax [lindex [$canv cget -scrollregion] 3]
3217 if {$ymax eq {}} return
3218 set yfrac [lindex [$canv yview] 0]
3219 set y [expr {$y + $yfrac * $ymax}]
3221 set dirn [clickisonarrow $id $y]
3223 arrowjump $id $dirn $y
3228 addtohistory [list lineclick $x $y $id 0]
3230 # fill the details pane with info about this line
3231 $ctext conf -state normal
3232 $ctext delete 0.0 end
3233 $ctext tag conf link -foreground blue -underline 1
3234 $ctext tag bind link <Enter> { %W configure -cursor hand2 }
3235 $ctext tag bind link <Leave> { %W configure -cursor $curtextcursor }
3236 $ctext insert end "Parent:\t"
3237 $ctext insert end $id [list link link0]
3238 $ctext tag bind link0 <1> [list selbyid $id]
3239 set info $commitinfo($id)
3240 $ctext insert end "\n\t[lindex $info 0]\n"
3241 $ctext insert end "\tAuthor:\t[lindex $info 1]\n"
3242 set date [formatdate [lindex $info 2]]
3243 $ctext insert end "\tDate:\t$date\n"
3244 if {[info exists children($id)]} {
3245 $ctext insert end "\nChildren:"
3247 foreach child $children($id) {
3249 set info $commitinfo($child)
3250 $ctext insert end "\n\t"
3251 $ctext insert end $child [list link link$i]
3252 $ctext tag bind link$i <1> [list selbyid $child]
3253 $ctext insert end "\n\t[lindex $info 0]"
3254 $ctext insert end "\n\tAuthor:\t[lindex $info 1]"
3255 set date [formatdate [lindex $info 2]]
3256 $ctext insert end "\n\tDate:\t$date\n"
3259 $ctext conf -state disabled
3261 $cflist delete 0 end
3264 proc normalline {} {
3266 if {[info exists thickerline]} {
3267 drawlines $thickerline 0 1
3274 if {[info exists idline($id)]} {
3275 selectline $idline($id) 1
3281 if {![info exists startmstime]} {
3282 set startmstime [clock clicks -milliseconds]
3284 return [format "%.3f" [expr {([clock click -milliseconds] - $startmstime) / 1000.0}]]
3287 proc rowmenu {x y id} {
3288 global rowctxmenu idline selectedline rowmenuid
3290 if {![info exists selectedline] || $idline($id) eq $selectedline} {
3295 $rowctxmenu entryconfigure 0 -state $state
3296 $rowctxmenu entryconfigure 1 -state $state
3297 $rowctxmenu entryconfigure 2 -state $state
3299 tk_popup $rowctxmenu $x $y
3302 proc diffvssel {dirn} {
3303 global rowmenuid selectedline lineid
3305 if {![info exists selectedline]} return
3307 set oldid $lineid($selectedline)
3308 set newid $rowmenuid
3310 set oldid $rowmenuid
3311 set newid $lineid($selectedline)
3313 addtohistory [list doseldiff $oldid $newid]
3314 doseldiff $oldid $newid
3317 proc doseldiff {oldid newid} {
3321 $ctext conf -state normal
3322 $ctext delete 0.0 end
3323 $ctext mark set fmark.0 0.0
3324 $ctext mark gravity fmark.0 left
3325 $cflist delete 0 end
3326 $cflist insert end "Top"
3327 $ctext insert end "From "
3328 $ctext tag conf link -foreground blue -underline 1
3329 $ctext tag bind link <Enter> { %W configure -cursor hand2 }
3330 $ctext tag bind link <Leave> { %W configure -cursor $curtextcursor }
3331 $ctext tag bind link0 <1> [list selbyid $oldid]
3332 $ctext insert end $oldid [list link link0]
3333 $ctext insert end "\n "
3334 $ctext insert end [lindex $commitinfo($oldid) 0]
3335 $ctext insert end "\n\nTo "
3336 $ctext tag bind link1 <1> [list selbyid $newid]
3337 $ctext insert end $newid [list link link1]
3338 $ctext insert end "\n "
3339 $ctext insert end [lindex $commitinfo($newid) 0]
3340 $ctext insert end "\n"
3341 $ctext conf -state disabled
3342 $ctext tag delete Comments
3343 $ctext tag remove found 1.0 end
3344 startdiff [list $newid $oldid]
3348 global rowmenuid currentid commitinfo patchtop patchnum
3350 if {![info exists currentid]} return
3351 set oldid $currentid
3352 set oldhead [lindex $commitinfo($oldid) 0]
3353 set newid $rowmenuid
3354 set newhead [lindex $commitinfo($newid) 0]
3357 catch {destroy $top}
3359 label $top.title -text "Generate patch"
3360 grid $top.title - -pady 10
3361 label $top.from -text "From:"
3362 entry $top.fromsha1 -width 40 -relief flat
3363 $top.fromsha1 insert 0 $oldid
3364 $top.fromsha1 conf -state readonly
3365 grid $top.from $top.fromsha1 -sticky w
3366 entry $top.fromhead -width 60 -relief flat
3367 $top.fromhead insert 0 $oldhead
3368 $top.fromhead conf -state readonly
3369 grid x $top.fromhead -sticky w
3370 label $top.to -text "To:"
3371 entry $top.tosha1 -width 40 -relief flat
3372 $top.tosha1 insert 0 $newid
3373 $top.tosha1 conf -state readonly
3374 grid $top.to $top.tosha1 -sticky w
3375 entry $top.tohead -width 60 -relief flat
3376 $top.tohead insert 0 $newhead
3377 $top.tohead conf -state readonly
3378 grid x $top.tohead -sticky w
3379 button $top.rev -text "Reverse" -command mkpatchrev -padx 5
3380 grid $top.rev x -pady 10
3381 label $top.flab -text "Output file:"
3382 entry $top.fname -width 60
3383 $top.fname insert 0 [file normalize "patch$patchnum.patch"]
3385 grid $top.flab $top.fname -sticky w
3387 button $top.buts.gen -text "Generate" -command mkpatchgo
3388 button $top.buts.can -text "Cancel" -command mkpatchcan
3389 grid $top.buts.gen $top.buts.can
3390 grid columnconfigure $top.buts 0 -weight 1 -uniform a
3391 grid columnconfigure $top.buts 1 -weight 1 -uniform a
3392 grid $top.buts - -pady 10 -sticky ew
3396 proc mkpatchrev {} {
3399 set oldid [$patchtop.fromsha1 get]
3400 set oldhead [$patchtop.fromhead get]
3401 set newid [$patchtop.tosha1 get]
3402 set newhead [$patchtop.tohead get]
3403 foreach e [list fromsha1 fromhead tosha1 tohead] \
3404 v [list $newid $newhead $oldid $oldhead] {
3405 $patchtop.$e conf -state normal
3406 $patchtop.$e delete 0 end
3407 $patchtop.$e insert 0 $v
3408 $patchtop.$e conf -state readonly
3415 set oldid [$patchtop.fromsha1 get]
3416 set newid [$patchtop.tosha1 get]
3417 set fname [$patchtop.fname get]
3418 if {[catch {exec git-diff-tree -p $oldid $newid >$fname &} err]} {
3419 error_popup "Error creating patch: $err"
3421 catch {destroy $patchtop}
3425 proc mkpatchcan {} {
3428 catch {destroy $patchtop}
3433 global rowmenuid mktagtop commitinfo
3437 catch {destroy $top}
3439 label $top.title -text "Create tag"
3440 grid $top.title - -pady 10
3441 label $top.id -text "ID:"
3442 entry $top.sha1 -width 40 -relief flat
3443 $top.sha1 insert 0 $rowmenuid
3444 $top.sha1 conf -state readonly
3445 grid $top.id $top.sha1 -sticky w
3446 entry $top.head -width 60 -relief flat
3447 $top.head insert 0 [lindex $commitinfo($rowmenuid) 0]
3448 $top.head conf -state readonly
3449 grid x $top.head -sticky w
3450 label $top.tlab -text "Tag name:"
3451 entry $top.tag -width 60
3452 grid $top.tlab $top.tag -sticky w
3454 button $top.buts.gen -text "Create" -command mktaggo
3455 button $top.buts.can -text "Cancel" -command mktagcan
3456 grid $top.buts.gen $top.buts.can
3457 grid columnconfigure $top.buts 0 -weight 1 -uniform a
3458 grid columnconfigure $top.buts 1 -weight 1 -uniform a
3459 grid $top.buts - -pady 10 -sticky ew
3464 global mktagtop env tagids idtags
3466 set id [$mktagtop.sha1 get]
3467 set tag [$mktagtop.tag get]
3469 error_popup "No tag name specified"
3472 if {[info exists tagids($tag)]} {
3473 error_popup "Tag \"$tag\" already exists"
3478 set fname [file join $dir "refs/tags" $tag]
3479 set f [open $fname w]
3483 error_popup "Error creating tag: $err"
3487 set tagids($tag) $id
3488 lappend idtags($id) $tag
3492 proc redrawtags {id} {
3493 global canv linehtag idline idpos selectedline
3495 if {![info exists idline($id)]} return
3496 $canv delete tag.$id
3497 set xt [eval drawtags $id $idpos($id)]
3498 $canv coords $linehtag($idline($id)) $xt [lindex $idpos($id) 2]
3499 if {[info exists selectedline] && $selectedline == $idline($id)} {
3500 selectline $selectedline 0
3507 catch {destroy $mktagtop}
3516 proc writecommit {} {
3517 global rowmenuid wrcomtop commitinfo wrcomcmd
3519 set top .writecommit
3521 catch {destroy $top}
3523 label $top.title -text "Write commit to file"
3524 grid $top.title - -pady 10
3525 label $top.id -text "ID:"
3526 entry $top.sha1 -width 40 -relief flat
3527 $top.sha1 insert 0 $rowmenuid
3528 $top.sha1 conf -state readonly
3529 grid $top.id $top.sha1 -sticky w
3530 entry $top.head -width 60 -relief flat
3531 $top.head insert 0 [lindex $commitinfo($rowmenuid) 0]
3532 $top.head conf -state readonly
3533 grid x $top.head -sticky w
3534 label $top.clab -text "Command:"
3535 entry $top.cmd -width 60 -textvariable wrcomcmd
3536 grid $top.clab $top.cmd -sticky w -pady 10
3537 label $top.flab -text "Output file:"
3538 entry $top.fname -width 60
3539 $top.fname insert 0 [file normalize "commit-[string range $rowmenuid 0 6]"]
3540 grid $top.flab $top.fname -sticky w
3542 button $top.buts.gen -text "Write" -command wrcomgo
3543 button $top.buts.can -text "Cancel" -command wrcomcan
3544 grid $top.buts.gen $top.buts.can
3545 grid columnconfigure $top.buts 0 -weight 1 -uniform a
3546 grid columnconfigure $top.buts 1 -weight 1 -uniform a
3547 grid $top.buts - -pady 10 -sticky ew
3554 set id [$wrcomtop.sha1 get]
3555 set cmd "echo $id | [$wrcomtop.cmd get]"
3556 set fname [$wrcomtop.fname get]
3557 if {[catch {exec sh -c $cmd >$fname &} err]} {
3558 error_popup "Error writing commit: $err"
3560 catch {destroy $wrcomtop}
3567 catch {destroy $wrcomtop}
3571 proc listrefs {id} {
3572 global idtags idheads idotherrefs
3575 if {[info exists idtags($id)]} {
3579 if {[info exists idheads($id)]} {
3583 if {[info exists idotherrefs($id)]} {
3584 set z $idotherrefs($id)
3586 return [list $x $y $z]
3589 proc rereadrefs {} {
3590 global idtags idheads idotherrefs
3591 global tagids headids otherrefids
3593 set refids [concat [array names idtags] \
3594 [array names idheads] [array names idotherrefs]]
3595 foreach id $refids {
3596 if {![info exists ref($id)]} {
3597 set ref($id) [listrefs $id]
3600 foreach v {tagids idtags headids idheads otherrefids idotherrefs} {
3604 set refids [lsort -unique [concat $refids [array names idtags] \
3605 [array names idheads] [array names idotherrefs]]]
3606 foreach id $refids {
3607 set v [listrefs $id]
3608 if {![info exists ref($id)] || $ref($id) != $v} {
3614 proc showtag {tag isnew} {
3615 global ctext cflist tagcontents tagids linknum
3618 addtohistory [list showtag $tag 0]
3620 $ctext conf -state normal
3621 $ctext delete 0.0 end
3623 if {[info exists tagcontents($tag)]} {
3624 set text $tagcontents($tag)
3626 set text "Tag: $tag\nId: $tagids($tag)"
3628 appendwithlinks $text
3629 $ctext conf -state disabled
3630 $cflist delete 0 end
3639 proc formatdate {d} {
3640 global hours nhours tfd fastdate
3643 return [clock format $d -format "%Y-%m-%d %H:%M:%S"]
3645 set hr [expr {$d / 3600}]
3646 set ms [expr {$d % 3600}]
3647 if {![info exists hours($hr)]} {
3648 set hours($hr) [clock format $d -format "%Y-%m-%d %H"]
3652 set minsec [format "%.2d:%.2d" [expr {$ms/60}] [expr {$ms%60}]]
3653 return "$hours($hr):$minsec"
3659 set diffopts "-U 5 -p"
3660 set wrcomcmd "git-diff-tree --stdin -p --pretty"
3661 set gitencoding "utf-8"
3663 set mainfont {Helvetica 9}
3664 set textfont {Courier 9}
3665 set findmergefiles 0
3672 set colors {green red blue magenta darkgrey brown orange}
3674 catch {source ~/.gitk}
3676 set namefont $mainfont
3678 lappend namefont bold
3683 switch -regexp -- $arg {
3685 "^-b" { set boldnames 1 }
3686 "^-d" { set datemode 1 }
3687 "^-r" { set revlistorder 1 }
3689 lappend revtreeargs $arg
3704 getcommits $revtreeargs