org.apache.axis2.wsdl.codegen.CodegenConfigLoader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of axis2-codegen Show documentation
Show all versions of axis2-codegen Show documentation
Axis2 Code Generation module
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 org.apache.axis2.wsdl.codegen;
import org.apache.axis2.util.CommandLineOption;
import org.apache.axis2.util.CommandLineOptionConstants;
import org.apache.axis2.wsdl.codegen.extension.XMLBeansExtension;
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.Map;
import java.util.Properties;
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) {
//set isoutputSourceLocation true when user specify an output source location
config.setoutputSourceLocation(true);
outputLocation = commandLineOption.getOptionValue();
}
File outputLocationFile = new File(outputLocation);
config.setOutputLocation(outputLocationFile);
//check and create the directories
if (outputLocationFile.exists()) {//$NON-SEC-2
if (outputLocationFile.isFile()) {//$NON-SEC-2
throw new RuntimeException(
CodegenMessages.getMessage("options.notADirectoryException"));
}
} else {
outputLocationFile.mkdirs();//$NON-SEC-2
}
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);
config.setSkipWriteWSDLs(loadOption(null,
WSDL2JavaConstants.NO_WSDLS_OPTION_LONG,
optionMap) != null);
config.setSkipMessageReceiver(loadOption(null,
WSDL2JavaConstants.NO_MESSAGE_RECEIVER_OPTION_LONG,
optionMap) != null);
config.setSkipBuildXML(loadOption(null,
WSDL2JavaConstants.NO_BUILD_XML_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 && !syncFlagPresent) {
config.setAsyncOn(true);
config.setSyncOn(false);
}
if (syncFlagPresent && !asyncFlagPresent) {
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_INTERFACE_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();//$NON-SEC-3
p.load(new FileInputStream(value));//$NON-SEC-2//$NON-SEC-3
Map map = new HashMap();
for (Map.Entry
© 2015 - 2024 Weber Informatics LLC | Privacy Policy