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

com.googlecode.jsonschema2pojo.cli.Arguments Maven / Gradle / Ivy

There is a newer version: 0.3.7
Show newest version
/**
 * Copyright © 2010-2011 Nokia
 *
 * 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 com.googlecode.jsonschema2pojo.cli;

import static org.apache.commons.lang.StringUtils.*;

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

import org.apache.commons.cli.CommandLine;
import org.apache.commons.cli.HelpFormatter;
import org.apache.commons.cli.OptionBuilder;
import org.apache.commons.cli.Options;
import org.apache.commons.cli.ParseException;
import org.apache.commons.cli.PosixParser;

/**
 * Describes and parses the command line arguments supported by the
 * jsonschema2pojo CLI.
 */
@SuppressWarnings("static-access")
public class Arguments {
    
    private static final int EXIT_OKAY = 0;
    private static final int EXIT_ERROR = 1;
    
    private static Options options = new Options();
    static {
        options.addOption("h", "help", false, "Print help information and exit");
        options.addOption(OptionBuilder.hasArg().isRequired(false).withDescription("A java package used for generated types").withLongOpt("package").withArgName("package name").create("p"));
        options.addOption(OptionBuilder.hasArg().isRequired().withDescription("The target directory into which generated types will be written").withLongOpt("target").withArgName("directory").create("t"));
        options.addOption(OptionBuilder.hasArg().isRequired().withDescription("The source file or directory from which JSON Schema will be read").withLongOpt("source").create("s"));
        options.addOption(OptionBuilder.hasArg(false).isRequired(false).withDescription("Generate builder-style methods as well as setters").withLongOpt("generate-builders").create("b"));
    }
    
    private String source;
    private String target;
    private String packageName;
    private Map behaviourProperties;
    
    /**
     * Parses command line arguments and populates this command line instance.
     * 

* If the command line arguments include the "help" argument, or if the * arguments have incorrect values or order, then usage information is * printed to {@link System#out} and the program terminates. * * @param args * the command line arguments * @return an instance of the parsed arguments object */ public Arguments parse(String[] args) { try { CommandLine commandLine = new PosixParser().parse(options, args); if (commandLine.hasOption("help")) { printHelp(EXIT_OKAY); } this.source = commandLine.getOptionValue("source"); this.packageName = defaultString(commandLine.getOptionValue("package")); this.target = commandLine.getOptionValue("target"); this.behaviourProperties = new HashMap(); } catch (ParseException e) { printHelp(EXIT_ERROR); } return this; } public String getPackageName() { return packageName; } public String getSource() { return source; } public String getTarget() { return target; } private void printHelp(int status) { new HelpFormatter().printHelp("jsonschema2pojo", options, true); exit(status); } protected void exit(int status) { System.exit(status); } public Map getBehaviourProperties() { return behaviourProperties; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy