forked from symfony-cli/console
-
Notifications
You must be signed in to change notification settings - Fork 0
/
args_enhancement.go
142 lines (116 loc) · 3.05 KB
/
args_enhancement.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
/*
* Copyright (c) 2021-present Fabien Potencier <[email protected]>
*
* This file is part of Symfony CLI project
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package console
import (
"bytes"
"fmt"
"strings"
"github.com/pkg/errors"
)
type ArgDefinition []*Arg
func (def ArgDefinition) Usage() string {
if len(def) < 1 {
return ""
}
buf := bytes.Buffer{}
buf.WriteString(" [--]")
for _, arg := range def {
element := "<" + arg.Name + ">"
if arg.Optional {
element = "[" + element + "]"
} else if arg.Slice {
element = "(" + element + ")"
}
if arg.Slice {
element += "..."
}
buf.WriteString(" ")
buf.WriteString(element)
}
return strings.TrimRight(buf.String(), " ")
}
type Arg struct {
Name, Default string
Description string
Optional bool
Slice bool
}
func (a *Arg) String() string {
requiredString := ""
if !a.Optional {
requiredString = " <comment>(required)</>"
}
defaultValueString := ""
if a.Default != "" {
defaultValueString = fmt.Sprintf(` <comment>[default: "%s"]</>`, a.Default)
}
usageWithDefault := strings.TrimSpace(fmt.Sprintf("%s%s%s", a.Description, defaultValueString, requiredString))
return fmt.Sprintf("<info>%s</>\t%s", a.Name, usageWithDefault)
}
func checkArgsModes(args []*Arg) {
arguments := make(map[string]bool)
hasSliceArgument := false
hasOptional := false
for _, arg := range args {
if arguments[arg.Name] {
panic(fmt.Sprintf(`An argument with name "%s" already exists.`, arg.Name))
}
if hasSliceArgument {
panic("Cannot add an argument after an array argument.")
}
if !arg.Optional && hasOptional {
panic("Cannot add a required argument after an optional one.")
}
if arg.Slice {
hasSliceArgument = true
}
if arg.Optional {
hasOptional = true
}
arguments[arg.Name] = true
}
}
func checkRequiredArgs(command *Command, context *Context) error {
args := context.Args()
hasSliceArgument := false
maximumArgsLen := 0
for _, arg := range command.Args {
if arg.Slice {
hasSliceArgument = true
} else {
maximumArgsLen++
}
if arg.Optional {
continue
}
if arg.Slice {
if len(args.Tail()) < 1 {
return errors.Errorf(`Required argument "%s" is not set`, arg.Name)
}
break
}
if args.Get(arg.Name) == "" {
return errors.Errorf(`Required argument "%s" is not set`, arg.Name)
}
}
if !hasSliceArgument && args.Len() > maximumArgsLen {
return errors.New("Too many arguments")
}
return nil
}