package com.sun.tools.internal.ws.processor.generator;
import com.sun.istack.internal.NotNull;
import com.sun.tools.internal.ws.processor.model.Fault;
import com.sun.tools.internal.ws.processor.model.ModelProperties;
import com.sun.tools.internal.ws.processor.model.Port;
import com.sun.tools.internal.ws.processor.model.java.JavaInterface;
import com.sun.tools.internal.ws.processor.model.java.JavaStructureMember;
import com.sun.tools.internal.ws.processor.modeler.ModelerConstants;
import com.sun.tools.internal.ws.util.ClassNameInfo;
import com.sun.xml.internal.ws.util.StringUtils;
import javax.xml.namespace.QName;
import java.util.HashMap;
import java.util.Map;
public final class Names {
private Names() {
}
public static String getPortName(Port port) {
String javaPortName =
(String) port.getProperty(ModelProperties.PROPERTY_JAVA_PORT_NAME);
if (javaPortName != null) {
return javaPortName;
} else {
QName portName =
(QName) port.getProperty(
ModelProperties.PROPERTY_WSDL_PORT_NAME);
if (portName != null) {
return portName.getLocalPart();
} else {
String name = stripQualifier(port.getJavaInterface().getName());
return ClassNameInfo.replaceInnerClassSym(name);
}
}
}
public static String stripQualifier(String name) {
return ClassNameInfo.getName(name);
}
public static String getPackageName(String className) {
String packageName = ClassNameInfo.getQualifier(className);
return packageName != null ? packageName : "";
}
public static String customJavaTypeClassName(JavaInterface intf) {
return intf.getName();
}
public static String customExceptionClassName(Fault fault) {
return fault.getJavaException().getName();
}
public static String getExceptionClassMemberName(){
return GeneratorConstants.FAULT_CLASS_MEMBER_NAME.getValue();
}
public static boolean isJavaReservedWord(String name) {
return RESERVED_WORDS.get(name) != null;
}
public static @NotNull String getJavaReserverVarialbeName(@NotNull String name){
return (RESERVED_WORDS.get(name) == null) ? name : RESERVED_WORDS.get(name);
}
public static String getJavaMemberReadMethod(JavaStructureMember member) {
String return_value;
if (member.getType().getRealName().equals(ModelerConstants.BOOLEAN_CLASSNAME.getValue())) {
return_value = GeneratorConstants.IS.getValue() + StringUtils.capitalize(member.getName());
} else {
return_value = GeneratorConstants.GET.getValue() + StringUtils.capitalize(member.getName());
}
return (return_value);
}
public static String getResponseName(String messageName) {
return messageName + GeneratorConstants.RESPONSE.getValue();
}
private static final Map<String, String> RESERVED_WORDS = new HashMap<String, String>(53);
static {
RESERVED_WORDS.put("abstract", "_abstract");
RESERVED_WORDS.put("assert", "_assert");
RESERVED_WORDS.put("boolean", "_boolean");
RESERVED_WORDS.put("break", "_break");
RESERVED_WORDS.put("byte", "_byte");
RESERVED_WORDS.put("case", "_case");
RESERVED_WORDS.put("catch", "_catch");
RESERVED_WORDS.put("char", "_char");
RESERVED_WORDS.put("class", "_class");
RESERVED_WORDS.put("const", "_const");
RESERVED_WORDS.put("continue", "_continue");
RESERVED_WORDS.put("default", "_default");
RESERVED_WORDS.put("do", "_do");
RESERVED_WORDS.put("double", "_double");
RESERVED_WORDS.put("else", "_else");
RESERVED_WORDS.put("extends", "_extends");
RESERVED_WORDS.put("false", "_false");
RESERVED_WORDS.put("final", "_final");
RESERVED_WORDS.put("finally", "_finally");
RESERVED_WORDS.put("float", "_float");
RESERVED_WORDS.put("for", "_for");
RESERVED_WORDS.put("goto", "_goto");
RESERVED_WORDS.put("if", "_if");
RESERVED_WORDS.put("implements", "_implements");
RESERVED_WORDS.put("import", "_import");
RESERVED_WORDS.put("instanceof", "_instanceof");
RESERVED_WORDS.put("int", "_int");
RESERVED_WORDS.put("interface", "_interface");
RESERVED_WORDS.put("long", "_long");
RESERVED_WORDS.put("native", "_native");
RESERVED_WORDS.put("new", "_new");
RESERVED_WORDS.put("null", "_null");
RESERVED_WORDS.put("package", "_package");
RESERVED_WORDS.put("private", "_private");
RESERVED_WORDS.put("protected", "_protected");
RESERVED_WORDS.put("public", "_public");
RESERVED_WORDS.put("return", "_return");
RESERVED_WORDS.put("short", "_short");
RESERVED_WORDS.put("static", "_static");
RESERVED_WORDS.put("strictfp", "_strictfp");
RESERVED_WORDS.put("super", "_super");
RESERVED_WORDS.put("switch", "_switch");
RESERVED_WORDS.put("synchronized", "_synchronized");
RESERVED_WORDS.put("this", "_this");
RESERVED_WORDS.put("throw", "_throw");
RESERVED_WORDS.put("throws", "_throws");
RESERVED_WORDS.put("transient", "_transient");
RESERVED_WORDS.put("true", "_true");
RESERVED_WORDS.put("try", "_try");
RESERVED_WORDS.put("void", "_void");
RESERVED_WORDS.put("volatile", "_volatile");
RESERVED_WORDS.put("while", "_while");
RESERVED_WORDS.put("enum", "_enum");
}
}