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 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579
|
/*
* Copyright (C) 2014-2021 Brian L. Browning
*
* This file is part of Beagle
*
* Beagle is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Beagle 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package blbutil;
import java.io.File;
import java.util.Arrays;
import java.util.HashMap;
import java.util.Map;
import java.util.Set;
/**
* Class Validate contains static methods for validating command line
* arguments.
*
* @author Brian L. Browning {@code <browning@uw.edu>}
*/
public final class Validate {
private Validate() {
// private constructor to prevent instantiation
}
/**
* Returns a map with one (key, value) pair for each element
* of the specified array. Each element of the specified {@code String[]}
* array must contain the specified delimiter character.
* For each array element {@code s}, the key is
* {@code s.substring(0, s.indexOf(sep))}
* and the value is {@code s.substring(s.indexOf(sep) + 1)}.
*
* @param args a string array
* @param delim the delimiter character separating a key and value
* @return a map with one (key, value) pair for each element
* of the specified array
*
* @throws IllegalArgumentException if the specified delimiter character is
* not found in any string element in the specified {@code String[]} array
* @throws IllegalArgumentException if the specified delimiter
* is the first or last character of each string element in the specified
* {@code String[]} array
* @throws IllegalArgumentException if any two elements of the
* specified string array have the same key
* @throws NullPointerException if {@code args == null} or if
* {@code args[j] == null} for any {@code j} satisfying
* {@code (0 <= j && j <= args.length)}
*/
public static Map<String, String> argsToMap(String[] args, char delim) {
Map<String, String> argMap=new HashMap<>();
for (String arg : args) {
int index=arg.indexOf(delim);
if (index!=-1) {
if (index == 0) {
String s = "missing key in key-value pair: " + arg;
throw new IllegalArgumentException(s);
}
if (index==(arg.length()-1)) {
String s = "missing value in key-value pair: " + arg;
throw new IllegalArgumentException(s);
}
String key = arg.substring(0, index);
String value = arg.substring(index+1);
if (argMap.containsKey(key)) {
String s = "duplicate arguments: " + key;
throw new IllegalArgumentException(s);
}
argMap.put(key, value);
} else {
String s = "missing delimiter character (" + delim + "): "
+ arg;
throw new IllegalArgumentException(s);
}
}
return argMap;
}
/**
* Checks whether the specified map of key-value pairs is empty.
* If the map is non-empty, the method will print an error message
* and terminate the Java virtual machine.
*
* @param argsMap a map of key-value pairs
* @throws NullPointerException if {@code argsMap == null}
*/
public static void confirmEmptyMap(Map<String, String> argsMap) {
Set<String> keySet = argsMap.keySet();
if (keySet.isEmpty()==false) {
StringBuilder sb = new StringBuilder(50);
sb.append("Error: unrecognized parameter");
sb.append(keySet.size()==1 ? ":" : "s:");
for (String key : keySet) {
String value = argsMap.get(key);
sb.append(' ');
sb.append(key);
sb.append('=');
sb.append(value);
}
Utilities.exit(sb.toString());
}
}
/**
* Returns a {@code File} object corresponding to the specified filename or
* {@code null} if {@code filename == null}
*
* @param filename a filename
* @return a file corresponding to the specified filename, or {@code null}
* if {@code filename == null}
*
* @throws IllegalArgumentException if {@code filename.isEmpty() == true}
* @throws IllegalArgumentException if {@code filename != null} and the
* specified file does not exist or is a directory
*/
public static File getFile(String filename) {
if (filename==null) {
return null;
}
if (filename.isEmpty()) {
throw new IllegalArgumentException("filename is empty string");
}
else {
File file = new File(filename);
String err = null;
if (file.exists()==false) {
err = "File does not exist";
}
else if (file.isDirectory()) {
err = "File cannot be a directory";
}
if (err!=null) {
String info = Const.nl + "Error : " + err
+ Const.nl + "Filename : " + file;
Utilities.exit(new Throwable(err), info);
}
return file;
}
}
/**
* Removes the specified key from the specified map, and returns the
* integer value corresponding to the specified key.
*
* @param key the key
* @param map a map of key-value pairs
* @param isRequired {@code true} if the specified key
* is required to be in the specified map, and {@code false} otherwise
* @param defaultValue the value that will be returned if
* {@code (isRequired == false && map.get(key) == null)}
* @param min the minimum valid integer value
* @param max the maximum valid integer value
*
* @return the integer value corresponding to the specified key
*
* @throws IllegalArgumentException if {@code min > max}
* @throws IllegalArgumentException if
* {@code defaultValue < min || defaultValue > max}
* @throws IllegalArgumentException if
* {@code isRequired == true && map.get(key) == null}
* @throws IllegalArgumentException if
* {@code map.get(key) != null
* && (Integer.parseInt(map.get(key)) < min
* || Integer.parseInt(map.get(key)) > max)}
* @throws NumberFormatException if {@code map.get(key) != null}
* and {@code map.get(key)} is not a parsable {@code int}
* @throws NullPointerException if {@code key == null || map == null}
*/
public static int intArg(String key, Map<String, String> map,
boolean isRequired, int defaultValue, int min, int max) {
checkIntValue(key, defaultValue, min, max);
String value = map.remove(key);
if (value==null) {
if (isRequired) {
String s = "missing " + key + " argument";
throw new IllegalArgumentException(s);
}
else {
return defaultValue;
}
}
else {
return parseInt(key, value, min, max);
}
}
/**
* Removes the specified key from the specified map, and returns the
* long value corresponding to the specified key.
*
* @param key the key
* @param map a map of key-value pairs
* @param isRequired {@code true} if the specified key
* is required to be in the specified map, and {@code false} otherwise
* @param defaultValue the value that will be returned if
* {@code (isRequired == false && map.get(key) == null)}
* @param min the minimum valid long value
* @param max the maximum valid long value
*
* @return the long value corresponding to the specified key
*
* @throws IllegalArgumentException if {@code min > max}
* @throws IllegalArgumentException if
* {@code defaultValue < min || defaultValue > max}
* @throws IllegalArgumentException if
* {@code isRequired == true && map.get(key) == null}
* @throws IllegalArgumentException if
* {@code map.get(key) != null
* && (Long.parseLong(map.get(key)) < min
* || Long.parseLong(map.get(key)) > max)}
* @throws NumberFormatException if {@code map.get(key) != null}
* and {@code map.get(key)} is not a parsable {@code long}
* @throws NullPointerException if {@code key == null || map == null}
*/
public static long longArg(String key, Map<String, String> map,
boolean isRequired, long defaultValue, long min, long max) {
checkLongValue(key, defaultValue, min, max);
String value = map.remove(key);
if (value==null) {
if (isRequired) {
String s = "missing " + key + " argument";
throw new IllegalArgumentException(s);
}
else {
return defaultValue;
}
}
else {
return parseLong(key, value, min, max);
}
}
/**
* Removes the specified key from the specified map, and returns the
* float value corresponding to the specified key.
*
* @param key the key
* @param map a map of key-value pairs
* @param isRequired {@code true} if the specified key
* is required to be in the specified map, and {@code false} otherwise
* @param defaultValue the value that will be returned if
* {@code (isRequired == false && map.get(key) == null)}
* @param min the minimum valid float value
* @param max the maximum valid float value
*
* @return the float value corresponding to the specified key
*
* @throws IllegalArgumentException if {@code min > max}
* @throws IllegalArgumentException if
* {@code defaultValue < min || defaultValue > max
* || Float.isNan(defaultValue)==true}
* @throws IllegalArgumentException if
* {@code isRequired == true && map.get(key) == null}
* @throws IllegalArgumentException if
* {@code map.get(key) != null
* && (Float.parseFloat(map.get(key)) < min
* || Float.parseFloat(map.get(key)) > max
* || Float.isNaN(map.get(key))}
* @throws NumberFormatException if {@code map.get(key) != null}
* and {@code map.get(key)} is not a parsablbe {@code float}
* @throws NullPointerException if {@code key == null || map == null}
*/
public static float floatArg(String key, Map<String, String> map,
boolean isRequired, float defaultValue, float min, float max) {
checkFloatValue(key, defaultValue, min, max);
String value = map.remove(key);
if (value==null) {
if (isRequired) {
String s = "missing " + key + " argument";
throw new IllegalArgumentException(s);
}
else {
return defaultValue;
}
}
else {
return parseFloat(key, value, min, max);
}
}
/**
* Removes the specified key from the specified map, and returns the
* double value corresponding to the specified key.
*
* @param key the key
* @param map a map of key-value pairs
* @param isRequired {@code true} if the specified key
* is required to be in the specified map, and {@code false} otherwise
* @param defaultValue the value that will be returned if
* {@code (isRequired == false && map.get(key) == null)}
* @param min the minimum valid double value
* @param max the maximum valid double value
*
* @return the double value corresponding to the specified key
*
* @throws IllegalArgumentException if {@code min > max}
* @throws IllegalArgumentException if
* {@code defaultValue < min || defaultValue > max
* || Double.isNan(defaultValue)==true}
* @throws IllegalArgumentException if
* {@code isRequired == true && map.get(key) == null}
* @throws IllegalArgumentException if
* {@code map.get(key) != null
* && (Double.parseDouble(map.get(key)) < min
* || Double.parseDouble(map.get(key)) > max
* || Double.isNaN(map.get(key))}
* @throws NumberFormatException if {@code map.get(key) != null}
* and {@code map.get(key)} is not a parsable {@code double}
* @throws NullPointerException if {@code key == null || map == null}
*/
public static double doubleArg(String key, Map<String, String> map,
boolean isRequired, double defaultValue, double min, double max) {
checkDoubleValue(key, defaultValue, min, max);
String value = map.remove(key);
if (value==null) {
if (isRequired) {
String s = "missing " + key + " argument";
throw new IllegalArgumentException(s);
}
else {
return defaultValue;
}
}
else {
return parseDouble(key, value, min, max);
}
}
/**
* Removes the specified key from the specified map, and returns the
* boolean value corresponding to the specified key. If the value
* is {@code v}, then {@code true} is returned if
* {@code (v.equalsIgnoreCase("true") || v.equalsIgnoreCase("t"))}
* and {@code false} is returned if
* {@code (v.equalsIgnoreCase("false") || v.equalsIgnoreCase("f"))}.
*
* @param key the key
* @param map a map of key-value pairs
* @param isRequired {@code true} if the specified key
* is required to be in the specified map, and {@code false} otherwise
* @param defaultValue the value that will be returned if
* {@code (isRequired == false && map.get(key) == null)}
*
* @return the boolean value corresponding to the specified key
*
* @throws IllegalArgumentException if
* {@code isRequired == true && map.get(key) == null}
* @throws IllegalArgumentException if the value
* {@code (v = map.get(key)) != null &&
* false == (v.equalsIgnoreCase("true") || v.equalsIgnoreCase("t")
* || v.equalsIgnoreCase("false") || v.equalsIgnoreCase("f"))
* }
* @throws NullPointerException if {@code key == null || map == null}
*/
public static boolean booleanArg(String key, Map<String, String> map,
boolean isRequired, boolean defaultValue) {
String value = map.remove(key);
if (value==null) {
if (isRequired) {
String s = "missing " + key + " argument";
throw new IllegalArgumentException(s);
}
else {
return defaultValue;
}
}
else {
return parseBoolean(value);
}
}
/**
* Removes the specified key from the specified map, and returns the
* string value corresponding to the specified key. The value is permitted
* to be {@code null}
*
* @param key the key
* @param map a map of key-value pairs
* @param isRequired {@code true} if the specified key
* is required to be in the specified map, and {@code false} otherwise
* @param defaultValue the value that will be returned if
* {@code (isRequired == false && map.get(key) == null)}
* @param possibleValues an array of valid string values or {@code null} if
* the valid values are {@code null} and all non-empty strings.
*
* @return the string value corresponding to the specified key
*
* @throws IllegalArgumentException if
* {@code isRequired == true && map.get(key) == null}
* @throws IllegalArgumentException if
* {@code possibleValues != null} and {@code defaultValue} does not
* equal any element of the {@code possibleValues} array
* @throws IllegalArgumentException if
* {@code possibleValues != null} and {@code map.get(key)} does not
* equal any element of the {@code possibleValues} array
* @throws NullPointerException if {@code key == null || map == null}
*/
public static String stringArg(String key, Map<String, String> map,
boolean isRequired, String defaultValue, String[] possibleValues) {
checkStringValue(key, defaultValue, possibleValues);
String value = map.remove(key);
if (value==null) {
if (isRequired) {
String s = "missing " + key + " argument";
throw new IllegalArgumentException(s);
}
else {
return defaultValue;
}
}
checkStringValue(key, value, possibleValues);
return value;
}
private static int parseInt(String key, String toParse, int min, int max) {
try {
int i = Integer.parseInt(toParse);
checkIntValue(key, i, min, max);
return i;
}
catch (NumberFormatException e) {
throw new IllegalArgumentException(toParse + " is not a number");
}
}
private static long parseLong(String key, String toParse, long min, long max) {
try {
long l = Long.parseLong(toParse);
checkLongValue(key, l, min, max);
return l;
}
catch (NumberFormatException e) {
throw new IllegalArgumentException(toParse + " is not a number");
}
}
private static float parseFloat(String key, String toParse, float min,
float max) {
try {
float f = Float.parseFloat(toParse);
checkFloatValue(key, f, min, max);
return f;
}
catch (NumberFormatException e) {
throw new IllegalArgumentException(toParse + " is not a number");
}
}
private static double parseDouble(String key, String toParse, double min,
double max) {
try {
double d = Double.parseDouble(toParse);
checkDoubleValue(key, d, min, max);
return d;
}
catch (NumberFormatException e) {
throw new IllegalArgumentException(toParse + " is not a number");
}
}
private static boolean parseBoolean(String s) {
if (s.equalsIgnoreCase("true") || s.equalsIgnoreCase("t")) {
return true;
}
else if (s.equalsIgnoreCase("false") || s.equalsIgnoreCase("f")) {
return false;
}
else {
String msg = s + " is not \"true\" or \"false\"";
throw new IllegalArgumentException(msg);
}
}
private static void checkIntValue(String key, int value, int min, int max) {
String s = null;
if (min > max) {
s = "min=" + min + " > max=" + max;
}
else if (value < min) {
s = "value=" + value + " < " + min;
}
else if (value > max) {
s = "value=" + value + " > " + max;
}
if (s != null) {
String prefix = "Error in \"" + key + "\" argument: ";
throw new IllegalArgumentException(prefix + s);
}
}
private static void checkLongValue(String key, long value, long min,
long max) {
String s = null;
if (min > max) {
s = "min=" + min + " > max=" + max;
}
else if (value < min) {
s = "value=" + value + " < " + min;
}
else if (value > max) {
s = "value=" + value + " > " + max;
}
if (s != null) {
String prefix = "Error in \"" + key + "\" argument: ";
throw new IllegalArgumentException(prefix + s);
}
}
private static void checkFloatValue(String key, float value, float min,
float max) {
String s = null;
if (Float.isNaN(value)) {
s = "value=" + value;
}
else if (min > max) {
s = "min=" + min + " > max=" + max;
}
else if (value < min) {
s = "value=" + value + " < " + min;
}
else if (value > max) {
s = "value=" + value + " > " + max;
}
if (s != null) {
String prefix = "Error in \"" + key + "\" argument: ";
throw new IllegalArgumentException(prefix + s);
}
}
private static void checkDoubleValue(String key, double value, double min,
double max) {
String s = null;
if (Double.isNaN(value)) {
s = "value=" + value;
}
else if (min > max) {
s = "min=" + min + " > max=" + max;
}
else if (value < min) {
s = "value=" + value + " < " + min;
}
else if (value > max) {
s = "value=" + value + " > " + max;
}
if (s != null) {
String prefix = "Error in \"" + key + "\" argument: ";
throw new IllegalArgumentException(prefix + s);
}
}
private static void checkStringValue(String key, String value,
String[] possibleValues) {
if (possibleValues != null) {
boolean foundMatch = false;
for (int j=0; j<possibleValues.length && foundMatch==false; ++j) {
String s = possibleValues[j];
foundMatch = (s==null) ? value==null : s.equalsIgnoreCase(value);
}
if (foundMatch==false) {
String s = "Error in \"" + key + "\" argument: \"" + value
+ "\" is not in " + Arrays.toString(possibleValues);
throw new IllegalArgumentException(s);
}
}
}
}
|