diff mbox series

[v3] gitk: added external diff file rename detection

Message ID pull.1774.v3.git.1741093275742.gitgitgadget@gmail.com (mailing list archive)
State New
Headers show
Series [v3] gitk: added external diff file rename detection | expand

Commit Message

Tobias Boesch March 4, 2025, 1:01 p.m. UTC
From: Tobias Boesch <tobias.boesch@miele.com>

* If a file was renamed between commits and an external diff is started
  through gitk on the original or the renamed file name,
  gitk was unable to open the renamed file in the external diff editor.
  It failed to fetch the renamed file from git, because it fetched it
  using its original path in contrast to using the renamed path of the
  file.
* With this change gitk detects the rename and opens the external diff
  with the original and the renamed file instead of no file (it is able
  to fetch the renamed file path and name now from git).
* Since git doesn't destinguish between move or rename this also works
  for moved files.
* Showing the external diff with the original and the renamed file
  works when either of the files is selected in gitk.

Signed-off-by: Tobias Boesch <tobias.boesch@miele.com>
---
    gitk: added external diff file rename detection
    
    Changes since v1:
    
     * Commit message ident
     * Commit message line length
    
    Changes since v2:
    
     * Removed option for rename detection (Adding GUI options seems to be
       not desired - which is understandable)
     * Rebased on current master of git-for-windows
     * Renamed variables for a better understanding
     * Made rename detection also work when the renamed file is selected in
       gitk

Published-As: https://github.com/gitgitgadget/git/releases/tag/pr-1774%2FToBoMi%2Fdetect_renamed_files_when_opening_diff-v3
Fetch-It-Via: git fetch https://github.com/gitgitgadget/git pr-1774/ToBoMi/detect_renamed_files_when_opening_diff-v3
Pull-Request: https://github.com/gitgitgadget/git/pull/1774

Range-diff vs v2:

 1:  6209080cad6 ! 1:  1a64e989713 gitk: added external diff file rename detection
     @@ Commit message
          gitk: added external diff file rename detection
      
          * If a file was renamed between commits and an external diff is started
     -      through gitk on the THE ORIGINAL FILE NAME (not the renamed one),
     +      through gitk on the original or the renamed file name,
            gitk was unable to open the renamed file in the external diff editor.
            It failed to fetch the renamed file from git, because it fetched it
     -      with the original path in contrast to using the renamed path
     -    * gitk now detects the rename and opens the external diff with the
     -      original and the RENAMED file instead of no file (it is able to
     -      fetch the renamed file now from git with the renamed path/filename)
     -    * Since git doesn't destinguish between move or rename this also works
     -      for moved files
     -    * External diff detection and usage is optional and has to be enabled in
     -      gitk settings
     -    * External rename detection ist marked EXPERIMENTAL in the settings
     -      and disabled by default
     -    * Showing the renamed file doesn't work when THE RENAMED FILE is selected
     -      in gitk and an external diff ist started on that file, because the
     -      selected file is not renamed in that commit. It already IS the renamed
     +      using its original path in contrast to using the renamed path of the
            file.
     +    * With this change gitk detects the rename and opens the external diff
     +      with the original and the renamed file instead of no file (it is able
     +      to fetch the renamed file path and name now from git).
     +    * Since git doesn't destinguish between move or rename this also works
     +      for moved files.
     +    * Showing the external diff with the original and the renamed file
     +      works when either of the files is selected in gitk.
      
     -    Signed-off-by: Tobias Boeesch <tobias.boesch@miele.com>
     +    Signed-off-by: Tobias Boesch <tobias.boesch@miele.com>
      
       ## gitk-git/gitk ##
      @@ gitk-git/gitk: proc external_diff_get_one_file {diffid filename diffdir} {
     @@ gitk-git/gitk: proc external_diff_get_one_file {diffid filename diffdir} {
      +
      +    set renamed_filenames [list {}]
      +    set filename [file tail $filepath]
     -+    set rename_from_text_length 12
     -+    set rename_to_text_length 10
     ++    set rename_from_text_identifier_length 12
     ++    set rename_to_text_identifier_length 10
      +    set reg_expr_rename_from {^rename from (.*$filename)}
      +    set reg_expr_rename_from [subst -nobackslashes -nocommands $reg_expr_rename_from]
     -+    set reg_expr_rename_to {^rename to (.*)}
      +    set rename_from_text_index [$ctext search -elide -regexp -- $reg_expr_rename_from 0.0]
      +    if { ($rename_from_text_index != {})} {
     ++        set reg_expr_rename_to {^rename to (.*)}
      +        set rename_to_text_index [$ctext search -elide -regexp -- $reg_expr_rename_to $rename_from_text_index]
      +        if { ($rename_from_text_index != {}) && ($rename_to_text_index != {}) } {
     -+            lappend renamed_filenames [$ctext get "$rename_from_text_index + $rename_from_text_length chars" "$rename_from_text_index lineend"]
     -+            lappend renamed_filenames [$ctext get "$rename_to_text_index + $rename_to_text_length chars" "$rename_to_text_index lineend"]
     ++            lappend renamed_filenames [$ctext get "$rename_from_text_index + $rename_from_text_identifier_length chars" "$rename_from_text_index lineend"]
     ++            lappend renamed_filenames [$ctext get "$rename_to_text_index + $rename_to_text_identifier_length chars" "$rename_to_text_index lineend"]
     ++        }
     ++        return $renamed_filenames
     ++    }
     ++    set reg_expr_rename_to {^rename to (.*$filename)}
     ++    set reg_expr_rename_to [subst -nobackslashes -nocommands $reg_expr_rename_to]
     ++    set rename_to_text_index [$ctext search -elide -regexp -- $reg_expr_rename_to 0.0]
     ++    if { ($rename_to_text_index != {})} {
     ++        set reg_expr_rename_from {^rename from (.*)}
     ++        set rename_from_text_index [$ctext search -backwards -elide -regexp -- $reg_expr_rename_from $rename_to_text_index]
     ++        if { ($rename_to_text_index != {}) && ($rename_from_text_index != {}) } {
     ++            lappend renamed_filenames [$ctext get "$rename_from_text_index + $rename_from_text_identifier_length chars" "$rename_from_text_index lineend"]
     ++            lappend renamed_filenames [$ctext get "$rename_to_text_index + $rename_to_text_identifier_length chars" "$rename_to_text_index lineend"]
      +        }
     ++        return $renamed_filenames
      +    }
     -+    return $renamed_filenames
      +}
      +
       proc external_diff {} {
           global nullid nullid2
           global flist_menu_file
     -     global diffids
     -     global extdifftool
     -+    global file_rename_detection
     - 
     -     if {[llength $diffids] == 1} {
     -         # no reference commit given
      @@ gitk-git/gitk: proc external_diff {} {
           if {$diffdir eq {}} return
       
           # gather files to diff
      -    set difffromfile [external_diff_get_one_file $diffidfrom $flist_menu_file $diffdir]
      -    set difftofile [external_diff_get_one_file $diffidto $flist_menu_file $diffdir]
     -+    if {$file_rename_detection} {
     -+        set renamed_filenames [check_for_renames_in_diff $flist_menu_file]
     -+        set rename_from_filename [lindex $renamed_filenames 1]
     -+        set rename_to_filename [lindex $renamed_filenames 2]
     -+        if { ($rename_from_filename != {}) && ($rename_to_filename != {}) } {
     -+            set difffromfile [external_diff_get_one_file $diffidfrom $rename_from_filename $diffdir]
     -+            set difftofile [external_diff_get_one_file $diffidto $rename_to_filename $diffdir]
     -+        } else {
     -+            set difffromfile [external_diff_get_one_file $diffidfrom $flist_menu_file $diffdir]
     -+            set difftofile [external_diff_get_one_file $diffidto $flist_menu_file $diffdir]
     -+        }
     ++    set renamed_filenames [check_for_renames_in_diff $flist_menu_file]
     ++    set rename_from_filename [lindex $renamed_filenames 1]
     ++    set rename_to_filename [lindex $renamed_filenames 2]
     ++    if { ($rename_from_filename != {}) && ($rename_to_filename != {}) } {
     ++        set difffromfile [external_diff_get_one_file $diffidfrom $rename_from_filename $diffdir]
     ++        set difftofile [external_diff_get_one_file $diffidto $rename_to_filename $diffdir]
      +    } else {
      +        set difffromfile [external_diff_get_one_file $diffidfrom $flist_menu_file $diffdir]
      +        set difftofile [external_diff_get_one_file $diffidto $flist_menu_file $diffdir]
     @@ gitk-git/gitk: proc external_diff {} {
       
           if {$difffromfile ne {} && $difftofile ne {}} {
               set cmd [list [shellsplit $extdifftool] $difffromfile $difftofile]
     -@@ gitk-git/gitk: proc create_prefs_page {w} {
     - proc prefspage_general {notebook} {
     -     global NS maxwidth maxgraphpct showneartags showlocalchanges
     -     global tabstop limitdiffs autoselect autosellen extdifftool perfile_attrs
     --    global hideremotes want_ttk have_ttk maxrefs web_browser
     -+    global hideremotes want_ttk have_ttk maxrefs web_browser file_rename_detection
     - 
     -     set page [create_prefs_page $notebook.general]
     - 
     -@@ gitk-git/gitk: proc prefspage_general {notebook} {
     -     grid $page.lgen - -sticky w -pady 10
     -     ${NS}::checkbutton $page.want_ttk -variable want_ttk \
     -         -text [mc "Use themed widgets"]
     -+    ${NS}::checkbutton $page.file_rename_detection -variable file_rename_detection \
     -+        -text [mc "Use ext diff file rename detection"]
     -+    ${NS}::label $page.file_rename_detection_note -text [mc "(EXPERIMENTAL\nTries to find the file path of a\nrenamed file in external diff)"]
     -     if {$have_ttk} {
     -         ${NS}::label $page.ttk_note -text [mc "(change requires restart)"]
     -     } else {
     -         ${NS}::label $page.ttk_note -text [mc "(currently unavailable)"]
     -     }
     -     grid x $page.want_ttk $page.ttk_note -sticky w
     -+    grid x $page.file_rename_detection $page.file_rename_detection_note -sticky w
     -     return $page
     - }
     - 
     -@@ gitk-git/gitk: proc doprefs {} {
     -     global oldprefs prefstop showneartags showlocalchanges
     -     global uicolor bgcolor fgcolor ctext diffcolors selectbgcolor markbgcolor
     -     global tabstop limitdiffs autoselect autosellen extdifftool perfile_attrs
     --    global hideremotes want_ttk have_ttk
     -+    global hideremotes want_ttk have_ttk file_rename_detection
     - 
     -     set top .gitkprefs
     -     set prefstop $top
     -@@ gitk-git/gitk: proc doprefs {} {
     -         return
     -     }
     -     foreach v {maxwidth maxgraphpct showneartags showlocalchanges \
     --                   limitdiffs tabstop perfile_attrs hideremotes want_ttk} {
     -+                   limitdiffs tabstop perfile_attrs hideremotes want_ttk file_rename_detection} {
     -         set oldprefs($v) [set $v]
     -     }
     -     ttk_toplevel $top
     -@@ gitk-git/gitk: proc prefscan {} {
     -     global oldprefs prefstop
     - 
     -     foreach v {maxwidth maxgraphpct showneartags showlocalchanges \
     --                   limitdiffs tabstop perfile_attrs hideremotes want_ttk} {
     -+                   limitdiffs tabstop perfile_attrs hideremotes want_ttk file_rename_detection} {
     -         global $v
     -         set $v $oldprefs($v)
     -     }
     -@@ gitk-git/gitk: set autoselect 1
     - set autosellen 40
     - set perfile_attrs 0
     - set want_ttk 1
     -+set file_rename_detection 0
     - 
     - if {[tk windowingsystem] eq "aqua"} {
     -     set extdifftool "opendiff"
     -@@ gitk-git/gitk: config_check_tmp_exists 50
     - set config_variables {
     -     mainfont textfont uifont tabstop findmergefiles maxgraphpct maxwidth
     -     cmitmode wrapcomment autoselect autosellen showneartags maxrefs visiblerefs
     --    hideremotes showlocalchanges datetimeformat limitdiffs uicolor want_ttk
     -+    hideremotes showlocalchanges datetimeformat limitdiffs uicolor want_ttk file_rename_detection
     -     bgcolor fgcolor uifgcolor uifgdisabledcolor colors diffcolors mergecolors
     -     markbgcolor diffcontext selectbgcolor foundbgcolor currentsearchhitbgcolor
     -     extdifftool perfile_attrs headbgcolor headfgcolor headoutlinecolor


 gitk-git/gitk | 45 +++++++++++++++++++++++++++++++++++++++++++--
 1 file changed, 43 insertions(+), 2 deletions(-)


base-commit: db91954e18654eeebc54c900f44c704002e1866d
diff mbox series

Patch

diff --git a/gitk-git/gitk b/gitk-git/gitk
index bc9efa18566..ddbe60398f2 100755
--- a/gitk-git/gitk
+++ b/gitk-git/gitk
@@ -3806,6 +3806,39 @@  proc external_diff_get_one_file {diffid filename diffdir} {
                "revision $diffid"]
 }
 
+proc check_for_renames_in_diff {filepath} {
+    global ctext
+
+    set renamed_filenames [list {}]
+    set filename [file tail $filepath]
+    set rename_from_text_identifier_length 12
+    set rename_to_text_identifier_length 10
+    set reg_expr_rename_from {^rename from (.*$filename)}
+    set reg_expr_rename_from [subst -nobackslashes -nocommands $reg_expr_rename_from]
+    set rename_from_text_index [$ctext search -elide -regexp -- $reg_expr_rename_from 0.0]
+    if { ($rename_from_text_index != {})} {
+        set reg_expr_rename_to {^rename to (.*)}
+        set rename_to_text_index [$ctext search -elide -regexp -- $reg_expr_rename_to $rename_from_text_index]
+        if { ($rename_from_text_index != {}) && ($rename_to_text_index != {}) } {
+            lappend renamed_filenames [$ctext get "$rename_from_text_index + $rename_from_text_identifier_length chars" "$rename_from_text_index lineend"]
+            lappend renamed_filenames [$ctext get "$rename_to_text_index + $rename_to_text_identifier_length chars" "$rename_to_text_index lineend"]
+        }
+        return $renamed_filenames
+    }
+    set reg_expr_rename_to {^rename to (.*$filename)}
+    set reg_expr_rename_to [subst -nobackslashes -nocommands $reg_expr_rename_to]
+    set rename_to_text_index [$ctext search -elide -regexp -- $reg_expr_rename_to 0.0]
+    if { ($rename_to_text_index != {})} {
+        set reg_expr_rename_from {^rename from (.*)}
+        set rename_from_text_index [$ctext search -backwards -elide -regexp -- $reg_expr_rename_from $rename_to_text_index]
+        if { ($rename_to_text_index != {}) && ($rename_from_text_index != {}) } {
+            lappend renamed_filenames [$ctext get "$rename_from_text_index + $rename_from_text_identifier_length chars" "$rename_from_text_index lineend"]
+            lappend renamed_filenames [$ctext get "$rename_to_text_index + $rename_to_text_identifier_length chars" "$rename_to_text_index lineend"]
+        }
+        return $renamed_filenames
+    }
+}
+
 proc external_diff {} {
     global nullid nullid2
     global flist_menu_file
@@ -3836,8 +3869,16 @@  proc external_diff {} {
     if {$diffdir eq {}} return
 
     # gather files to diff
-    set difffromfile [external_diff_get_one_file $diffidfrom $flist_menu_file $diffdir]
-    set difftofile [external_diff_get_one_file $diffidto $flist_menu_file $diffdir]
+    set renamed_filenames [check_for_renames_in_diff $flist_menu_file]
+    set rename_from_filename [lindex $renamed_filenames 1]
+    set rename_to_filename [lindex $renamed_filenames 2]
+    if { ($rename_from_filename != {}) && ($rename_to_filename != {}) } {
+        set difffromfile [external_diff_get_one_file $diffidfrom $rename_from_filename $diffdir]
+        set difftofile [external_diff_get_one_file $diffidto $rename_to_filename $diffdir]
+    } else {
+        set difffromfile [external_diff_get_one_file $diffidfrom $flist_menu_file $diffdir]
+        set difftofile [external_diff_get_one_file $diffidto $flist_menu_file $diffdir]
+    }
 
     if {$difffromfile ne {} && $difftofile ne {}} {
         set cmd [list [shellsplit $extdifftool] $difffromfile $difftofile]