77656d3675c5c128eafe3667d5fcb95e38559b9f
   1# git-gui blame viewer
   2# Copyright (C) 2006, 2007 Shawn Pearce
   3
   4class blame {
   5
   6image create photo ::blame::img_back_arrow -data {R0lGODlhGAAYAIUAAPwCBEzKXFTSZIz+nGzmhGzqfGTidIT+nEzGXHTqhGzmfGzifFzadETCVES+VARWDFzWbHzyjAReDGTadFTOZDSyRDyyTCymPARaFGTedFzSbDy2TCyqRCyqPARaDAyCHES6VDy6VCyiPAR6HCSeNByWLARyFARiDARqFGTifARiFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAEAAAAALAAAAAAYABgAAAajQIBwSCwaj8ikcsk0BppJwRPqHEypQwHBis0WDAdEFyBIKBaMAKLBdjQeSkFBYTBAIvgEoS6JmhUTEwIUDQ4VFhcMGEhyCgoZExoUaxsWHB0THkgfAXUGAhoBDSAVFR0XBnCbDRmgog0hpSIiDJpJIyEQhBUcJCIlwA22SSYVogknEg8eD82qSigdDSknY0IqJQXPYxIl1dZCGNvWw+Dm510GQQAh/mhDcmVhdGVkIGJ5IEJNUFRvR0lGIFBybyB2ZXJzaW9uIDIuNQ0KqSBEZXZlbENvciAxOTk3LDE5OTguIEFsbCByaWdodHMgcmVzZXJ2ZWQuDQpodHRwOi8vd3d3LmRldmVsY29yLmNvbQA7}
   7
   8# Persistant data (survives loads)
   9#
  10field history {}; # viewer history: {commit path}
  11field header    ; # array commit,key -> header field
  12
  13# Tk UI control paths
  14#
  15field w          ; # top window in this viewer
  16field w_back     ; # our back button
  17field w_path     ; # label showing the current file path
  18field w_columns  ; # list of all column widgets in the viewer
  19field w_line     ; # text column: all line numbers
  20field w_amov     ; # text column: annotations + move tracking
  21field w_asim     ; # text column: annotations (simple computation)
  22field w_file     ; # text column: actual file data
  23field w_cviewer  ; # pane showing commit message
  24field finder     ; # find mini-dialog frame
  25field status     ; # status mega-widget instance
  26field old_height ; # last known height of $w.file_pane
  27
  28
  29# Tk UI colors
  30#
  31variable active_color #c0edc5
  32variable group_colors {
  33        #d6d6d6
  34        #e1e1e1
  35        #ececec
  36}
  37
  38# Current blame data; cleared/reset on each load
  39#
  40field commit               ; # input commit to blame
  41field path                 ; # input filename to view in $commit
  42
  43field current_fd        {} ; # background process running
  44field highlight_line    -1 ; # current line selected
  45field highlight_column  {} ; # current commit column selected
  46field highlight_commit  {} ; # sha1 of commit selected
  47
  48field total_lines       0  ; # total length of file
  49field blame_lines       0  ; # number of lines computed
  50field amov_data            ; # list of {commit origfile origline}
  51field asim_data            ; # list of {commit origfile origline}
  52
  53field r_commit             ; # commit currently being parsed
  54field r_orig_line          ; # original line number
  55field r_final_line         ; # final line number
  56field r_line_count         ; # lines in this region
  57
  58field tooltip_wm        {} ; # Current tooltip toplevel, if open
  59field tooltip_t         {} ; # Text widget in $tooltip_wm
  60field tooltip_timer     {} ; # Current timer event for our tooltip
  61field tooltip_commit    {} ; # Commit(s) in tooltip
  62
  63constructor new {i_commit i_path i_jump} {
  64        global cursor_ptr M1B M1T have_tk85 use_ttk NS
  65        variable active_color
  66        variable group_colors
  67
  68        set commit $i_commit
  69        set path   $i_path
  70
  71        make_toplevel top w
  72        wm title $top [append "[appname] ([reponame]): " [mc "File Viewer"]]
  73
  74        set font_w [font measure font_diff "0"]
  75
  76        gold_frame $w.header
  77        tlabel $w.header.commit_l \
  78                -text [mc "Commit:"] \
  79                -background gold \
  80                -foreground black \
  81                -anchor w \
  82                -justify left
  83        set w_back $w.header.commit_b
  84        tlabel $w_back \
  85                -image ::blame::img_back_arrow \
  86                -borderwidth 0 \
  87                -relief flat \
  88                -state disabled \
  89                -background gold \
  90                -foreground black \
  91                -activebackground gold
  92        bind $w_back <Button-1> "
  93                if {\[$w_back cget -state\] eq {normal}} {
  94                        [cb _history_menu]
  95                }
  96                "
  97        tlabel $w.header.commit \
  98                -textvariable @commit \
  99                -background gold \
 100                -foreground black \
 101                -anchor w \
 102                -justify left
 103        tlabel $w.header.path_l \
 104                -text [mc "File:"] \
 105                -background gold \
 106                -foreground black \
 107                -anchor w \
 108                -justify left
 109        set w_path $w.header.path
 110        tlabel $w_path \
 111                -background gold \
 112                -foreground black \
 113                -anchor w \
 114                -justify left
 115        pack $w.header.commit_l -side left
 116        pack $w_back -side left
 117        pack $w.header.commit -side left
 118        pack $w_path -fill x -side right
 119        pack $w.header.path_l -side right
 120
 121        panedwindow $w.file_pane -orient vertical -borderwidth 0 -sashwidth 3
 122        frame $w.file_pane.out -relief flat -borderwidth 1
 123        frame $w.file_pane.cm -relief sunken -borderwidth 1
 124        $w.file_pane add $w.file_pane.out \
 125                -sticky nsew \
 126                -minsize 100 \
 127                -height 100 \
 128                -width 100
 129        $w.file_pane add $w.file_pane.cm \
 130                -sticky nsew \
 131                -minsize 25 \
 132                -height 25 \
 133                -width 100
 134
 135        set w_line $w.file_pane.out.linenumber_t
 136        text $w_line \
 137                -takefocus 0 \
 138                -highlightthickness 0 \
 139                -padx 0 -pady 0 \
 140                -background white \
 141                -foreground black \
 142                -borderwidth 0 \
 143                -state disabled \
 144                -wrap none \
 145                -height 40 \
 146                -width 6 \
 147                -font font_diff
 148        $w_line tag conf linenumber -justify right -rmargin 5
 149
 150        set w_amov $w.file_pane.out.amove_t
 151        text $w_amov \
 152                -takefocus 0 \
 153                -highlightthickness 0 \
 154                -padx 0 -pady 0 \
 155                -background white \
 156                -foreground black \
 157                -borderwidth 0 \
 158                -state disabled \
 159                -wrap none \
 160                -height 40 \
 161                -width 5 \
 162                -font font_diff
 163        $w_amov tag conf author_abbr -justify right -rmargin 5
 164        $w_amov tag conf curr_commit
 165        $w_amov tag conf prior_commit -foreground blue -underline 1
 166        $w_amov tag bind prior_commit \
 167                <Button-1> \
 168                "[cb _load_commit $w_amov @amov_data @%x,%y];break"
 169
 170        set w_asim $w.file_pane.out.asimple_t
 171        text $w_asim \
 172                -takefocus 0 \
 173                -highlightthickness 0 \
 174                -padx 0 -pady 0 \
 175                -background white \
 176                -foreground black \
 177                -borderwidth 0 \
 178                -state disabled \
 179                -wrap none \
 180                -height 40 \
 181                -width 4 \
 182                -font font_diff
 183        $w_asim tag conf author_abbr -justify right
 184        $w_asim tag conf curr_commit
 185        $w_asim tag conf prior_commit -foreground blue -underline 1
 186        $w_asim tag bind prior_commit \
 187                <Button-1> \
 188                "[cb _load_commit $w_asim @asim_data @%x,%y];break"
 189
 190        set w_file $w.file_pane.out.file_t
 191        text $w_file \
 192                -takefocus 0 \
 193                -highlightthickness 0 \
 194                -padx 0 -pady 0 \
 195                -background white \
 196                -foreground black \
 197                -borderwidth 0 \
 198                -state disabled \
 199                -wrap none \
 200                -height 40 \
 201                -width 80 \
 202                -xscrollcommand [list $w.file_pane.out.sbx set] \
 203                -font font_diff
 204        if {$have_tk85} {
 205                $w_file configure -inactiveselectbackground darkblue
 206        }
 207        $w_file tag conf found \
 208                -background yellow
 209
 210        set w_columns [list $w_amov $w_asim $w_line $w_file]
 211
 212        ${NS}::scrollbar $w.file_pane.out.sbx \
 213                -orient h \
 214                -command [list $w_file xview]
 215        ${NS}::scrollbar $w.file_pane.out.sby \
 216                -orient v \
 217                -command [list scrollbar2many $w_columns yview]
 218        eval grid $w_columns $w.file_pane.out.sby -sticky nsew
 219        grid conf \
 220                $w.file_pane.out.sbx \
 221                -column [expr {[llength $w_columns] - 1}] \
 222                -sticky we
 223        grid columnconfigure \
 224                $w.file_pane.out \
 225                [expr {[llength $w_columns] - 1}] \
 226                -weight 1
 227        grid rowconfigure $w.file_pane.out 0 -weight 1
 228
 229        set finder [::searchbar::new \
 230                $w.file_pane.out.ff $w_file \
 231                -column [expr {[llength $w_columns] - 1}] \
 232                ]
 233
 234        set w_cviewer $w.file_pane.cm.t
 235        text $w_cviewer \
 236                -background white \
 237                -foreground black \
 238                -borderwidth 0 \
 239                -state disabled \
 240                -wrap none \
 241                -height 10 \
 242                -width 80 \
 243                -xscrollcommand [list $w.file_pane.cm.sbx set] \
 244                -yscrollcommand [list $w.file_pane.cm.sby set] \
 245                -font font_diff
 246        $w_cviewer tag conf still_loading \
 247                -font font_uiitalic \
 248                -justify center
 249        $w_cviewer tag conf header_key \
 250                -tabs {3c} \
 251                -background $active_color \
 252                -font font_uibold
 253        $w_cviewer tag conf header_val \
 254                -background $active_color \
 255                -font font_ui
 256        $w_cviewer tag raise sel
 257        ${NS}::scrollbar $w.file_pane.cm.sbx \
 258                -orient h \
 259                -command [list $w_cviewer xview]
 260        ${NS}::scrollbar $w.file_pane.cm.sby \
 261                -orient v \
 262                -command [list $w_cviewer yview]
 263        pack $w.file_pane.cm.sby -side right -fill y
 264        pack $w.file_pane.cm.sbx -side bottom -fill x
 265        pack $w_cviewer -expand 1 -fill both
 266
 267        set status [::status_bar::new $w.status]
 268
 269        menu $w.ctxm -tearoff 0
 270        $w.ctxm add command \
 271                -label [mc "Copy Commit"] \
 272                -command [cb _copycommit]
 273        $w.ctxm add separator
 274        $w.ctxm add command \
 275                -label [mc "Find Text..."] \
 276                -accelerator F7 \
 277                -command [list searchbar::show $finder]
 278        menu $w.ctxm.enc
 279        build_encoding_menu $w.ctxm.enc [cb _setencoding]
 280        $w.ctxm add cascade \
 281                -label [mc "Encoding"] \
 282                -menu $w.ctxm.enc
 283        $w.ctxm add command \
 284                -label [mc "Do Full Copy Detection"] \
 285                -command [cb _fullcopyblame]
 286        $w.ctxm add separator
 287        $w.ctxm add command \
 288                -label [mc "Show History Context"] \
 289                -command [cb _gitkcommit]
 290        $w.ctxm add command \
 291                -label [mc "Blame Parent Commit"] \
 292                -command [cb _blameparent]
 293
 294        foreach i $w_columns {
 295                for {set g 0} {$g < [llength $group_colors]} {incr g} {
 296                        $i tag conf color$g -background [lindex $group_colors $g]
 297                }
 298
 299                if {$i eq $w_file} {
 300                        $w_file tag raise found
 301                }
 302                $i tag raise sel
 303
 304                $i conf -cursor $cursor_ptr
 305                $i conf -yscrollcommand \
 306                        "[list ::searchbar::scrolled $finder]
 307                         [list many2scrollbar $w_columns yview $w.file_pane.out.sby]"
 308                bind $i <Button-1> "
 309                        [cb _hide_tooltip]
 310                        [cb _click $i @%x,%y]
 311                        focus $i
 312                "
 313                bind $i <Any-Motion>  [cb _show_tooltip $i @%x,%y]
 314                bind $i <Any-Enter>   [cb _hide_tooltip]
 315                bind $i <Any-Leave>   [cb _hide_tooltip]
 316                bind_button3 $i "
 317                        [cb _hide_tooltip]
 318                        set cursorX %x
 319                        set cursorY %y
 320                        set cursorW %W
 321                        tk_popup $w.ctxm %X %Y
 322                "
 323                bind $i <Shift-Tab> "[list focus $w_cviewer];break"
 324                bind $i <Tab>       "[cb _focus_search $w_cviewer];break"
 325        }
 326
 327        foreach i [concat $w_columns $w_cviewer] {
 328                bind $i <Key-Up>        {catch {%W yview scroll -1 units};break}
 329                bind $i <Key-Down>      {catch {%W yview scroll  1 units};break}
 330                bind $i <Key-Left>      {catch {%W xview scroll -1 units};break}
 331                bind $i <Key-Right>     {catch {%W xview scroll  1 units};break}
 332                bind $i <Key-k>         {catch {%W yview scroll -1 units};break}
 333                bind $i <Key-j>         {catch {%W yview scroll  1 units};break}
 334                bind $i <Key-h>         {catch {%W xview scroll -1 units};break}
 335                bind $i <Key-l>         {catch {%W xview scroll  1 units};break}
 336                bind $i <Control-Key-b> {catch {%W yview scroll -1 pages};break}
 337                bind $i <Control-Key-f> {catch {%W yview scroll  1 pages};break}
 338        }
 339
 340        bind $w_cviewer <Shift-Tab> "[cb _focus_search $w_file];break"
 341        bind $w_cviewer <Tab>       "[list focus $w_file];break"
 342        bind $w_cviewer <Button-1>   [list focus $w_cviewer]
 343        bind $w_file    <Visibility> [cb _focus_search $w_file]
 344        bind $top       <F7>         [list searchbar::show $finder]
 345        bind $top       <Escape>     [list searchbar::hide $finder]
 346        bind $top       <F3>         [list searchbar::find_next $finder]
 347        bind $top       <Shift-F3>   [list searchbar::find_prev $finder]
 348        catch { bind $top <Shift-Key-XF86_Switch_VT_3> [list searchbar::find_prev $finder] }
 349
 350        grid configure $w.header -sticky ew
 351        grid configure $w.file_pane -sticky nsew
 352        grid configure $w.status -sticky ew
 353        grid columnconfigure $top 0 -weight 1
 354        grid rowconfigure $top 0 -weight 0
 355        grid rowconfigure $top 1 -weight 1
 356        grid rowconfigure $top 2 -weight 0
 357
 358        set req_w [winfo reqwidth  $top]
 359        set req_h [winfo reqheight $top]
 360        set scr_w [expr {[winfo screenwidth $top] - 40}]
 361        set scr_h [expr {[winfo screenheight $top] - 120}]
 362        set opt_w [expr {$font_w * (80 + 5*3 + 3)}]
 363        if {$req_w < $opt_w} {set req_w $opt_w}
 364        if {$req_w > $scr_w} {set req_w $scr_w}
 365        set opt_h [expr {$req_w*4/3}]
 366        if {$req_h < $scr_h} {set req_h $scr_h}
 367        if {$req_h > $opt_h} {set req_h $opt_h}
 368        set g "${req_w}x${req_h}"
 369        wm geometry $top $g
 370        update
 371
 372        set old_height [winfo height $w.file_pane]
 373        $w.file_pane sash place 0 \
 374                [lindex [$w.file_pane sash coord 0] 0] \
 375                [expr {int($old_height * 0.80)}]
 376        bind $w.file_pane <Configure> \
 377        "if {{$w.file_pane} eq {%W}} {[cb _resize %h]}"
 378
 379        wm protocol $top WM_DELETE_WINDOW "destroy $top"
 380        bind $top <Destroy> [cb _handle_destroy %W]
 381
 382        _load $this $i_jump
 383}
 384
 385method _focus_search {win} {
 386        if {[searchbar::visible $finder]} {
 387                focus [searchbar::editor $finder]
 388        } else {
 389                focus $win
 390        }
 391}
 392
 393method _handle_destroy {win} {
 394        if {$win eq $w} {
 395                _kill $this
 396                delete_this
 397        }
 398}
 399
 400method _kill {} {
 401        if {$current_fd ne {}} {
 402                kill_file_process $current_fd
 403                catch {close $current_fd}
 404                set current_fd {}
 405        }
 406}
 407
 408method _load {jump} {
 409        variable group_colors
 410
 411        _hide_tooltip $this
 412
 413        if {$total_lines != 0 || $current_fd ne {}} {
 414                _kill $this
 415
 416                foreach i $w_columns {
 417                        $i conf -state normal
 418                        $i delete 0.0 end
 419                        foreach g [$i tag names] {
 420                                if {[regexp {^g[0-9a-f]{40}$} $g]} {
 421                                        $i tag delete $g
 422                                }
 423                        }
 424                        $i conf -state disabled
 425                }
 426
 427                $w_cviewer conf -state normal
 428                $w_cviewer delete 0.0 end
 429                $w_cviewer conf -state disabled
 430
 431                set highlight_line -1
 432                set highlight_column {}
 433                set highlight_commit {}
 434                set total_lines 0
 435        }
 436
 437        if {$history eq {}} {
 438                $w_back conf -state disabled
 439        } else {
 440                $w_back conf -state normal
 441        }
 442
 443        # Index 0 is always empty.  There is never line 0 as
 444        # we use only 1 based lines, as that matches both with
 445        # git-blame output and with Tk's text widget.
 446        #
 447        set amov_data [list [list]]
 448        set asim_data [list [list]]
 449
 450        $status show [mc "Reading %s..." "$commit:[escape_path $path]"]
 451        $w_path conf -text [escape_path $path]
 452
 453        set do_textconv 0
 454        if {![is_config_false gui.textconv] && [git-version >= 1.7.2]} {
 455                set filter [gitattr $path diff set]
 456                set textconv [get_config [join [list diff $filter textconv] .]]
 457                if {$filter ne {set} && $textconv ne {}} {
 458                        set do_textconv 1
 459                }
 460        }
 461        if {$commit eq {}} {
 462                if {$do_textconv ne 0} {
 463                        # Run textconv with sh -c "..." to allow it to
 464                        # contain command + arguments.
 465                        set fd [open |[list [shellpath] -c "$textconv \"\$0\"" $path] r]
 466                } else {
 467                        set fd [open $path r]
 468                }
 469                fconfigure $fd -eofchar {}
 470        } else {
 471                if {$do_textconv ne 0} {
 472                        set fd [git_read cat-file --textconv "$commit:$path"]
 473                } else {
 474                        set fd [git_read cat-file blob "$commit:$path"]
 475                }
 476        }
 477        fconfigure $fd \
 478                -blocking 0 \
 479                -translation lf \
 480                -encoding [get_path_encoding $path]
 481        fileevent $fd readable [cb _read_file $fd $jump]
 482        set current_fd $fd
 483}
 484
 485method _history_menu {} {
 486        set m $w.backmenu
 487        if {[winfo exists $m]} {
 488                $m delete 0 end
 489        } else {
 490                menu $m -tearoff 0
 491        }
 492
 493        for {set i [expr {[llength $history] - 1}]
 494                } {$i >= 0} {incr i -1} {
 495                set e [lindex $history $i]
 496                set c [lindex $e 0]
 497                set f [lindex $e 1]
 498
 499                if {[regexp {^[0-9a-f]{40}$} $c]} {
 500                        set t [string range $c 0 8]...
 501                } elseif {$c eq {}} {
 502                        set t {Working Directory}
 503                } else {
 504                        set t $c
 505                }
 506                if {![catch {set summary $header($c,summary)}]} {
 507                        append t " $summary"
 508                        if {[string length $t] > 70} {
 509                                set t [string range $t 0 66]...
 510                        }
 511                }
 512
 513                $m add command -label $t -command [cb _goback $i]
 514        }
 515        set X [winfo rootx $w_back]
 516        set Y [expr {[winfo rooty $w_back] + [winfo height $w_back]}]
 517        tk_popup $m $X $Y
 518}
 519
 520method _goback {i} {
 521        set dat [lindex $history $i]
 522        set history [lrange $history 0 [expr {$i - 1}]]
 523        set commit [lindex $dat 0]
 524        set path [lindex $dat 1]
 525        _load $this [lrange $dat 2 5]
 526}
 527
 528method _read_file {fd jump} {
 529        if {$fd ne $current_fd} {
 530                catch {close $fd}
 531                return
 532        }
 533
 534        foreach i $w_columns {$i conf -state normal}
 535        while {[gets $fd line] >= 0} {
 536                regsub "\r\$" $line {} line
 537                incr total_lines
 538                lappend amov_data {}
 539                lappend asim_data {}
 540
 541                if {$total_lines > 1} {
 542                        foreach i $w_columns {$i insert end "\n"}
 543                }
 544
 545                $w_line insert end "$total_lines" linenumber
 546                $w_file insert end "$line"
 547        }
 548
 549        set ln_wc [expr {[string length $total_lines] + 2}]
 550        if {[$w_line cget -width] < $ln_wc} {
 551                $w_line conf -width $ln_wc
 552        }
 553
 554        foreach i $w_columns {$i conf -state disabled}
 555
 556        if {[eof $fd]} {
 557                close $fd
 558
 559                # If we don't force Tk to update the widgets *right now*
 560                # none of our jump commands will cause a change in the UI.
 561                #
 562                update
 563
 564                if {[llength $jump] == 1} {
 565                        set highlight_line [lindex $jump 0]
 566                        $w_file see "$highlight_line.0"
 567                } elseif {[llength $jump] == 4} {
 568                        set highlight_column [lindex $jump 0]
 569                        set highlight_line [lindex $jump 1]
 570                        $w_file xview moveto [lindex $jump 2]
 571                        $w_file yview moveto [lindex $jump 3]
 572                }
 573
 574                _exec_blame $this $w_asim @asim_data \
 575                        [list] \
 576                        [mc "Loading copy/move tracking annotations..."]
 577        }
 578} ifdeleted { catch {close $fd} }
 579
 580method _exec_blame {cur_w cur_d options cur_s} {
 581        lappend options --incremental --encoding=utf-8
 582        if {$commit eq {}} {
 583                lappend options --contents $path
 584        } else {
 585                lappend options $commit
 586        }
 587        lappend options -- $path
 588        set fd [eval git_read --nice blame $options]
 589        fconfigure $fd -blocking 0 -translation lf -encoding utf-8
 590        fileevent $fd readable [cb _read_blame $fd $cur_w $cur_d]
 591        set current_fd $fd
 592        set blame_lines 0
 593
 594        $status start \
 595                $cur_s \
 596                [mc "lines annotated"]
 597}
 598
 599method _read_blame {fd cur_w cur_d} {
 600        upvar #0 $cur_d line_data
 601        variable group_colors
 602
 603        if {$fd ne $current_fd} {
 604                catch {close $fd}
 605                return
 606        }
 607
 608        $cur_w conf -state normal
 609        while {[gets $fd line] >= 0} {
 610                if {[regexp {^([a-z0-9]{40}) (\d+) (\d+) (\d+)$} $line line \
 611                        cmit original_line final_line line_count]} {
 612                        set r_commit     $cmit
 613                        set r_orig_line  $original_line
 614                        set r_final_line $final_line
 615                        set r_line_count $line_count
 616                } elseif {[string match {filename *} $line]} {
 617                        set file [string range $line 9 end]
 618                        set n    $r_line_count
 619                        set lno  $r_final_line
 620                        set oln  $r_orig_line
 621                        set cmit $r_commit
 622
 623                        if {[regexp {^0{40}$} $cmit]} {
 624                                set commit_abbr work
 625                                set commit_type curr_commit
 626                        } elseif {$cmit eq $commit} {
 627                                set commit_abbr this
 628                                set commit_type curr_commit
 629                        } else {
 630                                set commit_type prior_commit
 631                                set commit_abbr [string range $cmit 0 3]
 632                        }
 633
 634                        set author_abbr {}
 635                        set a_name {}
 636                        catch {set a_name $header($cmit,author)}
 637                        while {$a_name ne {}} {
 638                                if {$author_abbr ne {}
 639                                        && [string index $a_name 0] eq {'}} {
 640                                        regsub {^'[^']+'\s+} $a_name {} a_name
 641                                }
 642                                if {![regexp {^([[:upper:]])} $a_name _a]} break
 643                                append author_abbr $_a
 644                                unset _a
 645                                if {![regsub \
 646                                        {^[[:upper:]][^\s]*\s+} \
 647                                        $a_name {} a_name ]} break
 648                        }
 649                        if {$author_abbr eq {}} {
 650                                set author_abbr { |}
 651                        } else {
 652                                set author_abbr [string range $author_abbr 0 3]
 653                        }
 654                        unset a_name
 655
 656                        set first_lno $lno
 657                        while {
 658                           $first_lno > 1
 659                        && $cmit eq [lindex $line_data [expr {$first_lno - 1}] 0]
 660                        && $file eq [lindex $line_data [expr {$first_lno - 1}] 1]
 661                        } {
 662                                incr first_lno -1
 663                        }
 664
 665                        set color {}
 666                        if {$first_lno < $lno} {
 667                                foreach g [$w_file tag names $first_lno.0] {
 668                                        if {[regexp {^color[0-9]+$} $g]} {
 669                                                set color $g
 670                                                break
 671                                        }
 672                                }
 673                        } else {
 674                                set i [lsort [concat \
 675                                        [$w_file tag names "[expr {$first_lno - 1}].0"] \
 676                                        [$w_file tag names "[expr {$lno + $n}].0"] \
 677                                        ]]
 678                                for {set g 0} {$g < [llength $group_colors]} {incr g} {
 679                                        if {[lsearch -sorted -exact $i color$g] == -1} {
 680                                                set color color$g
 681                                                break
 682                                        }
 683                                }
 684                        }
 685                        if {$color eq {}} {
 686                                set color color0
 687                        }
 688
 689                        while {$n > 0} {
 690                                set lno_e "$lno.0 lineend + 1c"
 691                                if {[lindex $line_data $lno] ne {}} {
 692                                        set g [lindex $line_data $lno 0]
 693                                        foreach i $w_columns {
 694                                                $i tag remove g$g $lno.0 $lno_e
 695                                        }
 696                                }
 697                                lset line_data $lno [list $cmit $file $oln]
 698
 699                                $cur_w delete $lno.0 "$lno.0 lineend"
 700                                if {$lno == $first_lno} {
 701                                        $cur_w insert $lno.0 $commit_abbr $commit_type
 702                                } elseif {$lno == [expr {$first_lno + 1}]} {
 703                                        $cur_w insert $lno.0 $author_abbr author_abbr
 704                                } else {
 705                                        $cur_w insert $lno.0 { |}
 706                                }
 707
 708                                foreach i $w_columns {
 709                                        if {$cur_w eq $w_amov} {
 710                                                for {set g 0} \
 711                                                        {$g < [llength $group_colors]} \
 712                                                        {incr g} {
 713                                                        $i tag remove color$g $lno.0 $lno_e
 714                                                }
 715                                                $i tag add $color $lno.0 $lno_e
 716                                        }
 717                                        $i tag add g$cmit $lno.0 $lno_e
 718                                }
 719
 720                                if {$highlight_column eq $cur_w} {
 721                                        if {$highlight_line == -1
 722                                         && [lindex [$w_file yview] 0] == 0} {
 723                                                $w_file see $lno.0
 724                                                set highlight_line $lno
 725                                        }
 726                                        if {$highlight_line == $lno} {
 727                                                _showcommit $this $cur_w $lno
 728                                        }
 729                                }
 730
 731                                incr n -1
 732                                incr lno
 733                                incr oln
 734                                incr blame_lines
 735                        }
 736
 737                        while {
 738                           $cmit eq [lindex $line_data $lno 0]
 739                        && $file eq [lindex $line_data $lno 1]
 740                        } {
 741                                $cur_w delete $lno.0 "$lno.0 lineend"
 742
 743                                if {$lno == $first_lno} {
 744                                        $cur_w insert $lno.0 $commit_abbr $commit_type
 745                                } elseif {$lno == [expr {$first_lno + 1}]} {
 746                                        $cur_w insert $lno.0 $author_abbr author_abbr
 747                                } else {
 748                                        $cur_w insert $lno.0 { |}
 749                                }
 750
 751                                if {$cur_w eq $w_amov} {
 752                                        foreach i $w_columns {
 753                                                for {set g 0} \
 754                                                        {$g < [llength $group_colors]} \
 755                                                        {incr g} {
 756                                                        $i tag remove color$g $lno.0 $lno_e
 757                                                }
 758                                                $i tag add $color $lno.0 $lno_e
 759                                        }
 760                                }
 761
 762                                incr lno
 763                        }
 764
 765                } elseif {[regexp {^([a-z-]+) (.*)$} $line line key data]} {
 766                        set header($r_commit,$key) $data
 767                }
 768        }
 769        $cur_w conf -state disabled
 770
 771        if {[eof $fd]} {
 772                close $fd
 773                if {$cur_w eq $w_asim} {
 774                        # Switches for original location detection
 775                        set threshold [get_config gui.copyblamethreshold]
 776                        set original_options [list "-C$threshold"]
 777
 778                        if {![is_config_true gui.fastcopyblame]} {
 779                                # thorough copy search; insert before the threshold
 780                                set original_options [linsert $original_options 0 -C]
 781                        }
 782                        if {[git-version >= 1.5.3]} {
 783                                lappend original_options -w ; # ignore indentation changes
 784                        }
 785
 786                        _exec_blame $this $w_amov @amov_data \
 787                                $original_options \
 788                                [mc "Loading original location annotations..."]
 789                } else {
 790                        set current_fd {}
 791                        $status stop [mc "Annotation complete."]
 792                }
 793        } else {
 794                $status update $blame_lines $total_lines
 795        }
 796} ifdeleted { catch {close $fd} }
 797
 798method _find_commit_bound {data_list start_idx delta} {
 799        upvar #0 $data_list line_data
 800        set pos $start_idx
 801        set limit       [expr {[llength $line_data] - 1}]
 802        set base_commit [lindex $line_data $pos 0]
 803
 804        while {$pos > 0 && $pos < $limit} {
 805                set new_pos [expr {$pos + $delta}]
 806                if {[lindex $line_data $new_pos 0] ne $base_commit} {
 807                        return $pos
 808                }
 809
 810                set pos $new_pos
 811        }
 812
 813        return $pos
 814}
 815
 816method _fullcopyblame {} {
 817        if {$current_fd ne {}} {
 818                tk_messageBox \
 819                        -icon error \
 820                        -type ok \
 821                        -title [mc "Busy"] \
 822                        -message [mc "Annotation process is already running."]
 823
 824                return
 825        }
 826
 827        # Switches for original location detection
 828        set threshold [get_config gui.copyblamethreshold]
 829        set original_options [list -C -C "-C$threshold"]
 830
 831        if {[git-version >= 1.5.3]} {
 832                lappend original_options -w ; # ignore indentation changes
 833        }
 834
 835        # Find the line range
 836        set pos @$::cursorX,$::cursorY
 837        set lno [lindex [split [$::cursorW index $pos] .] 0]
 838        set min_amov_lno [_find_commit_bound $this @amov_data $lno -1]
 839        set max_amov_lno [_find_commit_bound $this @amov_data $lno 1]
 840        set min_asim_lno [_find_commit_bound $this @asim_data $lno -1]
 841        set max_asim_lno [_find_commit_bound $this @asim_data $lno 1]
 842
 843        if {$min_asim_lno < $min_amov_lno} {
 844                set min_amov_lno $min_asim_lno
 845        }
 846
 847        if {$max_asim_lno > $max_amov_lno} {
 848                set max_amov_lno $max_asim_lno
 849        }
 850
 851        lappend original_options -L "$min_amov_lno,$max_amov_lno"
 852
 853        # Clear lines
 854        for {set i $min_amov_lno} {$i <= $max_amov_lno} {incr i} {
 855                lset amov_data $i [list ]
 856        }
 857
 858        # Start the back-end process
 859        _exec_blame $this $w_amov @amov_data \
 860                $original_options \
 861                [mc "Running thorough copy detection..."]
 862}
 863
 864method _click {cur_w pos} {
 865        set lno [lindex [split [$cur_w index $pos] .] 0]
 866        _showcommit $this $cur_w $lno
 867}
 868
 869method _setencoding {enc} {
 870        force_path_encoding $path $enc
 871        _load $this [list \
 872                $highlight_column \
 873                $highlight_line \
 874                [lindex [$w_file xview] 0] \
 875                [lindex [$w_file yview] 0] \
 876                ]
 877}
 878
 879method _load_commit {cur_w cur_d pos} {
 880        upvar #0 $cur_d line_data
 881        set lno [lindex [split [$cur_w index $pos] .] 0]
 882        set dat [lindex $line_data $lno]
 883        if {$dat ne {}} {
 884                _load_new_commit $this  \
 885                        [lindex $dat 0] \
 886                        [lindex $dat 1] \
 887                        [list [lindex $dat 2]]
 888        }
 889}
 890
 891method _load_new_commit {new_commit new_path jump} {
 892        lappend history [list \
 893                $commit $path \
 894                $highlight_column \
 895                $highlight_line \
 896                [lindex [$w_file xview] 0] \
 897                [lindex [$w_file yview] 0] \
 898                ]
 899
 900        set commit $new_commit
 901        set path   $new_path
 902        _load $this $jump
 903}
 904
 905method _showcommit {cur_w lno} {
 906        global repo_config
 907        variable active_color
 908
 909        if {$highlight_commit ne {}} {
 910                foreach i $w_columns {
 911                        $i tag conf g$highlight_commit -background {}
 912                        $i tag lower g$highlight_commit
 913                }
 914        }
 915
 916        if {$cur_w eq $w_asim} {
 917                set dat [lindex $asim_data $lno]
 918                set highlight_column $w_asim
 919        } else {
 920                set dat [lindex $amov_data $lno]
 921                set highlight_column $w_amov
 922        }
 923
 924        $w_cviewer conf -state normal
 925        $w_cviewer delete 0.0 end
 926
 927        if {$dat eq {}} {
 928                set cmit {}
 929                $w_cviewer insert end [mc "Loading annotation..."] still_loading
 930        } else {
 931                set cmit [lindex $dat 0]
 932                set file [lindex $dat 1]
 933
 934                foreach i $w_columns {
 935                        $i tag conf g$cmit -background $active_color
 936                        $i tag raise g$cmit
 937                        if {$i eq $w_file} {
 938                                $w_file tag raise found
 939                        }
 940                        $i tag raise sel
 941                }
 942
 943                set author_name {}
 944                set author_email {}
 945                set author_time {}
 946                catch {set author_name $header($cmit,author)}
 947                catch {set author_email $header($cmit,author-mail)}
 948                catch {set author_time [format_date $header($cmit,author-time)]}
 949
 950                set committer_name {}
 951                set committer_email {}
 952                set committer_time {}
 953                catch {set committer_name $header($cmit,committer)}
 954                catch {set committer_email $header($cmit,committer-mail)}
 955                catch {set committer_time [format_date $header($cmit,committer-time)]}
 956
 957                if {[catch {set msg $header($cmit,message)}]} {
 958                        set msg {}
 959                        catch {
 960                                set fd [git_read cat-file commit $cmit]
 961                                fconfigure $fd -encoding binary -translation lf
 962                                # By default commits are assumed to be in utf-8
 963                                set enc utf-8
 964                                while {[gets $fd line] > 0} {
 965                                        if {[string match {encoding *} $line]} {
 966                                                set enc [string tolower [string range $line 9 end]]
 967                                        }
 968                                }
 969                                set msg [read $fd]
 970                                close $fd
 971
 972                                set enc [tcl_encoding $enc]
 973                                if {$enc ne {}} {
 974                                        set msg [encoding convertfrom $enc $msg]
 975                                }
 976                                set msg [string trim $msg]
 977                        }
 978                        set header($cmit,message) $msg
 979                }
 980
 981                $w_cviewer insert end "commit $cmit\n" header_key
 982                $w_cviewer insert end [strcat [mc "Author:"] "\t"] header_key
 983                $w_cviewer insert end "$author_name $author_email" header_val
 984                $w_cviewer insert end "  $author_time\n" header_val
 985
 986                $w_cviewer insert end [strcat [mc "Committer:"] "\t"] header_key
 987                $w_cviewer insert end "$committer_name $committer_email" header_val
 988                $w_cviewer insert end "  $committer_time\n" header_val
 989
 990                if {$file ne $path} {
 991                        $w_cviewer insert end [strcat [mc "Original File:"] "\t"] header_key
 992                        $w_cviewer insert end "[escape_path $file]\n" header_val
 993                }
 994
 995                $w_cviewer insert end "\n$msg"
 996        }
 997        $w_cviewer conf -state disabled
 998
 999        set highlight_line $lno
1000        set highlight_commit $cmit
1001
1002        if {[lsearch -exact $tooltip_commit $highlight_commit] != -1} {
1003                _hide_tooltip $this
1004        }
1005}
1006
1007method _get_click_amov_info {} {
1008        set pos @$::cursorX,$::cursorY
1009        set lno [lindex [split [$::cursorW index $pos] .] 0]
1010        return [lindex $amov_data $lno]
1011}
1012
1013method _copycommit {} {
1014        set dat [_get_click_amov_info $this]
1015        if {$dat ne {}} {
1016                clipboard clear
1017                clipboard append \
1018                        -format STRING \
1019                        -type STRING \
1020                        -- [lindex $dat 0]
1021        }
1022}
1023
1024method _format_offset_date {base offset} {
1025        set exval [expr {$base + $offset*24*60*60}]
1026        return [clock format $exval -format {%Y-%m-%d}]
1027}
1028
1029method _gitkcommit {} {
1030        global nullid
1031
1032        set dat [_get_click_amov_info $this]
1033        if {$dat ne {}} {
1034                set cmit [lindex $dat 0]
1035
1036                # If the line belongs to the working copy, use HEAD instead
1037                if {$cmit eq $nullid} {
1038                        if {[catch {set cmit [git rev-parse --verify HEAD]} err]} {
1039                                error_popup [strcat [mc "Cannot find HEAD commit:"] "\n\n$err"]
1040                                return;
1041                        }
1042                }
1043
1044                set radius [get_config gui.blamehistoryctx]
1045                set cmdline [list --select-commit=$cmit]
1046
1047                if {$radius > 0} {
1048                        set author_time {}
1049                        set committer_time {}
1050
1051                        catch {set author_time $header($cmit,author-time)}
1052                        catch {set committer_time $header($cmit,committer-time)}
1053
1054                        if {$committer_time eq {}} {
1055                                set committer_time $author_time
1056                        }
1057
1058                        set after_time [_format_offset_date $this $committer_time [expr {-$radius}]]
1059                        set before_time [_format_offset_date $this $committer_time $radius]
1060
1061                        lappend cmdline --after=$after_time --before=$before_time
1062                }
1063
1064                lappend cmdline $cmit
1065
1066                set base_rev "HEAD"
1067                if {$commit ne {}} {
1068                        set base_rev $commit
1069                }
1070
1071                if {$base_rev ne $cmit} {
1072                        lappend cmdline $base_rev
1073                }
1074
1075                do_gitk $cmdline
1076        }
1077}
1078
1079method _blameparent {} {
1080        global nullid
1081
1082        set dat [_get_click_amov_info $this]
1083        if {$dat ne {}} {
1084                set cmit [lindex $dat 0]
1085                set new_path [lindex $dat 1]
1086
1087                # Allow using Blame Parent on lines modified in the working copy
1088                if {$cmit eq $nullid} {
1089                        set parent_ref "HEAD"
1090                } else {
1091                        set parent_ref "$cmit^"
1092                }
1093                if {[catch {set cparent [git rev-parse --verify $parent_ref]} err]} {
1094                        error_popup [strcat [mc "Cannot find parent commit:"] "\n\n$err"]
1095                        return;
1096                }
1097
1098                _kill $this
1099
1100                # Generate a diff between the commit and its parent,
1101                # and use the hunks to update the line number.
1102                # Request zero context to simplify calculations.
1103                if {$cmit eq $nullid} {
1104                        set diffcmd [list diff-index --unified=0 $cparent -- $new_path]
1105                } else {
1106                        set diffcmd [list diff-tree --unified=0 $cparent $cmit -- $new_path]
1107                }
1108                if {[catch {set fd [eval git_read $diffcmd]} err]} {
1109                        $status stop [mc "Unable to display parent"]
1110                        error_popup [strcat [mc "Error loading diff:"] "\n\n$err"]
1111                        return
1112                }
1113
1114                set r_orig_line [lindex $dat 2]
1115
1116                fconfigure $fd \
1117                        -blocking 0 \
1118                        -encoding binary \
1119                        -translation binary
1120                fileevent $fd readable [cb _read_diff_load_commit \
1121                        $fd $cparent $new_path $r_orig_line]
1122                set current_fd $fd
1123        }
1124}
1125
1126method _read_diff_load_commit {fd cparent new_path tline} {
1127        if {$fd ne $current_fd} {
1128                catch {close $fd}
1129                return
1130        }
1131
1132        while {[gets $fd line] >= 0} {
1133                if {[regexp {^@@ -(\d+)(,(\d+))? \+(\d+)(,(\d+))? @@} $line line \
1134                        old_line osz old_size new_line nsz new_size]} {
1135
1136                        if {$osz eq {}} { set old_size 1 }
1137                        if {$nsz eq {}} { set new_size 1 }
1138
1139                        if {$new_line <= $tline} {
1140                                if {[expr {$new_line + $new_size}] > $tline} {
1141                                        # Target line within the hunk
1142                                        set line_shift [expr {
1143                                                ($new_size-$old_size)*($tline-$new_line)/$new_size
1144                                                }]
1145                                } else {
1146                                        set line_shift [expr {$new_size-$old_size}]
1147                                }
1148
1149                                set r_orig_line [expr {$r_orig_line - $line_shift}]
1150                        }
1151                }
1152        }
1153
1154        if {[eof $fd]} {
1155                close $fd;
1156                set current_fd {}
1157
1158                _load_new_commit $this  \
1159                        $cparent        \
1160                        $new_path       \
1161                        [list $r_orig_line]
1162        }
1163} ifdeleted { catch {close $fd} }
1164
1165method _show_tooltip {cur_w pos} {
1166        if {$tooltip_wm ne {}} {
1167                _open_tooltip $this $cur_w
1168        } elseif {$tooltip_timer eq {}} {
1169                set tooltip_timer [after 1000 [cb _open_tooltip $cur_w]]
1170        }
1171}
1172
1173method _open_tooltip {cur_w} {
1174        set tooltip_timer {}
1175        set pos_x [winfo pointerx $cur_w]
1176        set pos_y [winfo pointery $cur_w]
1177        if {[winfo containing $pos_x $pos_y] ne $cur_w} {
1178                _hide_tooltip $this
1179                return
1180        }
1181
1182        if {$tooltip_wm ne "$cur_w.tooltip"} {
1183                _hide_tooltip $this
1184
1185                set tooltip_wm [toplevel $cur_w.tooltip -borderwidth 1]
1186                wm overrideredirect $tooltip_wm 1
1187                wm transient $tooltip_wm [winfo toplevel $cur_w]
1188                set tooltip_t $tooltip_wm.label
1189                text $tooltip_t \
1190                        -takefocus 0 \
1191                        -highlightthickness 0 \
1192                        -relief flat \
1193                        -borderwidth 0 \
1194                        -wrap none \
1195                        -background lightyellow \
1196                        -foreground black
1197                $tooltip_t tag conf section_header -font font_uibold
1198                pack $tooltip_t
1199        } else {
1200                $tooltip_t conf -state normal
1201                $tooltip_t delete 0.0 end
1202        }
1203
1204        set pos @[join [list \
1205                [expr {$pos_x - [winfo rootx $cur_w]}] \
1206                [expr {$pos_y - [winfo rooty $cur_w]}]] ,]
1207        set lno [lindex [split [$cur_w index $pos] .] 0]
1208        if {$cur_w eq $w_amov} {
1209                set dat [lindex $amov_data $lno]
1210                set org {}
1211        } else {
1212                set dat [lindex $asim_data $lno]
1213                set org [lindex $amov_data $lno]
1214        }
1215
1216        if {$dat eq {}} {
1217                _hide_tooltip $this
1218                return
1219        }
1220
1221        set cmit [lindex $dat 0]
1222        set tooltip_commit [list $cmit]
1223
1224        set author_name {}
1225        set summary     {}
1226        set author_time {}
1227        catch {set author_name $header($cmit,author)}
1228        catch {set summary     $header($cmit,summary)}
1229        catch {set author_time [format_date $header($cmit,author-time)]}
1230
1231        $tooltip_t insert end "commit $cmit\n"
1232        $tooltip_t insert end "$author_name  $author_time\n"
1233        $tooltip_t insert end "$summary"
1234
1235        if {$org ne {} && [lindex $org 0] ne $cmit} {
1236                set save [$tooltip_t get 0.0 end]
1237                $tooltip_t delete 0.0 end
1238
1239                set cmit [lindex $org 0]
1240                set file [lindex $org 1]
1241                lappend tooltip_commit $cmit
1242
1243                set author_name {}
1244                set summary     {}
1245                set author_time {}
1246                catch {set author_name $header($cmit,author)}
1247                catch {set summary     $header($cmit,summary)}
1248                catch {set author_time [format_date $header($cmit,author-time)]}
1249
1250                $tooltip_t insert end [strcat [mc "Originally By:"] "\n"] section_header
1251                $tooltip_t insert end "commit $cmit\n"
1252                $tooltip_t insert end "$author_name  $author_time\n"
1253                $tooltip_t insert end "$summary\n"
1254
1255                if {$file ne $path} {
1256                        $tooltip_t insert end [strcat [mc "In File:"] " "] section_header
1257                        $tooltip_t insert end "$file\n"
1258                }
1259
1260                $tooltip_t insert end "\n"
1261                $tooltip_t insert end [strcat [mc "Copied Or Moved Here By:"] "\n"] section_header
1262                $tooltip_t insert end $save
1263        }
1264
1265        $tooltip_t conf -state disabled
1266        _position_tooltip $this
1267
1268        # On MacOS raising a window causes it to acquire focus.
1269        # Tk 8.5 on MacOS seems to properly support wm transient,
1270        # so we can safely counter the effect there.
1271        if {$::have_tk85 && [is_MacOSX]} {
1272                update
1273                if {$w eq {}} {
1274                        raise .
1275                } else {
1276                        raise $w
1277                }
1278        }
1279}
1280
1281method _position_tooltip {} {
1282        set max_h [lindex [split [$tooltip_t index end] .] 0]
1283        set max_w 0
1284        for {set i 1} {$i <= $max_h} {incr i} {
1285                set c [lindex [split [$tooltip_t index "$i.0 lineend"] .] 1]
1286                if {$c > $max_w} {set max_w $c}
1287        }
1288        $tooltip_t conf -width $max_w -height $max_h
1289
1290        set req_w [winfo reqwidth  $tooltip_t]
1291        set req_h [winfo reqheight $tooltip_t]
1292        set pos_x [expr {[winfo pointerx .] +  5}]
1293        set pos_y [expr {[winfo pointery .] + 10}]
1294
1295        set g "${req_w}x${req_h}"
1296        if {$pos_x >= 0} {append g +}
1297        append g $pos_x
1298        if {$pos_y >= 0} {append g +}
1299        append g $pos_y
1300
1301        wm geometry $tooltip_wm $g
1302        if {![is_MacOSX]} {
1303                raise $tooltip_wm
1304        }
1305}
1306
1307method _hide_tooltip {} {
1308        if {$tooltip_wm ne {}} {
1309                destroy $tooltip_wm
1310                set tooltip_wm {}
1311                set tooltip_commit {}
1312        }
1313        if {$tooltip_timer ne {}} {
1314                after cancel $tooltip_timer
1315                set tooltip_timer {}
1316        }
1317}
1318
1319method _resize {new_height} {
1320        set diff [expr {$new_height - $old_height}]
1321        if {$diff == 0} return
1322
1323        set my [expr {[winfo height $w.file_pane] - 25}]
1324        set o [$w.file_pane sash coord 0]
1325        set ox [lindex $o 0]
1326        set oy [expr {[lindex $o 1] + $diff}]
1327        if {$oy < 0}   {set oy 0}
1328        if {$oy > $my} {set oy $my}
1329        $w.file_pane sash place 0 $ox $oy
1330
1331        set old_height $new_height
1332}
1333
1334}