2e1c03ab06db5cf2020540c6cc74ae39946ba6dd
[svjatoslav_commons.git] / src / main / java / eu / svjatoslav / commons / commandline / parameterparser / Parameter.java
1 /*
2  * Svjatoslav Commons - shared library of common functionality.
3  * Copyright ©2012-2014, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu
4  * 
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of version 3 of the GNU Lesser General Public License
7  * or later as published by the Free Software Foundation.
8  */
9
10 package eu.svjatoslav.commons.commandline.parameterparser;
11
12 import java.io.File;
13 import java.util.ArrayList;
14 import java.util.List;
15
16 public abstract class Parameter {
17
18         /**
19          * Indicates that at least one argument is mandatory for this parameter.
20          */
21         protected boolean mandatory;
22
23         private final ArrayList<String> aliases = new ArrayList<String>();
24
25         public final String description;
26
27         protected final ArrayList<String> arguments = new ArrayList<String>();
28
29         ArgumentCount argumentCount;
30
31         /**
32          * If this parameter was present in the commandline, then this boolean will
33          * be set to <code>true</code>.
34          */
35         private boolean parameterSpecified;
36
37         public Parameter(final boolean mandatory,
38                         final ArgumentCount argumentCount, final String description,
39                         final String... aliases2) {
40
41                 this.mandatory = mandatory;
42                 this.description = description;
43                 this.argumentCount = argumentCount;
44
45                 // save aliases
46                 for (final String alias : aliases2)
47                         aliases.add(alias);
48
49         };
50
51         public Parameter(final String description, final ArgumentCount argumentCount) {
52                 this.description = description;
53                 this.argumentCount = argumentCount;
54         }
55
56         public Parameter addAliases(final String... aliasArray) {
57
58                 // save aliases
59                 for (final String alias : aliasArray)
60                         aliases.add(alias);
61
62                 return this;
63         }
64
65         /**
66          * @return <code>true</code> if no errors were found. <code>false</code>
67          *         otherwise.
68          */
69         public boolean addArgument(final String argumentString) {
70                 // check if arguments are allowed for this parameter
71                 if (argumentCount.equals(ArgumentCount.NONE)) {
72                         System.out
73                                         .println("Error! No arguments are allowed for parameters: "
74                                                         + getAliases());
75                         return false;
76                 }
77
78                 // check if multiple arguments are allowed
79                 if ((arguments.size() > 0)
80                                 && (argumentCount.equals(ArgumentCount.SINGLE))) {
81                         System.out
82                                         .println("Error! Only single argument is allowed for parameters: "
83                                                         + getAliases());
84                         return false;
85                 }
86
87                 if (!validate(argumentString)) {
88
89                         System.out.println("Error! Invalid argument \"" + argumentString
90                                         + "\". It shall be " + describeFormat() + ".");
91                         return false;
92
93                 }
94
95                 arguments.add(argumentString);
96
97                 return true;
98         }
99
100         /**
101          * @return Single line argument type description.
102          */
103         public abstract String describeFormat();
104
105         public String getAliases() {
106                 final StringBuffer buffer = new StringBuffer();
107
108                 for (final String alias : aliases) {
109
110                         if (buffer.length() > 0)
111                                 buffer.append(", ");
112
113                         buffer.append(alias);
114                 }
115
116                 return buffer.toString();
117         }
118
119         public List<File> getArgumentsAsFiles() {
120                 final ArrayList<File> result = new ArrayList<File>();
121
122                 for (final String argument : arguments) {
123                         final File file = new File(argument);
124                         result.add(file);
125                 }
126
127                 return result;
128         }
129
130         public List<Integer> getArgumentsAsIntegers() {
131                 final ArrayList<Integer> result = new ArrayList<Integer>();
132
133                 for (final String argument : arguments)
134                         result.add(Integer.valueOf(argument));
135
136                 return result;
137         }
138
139         public List<String> getArgumentsAsStrings() {
140                 final ArrayList<String> result = new ArrayList<String>(arguments);
141                 return result;
142         }
143
144         public String getHelp() {
145                 final StringBuffer buffer = new StringBuffer();
146
147                 // first line
148                 buffer.append(getAliases());
149                 if (!argumentCount.equals(ArgumentCount.NONE)) {
150                         buffer.append(" (" + describeFormat() + ")");
151
152                         if (argumentCount.equals(ArgumentCount.MULTI))
153                                 buffer.append("...");
154                 }
155                 buffer.append("\n");
156
157                 // second line
158                 buffer.append("    " + description + "\n");
159
160                 return buffer.toString();
161         }
162
163         public boolean isMandatory() {
164                 return mandatory;
165         }
166
167         /**
168          * @return the parameterSpecified
169          */
170         public boolean isParameterSpecified() {
171                 return parameterSpecified;
172         }
173
174         /**
175          * @return <code>true</code> if given alias is registered for this
176          *         parameter.
177          */
178         public boolean matchesAlias(final String alias) {
179                 if (aliases.contains(alias))
180                         return true;
181
182                 return false;
183         }
184
185         /**
186          * Notifies this parameter that no more arguments will follow. This gives
187          * parameter chance to verify if this is ok.
188          * 
189          * @return <code>true</code> if no errors were found. <code>false</code>
190          *         otherwise.
191          */
192         public boolean noMoreArguments() {
193
194                 if ((!argumentCount.equals(ArgumentCount.NONE))
195                                 && (arguments.isEmpty())) {
196
197                         System.out.println("Error! " + getAliases()
198                                         + " require at least one following argument.");
199
200                         return false;
201                 }
202                 return true;
203         }
204
205         public Parameter setMandatory() {
206                 mandatory = true;
207                 return this;
208         }
209
210         /**
211          * @param parameterSpecified
212          *            the parameterSpecified to set
213          */
214         public void setParameterSpecified(final boolean parameterSpecified) {
215                 this.parameterSpecified = parameterSpecified;
216         }
217
218         /**
219          * @return <code>true</code> if value is correct, <code>false</code>
220          *         otherwise.
221          */
222         public abstract boolean validate(String value);
223
224 }