This repository has been archived by the owner on Apr 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
cli.go
182 lines (144 loc) · 3.65 KB
/
cli.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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
package cli
import (
"errors"
"fmt"
"sort"
"strings"
"github.com/spf13/pflag"
)
// Command : コマンド
type Command struct {
// Name : コマンド名
Name string
// Shorthand : ショートハンド
Shorthand string
// Short : 短いヘルプ文
Short string
// Long : 長いヘルプ文
Long string
// UsageArgs : 使い方(引数)
UsageArgs string
// Example : サンプル
Example string
// Hidden : コマンドを表示しない
Hidden bool
// Validate : 引数のバリデーション関数
Validate ValidateArgsFunc
// SetFlag : フラグの設定
SetFlag func(f *pflag.FlagSet)
// Run : コマンドの処理
Run func(c *Command, f *pflag.FlagSet) error
// Help : ヘルプ関数(オーバーライド)
Help func(c *Command, h string)
// children : サブコマンド
children map[string]*Command
}
// AddCommand : コマンドを追加
func (c *Command) AddCommand(newCmds ...*Command) {
if c.children == nil {
c.children = make(map[string]*Command)
}
for _, cmd := range newCmds {
c.children[cmd.Name] = cmd
}
}
// GetChildren : サブコマンドを取得
func (c *Command) GetChildren() []*Command {
ls := []*Command{}
for _, cmd := range c.children {
if !cmd.Hidden {
ls = append(ls, cmd)
}
}
sort.Slice(ls, func(i, j int) bool {
return ls[i].Name < ls[j].Name
})
return ls
}
// getAllChidrenCombinations : 全てのサブコマンドの組み合わせ一覧を取得
func getAllChidrenCombinations(prefix string, parent *Command) []string {
ls := []string{}
for _, c := range parent.GetChildren() {
p := prefix + " " + c.Name
ls = append(ls, p)
if c.children != nil {
ls = append(ls, getAllChidrenCombinations(p, c)...)
}
}
return ls
}
// GetChildrenNames : サブコマンド名の一覧を取得
func (c *Command) GetChildrenNames(all bool) []string {
ls := []string{}
for _, cmd := range c.GetChildren() {
ls = append(ls, cmd.Name)
if all {
ls = append(ls, getAllChidrenCombinations(cmd.Name, cmd)...)
}
}
return ls
}
// NewFlagSet : flagsetを生成
func (c *Command) NewFlagSet() *pflag.FlagSet {
f := pflag.NewFlagSet(c.Name, pflag.ContinueOnError)
if c.SetFlag != nil {
c.SetFlag(f)
}
f.BoolP("help", "h", false, fmt.Sprintf("help for %s", c.Name))
return f
}
// find : サブコマンドを再帰的に検索
func find(cmd *Command, args []string) (*Command, []string) {
// 先頭がフラグなら検索終了
if strings.HasPrefix(args[0], "-") {
return cmd, args
}
for _, c := range cmd.GetChildren() {
if args[0] != c.Name && args[0] != c.Shorthand {
continue
}
// サブコマンドを持たない, 後ろにコマンドが無いなら検索終了
if c.children == nil || len(args) <= 1 {
return c, args[1:]
}
return find(c, args[1:])
}
return nil, args
}
// Execute : 実行
func (c *Command) Execute(args []string) error {
if len(args) == 0 {
return errors.New("no argument")
}
cmd := c
// 先頭がフラグでないなら、該当するコマンドを検索
if !strings.HasPrefix(args[0], "-") {
fCmd, fArgs := find(cmd, args)
if fCmd == nil {
return fmt.Errorf("command not found: %s", fArgs[0])
}
cmd, args = fCmd, fArgs
}
// パース
f := cmd.NewFlagSet()
if err := f.Parse(args); err != nil {
return err
}
// ヘルプフラグが指定されているなら、ヘルプを表示
if help, _ := f.GetBool("help"); help {
c.help(cmd)
return nil
}
// 引数のバリデーション
if cmd.Validate != nil {
if err := cmd.Validate(cmd, f.Args()); err != nil {
return err
}
}
// 実行関数が無い場合、ヘルプを表示
if cmd.Run == nil {
c.help(cmd)
return nil
}
return cmd.Run(cmd, f)
}