blob: 8649fb1b3f88f4e0c686f5f77f3959a6194a47f2 [file] [log] [blame]
package org.apache.axis2.wsdl.codegen;
import org.apache.axis2.util.CommandLineOption;
import org.apache.axis2.util.CommandLineOptionConstants;
import org.apache.axis2.wsdl.i18n.CodegenMessages;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
import java.util.Properties;
/*
* Copyright 2004,2005 The Apache Software Foundation.
*
* 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.
*/
class CodegenConfigLoader implements CommandLineOptionConstants {
public static void loadConfig(CodeGenConfiguration config, Map optionMap) {
String outputLocation = "."; //default output directory is the current working directory
CommandLineOption commandLineOption = loadOption(WSDL2JavaConstants.OUTPUT_LOCATION_OPTION, WSDL2JavaConstants.OUTPUT_LOCATION_OPTION_LONG, optionMap);
if (commandLineOption != null) {
outputLocation = commandLineOption.getOptionValue();
}
File outputLocationFile = new File(outputLocation);
config.setOutputLocation(outputLocationFile);
//check and create the directories
if (outputLocationFile.exists()) {
if (outputLocationFile.isFile()) {
throw new RuntimeException(
CodegenMessages.getMessage("options.notADirectoryException"));
}
} else {
outputLocationFile.mkdirs();
}
config.setServerSide(loadOption(WSDL2JavaConstants.SERVER_SIDE_CODE_OPTION, WSDL2JavaConstants.SERVER_SIDE_CODE_OPTION_LONG, optionMap) != null);
config.setGenerateDeployementDescriptor(loadOption(WSDL2JavaConstants.GENERATE_SERVICE_DESCRIPTION_OPTION,
WSDL2JavaConstants.GENERATE_SERVICE_DESCRIPTION_OPTION_LONG, optionMap) !=
null);
config.setWriteTestCase(loadOption(WSDL2JavaConstants.GENERATE_TEST_CASE_OPTION, WSDL2JavaConstants.GENERATE_TEST_CASE_OPTION_LONG, optionMap) != null);
boolean asyncFlagPresent =
(loadOption(WSDL2JavaConstants.CODEGEN_ASYNC_ONLY_OPTION, WSDL2JavaConstants.CODEGEN_ASYNC_ONLY_OPTION_LONG, optionMap) != null);
boolean syncFlagPresent =
(loadOption(WSDL2JavaConstants.CODEGEN_SYNC_ONLY_OPTION, WSDL2JavaConstants.CODEGEN_SYNC_ONLY_OPTION_LONG, optionMap) != null);
if (asyncFlagPresent) {
config.setAsyncOn(true);
config.setSyncOn(false);
}
if (syncFlagPresent) {
config.setAsyncOn(false);
config.setSyncOn(true);
}
commandLineOption = loadOption(WSDL2JavaConstants.PACKAGE_OPTION, WSDL2JavaConstants.PACKAGE_OPTION_LONG, optionMap);
if (commandLineOption != null) {
config.setPackageName(commandLineOption.getOptionValue());
}
commandLineOption = loadOption(WSDL2JavaConstants.STUB_LANGUAGE_OPTION, WSDL2JavaConstants.STUB_LANGUAGE_OPTION_LONG, optionMap);
if (commandLineOption != null) {
config.setOutputLanguage(commandLineOption.getOptionValue());
}
commandLineOption = loadOption(WSDL2JavaConstants.DATA_BINDING_TYPE_OPTION, WSDL2JavaConstants.DATA_BINDING_TYPE_OPTION_LONG, optionMap);
if (commandLineOption != null) {
config.setDatabindingType(commandLineOption.getOptionValue());
}
commandLineOption = loadOption(WSDL2JavaConstants.UNPACK_CLASSES_OPTION, WSDL2JavaConstants.UNPACK_CLASSES_OPTION_LONG, optionMap);
if (commandLineOption != null) {
config.setPackClasses(false);
}
// source folder
commandLineOption = loadOption(WSDL2JavaConstants.SOURCE_FOLDER_NAME_OPTION,
WSDL2JavaConstants.SOURCE_FOLDER_NAME_OPTION_LONG, optionMap);
if (commandLineOption != null) {
config.setSourceLocation(commandLineOption.getOptionValue());
}
// resource folder
commandLineOption = loadOption(WSDL2JavaConstants.RESOURCE_FOLDER_OPTION,
WSDL2JavaConstants.RESOURCE_FOLDER_OPTION_LONG, optionMap);
if (commandLineOption != null) {
config.setResourceLocation(commandLineOption.getOptionValue());
}
commandLineOption = loadOption(WSDL2JavaConstants.PORT_NAME_OPTION, WSDL2JavaConstants.PORT_NAME_OPTION_LONG, optionMap);
config.setPortName(commandLineOption != null ? commandLineOption.getOptionValue() : null);
commandLineOption = loadOption(WSDL2JavaConstants.SERVICE_NAME_OPTION, WSDL2JavaConstants.SERVICE_NAME_OPTION_LONG, optionMap);
config.setServiceName(commandLineOption != null ? commandLineOption.getOptionValue() : null);
commandLineOption = loadOption(WSDL2JavaConstants.REPOSITORY_PATH_OPTION, WSDL2JavaConstants.REPOSITORY_PATH_OPTION_LONG, optionMap);
config.setRepositoryPath(commandLineOption != null ? commandLineOption.getOptionValue() : null);
config.setServerSideInterface(loadOption(WSDL2JavaConstants.SERVER_SIDE_INTERFACE_OPTION, WSDL2JavaConstants.SERVER_SIDE_CODE_OPTION_LONG, optionMap)!=null);
config.setGenerateAll(loadOption(WSDL2JavaConstants.GENERATE_ALL_OPTION, WSDL2JavaConstants.GENERATE_ALL_OPTION_LONG, optionMap)!=null);
//populate the external mapping
commandLineOption = loadOption(
WSDL2JavaConstants.EXTERNAL_MAPPING_OPTION,
WSDL2JavaConstants.EXTERNAL_MAPPING_OPTION_LONG,
optionMap);
if (commandLineOption!=null){
try {
config.setTypeMappingFile(new File(commandLineOption.getOptionValue()));
} catch (Exception e) {
throw new RuntimeException(
CodegenMessages.getMessage("options.nomappingFile"), e);
}
}
// load the namespace to package list
commandLineOption = loadOption(
WSDL2JavaConstants.NAME_SPACE_TO_PACKAGE_OPTION,
WSDL2JavaConstants.NAME_SPACE_TO_PACKAGE_OPTION_LONG,
optionMap);
if (commandLineOption != null) {
//the syntax for the value of the namespaces and packages is
//to be a comma seperated list with uri=packagename,uri=packagename...
String value = commandLineOption.getOptionValue();
if (value != null) {
// Try treating the values as a name=value pair separated by comma's
if (value.indexOf('=') != -1) {
String valuepairs[] = value.split(",");
if (valuepairs.length > 0) {
//put them in the hash map
HashMap map = new HashMap(valuepairs.length);
for (int i = 0; i < valuepairs.length; i++) {
String values[] = valuepairs[i].split("=");
if (values.length == 2) {
map.put(values[0], values[1]);
}
}
config.setUri2PackageNameMap(map);
}
} else {
// Try loading the properties from the file specified
try {
Properties p = new Properties();
p.load(new FileInputStream(value));
config.setUri2PackageNameMap(p);
} catch (IOException e) {
throw new RuntimeException(
CodegenMessages.
getMessage("options.noFile", value), e);
}
}
}
}
commandLineOption =
loadOption(WSDL2JavaConstants.UNWRAP_PARAMETERS,
WSDL2JavaConstants.UNWRAP_PARAMETERS_LONG,
optionMap);
if (commandLineOption!=null){
config.setParametersWrapped(false);
}
commandLineOption =
loadOption(WSDL2JavaConstants.WSDL_VERSION_OPTION,
WSDL2JavaConstants.WSDL_VERSION_OPTION_LONG,
optionMap);
if (commandLineOption!=null){
String optionValue = commandLineOption.getOptionValue();
if (WSDL2JavaConstants.WSDL_VERSION_2.equals(optionValue) ||
WSDL2JavaConstants.WSDL_VERSION_2_OPTIONAL.equals(optionValue) ){
//users can say either 2.0 or 2 - we just set it to the constant
config.setWSDLVersion(WSDL2JavaConstants.WSDL_VERSION_2);
} //ignore the other cases - they'll be taken as 1.1
}
config
.setFlattenFiles(loadOption(
WSDL2JavaConstants.FLATTEN_FILES_OPTION,
WSDL2JavaConstants.FLATTEN_FILES_OPTION_LONG, optionMap) != null);
commandLineOption = loadOption(
WSDL2JavaConstants.BACKWORD_COMPATIBILITY_OPTION,
WSDL2JavaConstants.BACKWORD_COMPATIBILITY_OPTION_LONG,
optionMap);
if (commandLineOption != null) {
config.setBackwordCompatibilityMode(true);
}
commandLineOption = loadOption(
WSDL2JavaConstants.SUPPRESS_PREFIXES_OPTION,
WSDL2JavaConstants.SUPPRESS_PREFIXES_OPTION_LONG,
optionMap);
if (commandLineOption != null) {
config.setSuppressPrefixesMode(true);
}
// loop through the map and find parameters having the extra prefix.
//put them in the property map
Iterator keyIterator = optionMap.keySet().iterator();
while (keyIterator.hasNext()) {
Object key = keyIterator.next();
CommandLineOption option = (CommandLineOption) optionMap.get(key);
if (key.toString().startsWith(WSDL2JavaConstants.EXTRA_OPTIONTYPE_PREFIX)) {
//add this to the property map
config.getProperties().put(key.toString().replaceFirst(WSDL2JavaConstants.EXTRA_OPTIONTYPE_PREFIX, ""), option.getOptionValue());
}
}
}
private static CommandLineOption loadOption(String shortOption, String longOption, Map options) {
//short option gets precedence
CommandLineOption option = null;
if (longOption != null) {
option = (CommandLineOption) options.get(longOption);
if (option != null) {
return option;
}
}
if (shortOption != null) {
option = (CommandLineOption) options.get(shortOption);
}
return option;
}
}