src/share/jaxws_classes/com/sun/tools/internal/jxc/ap/Options.java

Mon, 26 Jan 2015 22:36:45 +0300

author
aefimov
date
Mon, 26 Jan 2015 22:36:45 +0300
changeset 808
a5e99f4d067e
parent 368
0989ad8c0860
child 637
9c07ef4934dd
permissions
-rw-r--r--

8046817: JDK 8 schemagen tool does not generate xsd files for enum types
Reviewed-by: joehw, mkos

ohair@286 1 /*
alanb@368 2 * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
ohair@286 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
ohair@286 4 *
ohair@286 5 * This code is free software; you can redistribute it and/or modify it
ohair@286 6 * under the terms of the GNU General Public License version 2 only, as
ohair@286 7 * published by the Free Software Foundation. Oracle designates this
ohair@286 8 * particular file as subject to the "Classpath" exception as provided
ohair@286 9 * by Oracle in the LICENSE file that accompanied this code.
ohair@286 10 *
ohair@286 11 * This code is distributed in the hope that it will be useful, but WITHOUT
ohair@286 12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
ohair@286 13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
ohair@286 14 * version 2 for more details (a copy is included in the LICENSE file that
ohair@286 15 * accompanied this code).
ohair@286 16 *
ohair@286 17 * You should have received a copy of the GNU General Public License version
ohair@286 18 * 2 along with this work; if not, write to the Free Software Foundation,
ohair@286 19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
ohair@286 20 *
ohair@286 21 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
ohair@286 22 * or visit www.oracle.com if you need additional information or have any
ohair@286 23 * questions.
ohair@286 24 */
ohair@286 25
ohair@286 26 package com.sun.tools.internal.jxc.ap;
ohair@286 27
ohair@286 28 import java.io.File;
ohair@286 29 import java.util.ArrayList;
ohair@286 30 import java.util.List;
ohair@286 31
ohair@286 32 import com.sun.tools.internal.xjc.BadCommandLineException;
ohair@286 33
ohair@286 34 /**
ohair@286 35 * This stores the invocation configuration for
ohair@286 36 * SchemaGenerator
ohair@286 37 *
ohair@286 38 * @author Bhakti Mehta
ohair@286 39 */
ohair@286 40 public class Options {
ohair@286 41
alanb@368 42 public static final String DISABLE_XML_SECURITY = "-disableXmlSecurity";
alanb@368 43
ohair@286 44 // honor CLASSPATH environment variable, but it will be overrided by -cp
ohair@286 45 public String classpath = System.getenv("CLASSPATH");
ohair@286 46
ohair@286 47 public File targetDir = null;
ohair@286 48
ohair@286 49 public File episodeFile = null;
ohair@286 50
alanb@368 51 private boolean disableXmlSecurity = false;
alanb@368 52
ohair@286 53 // encoding is not required for JDK5, 6, but JDK 7 javac is much more strict - see issue 6859289
ohair@286 54 public String encoding = null;
ohair@286 55
ohair@286 56 public final List<String> arguments = new ArrayList<String>();
ohair@286 57
ohair@286 58 public void parseArguments(String[] args) throws BadCommandLineException {
ohair@286 59 for (int i = 0 ; i <args.length; i++) {
ohair@286 60 if (args[i].charAt(0)== '-') {
ohair@286 61 int j = parseArgument(args,i);
ohair@286 62 if(j==0)
ohair@286 63 throw new BadCommandLineException(
ohair@286 64 Messages.UNRECOGNIZED_PARAMETER.format(args[i]));
ohair@286 65 i += j;
ohair@286 66 } else {
ohair@286 67 arguments.add(args[i]);
ohair@286 68 }
ohair@286 69 }
ohair@286 70 }
ohair@286 71
ohair@286 72 private int parseArgument( String[] args, int i ) throws BadCommandLineException {
ohair@286 73 if (args[i].equals("-d")) {
ohair@286 74 if (i == args.length - 1)
ohair@286 75 throw new BadCommandLineException(
ohair@286 76 (Messages.OPERAND_MISSING.format(args[i])));
ohair@286 77 targetDir = new File(args[++i]);
ohair@286 78 if( !targetDir.exists() )
ohair@286 79 throw new BadCommandLineException(
ohair@286 80 Messages.NON_EXISTENT_FILE.format(targetDir));
ohair@286 81 return 1;
ohair@286 82 }
ohair@286 83
ohair@286 84 if (args[i].equals("-episode")) {
ohair@286 85 if (i == args.length - 1)
ohair@286 86 throw new BadCommandLineException(
ohair@286 87 (Messages.OPERAND_MISSING.format(args[i])));
ohair@286 88 episodeFile = new File(args[++i]);
ohair@286 89 return 1;
ohair@286 90 }
ohair@286 91
alanb@368 92 if (args[i].equals(DISABLE_XML_SECURITY)) {
alanb@368 93 if (i == args.length - 1)
alanb@368 94 throw new BadCommandLineException(
alanb@368 95 (Messages.OPERAND_MISSING.format(args[i])));
alanb@368 96 disableXmlSecurity = true;
alanb@368 97 return 1;
alanb@368 98 }
alanb@368 99
ohair@286 100 if (args[i].equals("-encoding")) {
ohair@286 101 if (i == args.length - 1)
ohair@286 102 throw new BadCommandLineException(
ohair@286 103 (Messages.OPERAND_MISSING.format(args[i])));
ohair@286 104 encoding = args[++i];
ohair@286 105 return 1;
ohair@286 106 }
ohair@286 107
ohair@286 108 if (args[i].equals("-cp") || args[i].equals("-classpath")) {
ohair@286 109 if (i == args.length - 1)
ohair@286 110 throw new BadCommandLineException(
ohair@286 111 (Messages.OPERAND_MISSING.format(args[i])));
ohair@286 112 classpath = args[++i];
ohair@286 113
ohair@286 114 return 1;
ohair@286 115 }
ohair@286 116
ohair@286 117 return 0;
ohair@286 118
ohair@286 119 }
ohair@286 120
alanb@368 121 /**
alanb@368 122 * @return the disableXmlSecurity
alanb@368 123 */
alanb@368 124 public boolean isDisableXmlSecurity() {
alanb@368 125 return disableXmlSecurity;
alanb@368 126 }
alanb@368 127
alanb@368 128
ohair@286 129
ohair@286 130 }

mercurial