CommandFormat.java
上传用户:quxuerui
上传日期:2018-01-08
资源大小:41811k
文件大小:2k
源码类别:

网格计算

开发平台:

Java

  1. /**
  2.  * Licensed to the Apache Software Foundation (ASF) under one
  3.  * or more contributor license agreements.  See the NOTICE file
  4.  * distributed with this work for additional information
  5.  * regarding copyright ownership.  The ASF licenses this file
  6.  * to you under the Apache License, Version 2.0 (the
  7.  * "License"); you may not use this file except in compliance
  8.  * with the License.  You may obtain a copy of the License at
  9.  *
  10.  *     http://www.apache.org/licenses/LICENSE-2.0
  11.  *
  12.  * Unless required by applicable law or agreed to in writing, software
  13.  * distributed under the License is distributed on an "AS IS" BASIS,
  14.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15.  * See the License for the specific language governing permissions and
  16.  * limitations under the License.
  17.  */
  18. package org.apache.hadoop.fs.shell;
  19. import java.util.ArrayList;
  20. import java.util.HashMap;
  21. import java.util.List;
  22. import java.util.Map;
  23. /**
  24.  * Parse the args of a command and check the format of args.
  25.  */
  26. public class CommandFormat {
  27.   final String name;
  28.   final int minPar, maxPar;
  29.   final Map<String, Boolean> options = new HashMap<String, Boolean>();
  30.   /** constructor */
  31.   public CommandFormat(String n, int min, int max, String ... possibleOpt) {
  32.     name = n;
  33.     minPar = min;
  34.     maxPar = max;
  35.     for(String opt : possibleOpt)
  36.       options.put(opt, Boolean.FALSE);
  37.   }
  38.   /** Parse parameters starting from the given position
  39.    * 
  40.    * @param args an array of input arguments
  41.    * @param pos the position at which starts to parse
  42.    * @return a list of parameters
  43.    */
  44.   public List<String> parse(String[] args, int pos) {
  45.     List<String> parameters = new ArrayList<String>();
  46.     for(; pos < args.length; pos++) {
  47.       if (args[pos].charAt(0) == '-' && args[pos].length() > 1) {
  48.         String opt = args[pos].substring(1);
  49.         if (options.containsKey(opt))
  50.           options.put(opt, Boolean.TRUE);
  51.         else
  52.           throw new IllegalArgumentException("Illegal option " + args[pos]);
  53.       }
  54.       else
  55.         parameters.add(args[pos]);
  56.     }
  57.     int psize = parameters.size();
  58.     if (psize < minPar || psize > maxPar)
  59.       throw new IllegalArgumentException("Illegal number of arguments");
  60.     return parameters;
  61.   }
  62.   
  63.   /** Return if the option is set or not
  64.    * 
  65.    * @param option String representation of an option
  66.    * @return true is the option is set; false otherwise
  67.    */
  68.   public boolean getOpt(String option) {
  69.     return options.get(option);
  70.   }
  71. }