com.sun.tools.internal.jxc.ap.Options Java Examples

The following examples show how to use com.sun.tools.internal.jxc.ap.Options. 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: SchemaGenerator.java    From TencentKona-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 #2
Source File: SchemaGenerator.java    From jdk8u60 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 #3
Source File: SchemaGenerator.java    From openjdk-jdk8u 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 #4
Source File: SchemaGenerator.java    From openjdk-jdk8u-backup 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 #5
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 #6
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 #7
Source File: SchemaGenerator.java    From openjdk-8-source 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 #8
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 #9
Source File: ConfigReader.java    From TencentKona-8 with GNU General Public License v2.0 3 votes vote down vote up
/**
 *
 * @param classes
 *      The set of classes passed to the AnnotationProcessor
 * @param xmlFile
 *      The configuration file.
 * @throws SAXException
 *      If this is thrown, the error has already been reported.
 * @throws IOException
 *     If any IO errors occur.
 */
public ConfigReader(ProcessingEnvironment env, Collection<? extends TypeElement> classes, File xmlFile, ErrorHandler errorHandler) throws SAXException, IOException {
    this.env = env;
    Config config = parseAndGetConfig(xmlFile, errorHandler, env.getOptions().containsKey(Options.DISABLE_XML_SECURITY));
    checkAllClasses(config,classes);
    String path =   xmlFile.getAbsolutePath();
    String xmlPath = path.substring(0,path.lastIndexOf(File.separatorChar));
    schemaOutputResolver = createSchemaOutputResolver(config,xmlPath);

}
 
Example #10
Source File: ConfigReader.java    From jdk8u60 with GNU General Public License v2.0 3 votes vote down vote up
/**
 *
 * @param classes
 *      The set of classes passed to the AnnotationProcessor
 * @param xmlFile
 *      The configuration file.
 * @throws SAXException
 *      If this is thrown, the error has already been reported.
 * @throws IOException
 *     If any IO errors occur.
 */
public ConfigReader(ProcessingEnvironment env, Collection<? extends TypeElement> classes, File xmlFile, ErrorHandler errorHandler) throws SAXException, IOException {
    this.env = env;
    Config config = parseAndGetConfig(xmlFile, errorHandler, env.getOptions().containsKey(Options.DISABLE_XML_SECURITY));
    checkAllClasses(config,classes);
    String path =   xmlFile.getAbsolutePath();
    String xmlPath = path.substring(0,path.lastIndexOf(File.separatorChar));
    schemaOutputResolver = createSchemaOutputResolver(config,xmlPath);

}
 
Example #11
Source File: ConfigReader.java    From openjdk-jdk8u with GNU General Public License v2.0 3 votes vote down vote up
/**
 *
 * @param classes
 *      The set of classes passed to the AnnotationProcessor
 * @param xmlFile
 *      The configuration file.
 * @throws SAXException
 *      If this is thrown, the error has already been reported.
 * @throws IOException
 *     If any IO errors occur.
 */
public ConfigReader(ProcessingEnvironment env, Collection<? extends TypeElement> classes, File xmlFile, ErrorHandler errorHandler) throws SAXException, IOException {
    this.env = env;
    Config config = parseAndGetConfig(xmlFile, errorHandler, env.getOptions().containsKey(Options.DISABLE_XML_SECURITY));
    checkAllClasses(config,classes);
    String path =   xmlFile.getAbsolutePath();
    String xmlPath = path.substring(0,path.lastIndexOf(File.separatorChar));
    schemaOutputResolver = createSchemaOutputResolver(config,xmlPath);

}
 
Example #12
Source File: ConfigReader.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 3 votes vote down vote up
/**
 *
 * @param classes
 *      The set of classes passed to the AnnotationProcessor
 * @param xmlFile
 *      The configuration file.
 * @throws SAXException
 *      If this is thrown, the error has already been reported.
 * @throws IOException
 *     If any IO errors occur.
 */
public ConfigReader(ProcessingEnvironment env, Collection<? extends TypeElement> classes, File xmlFile, ErrorHandler errorHandler) throws SAXException, IOException {
    this.env = env;
    Config config = parseAndGetConfig(xmlFile, errorHandler, env.getOptions().containsKey(Options.DISABLE_XML_SECURITY));
    checkAllClasses(config,classes);
    String path =   xmlFile.getAbsolutePath();
    String xmlPath = path.substring(0,path.lastIndexOf(File.separatorChar));
    schemaOutputResolver = createSchemaOutputResolver(config,xmlPath);

}
 
Example #13
Source File: ConfigReader.java    From openjdk-jdk9 with GNU General Public License v2.0 3 votes vote down vote up
/**
 *
 * @param classes
 *      The set of classes passed to the AnnotationProcessor
 * @param xmlFile
 *      The configuration file.
 * @throws SAXException
 *      If this is thrown, the error has already been reported.
 * @throws IOException
 *     If any IO errors occur.
 */
public ConfigReader(ProcessingEnvironment env, Collection<? extends TypeElement> classes, File xmlFile, ErrorHandler errorHandler) throws SAXException, IOException {
    this.env = env;
    Config config = parseAndGetConfig(xmlFile, errorHandler, env.getOptions().containsKey(Options.DISABLE_XML_SECURITY));
    checkAllClasses(config,classes);
    String path =   xmlFile.getAbsolutePath();
    String xmlPath = path.substring(0,path.lastIndexOf(File.separatorChar));
    schemaOutputResolver = createSchemaOutputResolver(config,xmlPath);

}
 
Example #14
Source File: ConfigReader.java    From hottub with GNU General Public License v2.0 3 votes vote down vote up
/**
 *
 * @param classes
 *      The set of classes passed to the AnnotationProcessor
 * @param xmlFile
 *      The configuration file.
 * @throws SAXException
 *      If this is thrown, the error has already been reported.
 * @throws IOException
 *     If any IO errors occur.
 */
public ConfigReader(ProcessingEnvironment env, Collection<? extends TypeElement> classes, File xmlFile, ErrorHandler errorHandler) throws SAXException, IOException {
    this.env = env;
    Config config = parseAndGetConfig(xmlFile, errorHandler, env.getOptions().containsKey(Options.DISABLE_XML_SECURITY));
    checkAllClasses(config,classes);
    String path =   xmlFile.getAbsolutePath();
    String xmlPath = path.substring(0,path.lastIndexOf(File.separatorChar));
    schemaOutputResolver = createSchemaOutputResolver(config,xmlPath);

}
 
Example #15
Source File: ConfigReader.java    From openjdk-8-source with GNU General Public License v2.0 3 votes vote down vote up
/**
 *
 * @param classes
 *      The set of classes passed to the AnnotationProcessor
 * @param xmlFile
 *      The configuration file.
 * @throws SAXException
 *      If this is thrown, the error has already been reported.
 * @throws IOException
 *     If any IO errors occur.
 */
public ConfigReader(ProcessingEnvironment env, Collection<? extends TypeElement> classes, File xmlFile, ErrorHandler errorHandler) throws SAXException, IOException {
    this.env = env;
    Config config = parseAndGetConfig(xmlFile, errorHandler, env.getOptions().containsKey(Options.DISABLE_XML_SECURITY));
    checkAllClasses(config,classes);
    String path =   xmlFile.getAbsolutePath();
    String xmlPath = path.substring(0,path.lastIndexOf(File.separatorChar));
    schemaOutputResolver = createSchemaOutputResolver(config,xmlPath);

}
 
Example #16
Source File: ConfigReader.java    From openjdk-8 with GNU General Public License v2.0 3 votes vote down vote up
/**
 *
 * @param classes
 *      The set of classes passed to the AnnotationProcessor
 * @param xmlFile
 *      The configuration file.
 * @throws SAXException
 *      If this is thrown, the error has already been reported.
 * @throws IOException
 *     If any IO errors occur.
 */
public ConfigReader(ProcessingEnvironment env, Collection<? extends TypeElement> classes, File xmlFile, ErrorHandler errorHandler) throws SAXException, IOException {
    this.env = env;
    Config config = parseAndGetConfig(xmlFile, errorHandler, env.getOptions().containsKey(Options.DISABLE_XML_SECURITY));
    checkAllClasses(config,classes);
    String path =   xmlFile.getAbsolutePath();
    String xmlPath = path.substring(0,path.lastIndexOf(File.separatorChar));
    schemaOutputResolver = createSchemaOutputResolver(config,xmlPath);

}