fish_completions.go 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292
  1. // Copyright 2013-2023 The Cobra Authors
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. package cobra
  15. import (
  16. "bytes"
  17. "fmt"
  18. "io"
  19. "os"
  20. "strings"
  21. )
  22. func genFishComp(buf io.StringWriter, name string, includeDesc bool) {
  23. // Variables should not contain a '-' or ':' character
  24. nameForVar := name
  25. nameForVar = strings.ReplaceAll(nameForVar, "-", "_")
  26. nameForVar = strings.ReplaceAll(nameForVar, ":", "_")
  27. compCmd := ShellCompRequestCmd
  28. if !includeDesc {
  29. compCmd = ShellCompNoDescRequestCmd
  30. }
  31. WriteStringAndCheck(buf, fmt.Sprintf("# fish completion for %-36s -*- shell-script -*-\n", name))
  32. WriteStringAndCheck(buf, fmt.Sprintf(`
  33. function __%[1]s_debug
  34. set -l file "$BASH_COMP_DEBUG_FILE"
  35. if test -n "$file"
  36. echo "$argv" >> $file
  37. end
  38. end
  39. function __%[1]s_perform_completion
  40. __%[1]s_debug "Starting __%[1]s_perform_completion"
  41. # Extract all args except the last one
  42. set -l args (commandline -opc)
  43. # Extract the last arg and escape it in case it is a space
  44. set -l lastArg (string escape -- (commandline -ct))
  45. __%[1]s_debug "args: $args"
  46. __%[1]s_debug "last arg: $lastArg"
  47. # Disable ActiveHelp which is not supported for fish shell
  48. set -l requestComp "%[10]s=0 $args[1] %[3]s $args[2..-1] $lastArg"
  49. __%[1]s_debug "Calling $requestComp"
  50. set -l results (eval $requestComp 2> /dev/null)
  51. # Some programs may output extra empty lines after the directive.
  52. # Let's ignore them or else it will break completion.
  53. # Ref: https://github.com/spf13/cobra/issues/1279
  54. for line in $results[-1..1]
  55. if test (string trim -- $line) = ""
  56. # Found an empty line, remove it
  57. set results $results[1..-2]
  58. else
  59. # Found non-empty line, we have our proper output
  60. break
  61. end
  62. end
  63. set -l comps $results[1..-2]
  64. set -l directiveLine $results[-1]
  65. # For Fish, when completing a flag with an = (e.g., <program> -n=<TAB>)
  66. # completions must be prefixed with the flag
  67. set -l flagPrefix (string match -r -- '-.*=' "$lastArg")
  68. __%[1]s_debug "Comps: $comps"
  69. __%[1]s_debug "DirectiveLine: $directiveLine"
  70. __%[1]s_debug "flagPrefix: $flagPrefix"
  71. for comp in $comps
  72. printf "%%s%%s\n" "$flagPrefix" "$comp"
  73. end
  74. printf "%%s\n" "$directiveLine"
  75. end
  76. # this function limits calls to __%[1]s_perform_completion, by caching the result behind $__%[1]s_perform_completion_once_result
  77. function __%[1]s_perform_completion_once
  78. __%[1]s_debug "Starting __%[1]s_perform_completion_once"
  79. if test -n "$__%[1]s_perform_completion_once_result"
  80. __%[1]s_debug "Seems like a valid result already exists, skipping __%[1]s_perform_completion"
  81. return 0
  82. end
  83. set --global __%[1]s_perform_completion_once_result (__%[1]s_perform_completion)
  84. if test -z "$__%[1]s_perform_completion_once_result"
  85. __%[1]s_debug "No completions, probably due to a failure"
  86. return 1
  87. end
  88. __%[1]s_debug "Performed completions and set __%[1]s_perform_completion_once_result"
  89. return 0
  90. end
  91. # this function is used to clear the $__%[1]s_perform_completion_once_result variable after completions are run
  92. function __%[1]s_clear_perform_completion_once_result
  93. __%[1]s_debug ""
  94. __%[1]s_debug "========= clearing previously set __%[1]s_perform_completion_once_result variable =========="
  95. set --erase __%[1]s_perform_completion_once_result
  96. __%[1]s_debug "Successfully erased the variable __%[1]s_perform_completion_once_result"
  97. end
  98. function __%[1]s_requires_order_preservation
  99. __%[1]s_debug ""
  100. __%[1]s_debug "========= checking if order preservation is required =========="
  101. __%[1]s_perform_completion_once
  102. if test -z "$__%[1]s_perform_completion_once_result"
  103. __%[1]s_debug "Error determining if order preservation is required"
  104. return 1
  105. end
  106. set -l directive (string sub --start 2 $__%[1]s_perform_completion_once_result[-1])
  107. __%[1]s_debug "Directive is: $directive"
  108. set -l shellCompDirectiveKeepOrder %[9]d
  109. set -l keeporder (math (math --scale 0 $directive / $shellCompDirectiveKeepOrder) %% 2)
  110. __%[1]s_debug "Keeporder is: $keeporder"
  111. if test $keeporder -ne 0
  112. __%[1]s_debug "This does require order preservation"
  113. return 0
  114. end
  115. __%[1]s_debug "This doesn't require order preservation"
  116. return 1
  117. end
  118. # This function does two things:
  119. # - Obtain the completions and store them in the global __%[1]s_comp_results
  120. # - Return false if file completion should be performed
  121. function __%[1]s_prepare_completions
  122. __%[1]s_debug ""
  123. __%[1]s_debug "========= starting completion logic =========="
  124. # Start fresh
  125. set --erase __%[1]s_comp_results
  126. __%[1]s_perform_completion_once
  127. __%[1]s_debug "Completion results: $__%[1]s_perform_completion_once_result"
  128. if test -z "$__%[1]s_perform_completion_once_result"
  129. __%[1]s_debug "No completion, probably due to a failure"
  130. # Might as well do file completion, in case it helps
  131. return 1
  132. end
  133. set -l directive (string sub --start 2 $__%[1]s_perform_completion_once_result[-1])
  134. set --global __%[1]s_comp_results $__%[1]s_perform_completion_once_result[1..-2]
  135. __%[1]s_debug "Completions are: $__%[1]s_comp_results"
  136. __%[1]s_debug "Directive is: $directive"
  137. set -l shellCompDirectiveError %[4]d
  138. set -l shellCompDirectiveNoSpace %[5]d
  139. set -l shellCompDirectiveNoFileComp %[6]d
  140. set -l shellCompDirectiveFilterFileExt %[7]d
  141. set -l shellCompDirectiveFilterDirs %[8]d
  142. if test -z "$directive"
  143. set directive 0
  144. end
  145. set -l compErr (math (math --scale 0 $directive / $shellCompDirectiveError) %% 2)
  146. if test $compErr -eq 1
  147. __%[1]s_debug "Received error directive: aborting."
  148. # Might as well do file completion, in case it helps
  149. return 1
  150. end
  151. set -l filefilter (math (math --scale 0 $directive / $shellCompDirectiveFilterFileExt) %% 2)
  152. set -l dirfilter (math (math --scale 0 $directive / $shellCompDirectiveFilterDirs) %% 2)
  153. if test $filefilter -eq 1; or test $dirfilter -eq 1
  154. __%[1]s_debug "File extension filtering or directory filtering not supported"
  155. # Do full file completion instead
  156. return 1
  157. end
  158. set -l nospace (math (math --scale 0 $directive / $shellCompDirectiveNoSpace) %% 2)
  159. set -l nofiles (math (math --scale 0 $directive / $shellCompDirectiveNoFileComp) %% 2)
  160. __%[1]s_debug "nospace: $nospace, nofiles: $nofiles"
  161. # If we want to prevent a space, or if file completion is NOT disabled,
  162. # we need to count the number of valid completions.
  163. # To do so, we will filter on prefix as the completions we have received
  164. # may not already be filtered so as to allow fish to match on different
  165. # criteria than the prefix.
  166. if test $nospace -ne 0; or test $nofiles -eq 0
  167. set -l prefix (commandline -t | string escape --style=regex)
  168. __%[1]s_debug "prefix: $prefix"
  169. set -l completions (string match -r -- "^$prefix.*" $__%[1]s_comp_results)
  170. set --global __%[1]s_comp_results $completions
  171. __%[1]s_debug "Filtered completions are: $__%[1]s_comp_results"
  172. # Important not to quote the variable for count to work
  173. set -l numComps (count $__%[1]s_comp_results)
  174. __%[1]s_debug "numComps: $numComps"
  175. if test $numComps -eq 1; and test $nospace -ne 0
  176. # We must first split on \t to get rid of the descriptions to be
  177. # able to check what the actual completion will be.
  178. # We don't need descriptions anyway since there is only a single
  179. # real completion which the shell will expand immediately.
  180. set -l split (string split --max 1 \t $__%[1]s_comp_results[1])
  181. # Fish won't add a space if the completion ends with any
  182. # of the following characters: @=/:.,
  183. set -l lastChar (string sub -s -1 -- $split)
  184. if not string match -r -q "[@=/:.,]" -- "$lastChar"
  185. # In other cases, to support the "nospace" directive we trick the shell
  186. # by outputting an extra, longer completion.
  187. __%[1]s_debug "Adding second completion to perform nospace directive"
  188. set --global __%[1]s_comp_results $split[1] $split[1].
  189. __%[1]s_debug "Completions are now: $__%[1]s_comp_results"
  190. end
  191. end
  192. if test $numComps -eq 0; and test $nofiles -eq 0
  193. # To be consistent with bash and zsh, we only trigger file
  194. # completion when there are no other completions
  195. __%[1]s_debug "Requesting file completion"
  196. return 1
  197. end
  198. end
  199. return 0
  200. end
  201. # Since Fish completions are only loaded once the user triggers them, we trigger them ourselves
  202. # so we can properly delete any completions provided by another script.
  203. # Only do this if the program can be found, or else fish may print some errors; besides,
  204. # the existing completions will only be loaded if the program can be found.
  205. if type -q "%[2]s"
  206. # The space after the program name is essential to trigger completion for the program
  207. # and not completion of the program name itself.
  208. # Also, we use '> /dev/null 2>&1' since '&>' is not supported in older versions of fish.
  209. complete --do-complete "%[2]s " > /dev/null 2>&1
  210. end
  211. # Remove any pre-existing completions for the program since we will be handling all of them.
  212. complete -c %[2]s -e
  213. # this will get called after the two calls below and clear the $__%[1]s_perform_completion_once_result global
  214. complete -c %[2]s -n '__%[1]s_clear_perform_completion_once_result'
  215. # The call to __%[1]s_prepare_completions will setup __%[1]s_comp_results
  216. # which provides the program's completion choices.
  217. # If this doesn't require order preservation, we don't use the -k flag
  218. complete -c %[2]s -n 'not __%[1]s_requires_order_preservation && __%[1]s_prepare_completions' -f -a '$__%[1]s_comp_results'
  219. # otherwise we use the -k flag
  220. complete -k -c %[2]s -n '__%[1]s_requires_order_preservation && __%[1]s_prepare_completions' -f -a '$__%[1]s_comp_results'
  221. `, nameForVar, name, compCmd,
  222. ShellCompDirectiveError, ShellCompDirectiveNoSpace, ShellCompDirectiveNoFileComp,
  223. ShellCompDirectiveFilterFileExt, ShellCompDirectiveFilterDirs, ShellCompDirectiveKeepOrder, activeHelpEnvVar(name)))
  224. }
  225. // GenFishCompletion generates fish completion file and writes to the passed writer.
  226. func (c *Command) GenFishCompletion(w io.Writer, includeDesc bool) error {
  227. buf := new(bytes.Buffer)
  228. genFishComp(buf, c.Name(), includeDesc)
  229. _, err := buf.WriteTo(w)
  230. return err
  231. }
  232. // GenFishCompletionFile generates fish completion file.
  233. func (c *Command) GenFishCompletionFile(filename string, includeDesc bool) error {
  234. outFile, err := os.Create(filename)
  235. if err != nil {
  236. return err
  237. }
  238. defer outFile.Close()
  239. return c.GenFishCompletion(outFile, includeDesc)
  240. }