forked from actframework/actframework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOptionAnnoInfoBase.java
More file actions
146 lines (127 loc) · 3.36 KB
/
OptionAnnoInfoBase.java
File metadata and controls
146 lines (127 loc) · 3.36 KB
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
package act.cli.meta;
/*-
* #%L
* ACT Framework
* %%
* Copyright (C) 2014 - 2017 ActFramework
* %%
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* #L%
*/
import act.cli.builtin.Help;
import org.osgl.util.E;
import org.osgl.util.S;
/**
* Store the option annotation meta info. There are two mutually exclusive
* option annotations:
* <ul>
* <li>{@link act.cli.Optional}</li>
* <li>{@link act.cli.Required}</li>
* </ul>
*/
public class OptionAnnoInfoBase {
/*
* e.g -o
*/
private String lead1;
/*
* e.g. --option
*/
private String lead2;
private String defVal;
private String group;
private String help;
private boolean required;
private String param;
public OptionAnnoInfoBase(boolean optional) {
this.required = !optional;
}
@Override
public String toString() {
return S.fmt("%s %s", leads(), help());
}
public OptionAnnoInfoBase spec(String[] specs) {
E.illegalArgumentIf(null == specs || specs.length == 0);
lead1 = specs[0];
if (specs.length > 1) {
lead2 = specs[1];
} else {
String[] sa = lead1.split("[,;\\s]+");
if (sa.length > 2) {
throw E.unexpected("Option cannot have more than two leads");
}
if (sa.length > 1) {
lead1 = sa[0];
lead2 = sa[1];
}
}
Help.updateMaxWidth(leads().length());
return this;
}
public String lead1() {
return lead1;
}
public String lead2() {
return lead2;
}
public String leads() {
if (null == lead1 && null == lead2) {
return "";
}
if (null == lead1) {
return lead2;
} else if (null == lead2) {
return lead1;
}
return S.join(",", lead1, lead2);
}
private void setLeadsIfNotSet(String paramName) {
if (null == lead1) {
lead1 = "-" + paramName.charAt(0);
lead2 = "--" + paramName;
}
}
public OptionAnnoInfoBase required(boolean required) {
this.required = required;
return this;
}
public boolean required() {
return required;
}
public OptionAnnoInfoBase defVal(String defVal) {
this.defVal = defVal;
return this;
}
public String defVal() {
return defVal;
}
public OptionAnnoInfoBase group(String group) {
this.group = group;
return this;
}
public String group() {
return group;
}
public OptionAnnoInfoBase paramName(String name) {
param = name;
setLeadsIfNotSet(name);
return this;
}
public OptionAnnoInfoBase help(String helpMessage) {
help = helpMessage;
return this;
}
public String help() {
return help;
}
}