-
Notifications
You must be signed in to change notification settings - Fork 3
/
flagtag.go
119 lines (98 loc) · 3.11 KB
/
flagtag.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
// Copyright (c) 2020 Adam S Levy
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to
// deal in the Software without restriction, including without limitation the
// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
// sell copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
// IN THE SOFTWARE.
package flagbind
import (
"strings"
)
type flagTag struct {
// `flag:"<name>,<short name>"`
// Number int `flag:"num,n"`
Name string
ShortName string
HasExplicitName bool
IsIgnored bool
// `flag:";<default value>"`
// Number int `flag:";5"`
DefValue string
// `flag:";;<usage>"`
// Number int `flag:";;Number of times to do"`
// _ struct{} `use:"something"`
Usage string
// Options
// `flag:";;;<options>"`
// Number int `flag:";;;hide-default,hidden"`
HideDefault bool // `flag:";;;hide-default"`
Hidden bool // `flag:";;;hidden"`
// Nested struct
Flatten bool // `flag:";;;flatten"`
}
// newFlagTag parses all possible tag settings.
func newFlagTag(tag string) (fTag flagTag) {
if tag == "" {
return
}
args := strings.Split(tag, ";")
fTag.IsIgnored = args[0] == "-"
if fTag.IsIgnored {
return
}
fTag.parseNames(args[0])
if len(args) == 1 {
return
}
fTag.DefValue = args[1]
if len(args) == 2 {
return
}
fTag.Usage = strings.TrimSpace(args[2])
if len(args) == 3 {
return
}
fTag.parseOptions(args[3])
return
}
// parseNames parses and sorts the long and short flag names.
func (fTag *flagTag) parseNames(name string) {
names := strings.Split(name, ",")
fTag.Name = strings.TrimLeft(names[0], "-")
if len(names) > 1 {
fTag.ShortName = strings.TrimLeft(names[1], "-")
}
// Ensure Name is longer than ShortName.
if len(fTag.Name) < len(fTag.ShortName) {
fTag.Name, fTag.ShortName = fTag.ShortName, fTag.Name
}
// If short name is too long, censor it.
if len(fTag.ShortName) > 1 {
fTag.ShortName = ""
}
// If Name qualifies as short, override ShortName.
if len(fTag.Name) == 1 {
fTag.ShortName = fTag.Name
}
fTag.HasExplicitName = fTag.Name != ""
}
// parseOptions parses the hidden, hide-default, and flatten options.
func (fTag *flagTag) parseOptions(opts string) {
opts = strings.ToLower(opts)
fTag.Hidden = strings.Contains(opts, "hidden")
fTag.HideDefault = strings.Contains(opts, "hide-default")
fTag.Flatten = strings.Contains(opts, "flatten")
}