]> git.ipfire.org Git - thirdparty/git.git/blame - git-mergetool--lib.sh
Merge branch 'ma/list-object-filter-opt-msgfix'
[thirdparty/git.git] / git-mergetool--lib.sh
CommitLineData
11d62145 1# git-mergetool--lib is a shell library for common merge tool functions
f35ec546
DA
2
3: ${MERGE_TOOLS_DIR=$(git --exec-path)/mergetools}
073678b8 4
719518f5
DA
5IFS='
6'
7
17a1f1c5
DA
8mode_ok () {
9 if diff_mode
10 then
11 can_diff
12 elif merge_mode
13 then
14 can_merge
15 else
16 false
17 fi
18}
19
20is_available () {
21 merge_tool_path=$(translate_merge_tool_path "$1") &&
22 type "$merge_tool_path" >/dev/null 2>&1
23}
24
665682c9
JK
25list_config_tools () {
26 section=$1
27 line_prefix=${2:-}
28
29 git config --get-regexp $section'\..*\.cmd' |
30 while read -r key value
31 do
32 toolname=${key#$section.}
33 toolname=${toolname%.cmd}
34
35 printf "%s%s\n" "$line_prefix" "$toolname"
36 done
37}
38
17a1f1c5
DA
39show_tool_names () {
40 condition=${1:-true} per_line_prefix=${2:-} preamble=${3:-}
41 not_found_msg=${4:-}
665682c9 42 extra_content=${5:-}
17a1f1c5
DA
43
44 shown_any=
45 ( cd "$MERGE_TOOLS_DIR" && ls ) | {
83bbf9b9 46 while read scriptname
47 do
48 setup_tool "$scriptname" 2>/dev/null
49 variants="$variants$(list_tool_variants)\n"
50 done
51 variants="$(echo "$variants" | sort | uniq)"
52
53 for toolname in $variants
17a1f1c5
DA
54 do
55 if setup_tool "$toolname" 2>/dev/null &&
56 (eval "$condition" "$toolname")
57 then
58 if test -n "$preamble"
59 then
60 printf "%s\n" "$preamble"
61 preamble=
62 fi
63 shown_any=yes
64 printf "%s%s\n" "$per_line_prefix" "$toolname"
65 fi
66 done
67
665682c9
JK
68 if test -n "$extra_content"
69 then
70 if test -n "$preamble"
71 then
72 # Note: no '\n' here since we don't want a
73 # blank line if there is no initial content.
74 printf "%s" "$preamble"
75 preamble=
76 fi
77 shown_any=yes
78 printf "\n%s\n" "$extra_content"
79 fi
80
17a1f1c5
DA
81 if test -n "$preamble" && test -n "$not_found_msg"
82 then
83 printf "%s\n" "$not_found_msg"
84 fi
85
86 test -n "$shown_any"
87 }
88}
89
884630b2 90diff_mode () {
21d0ba7e
DA
91 test "$TOOL_MODE" = diff
92}
93
884630b2 94merge_mode () {
21d0ba7e
DA
95 test "$TOOL_MODE" = merge
96}
97
884630b2
DL
98gui_mode () {
99 test "$GIT_MERGETOOL_GUI" = true
100}
101
21d0ba7e 102translate_merge_tool_path () {
bc7a96a8 103 echo "$1"
21d0ba7e
DA
104}
105
106check_unchanged () {
240dc3e8
DA
107 if test "$MERGED" -nt "$BACKUP"
108 then
1b6a5343 109 return 0
21d0ba7e 110 else
240dc3e8
DA
111 while true
112 do
21d0ba7e 113 echo "$MERGED seems unchanged."
cce076e3 114 printf "Was the merge successful [y/n]? "
e622f41d 115 read answer || return 1
21d0ba7e 116 case "$answer" in
1b6a5343
DA
117 y*|Y*) return 0 ;;
118 n*|N*) return 1 ;;
21d0ba7e
DA
119 esac
120 done
121 fi
122}
123
124valid_tool () {
80ff2b68
DA
125 setup_tool "$1" && return 0
126 cmd=$(get_merge_tool_cmd "$1")
127 test -n "$cmd"
bc7a96a8
DA
128}
129
d2512fc9
JK
130setup_user_tool () {
131 merge_tool_cmd=$(get_merge_tool_cmd "$tool")
132 test -n "$merge_tool_cmd" || return 1
133
134 diff_cmd () {
135 ( eval $merge_tool_cmd )
d2512fc9
JK
136 }
137
138 merge_cmd () {
7c10605d 139 ( eval $merge_tool_cmd )
d2512fc9 140 }
12026f46
JS
141
142 list_tool_variants () {
143 echo "$tool"
144 }
d2512fc9
JK
145}
146
bc7a96a8 147setup_tool () {
073678b8
DA
148 tool="$1"
149
98e023de 150 # Fallback definitions, to be overridden by tools.
073678b8
DA
151 can_merge () {
152 return 0
153 }
154
155 can_diff () {
156 return 0
157 }
158
159 diff_cmd () {
1b6a5343 160 return 1
073678b8
DA
161 }
162
163 merge_cmd () {
1b6a5343 164 return 1
073678b8 165 }
bc7a96a8 166
073678b8
DA
167 translate_merge_tool_path () {
168 echo "$1"
169 }
170
83bbf9b9 171 list_tool_variants () {
172 echo "$tool"
173 }
174
7c10605d
DA
175 # Most tools' exit codes cannot be trusted, so By default we ignore
176 # their exit code and check the merged file's modification time in
177 # check_unchanged() to determine whether or not the merge was
178 # successful. The return value from run_merge_cmd, by default, is
179 # determined by check_unchanged().
180 #
181 # When a tool's exit code can be trusted then the return value from
182 # run_merge_cmd is simply the tool's exit code, and check_unchanged()
183 # is not called.
184 #
185 # The return value of exit_code_trustable() tells us whether or not we
186 # can trust the tool's exit code.
187 #
188 # User-defined and built-in tools default to false.
189 # Built-in tools advertise that their exit code is trustable by
190 # redefining exit_code_trustable() to true.
191
192 exit_code_trustable () {
193 false
194 }
195
83bbf9b9 196 if test -f "$MERGE_TOOLS_DIR/$tool"
bc7a96a8 197 then
83bbf9b9 198 . "$MERGE_TOOLS_DIR/$tool"
199 elif test -f "$MERGE_TOOLS_DIR/${tool%[0-9]}"
200 then
201 . "$MERGE_TOOLS_DIR/${tool%[0-9]}"
202 else
d2512fc9
JK
203 setup_user_tool
204 return $?
bc7a96a8
DA
205 fi
206
d2512fc9
JK
207 # Now let the user override the default command for the tool. If
208 # they have not done so then this will return 1 which we ignore.
209 setup_user_tool
bc7a96a8 210
83bbf9b9 211 if ! list_tool_variants | grep -q "^$tool$"
212 then
213 return 1
214 fi
215
bc7a96a8
DA
216 if merge_mode && ! can_merge
217 then
218 echo "error: '$tool' can not be used to resolve merges" >&2
62957bea 219 return 1
bc7a96a8
DA
220 elif diff_mode && ! can_diff
221 then
222 echo "error: '$tool' can only be used to resolve merges" >&2
62957bea 223 return 1
bc7a96a8
DA
224 fi
225 return 0
21d0ba7e
DA
226}
227
228get_merge_tool_cmd () {
bc7a96a8 229 merge_tool="$1"
240dc3e8
DA
230 if diff_mode
231 then
80ff2b68
DA
232 git config "difftool.$merge_tool.cmd" ||
233 git config "mergetool.$merge_tool.cmd"
47d65924 234 else
80ff2b68 235 git config "mergetool.$merge_tool.cmd"
47d65924 236 fi
21d0ba7e
DA
237}
238
7c10605d
DA
239trust_exit_code () {
240 if git config --bool "mergetool.$1.trustExitCode"
241 then
242 :; # OK
243 elif exit_code_trustable
244 then
245 echo true
246 else
247 echo false
248 fi
249}
250
251
bc7a96a8 252# Entry point for running tools
21d0ba7e 253run_merge_tool () {
f9ad901f
DA
254 # If GIT_PREFIX is empty then we cannot use it in tools
255 # that expect to be able to chdir() to its value.
256 GIT_PREFIX=${GIT_PREFIX:-.}
257 export GIT_PREFIX
258
80ff2b68 259 merge_tool_path=$(get_merge_tool_path "$1") || exit
21d0ba7e 260 base_present="$2"
21d0ba7e 261
bc7a96a8 262 # Bring tool-specific functions into scope
d2512fc9 263 setup_tool "$1" || return 1
bc7a96a8
DA
264
265 if merge_mode
266 then
a427ef7a 267 run_merge_cmd "$1"
bc7a96a8 268 else
a427ef7a 269 run_diff_cmd "$1"
bc7a96a8 270 fi
21d0ba7e
DA
271}
272
a427ef7a
DA
273# Run a either a configured or built-in diff tool
274run_diff_cmd () {
d2512fc9 275 diff_cmd "$1"
a427ef7a
DA
276}
277
278# Run a either a configured or built-in merge tool
279run_merge_cmd () {
7c10605d
DA
280 mergetool_trust_exit_code=$(trust_exit_code "$1")
281 if test "$mergetool_trust_exit_code" = "true"
282 then
283 merge_cmd "$1"
284 else
285 touch "$BACKUP"
286 merge_cmd "$1"
287 check_unchanged
288 fi
a427ef7a
DA
289}
290
109859e2 291list_merge_tool_candidates () {
240dc3e8
DA
292 if merge_mode
293 then
21d0ba7e
DA
294 tools="tortoisemerge"
295 else
296 tools="kompare"
297 fi
240dc3e8
DA
298 if test -n "$DISPLAY"
299 then
300 if test -n "$GNOME_DESKTOP_SESSION_ID"
301 then
21d0ba7e
DA
302 tools="meld opendiff kdiff3 tkdiff xxdiff $tools"
303 else
304 tools="opendiff kdiff3 tkdiff xxdiff meld $tools"
305 fi
c5f424fd 306 tools="$tools gvimdiff diffuse diffmerge ecmerge"
f13f9b0e 307 tools="$tools p4merge araxis bc codecompare"
eb12adc7 308 tools="$tools smerge"
21d0ba7e 309 fi
7b104229 310 case "${VISUAL:-$EDITOR}" in
11868978 311 *nvim*)
312 tools="$tools nvimdiff vimdiff emerge"
313 ;;
7b104229 314 *vim*)
11868978 315 tools="$tools vimdiff nvimdiff emerge"
7b104229
RS
316 ;;
317 *)
11868978 318 tools="$tools emerge vimdiff nvimdiff"
7b104229
RS
319 ;;
320 esac
109859e2
JH
321}
322
4a8273a3 323show_tool_help () {
2b7ca916 324 tool_opt="'git ${TOOL_MODE}tool --tool=<tool>'"
88d3406a 325
17a1f1c5
DA
326 tab=' '
327 LF='
328'
329 any_shown=no
62b6f7e0
JK
330
331 cmd_name=${TOOL_MODE}tool
665682c9
JK
332 config_tools=$({
333 diff_mode && list_config_tools difftool "$tab$tab"
334 list_config_tools mergetool "$tab$tab"
335 } | sort)
336 extra_content=
337 if test -n "$config_tools"
338 then
339 extra_content="${tab}user-defined:${LF}$config_tools"
340 fi
341
17a1f1c5
DA
342 show_tool_names 'mode_ok && is_available' "$tab$tab" \
343 "$tool_opt may be set to one of the following:" \
665682c9
JK
344 "No suitable tool for 'git $cmd_name --tool=<tool>' found." \
345 "$extra_content" &&
17a1f1c5
DA
346 any_shown=yes
347
348 show_tool_names 'mode_ok && ! is_available' "$tab$tab" \
349 "${LF}The following tools are valid, but not currently available:" &&
350 any_shown=yes
351
352 if test "$any_shown" = yes
4a8273a3
JK
353 then
354 echo
355 echo "Some of the tools listed above only work in a windowed"
356 echo "environment. If run in a terminal-only session, they will fail."
357 fi
358 exit 0
359}
360
109859e2
JH
361guess_merge_tool () {
362 list_merge_tool_candidates
5338a6a9
DA
363 cat >&2 <<-EOF
364
365 This message is displayed because '$TOOL_MODE.tool' is not configured.
366 See 'git ${TOOL_MODE}tool --tool-help' or 'git help config' for more details.
367 'git ${TOOL_MODE}tool' will now attempt to use one of the following tools:
368 $tools
369 EOF
21d0ba7e
DA
370
371 # Loop over each candidate and stop when a valid merge tool is found.
f67986b9 372 IFS=' '
17a1f1c5 373 for tool in $tools
21d0ba7e 374 do
17a1f1c5 375 is_available "$tool" && echo "$tool" && return 0
21d0ba7e
DA
376 done
377
17a1f1c5 378 echo >&2 "No known ${TOOL_MODE} tool is available."
47d65924 379 return 1
21d0ba7e
DA
380}
381
382get_configured_merge_tool () {
60aced3d 383 keys=
240dc3e8
DA
384 if diff_mode
385 then
60aced3d
DL
386 if gui_mode
387 then
388 keys="diff.guitool merge.guitool diff.tool merge.tool"
389 else
390 keys="diff.tool merge.tool"
391 fi
47d65924 392 else
60aced3d
DL
393 if gui_mode
394 then
395 keys="merge.guitool merge.tool"
396 else
397 keys="merge.tool"
398 fi
21d0ba7e 399 fi
60aced3d
DL
400
401 merge_tool=$(
402 IFS=' '
403 for key in $keys
404 do
405 selected=$(git config $key)
406 if test -n "$selected"
407 then
408 echo "$selected"
409 return
410 fi
411 done)
412
240dc3e8
DA
413 if test -n "$merge_tool" && ! valid_tool "$merge_tool"
414 then
063f2bdb 415 echo >&2 "git config option $TOOL_MODE.${gui_prefix}tool set to unknown tool: $merge_tool"
21d0ba7e
DA
416 echo >&2 "Resetting to default..."
417 return 1
418 fi
47d65924 419 echo "$merge_tool"
21d0ba7e
DA
420}
421
422get_merge_tool_path () {
423 # A merge tool has been set, so verify that it's valid.
bc7a96a8 424 merge_tool="$1"
240dc3e8
DA
425 if ! valid_tool "$merge_tool"
426 then
21d0ba7e
DA
427 echo >&2 "Unknown merge tool $merge_tool"
428 exit 1
429 fi
240dc3e8
DA
430 if diff_mode
431 then
47d65924 432 merge_tool_path=$(git config difftool."$merge_tool".path ||
285c6cbf 433 git config mergetool."$merge_tool".path)
47d65924
DA
434 else
435 merge_tool_path=$(git config mergetool."$merge_tool".path)
21d0ba7e 436 fi
240dc3e8
DA
437 if test -z "$merge_tool_path"
438 then
80ff2b68 439 merge_tool_path=$(translate_merge_tool_path "$merge_tool")
21d0ba7e 440 fi
47d65924 441 if test -z "$(get_merge_tool_cmd "$merge_tool")" &&
240dc3e8
DA
442 ! type "$merge_tool_path" >/dev/null 2>&1
443 then
47d65924 444 echo >&2 "The $TOOL_MODE tool $merge_tool is not available as"\
285c6cbf 445 "'$merge_tool_path'"
21d0ba7e
DA
446 exit 1
447 fi
448 echo "$merge_tool_path"
449}
450
451get_merge_tool () {
05fb8726 452 is_guessed=false
21d0ba7e 453 # Check if a merge tool has been configured
80ff2b68 454 merge_tool=$(get_configured_merge_tool)
21d0ba7e 455 # Try to guess an appropriate merge tool if no tool has been set.
240dc3e8
DA
456 if test -z "$merge_tool"
457 then
80ff2b68 458 merge_tool=$(guess_merge_tool) || exit
05fb8726 459 is_guessed=true
21d0ba7e
DA
460 fi
461 echo "$merge_tool"
05fb8726 462 test "$is_guessed" = false
21d0ba7e 463}
e36d7167
JN
464
465mergetool_find_win32_cmd () {
466 executable=$1
467 sub_directory=$2
468
469 # Use $executable if it exists in $PATH
470 if type -p "$executable" >/dev/null 2>&1
471 then
472 printf '%s' "$executable"
473 return
474 fi
475
476 # Look for executable in the typical locations
477 for directory in $(env | grep -Ei '^PROGRAM(FILES(\(X86\))?|W6432)=' |
478 cut -d '=' -f 2- | sort -u)
479 do
480 if test -n "$directory" && test -x "$directory/$sub_directory/$executable"
481 then
482 printf '%s' "$directory/$sub_directory/$executable"
483 return
484 fi
485 done
486
487 printf '%s' "$executable"
488}