ab5cf7e6ef
* Add tracing to the parser. * Synthesize a --help flag. * Parsing now occurs in multiple phases. 1. Reset target. 2. Parse command-line into a "trace" (no values are written to target). 3. Apply traced, parsed values to the target fields. This is another step in facilitating context-sensitive help and completion. * Detect duplicate flags.
142 lines
2.9 KiB
Go
142 lines
2.9 KiB
Go
package kong
|
|
|
|
import (
|
|
"strconv"
|
|
"strings"
|
|
)
|
|
|
|
//go:generate stringer -type=TokenType
|
|
|
|
type TokenType int
|
|
|
|
const (
|
|
UntypedToken TokenType = iota
|
|
EOLToken
|
|
FlagToken // --<flag>
|
|
FlagValueToken // =<value>
|
|
ShortFlagToken // -<short>[<tail]
|
|
ShortFlagTailToken // <tail>
|
|
PositionalArgumentToken // <arg>
|
|
)
|
|
|
|
type Token struct {
|
|
Value string
|
|
Type TokenType
|
|
}
|
|
|
|
func (t Token) String() string {
|
|
switch t.Type {
|
|
case FlagToken:
|
|
return "--" + t.Value
|
|
|
|
case ShortFlagToken:
|
|
return "-" + t.Value
|
|
|
|
case EOLToken:
|
|
return "EOL"
|
|
|
|
default:
|
|
return strconv.Quote(t.Value)
|
|
}
|
|
}
|
|
|
|
func (t Token) IsEOL() bool {
|
|
return t.Type == EOLToken
|
|
}
|
|
|
|
func (t Token) IsAny(types ...TokenType) bool {
|
|
for _, typ := range types {
|
|
if t.Type == typ {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|
|
|
|
// IsValue returns true if token is usable as a parseable value.
|
|
//
|
|
// A parseable value is either a value typed token, or an untyped token NOT starting with a hyphen.
|
|
func (t Token) IsValue() bool {
|
|
return t.IsAny(FlagValueToken, ShortFlagTailToken, PositionalArgumentToken) ||
|
|
(t.Type == UntypedToken && !strings.HasPrefix(t.Value, "-"))
|
|
}
|
|
|
|
// Scanner is a stack-based scanner over command-line tokens.
|
|
//
|
|
// Initially all tokens are untyped. As the parser consumes tokens it assigns types, splits tokens, and pushes them back
|
|
// onto the stream.
|
|
//
|
|
// For example, the token "--foo=bar" will be split into the following by the parser:
|
|
//
|
|
// [{FlagToken, "foo"}, {FlagValueToken, "bar"}]
|
|
type Scanner struct {
|
|
args []Token
|
|
}
|
|
|
|
func Scan(args ...string) *Scanner {
|
|
s := &Scanner{}
|
|
for _, arg := range args {
|
|
s.args = append(s.args, Token{Value: arg})
|
|
}
|
|
return s
|
|
}
|
|
|
|
func (s *Scanner) Len() int {
|
|
return len(s.args)
|
|
}
|
|
|
|
func (s *Scanner) Pop() Token {
|
|
if len(s.args) == 0 {
|
|
return Token{Type: EOLToken}
|
|
}
|
|
arg := s.args[0]
|
|
s.args = s.args[1:]
|
|
return arg
|
|
}
|
|
|
|
// PopValue token, or panic with Error.
|
|
//
|
|
// "context" is used to assist the user if the value can not be popped, eg. "expected <context> value but got <type>"
|
|
func (s *Scanner) PopValue(context string) string {
|
|
t := s.Pop()
|
|
if !t.IsValue() {
|
|
fail("expected %s value but got %s", context, t)
|
|
}
|
|
return t.Value
|
|
}
|
|
|
|
// PopWhile predicate returns true.
|
|
func (s *Scanner) PopWhile(predicate func(Token) bool) (values []string) {
|
|
for predicate(s.Peek()) {
|
|
values = append(values, s.Pop().Value)
|
|
}
|
|
return
|
|
}
|
|
|
|
// PopUntil predicate returns true.
|
|
func (s *Scanner) PopUntil(predicate func(Token) bool) (values []string) {
|
|
for !predicate(s.Peek()) {
|
|
values = append(values, s.Pop().Value)
|
|
}
|
|
return
|
|
}
|
|
|
|
func (s *Scanner) Peek() Token {
|
|
if len(s.args) == 0 {
|
|
return Token{Type: EOLToken}
|
|
}
|
|
return s.args[0]
|
|
}
|
|
|
|
func (s *Scanner) Push(arg string) {
|
|
s.PushToken(Token{Value: arg})
|
|
}
|
|
|
|
func (s *Scanner) PushTyped(arg string, typ TokenType) {
|
|
s.PushToken(Token{Value: arg, Type: typ})
|
|
}
|
|
|
|
func (s *Scanner) PushToken(token Token) {
|
|
s.args = append([]Token{token}, s.args...)
|
|
}
|