All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.cricketmsf.ArgumentParser Maven / Gradle / Ivy

/*
 * Copyright 2016 Grzegorz Skorupa .
 *
 * 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.
 */
package org.cricketmsf;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.Map;

public class ArgumentParser {
    
    private Map arguments;
    
    /**
     * Default constructor
     */
    public ArgumentParser(){
        arguments=new HashMap<>();
    }
    
    /**
     * Creates ArgumentParser based on command line arguments
     * 
     * @param args  command line arguments
     */
    public ArgumentParser(String[] args){
        arguments=getArguments(args);
    }
    
    public boolean containsKey(String key){
        return arguments.containsKey(key);
    }
    
    public Object get(String key){
        return arguments.get(key);
    }
    
    public boolean isProblem(){
        return (get("error")!=null);
    }

    /**
     * Parse command line arguments 
     * 
     * @param args  array of command line arguments
     * @return  map of argument values related to argument names
     */
    public static Map getArguments(String[] args) {
        HashMap map = new HashMap<>();
        ArrayList forced = new ArrayList();
        String name;
        String option="";
        boolean confToRead = false;
        if(args==null){
            return map;
        }
        for (String arg : args) {
            name = arg;
            if (confToRead) {
                if(name.startsWith("-")){
                    map.put("error", "option "+option+" must be followed by value");
                }else{
                    if("force".equals(option)){
                        forced.add(name);
                    }else{
                        map.put(option, name);
                    }
                    confToRead=false;
                    option="";
                }
            } else {
                switch (name) {
                    case "--help":
                    case "-h":
                        map.put("help", "");
                        break;
                    case "--print":
                    case "-p":
                        map.put("print", "");
                        break;
                    case "--run":
                    case "-r":
                        map.put("run", "*");
                        break;
                    case "--config":
                    case "-c":
                        confToRead = true;
                        option="config";
                        break;
                    case "--lift":
                    case "-l":
                        confToRead = true;
                        option="lift";
                        break;
                    case "--service":
                    case "-s":
                        confToRead = true;
                        option="service";
                        break;
                    case "--force":
                    case "-f":
                        confToRead = true;
                        option="force";
                        break;
                    default:
                        map.put("error", "unknown option " + name);
                }
            }
        }
        if(confToRead){
            switch(option){
                case "config":
                    map.put("error", "-c or --config option requires an argument");
                    break;
                case "lift":
                    map.put("error", "-l or --lift option requires an argument");
                    break;
                case "service":
                    map.put("error", "-s or --service option requires an argument");
                    break;
                case "force":
                    map.put("error", "-f or --force option requires an argument");
                    break;
            }
            
        }
        String envArg=System.getenv("CMF_PARAM");
        if(envArg!=null && !envArg.isEmpty()){
            forced.add(envArg);
        }
        if(forced.size()>0){
            map.put("force", forced);
        }
        return map;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy