forked from voxelbrain/goptions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
flag.go
90 lines (80 loc) · 2.08 KB
/
flag.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
package goptions
import (
"fmt"
"reflect"
"strings"
)
// Flag represents a single flag of a FlagSet.
type Flag struct {
Short string
Long string
MutexGroups []string
Description string
Obligatory bool
WasSpecified bool
value reflect.Value
optionMeta map[string]interface{}
DefaultValue interface{}
}
// Return the name of the flag preceding the right amount of dashes.
// The long name is preferred. If no name has been specified, "<unspecified>"
// will be returned.
func (f *Flag) Name() string {
if len(f.Long) > 0 {
return "--" + f.Long
}
if len(f.Short) > 0 {
return "-" + f.Short
}
return "<unspecified>"
}
// NeedsExtraValue returns true if the flag expects a separate value.
func (f *Flag) NeedsExtraValue() bool {
// Explicit over implicit
if f.value.Type() == reflect.TypeOf(new([]bool)).Elem() ||
f.value.Type() == reflect.TypeOf(new(bool)).Elem() {
return false
}
if _, ok := f.value.Interface().(Help); ok {
return false
}
return true
}
// IsMulti returns true if the flag can be specified multiple times.
func (f *Flag) IsMulti() bool {
if f.value.Kind() == reflect.Slice {
return true
}
return false
}
func isShort(arg string) bool {
return strings.HasPrefix(arg, "-") && !strings.HasPrefix(arg, "--") && len(arg) >= 2
}
func isLong(arg string) bool {
return strings.HasPrefix(arg, "--") && len(arg) >= 3
}
func (f *Flag) Handles(arg string) bool {
return (isShort(arg) && arg[1:2] == f.Short) ||
(isLong(arg) && arg[2:] == f.Long)
}
func (f *Flag) Parse(args []string) ([]string, error) {
param, value := args[0], ""
if f.NeedsExtraValue() &&
(len(args) < 2 || (isShort(param) && len(param) > 2)) {
return args, fmt.Errorf("Flag %s needs an argument", f.Name())
}
if f.WasSpecified && !f.IsMulti() {
return args, fmt.Errorf("Flag %s can only be specified once", f.Name())
}
if isShort(param) && len(param) > 2 {
// Short flag cluster
args[0] = "-" + param[2:]
} else if f.NeedsExtraValue() {
value = args[1]
args = args[2:]
} else {
args = args[1:]
}
f.WasSpecified = true
return args, f.setValue(value)
}