com.sun.tools.internal.xjc.BadCommandLineException Java Examples

The following examples show how to use com.sun.tools.internal.xjc.BadCommandLineException. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: PluginImpl.java    From openjdk-jdk8u with GNU General Public License v2.0 5 votes vote down vote up
public int parseArgument(Options opt, String[] args, int i) throws BadCommandLineException, IOException {
    if(args[i].equals("-episode")) {
        episodeFile = new File(opt.requireArgument("-episode",args,++i));
        return 2;
    }
    return 0;
}
 
Example #2
Source File: Options.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
public void parseArguments(String[] args) throws BadCommandLineException {
    for (int i = 0 ; i <args.length; i++) {
        if (args[i].charAt(0)== '-') {
            i += parseArgument(args, i);
        } else {
            arguments.add(args[i]);
        }
    }
}
 
Example #3
Source File: PluginImpl.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
public int parseArgument(Options opt, String[] args, int i) throws BadCommandLineException, IOException {
    if(args[i].equals("-episode")) {
        episodeFile = new File(opt.requireArgument("-episode",args,++i));
        return 2;
    }
    return 0;
}
 
Example #4
Source File: PluginImpl.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
public int parseArgument(Options opt, String[] args, int i) throws BadCommandLineException, IOException {
    if(args[i].equals("-episode")) {
        episodeFile = new File(opt.requireArgument("-episode",args,++i));
        return 2;
    }
    return 0;
}
 
Example #5
Source File: Options.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
public void parseArguments(String[] args) throws BadCommandLineException {
    for (int i = 0 ; i <args.length; i++) {
        if (args[i].charAt(0)== '-') {
            int j = parseArgument(args,i);
            if(j==0)
                throw new BadCommandLineException(
                        Messages.UNRECOGNIZED_PARAMETER.format(args[i]));
            i += j;
        } else {
            arguments.add(args[i]);
        }
    }
}
 
Example #6
Source File: Options.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
public void parseArguments(String[] args) throws BadCommandLineException {
    for (int i = 0 ; i <args.length; i++) {
        if (args[i].charAt(0)== '-') {
            int j = parseArgument(args,i);
            if(j==0)
                throw new BadCommandLineException(
                        Messages.UNRECOGNIZED_PARAMETER.format(args[i]));
            i += j;
        } else {
            arguments.add(args[i]);
        }
    }
}
 
Example #7
Source File: PluginImpl.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
public int parseArgument(Options opt, String[] args, int i) throws BadCommandLineException, IOException {
    if(args[i].equals("-episode")) {
        episodeFile = new File(opt.requireArgument("-episode",args,++i));
        return 2;
    }
    return 0;
}
 
Example #8
Source File: Options.java    From openjdk-jdk8u with GNU General Public License v2.0 5 votes vote down vote up
public void parseArguments(String[] args) throws BadCommandLineException {
    for (int i = 0 ; i <args.length; i++) {
        if (args[i].charAt(0)== '-') {
            int j = parseArgument(args,i);
            if(j==0)
                throw new BadCommandLineException(
                        Messages.UNRECOGNIZED_PARAMETER.format(args[i]));
            i += j;
        } else {
            arguments.add(args[i]);
        }
    }
}
 
Example #9
Source File: PluginImpl.java    From openjdk-8-source with GNU General Public License v2.0 5 votes vote down vote up
public int parseArgument(Options opt, String[] args, int i) throws BadCommandLineException, IOException {
    if(args[i].equals("-episode")) {
        episodeFile = new File(opt.requireArgument("-episode",args,++i));
        return 2;
    }
    return 0;
}
 
Example #10
Source File: Options.java    From openjdk-8-source with GNU General Public License v2.0 5 votes vote down vote up
public void parseArguments(String[] args) throws BadCommandLineException {
    for (int i = 0 ; i <args.length; i++) {
        if (args[i].charAt(0)== '-') {
            int j = parseArgument(args,i);
            if(j==0)
                throw new BadCommandLineException(
                        Messages.UNRECOGNIZED_PARAMETER.format(args[i]));
            i += j;
        } else {
            arguments.add(args[i]);
        }
    }
}
 
Example #11
Source File: Options.java    From jdk8u60 with GNU General Public License v2.0 5 votes vote down vote up
public void parseArguments(String[] args) throws BadCommandLineException {
    for (int i = 0 ; i <args.length; i++) {
        if (args[i].charAt(0)== '-') {
            int j = parseArgument(args,i);
            if(j==0)
                throw new BadCommandLineException(
                        Messages.UNRECOGNIZED_PARAMETER.format(args[i]));
            i += j;
        } else {
            arguments.add(args[i]);
        }
    }
}
 
Example #12
Source File: PluginImpl.java    From jdk8u60 with GNU General Public License v2.0 5 votes vote down vote up
public int parseArgument(Options opt, String[] args, int i) throws BadCommandLineException, IOException {
    if(args[i].equals("-episode")) {
        episodeFile = new File(opt.requireArgument("-episode",args,++i));
        return 2;
    }
    return 0;
}
 
Example #13
Source File: PluginImpl.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
public int parseArgument(Options opt, String[] args, int i) throws BadCommandLineException, IOException {
    if(args[i].equals("-episode")) {
        episodeFile = new File(opt.requireArgument("-episode",args,++i));
        return 2;
    }
    return 0;
}
 
Example #14
Source File: PluginImpl.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
public int parseArgument(Options opt, String[] args, int i) throws BadCommandLineException, IOException {
    if(args[i].equals("-episode")) {
        episodeFile = new File(opt.requireArgument("-episode",args,++i));
        return 2;
    }
    return 0;
}
 
Example #15
Source File: Options.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
public void parseArguments(String[] args) throws BadCommandLineException {
    for (int i = 0 ; i <args.length; i++) {
        if (args[i].charAt(0)== '-') {
            int j = parseArgument(args,i);
            if(j==0)
                throw new BadCommandLineException(
                        Messages.UNRECOGNIZED_PARAMETER.format(args[i]));
            i += j;
        } else {
            arguments.add(args[i]);
        }
    }
}
 
Example #16
Source File: Options.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
public void parseArguments(String[] args) throws BadCommandLineException {
    for (int i = 0 ; i <args.length; i++) {
        if (args[i].charAt(0)== '-') {
            int j = parseArgument(args,i);
            if(j==0)
                throw new BadCommandLineException(
                        Messages.UNRECOGNIZED_PARAMETER.format(args[i]));
            i += j;
        } else {
            arguments.add(args[i]);
        }
    }
}
 
Example #17
Source File: Options.java    From hottub with GNU General Public License v2.0 4 votes vote down vote up
private int parseArgument( String[] args, int i ) throws BadCommandLineException {
    if (args[i].equals("-d")) {
        if (i == args.length - 1)
            throw new BadCommandLineException(
                    (Messages.OPERAND_MISSING.format(args[i])));
        targetDir = new File(args[++i]);
        if( !targetDir.exists() )
            throw new BadCommandLineException(
                    Messages.NON_EXISTENT_FILE.format(targetDir));
        return 1;
    }

    if (args[i].equals("-episode")) {
        if (i == args.length - 1)
            throw new BadCommandLineException(
                    (Messages.OPERAND_MISSING.format(args[i])));
        episodeFile = new File(args[++i]);
        return 1;
    }

    if (args[i].equals(DISABLE_XML_SECURITY)) {
        if (i == args.length - 1)
            throw new BadCommandLineException(
                    (Messages.OPERAND_MISSING.format(args[i])));
        disableXmlSecurity = true;
        return 1;
    }

    if (args[i].equals("-encoding")) {
        if (i == args.length - 1)
            throw new BadCommandLineException(
                    (Messages.OPERAND_MISSING.format(args[i])));
        encoding = args[++i];
        return 1;
    }

    if (args[i].equals("-cp") || args[i].equals("-classpath")) {
        if (i == args.length - 1)
            throw new BadCommandLineException(
                    (Messages.OPERAND_MISSING.format(args[i])));
        classpath = args[++i];

        return 1;
    }

    return 0;

}
 
Example #18
Source File: SchemaGenerator.java    From openjdk-8 with GNU General Public License v2.0 4 votes vote down vote up
/**
 * Runs the schema generator.
 *
 * @param classLoader
 *      the schema generator will run in this classLoader.
 *      It needs to be able to load annotation processing and JAXB RI classes. Note that
 *      JAXB RI classes refer to annotation processing classes. Must not be null.
 *
 * @return
 *      exit code. 0 if success.
 *
 */
public static int run(String[] args, ClassLoader classLoader) throws ClassNotFoundException, NoSuchMethodException, IllegalAccessException, InvocationTargetException {
    final Options options = new Options();
    if (args.length ==0) {
        usage();
        return -1;
    }
    for (String arg : args) {
        if (arg.equals("-help")) {
            usage();
            return -1;
        }

        if (arg.equals("-version")) {
            System.out.println(Messages.VERSION.format());
            return -1;
        }

        if (arg.equals("-fullversion")) {
            System.out.println(Messages.FULLVERSION.format());
            return -1;
        }

    }

    try {
        options.parseArguments(args);
    } catch (BadCommandLineException e) {
        // there was an error in the command line.
        // print usage and abort.
        System.out.println(e.getMessage());
        System.out.println();
        usage();
        return -1;
    }

    Class schemagenRunner = classLoader.loadClass(Runner.class.getName());
    Method compileMethod = schemagenRunner.getDeclaredMethod("compile",String[].class,File.class);

    List<String> aptargs = new ArrayList<String>();

    if (options.encoding != null) {
        aptargs.add("-encoding");
        aptargs.add(options.encoding);
    }

    aptargs.add("-cp");
    aptargs.add(setClasspath(options.classpath)); // set original classpath + jaxb-api to be visible to annotation processor

    if(options.targetDir!=null) {
        aptargs.add("-d");
        aptargs.add(options.targetDir.getPath());
    }

    aptargs.addAll(options.arguments);

    String[] argsarray = aptargs.toArray(new String[aptargs.size()]);
    return ((Boolean) compileMethod.invoke(null, argsarray, options.episodeFile)) ? 0 : 1;
}
 
Example #19
Source File: SchemaGenerator.java    From openjdk-jdk9 with GNU General Public License v2.0 4 votes vote down vote up
/**
 * Runs the schema generator.
 *
 * @param classLoader
 *      the schema generator will run in this classLoader.
 *      It needs to be able to load annotation processing and JAXB RI classes. Note that
 *      JAXB RI classes refer to annotation processing classes. Must not be null.
 *
 * @return
 *      exit code. 0 if success.
 *
 */
public static int run(String[] args, ClassLoader classLoader) throws ClassNotFoundException, NoSuchMethodException, IllegalAccessException, InvocationTargetException {
    final Options options = new Options();
    if (args.length ==0) {
        usage();
        return -1;
    }
    for (String arg : args) {
        if (arg.equals("-help")) {
            usage();
            return -1;
        }

        if (arg.equals("-version")) {
            System.out.println(Messages.VERSION.format());
            return -1;
        }

        if (arg.equals("-fullversion")) {
            System.out.println(Messages.FULLVERSION.format());
            return -1;
        }

    }

    try {
        options.parseArguments(args);
    } catch (BadCommandLineException e) {
        // there was an error in the command line.
        // print usage and abort.
        System.out.println(e.getMessage());
        System.out.println();
        usage();
        return -1;
    }

    Class schemagenRunner = classLoader.loadClass(Runner.class.getName());
    Method compileMethod = schemagenRunner.getDeclaredMethod("compile",String[].class,File.class);

    List<String> aptargs = new ArrayList<String>();

    if (options.encoding != null) {
        aptargs.add("-encoding");
        aptargs.add(options.encoding);
    }

    aptargs.add("-cp");
    aptargs.add(setClasspath(options.classpath)); // set original classpath + jaxb-api to be visible to annotation processor

    aptargs.add("--add-modules");
    aptargs.add("java.xml.bind");

    if(options.targetDir!=null) {
        aptargs.add("-d");
        aptargs.add(options.targetDir.getPath());
    }

    aptargs.addAll(options.arguments);

    String[] argsarray = aptargs.toArray(new String[aptargs.size()]);
    return ((Boolean) compileMethod.invoke(null, argsarray, options.episodeFile)) ? 0 : 1;
}
 
Example #20
Source File: PluginImpl.java    From hottub with GNU General Public License v2.0 4 votes vote down vote up
@Override
public int parseArgument(Options opt, String[] args, int i) throws BadCommandLineException, IOException {
    return 0;   // no option recognized
}
 
Example #21
Source File: SourceLocationAddOn.java    From hottub with GNU General Public License v2.0 4 votes vote down vote up
public int parseArgument(Options opt, String[] args, int i) throws BadCommandLineException, IOException {
    return 0;   // no option recognized
}
 
Example #22
Source File: Options.java    From openjdk-8 with GNU General Public License v2.0 4 votes vote down vote up
private int parseArgument( String[] args, int i ) throws BadCommandLineException {
    if (args[i].equals("-d")) {
        if (i == args.length - 1)
            throw new BadCommandLineException(
                    (Messages.OPERAND_MISSING.format(args[i])));
        targetDir = new File(args[++i]);
        if( !targetDir.exists() )
            throw new BadCommandLineException(
                    Messages.NON_EXISTENT_FILE.format(targetDir));
        return 1;
    }

    if (args[i].equals("-episode")) {
        if (i == args.length - 1)
            throw new BadCommandLineException(
                    (Messages.OPERAND_MISSING.format(args[i])));
        episodeFile = new File(args[++i]);
        return 1;
    }

    if (args[i].equals(DISABLE_XML_SECURITY)) {
        if (i == args.length - 1)
            throw new BadCommandLineException(
                    (Messages.OPERAND_MISSING.format(args[i])));
        disableXmlSecurity = true;
        return 1;
    }

    if (args[i].equals("-encoding")) {
        if (i == args.length - 1)
            throw new BadCommandLineException(
                    (Messages.OPERAND_MISSING.format(args[i])));
        encoding = args[++i];
        return 1;
    }

    if (args[i].equals("-cp") || args[i].equals("-classpath")) {
        if (i == args.length - 1)
            throw new BadCommandLineException(
                    (Messages.OPERAND_MISSING.format(args[i])));
        classpath = args[++i];

        return 1;
    }

    return 0;

}
 
Example #23
Source File: SynchronizedMethodAddOn.java    From hottub with GNU General Public License v2.0 4 votes vote down vote up
public int parseArgument(Options opt, String[] args, int i) throws BadCommandLineException, IOException {
    return 0;   // no option recognized
}
 
Example #24
Source File: SynchronizedMethodAddOn.java    From openjdk-8 with GNU General Public License v2.0 4 votes vote down vote up
public int parseArgument(Options opt, String[] args, int i) throws BadCommandLineException, IOException {
    return 0;   // no option recognized
}
 
Example #25
Source File: PluginImpl.java    From openjdk-8 with GNU General Public License v2.0 4 votes vote down vote up
@Override
public int parseArgument(Options opt, String[] args, int i) throws BadCommandLineException, IOException {
    return 0;   // no option recognized
}
 
Example #26
Source File: SchemaGenerator.java    From hottub with GNU General Public License v2.0 4 votes vote down vote up
/**
 * Runs the schema generator.
 *
 * @param classLoader
 *      the schema generator will run in this classLoader.
 *      It needs to be able to load annotation processing and JAXB RI classes. Note that
 *      JAXB RI classes refer to annotation processing classes. Must not be null.
 *
 * @return
 *      exit code. 0 if success.
 *
 */
public static int run(String[] args, ClassLoader classLoader) throws ClassNotFoundException, NoSuchMethodException, IllegalAccessException, InvocationTargetException {
    final Options options = new Options();
    if (args.length ==0) {
        usage();
        return -1;
    }
    for (String arg : args) {
        if (arg.equals("-help")) {
            usage();
            return -1;
        }

        if (arg.equals("-version")) {
            System.out.println(Messages.VERSION.format());
            return -1;
        }

        if (arg.equals("-fullversion")) {
            System.out.println(Messages.FULLVERSION.format());
            return -1;
        }

    }

    try {
        options.parseArguments(args);
    } catch (BadCommandLineException e) {
        // there was an error in the command line.
        // print usage and abort.
        System.out.println(e.getMessage());
        System.out.println();
        usage();
        return -1;
    }

    Class schemagenRunner = classLoader.loadClass(Runner.class.getName());
    Method compileMethod = schemagenRunner.getDeclaredMethod("compile",String[].class,File.class);

    List<String> aptargs = new ArrayList<String>();

    if (options.encoding != null) {
        aptargs.add("-encoding");
        aptargs.add(options.encoding);
    }

    aptargs.add("-cp");
    aptargs.add(setClasspath(options.classpath)); // set original classpath + jaxb-api to be visible to annotation processor

    if(options.targetDir!=null) {
        aptargs.add("-d");
        aptargs.add(options.targetDir.getPath());
    }

    aptargs.addAll(options.arguments);

    String[] argsarray = aptargs.toArray(new String[aptargs.size()]);
    return ((Boolean) compileMethod.invoke(null, argsarray, options.episodeFile)) ? 0 : 1;
}
 
Example #27
Source File: PluginImpl.java    From openjdk-8-source with GNU General Public License v2.0 4 votes vote down vote up
@Override
public int parseArgument(Options opt, String[] args, int i) throws BadCommandLineException, IOException {
    return 0;   // no option recognized
}
 
Example #28
Source File: SourceLocationAddOn.java    From openjdk-8-source with GNU General Public License v2.0 4 votes vote down vote up
public int parseArgument(Options opt, String[] args, int i) throws BadCommandLineException, IOException {
    return 0;   // no option recognized
}
 
Example #29
Source File: SourceLocationAddOn.java    From openjdk-8 with GNU General Public License v2.0 4 votes vote down vote up
public int parseArgument(Options opt, String[] args, int i) throws BadCommandLineException, IOException {
    return 0;   // no option recognized
}
 
Example #30
Source File: PluginImpl.java    From openjdk-jdk9 with GNU General Public License v2.0 4 votes vote down vote up
@Override
public int parseArgument(Options opt, String[] args, int i) throws BadCommandLineException, IOException {
    return 0;   // no option recognized
}