cobra/nushell_completions.go

128 lines
4.3 KiB
Go
Raw Normal View History

2022-11-11 19:05:24 -07:00
// Copyright 2013-2022 The Cobra Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package cobra
import (
2024-11-30 14:32:05 -07:00
"bytes"
"fmt"
"io"
"os"
2022-11-11 19:05:24 -07:00
)
func (c *Command) GenNushellCompletion(w io.Writer, includeDesc bool) error {
2024-11-30 14:32:05 -07:00
buf := new(bytes.Buffer)
WriteStringAndCheck(buf, fmt.Sprintf(`
2022-12-23 21:30:18 -07:00
let cobra_completer = {|spans|
2024-11-30 14:32:05 -07:00
let ShellCompDirectiveError = %[1]d
let ShellCompDirectiveNoSpace = %[2]d
let ShellCompDirectiveNoFileComp = %[3]d
let ShellCompDirectiveFilterFileExt = %[4]d
let ShellCompDirectiveFilterDirs = %[5]d
let ShellCompDirectiveKeepOrder = %[6]d
2024-11-30 14:32:05 -07:00
let cmd = $spans | first
let rest = $spans | skip
def exec_complete [
spans: list<string>
] {
# This will catch the stderr message related to the directive and any other errors,
# such as the command not being a cobra based command
let result = do --ignore-errors { cobra_active_help=0 run-external $cmd "__complete" ...$spans | complete }
if $result != null and $result.exit_code == 0 {
let completions = $result.stdout | lines
# the directive is the last line
let directive = do -i { $completions | last | str replace ':' '' | into int }
let completions = $completions | drop | each { |it|
# the first word is the command, the rest is the description
let words = $it | split row -r '\s{1}'
# If the last span contains a hypen and equals, attach it to the name
let last_span = $spans | last
let words = if ($last_span =~ '^-') and ($last_span =~ '=$') {
$words | each {|it| $"($last_span)($it)" }
} else {
$words
}
{value: ($words | first | str trim), description: ($words | skip | str join ' ')}
}
{completions: $completions, directive: $directive}
} else {
{completions: [], directive: -1}
}
}
if (not ($rest | is-empty)) {
let result = exec_complete $rest
let completions = $result.completions
let directive = $result.directive
# Add space at the end of each completion
let completions = if $directive != $ShellCompDirectiveNoSpace {
$completions | each {|it| {value: $"($it.value) ", description: $it.description}}
} else {
$completions
}
# Cobra returns a list of completions that are supported with this directive
# There is no way to currently support this in a nushell external completer
let completions = if $directive == $ShellCompDirectiveFilterFileExt {
[]
} else {
$completions
}
if $directive == $ShellCompDirectiveNoFileComp {
# Allow empty results as this will stop file completion
$completions
} else if ($completions | is-empty) or $directive == $ShellCompDirectiveError {
# Not returning null causes file completions to break
# Return null if there are no completions or ShellCompDirectiveError
null
} else {
$completions
}
if ($completions | is-empty) {
null
} else {
$completions
}
} else {
null
}
}
2024-11-27 22:05:56 -07:00
`, ShellCompDirectiveError, ShellCompDirectiveNoSpace, ShellCompDirectiveNoFileComp,
ShellCompDirectiveFilterFileExt, ShellCompDirectiveFilterDirs, ShellCompDirectiveKeepOrder))
2022-11-11 19:05:24 -07:00
2024-11-30 14:32:05 -07:00
_, err := buf.WriteTo(w)
return err
2022-11-11 19:05:24 -07:00
}
func (c *Command) GenNushellCompletionFile(filename string, includeDesc bool) error {
2024-11-30 14:32:05 -07:00
outFile, err := os.Create(filename)
if err != nil {
return err
}
defer outFile.Close()
2022-11-11 19:05:24 -07:00
2024-11-30 14:32:05 -07:00
return c.GenNushellCompletion(outFile, includeDesc)
2022-11-11 19:05:24 -07:00
}