X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fsal%2Fyang-prototype%2Fcode-generator%2Fbinding-generator-impl%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fsal%2Fbinding%2Fyang%2Ftypes%2FTypeProviderImpl.java;h=f650004ba22e92d9bb419305edcd4e1d16c81540;hb=2f14a41bbd09010114116aef1499641f7251bf83;hp=54abd3daea520f97068e765f2838ec464dea45cf;hpb=e028e5b6177c47d08f4f2da677759c4665da3f84;p=controller.git diff --git a/opendaylight/sal/yang-prototype/code-generator/binding-generator-impl/src/main/java/org/opendaylight/controller/sal/binding/yang/types/TypeProviderImpl.java b/opendaylight/sal/yang-prototype/code-generator/binding-generator-impl/src/main/java/org/opendaylight/controller/sal/binding/yang/types/TypeProviderImpl.java index 54abd3daea..f650004ba2 100644 --- a/opendaylight/sal/yang-prototype/code-generator/binding-generator-impl/src/main/java/org/opendaylight/controller/sal/binding/yang/types/TypeProviderImpl.java +++ b/opendaylight/sal/yang-prototype/code-generator/binding-generator-impl/src/main/java/org/opendaylight/controller/sal/binding/yang/types/TypeProviderImpl.java @@ -1,283 +1,731 @@ -/* - * Copyright (c) 2013 Cisco Systems, Inc. and others. All rights reserved. - * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v1.0 which accompanies this distribution, - * and is available at http://www.eclipse.org/legal/epl-v10.html - */ -package org.opendaylight.controller.sal.binding.yang.types; - -import java.util.LinkedList; -import java.util.List; -import java.util.Queue; -import java.util.Set; - -import org.opendaylight.controller.binding.generator.util.Types; -import org.opendaylight.controller.sal.binding.generator.spi.TypeProvider; -import org.opendaylight.controller.sal.binding.model.api.Type; -import org.opendaylight.controller.yang.common.QName; -import org.opendaylight.controller.yang.model.api.ContainerSchemaNode; -import org.opendaylight.controller.yang.model.api.DataNodeContainer; -import org.opendaylight.controller.yang.model.api.DataSchemaNode; -import org.opendaylight.controller.yang.model.api.LeafListSchemaNode; -import org.opendaylight.controller.yang.model.api.LeafSchemaNode; -import org.opendaylight.controller.yang.model.api.ListSchemaNode; -import org.opendaylight.controller.yang.model.api.Module; -import org.opendaylight.controller.yang.model.api.ModuleImport; -import org.opendaylight.controller.yang.model.api.RevisionAwareXPath; -import org.opendaylight.controller.yang.model.api.SchemaContext; -import org.opendaylight.controller.yang.model.api.SchemaPath; -import org.opendaylight.controller.yang.model.api.TypeDefinition; -import org.opendaylight.controller.yang.model.api.type.IdentityrefTypeDefinition; -import org.opendaylight.controller.yang.model.api.type.LeafrefTypeDefinition; -import org.opendaylight.controller.yang.model.util.Leafref; - -public class TypeProviderImpl implements TypeProvider { - - private SchemaContext schemaContext; - - public TypeProviderImpl(SchemaContext schemaContext) { - this.schemaContext = schemaContext; - } - - /* - * (non-Javadoc) - * - * @see org.opendaylight.controller.yang.model.type.provider.TypeProvider# - * javaTypeForYangType(java.lang.String) - */ - @Override - public Type javaTypeForYangType(String type) { - Type t = BaseYangTypes.BASE_YANG_TYPES_PROVIDER - .javaTypeForYangType(type); - return t; - } - - @Override - public Type javaTypeForSchemaDefinitionType(final TypeDefinition type) { - Type returnType = null; - if (type != null) { - if (type instanceof Leafref) { - final LeafrefTypeDefinition leafref = (LeafrefTypeDefinition) type; - returnType = provideTypeForLeafref(leafref); - } else if (type instanceof IdentityrefTypeDefinition) { - - } else { - returnType = BaseYangTypes.BASE_YANG_TYPES_PROVIDER - .javaTypeForSchemaDefinitionType(type); - } - } - return returnType; - } - - public Type provideTypeForLeafref(final LeafrefTypeDefinition leafrefType) { - Type returnType = null; - if ((leafrefType != null) && (leafrefType.getPathStatement() != null)) { - final RevisionAwareXPath xpath = leafrefType.getPathStatement(); - final String strXPath = xpath.toString(); - - if (strXPath != null) { - if (strXPath.matches(".*//[.* | .*//].*")) { - returnType = Types.typeForClass(Object.class); - } else { - final Module module = resolveModuleFromSchemaContext(leafrefType - .getPath()); - if (module != null) { - Queue leafrefPath; - if (!xpath.isAbsolute()) { - leafrefPath = resolveRelativeXPath(xpath, - leafrefType.getPath()); - } else { - leafrefPath = xpathToPrefixedPath(strXPath, module.getName()); - } - - if (leafrefPath != null) { - final DataSchemaNode dataNode = findSchemaNodeForGivenPath( - module, leafrefPath); - returnType = resolveTypeFromDataSchemaNode(dataNode); - } - } - } - } - } - return returnType; - } - - private Type resolveTypeFromDataSchemaNode(final DataSchemaNode dataNode) { - Type returnType = null; - if (dataNode != null) { - if (dataNode instanceof LeafSchemaNode) { - final LeafSchemaNode leaf = (LeafSchemaNode) dataNode; - returnType = javaTypeForSchemaDefinitionType(leaf.getType()); - } else if (dataNode instanceof LeafListSchemaNode) { - final LeafListSchemaNode leafList = (LeafListSchemaNode) dataNode; - returnType = javaTypeForSchemaDefinitionType(leafList.getType()); - } - } - return returnType; - } - - /** - * Search which starts from root of Module. - * - * @param module - * @param prefixedPath - * @return - */ - private DataSchemaNode findSchemaNodeForGivenPath(final Module module, - final Queue prefixedPath) { - if ((module != null) && (prefixedPath != null)) { - final String modulePrefix = module.getPrefix(); - String childNodeName = prefixedPath.poll(); - DataNodeContainer nextContainer = null; - - if ((childNodeName != null) - && childNodeName.equals(module.getName())) { - nextContainer = module; - } - - DataSchemaNode schemaNode = null; - while ((nextContainer != null) && (prefixedPath.size() > 0)) { - childNodeName = prefixedPath.poll(); - if (childNodeName.contains(":")) { - final String[] prefixedChildNode = childNodeName.split(":"); - if ((modulePrefix != null) - && modulePrefix.equals(prefixedChildNode[0])) { - - childNodeName = prefixedChildNode[1]; - } else { - final Module nextModule = resolveModuleForPrefix( - prefixedChildNode[0], module); - final Queue nextModulePrefixedPath = new LinkedList(); - - nextModulePrefixedPath.add(nextModule.getName()); - nextModulePrefixedPath.add(childNodeName); - nextModulePrefixedPath.addAll(prefixedPath); - prefixedPath.clear(); - - schemaNode = findSchemaNodeForGivenPath(nextModule, - nextModulePrefixedPath); - - return schemaNode; - } - } - - schemaNode = nextContainer.getDataChildByName(childNodeName); - if (schemaNode instanceof ContainerSchemaNode) { - nextContainer = (ContainerSchemaNode) schemaNode; - } else if (schemaNode instanceof ListSchemaNode) { - nextContainer = (ListSchemaNode) schemaNode; - } else { - return schemaNode; - } - } - } - - return null; - } - - private Module resolveModuleFromSchemaContext(final SchemaPath schemaPath) { - final Set modules = schemaContext.getModules(); - final String moduleName = resolveModuleName(schemaPath); - if ((moduleName != null) && (modules != null)) { - for (final Module module : modules) { - if (module.getName().equals(moduleName)) { - return module; - } - } - } - return null; - } - - private String resolveModuleName(final SchemaPath schemaPath) { - if ((schemaPath != null) && (schemaPath.getPath() != null)) { - final QName qname = schemaPath.getPath().get(0); - if ((qname != null) && (qname.getLocalName() != null)) { - return qname.getLocalName(); - } - } - return ""; - } - - private Queue xpathToPrefixedPath(final String xpath, final String moduleName) { - final Queue retQueue = new LinkedList(); - if ((xpath != null) && (moduleName != null)) { - final String[] prefixedPath = xpath.split("/"); - - retQueue.add(moduleName); - if (prefixedPath != null) { - for (int i = 0; i < prefixedPath.length; ++i) { - if (!prefixedPath[i].isEmpty()) { - retQueue.add(prefixedPath[i]); - } - } - } - } - return retQueue; - } - - private Module resolveModuleForPrefix(final String prefix, - final Module parent) { - if ((prefix != null) && (parent != null)) { - final Set imports = parent.getImports(); - - if (imports != null) { - for (final ModuleImport impModule : imports) { - final String impModPrefix = impModule.getPrefix(); - if ((impModPrefix != null) && prefix.equals(impModPrefix)) { - return resolveModuleFromContext(prefix, - impModule.getModuleName()); - } - } - } - } - return null; - } - - private Module resolveModuleFromContext(final String prefix, - final String moduleName) { - final Set modules = schemaContext.getModules(); - - if ((prefix != null) && (moduleName != null) && (modules != null)) { - for (Module module : modules) { - if ((module != null) && prefix.equals(module.getPrefix()) - && moduleName.equals(module.getName())) { - return module; - } - } - } - return null; - } - - private Queue resolveRelativeXPath( - final RevisionAwareXPath relativeXPath, - final SchemaPath leafrefSchemaPath) { - final Queue absolutePath = new LinkedList(); - - if ((relativeXPath != null) && !relativeXPath.isAbsolute() - && (leafrefSchemaPath != null)) { - final String strXPath = relativeXPath.toString(); - if (strXPath != null) { - final String[] xpaths = strXPath.split("/"); - - if (xpaths != null) { - int colCount = 0; - while (xpaths[colCount].contains("..")) { - ++colCount; - } - final List path = leafrefSchemaPath.getPath(); - if (path != null) { - int lenght = path.size() - colCount; - for (int i = 0; i < lenght; ++i) { - absolutePath.add(path.get(i).getLocalName()); - } - for (int i = colCount; i < xpaths.length; ++i) { - absolutePath.add(xpaths[i]); - } - } - } - } - } - return absolutePath; - } -} +/* + * Copyright (c) 2013 Cisco Systems, Inc. and others. All rights reserved. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v1.0 which accompanies this distribution, + * and is available at http://www.eclipse.org/legal/epl-v10.html + */ +package org.opendaylight.controller.sal.binding.yang.types; + +import org.apache.commons.lang.StringEscapeUtils; +import org.opendaylight.controller.binding.generator.util.ReferencedTypeImpl; +import org.opendaylight.controller.binding.generator.util.TypeConstants; +import org.opendaylight.controller.binding.generator.util.Types; +import org.opendaylight.controller.binding.generator.util.generated.type.builder.EnumerationBuilderImpl; +import org.opendaylight.controller.binding.generator.util.generated.type.builder.GeneratedTOBuilderImpl; +import org.opendaylight.controller.sal.binding.generator.spi.TypeProvider; +import org.opendaylight.controller.sal.binding.model.api.Enumeration; +import org.opendaylight.controller.sal.binding.model.api.GeneratedTransferObject; +import org.opendaylight.controller.sal.binding.model.api.Type; +import org.opendaylight.controller.sal.binding.model.api.type.builder.EnumBuilder; +import org.opendaylight.controller.sal.binding.model.api.type.builder.GeneratedPropertyBuilder; +import org.opendaylight.controller.sal.binding.model.api.type.builder.GeneratedTOBuilder; +import org.opendaylight.controller.sal.binding.model.api.type.builder.GeneratedTypeBuilder; +import org.opendaylight.controller.yang.common.QName; +import org.opendaylight.controller.yang.model.api.*; +import org.opendaylight.controller.yang.model.api.type.*; +import org.opendaylight.controller.yang.model.api.type.BitsTypeDefinition.Bit; +import org.opendaylight.controller.yang.model.api.type.EnumTypeDefinition.EnumPair; +import org.opendaylight.controller.yang.model.util.ExtendedType; + +import org.opendaylight.controller.yang.model.util.StringType; +import org.opendaylight.controller.yang.model.util.UnionType; + +import java.util.ArrayList; +import java.util.HashMap; +import java.util.List; +import java.util.Map; +import java.util.Set; +import java.util.TreeMap; + +import static org.opendaylight.controller.binding.generator.util.BindingGeneratorUtil.*; +import static org.opendaylight.controller.yang.model.util.SchemaContextUtil.*; + +public final class TypeProviderImpl implements TypeProvider { + + private final SchemaContext schemaContext; + private Map> genTypeDefsContextMap; + private final Map referencedTypes; + + public TypeProviderImpl(final SchemaContext schemaContext) { + if (schemaContext == null) { + throw new IllegalArgumentException("Schema Context cannot be null!"); + } + + this.schemaContext = schemaContext; + this.genTypeDefsContextMap = new HashMap<>(); + this.referencedTypes = new HashMap<>(); + resolveTypeDefsFromContext(); + } + + public void putReferencedType(final SchemaPath refTypePath, final Type refType) { + if (refTypePath == null) { + throw new IllegalArgumentException("Path reference of " + "Enumeration Type Definition cannot be NULL!"); + } + + if (refType == null) { + throw new IllegalArgumentException("Reference to Enumeration " + "Type cannot be NULL!"); + } + referencedTypes.put(refTypePath, refType); + } + + /* + * (non-Javadoc) + * + * @see org.opendaylight.controller.yang.model.type.provider.TypeProvider# + * javaTypeForYangType(java.lang.String) + */ + @Override + public Type javaTypeForYangType(String type) { + Type t = BaseYangTypes.BASE_YANG_TYPES_PROVIDER.javaTypeForYangType(type); + return t; + } + + @Override + public Type javaTypeForSchemaDefinitionType(final TypeDefinition typeDefinition) { + Type returnType = null; + if (typeDefinition == null) { + throw new IllegalArgumentException("Type Definition cannot be NULL!"); + } + if (typeDefinition.getQName() == null) { + throw new IllegalArgumentException( + "Type Definition cannot have non specified QName (QName cannot be NULL!)"); + } + if (typeDefinition.getQName().getLocalName() == null) { + throw new IllegalArgumentException("Type Definitions Local Name cannot be NULL!"); + } + final String typedefName = typeDefinition.getQName().getLocalName(); + if (typeDefinition instanceof ExtendedType) { + final TypeDefinition baseTypeDef = baseTypeDefForExtendedType(typeDefinition); + + if (baseTypeDef instanceof LeafrefTypeDefinition) { + final LeafrefTypeDefinition leafref = (LeafrefTypeDefinition) baseTypeDef; + returnType = provideTypeForLeafref(leafref); + } else if (baseTypeDef instanceof IdentityrefTypeDefinition) { + final IdentityrefTypeDefinition idref = (IdentityrefTypeDefinition) baseTypeDef; + returnType = returnTypeForIdentityref(idref); + } else if (baseTypeDef instanceof EnumTypeDefinition) { + final EnumTypeDefinition enumTypeDef = (EnumTypeDefinition) baseTypeDef; + returnType = resolveEnumFromTypeDefinition(enumTypeDef, typedefName); + } else { + final Module module = findParentModuleForTypeDefinition(schemaContext, typeDefinition); + if (module != null) { + final Map genTOs = genTypeDefsContextMap.get(module.getName()); + if (genTOs != null) { + returnType = genTOs.get(typedefName); + } + if (returnType == null) { + returnType = BaseYangTypes.BASE_YANG_TYPES_PROVIDER + .javaTypeForSchemaDefinitionType(baseTypeDef); + } + } + } + } else { + if (typeDefinition instanceof LeafrefTypeDefinition) { + final LeafrefTypeDefinition leafref = (LeafrefTypeDefinition) typeDefinition; + returnType = provideTypeForLeafref(leafref); + } else if (typeDefinition instanceof IdentityrefTypeDefinition) { + final IdentityrefTypeDefinition idref = (IdentityrefTypeDefinition) typeDefinition; + returnType = returnTypeForIdentityref(idref); + } else { + returnType = BaseYangTypes.BASE_YANG_TYPES_PROVIDER.javaTypeForSchemaDefinitionType(typeDefinition); + } + } + // TODO: add throw exception when we will be able to resolve ALL yang + // types! + // if (returnType == null) { + // throw new IllegalArgumentException("Type Provider can't resolve " + + // "type for specified Type Definition " + typedefName); + // } + return returnType; + } + + private Type returnTypeForIdentityref(IdentityrefTypeDefinition idref) { + QName baseIdQName = idref.getIdentity(); + Module module = schemaContext.findModuleByNamespace(baseIdQName.getNamespace()); + IdentitySchemaNode identity = null; + for (IdentitySchemaNode id : module.getIdentities()) { + if (id.getQName().equals(baseIdQName)) { + identity = id; + } + } + if (identity == null) { + throw new IllegalArgumentException("Target identity '" + baseIdQName + "' do not exists"); + } + + final String basePackageName = moduleNamespaceToPackageName(module); + final String packageName = packageNameForGeneratedType(basePackageName, identity.getPath()); + final String genTypeName = parseToClassName(identity.getQName().getLocalName()); + + Type baseType = Types.typeForClass(Class.class); + Type paramType = Types.wildcardTypeFor(packageName, genTypeName); + Type returnType = Types.parameterizedTypeFor(baseType, paramType); + return returnType; + } + + public Type generatedTypeForExtendedDefinitionType(final TypeDefinition typeDefinition) { + Type returnType = null; + if (typeDefinition == null) { + throw new IllegalArgumentException("Type Definition cannot be NULL!"); + } + if (typeDefinition.getQName() == null) { + throw new IllegalArgumentException( + "Type Definition cannot have non specified QName (QName cannot be NULL!)"); + } + if (typeDefinition.getQName() == null) { + throw new IllegalArgumentException("Type Definitions Local Name cannot be NULL!"); + } + + final String typedefName = typeDefinition.getQName().getLocalName(); + if (typeDefinition instanceof ExtendedType) { + final TypeDefinition baseTypeDef = baseTypeDefForExtendedType(typeDefinition); + + if (!(baseTypeDef instanceof LeafrefTypeDefinition) && !(baseTypeDef instanceof IdentityrefTypeDefinition)) { + final Module module = findParentModuleForTypeDefinition(schemaContext, typeDefinition); + + if (module != null) { + final Map genTOs = genTypeDefsContextMap.get(module.getName()); + if (genTOs != null) { + returnType = genTOs.get(typedefName); + } + } + } + } + return returnType; + } + + private TypeDefinition baseTypeDefForExtendedType(final TypeDefinition extendTypeDef) { + if (extendTypeDef == null) { + throw new IllegalArgumentException("Type Definiition reference cannot be NULL!"); + } + final TypeDefinition baseTypeDef = extendTypeDef.getBaseType(); + if (baseTypeDef instanceof ExtendedType) { + return baseTypeDefForExtendedType(baseTypeDef); + } else { + return baseTypeDef; + } + + } + + public Type provideTypeForLeafref(final LeafrefTypeDefinition leafrefType) { + Type returnType = null; + if (leafrefType == null) { + throw new IllegalArgumentException("Leafref Type Definition reference cannot be NULL!"); + } + + if (leafrefType.getPathStatement() == null) { + throw new IllegalArgumentException("The Path Statement for Leafref Type Definition cannot be NULL!"); + } + + final RevisionAwareXPath xpath = leafrefType.getPathStatement(); + final String strXPath = xpath.toString(); + + if (strXPath != null) { + if (strXPath.contains("[")) { + returnType = Types.typeForClass(Object.class); + } else { + final Module module = findParentModuleForTypeDefinition(schemaContext, leafrefType); + if (module != null) { + final DataSchemaNode dataNode; + if (xpath.isAbsolute()) { + dataNode = findDataSchemaNode(schemaContext, module, xpath); + } else { + dataNode = findDataSchemaNodeForRelativeXPath(schemaContext, module, leafrefType, xpath); + } + + if (leafContainsEnumDefinition(dataNode)) { + returnType = referencedTypes.get(dataNode.getPath()); + } else if (leafListContainsEnumDefinition(dataNode)) { + returnType = Types.listTypeFor(referencedTypes.get(dataNode.getPath())); + } else { + returnType = resolveTypeFromDataSchemaNode(dataNode); + } + } + } + } + return returnType; + } + + private boolean leafContainsEnumDefinition(final DataSchemaNode dataNode) { + if (dataNode instanceof LeafSchemaNode) { + final LeafSchemaNode leaf = (LeafSchemaNode) dataNode; + if (leaf.getType() instanceof EnumTypeDefinition) { + return true; + } + } + return false; + } + + private boolean leafListContainsEnumDefinition(final DataSchemaNode dataNode) { + if (dataNode instanceof LeafListSchemaNode) { + final LeafListSchemaNode leafList = (LeafListSchemaNode) dataNode; + if (leafList.getType() instanceof EnumTypeDefinition) { + return true; + } + } + return false; + } + + private Enumeration resolveEnumFromTypeDefinition(final EnumTypeDefinition enumTypeDef, final String enumName) { + if (enumTypeDef == null) { + throw new IllegalArgumentException("EnumTypeDefinition reference cannot be NULL!"); + } + if (enumTypeDef.getValues() == null) { + throw new IllegalArgumentException("EnumTypeDefinition MUST contain at least ONE value definition!"); + } + if (enumTypeDef.getQName() == null) { + throw new IllegalArgumentException("EnumTypeDefinition MUST contain NON-NULL QName!"); + } + if (enumTypeDef.getQName().getLocalName() == null) { + throw new IllegalArgumentException("Local Name in EnumTypeDefinition QName cannot be NULL!"); + } + + final String enumerationName = parseToClassName(enumName); + + Module module = findParentModuleForTypeDefinition(schemaContext, enumTypeDef); + final String basePackageName = moduleNamespaceToPackageName(module); + + final EnumBuilder enumBuilder = new EnumerationBuilderImpl(basePackageName, enumerationName); + updateEnumPairsFromEnumTypeDef(enumTypeDef, enumBuilder); + return enumBuilder.toInstance(null); + } + + private EnumBuilder resolveInnerEnumFromTypeDefinition(final EnumTypeDefinition enumTypeDef, final String enumName, + final GeneratedTypeBuilder typeBuilder) { + if (enumTypeDef == null) { + throw new IllegalArgumentException("EnumTypeDefinition reference cannot be NULL!"); + } + if (enumTypeDef.getValues() == null) { + throw new IllegalArgumentException("EnumTypeDefinition MUST contain at least ONE value definition!"); + } + if (enumTypeDef.getQName() == null) { + throw new IllegalArgumentException("EnumTypeDefinition MUST contain NON-NULL QName!"); + } + if (enumTypeDef.getQName().getLocalName() == null) { + throw new IllegalArgumentException("Local Name in EnumTypeDefinition QName cannot be NULL!"); + } + if (typeBuilder == null) { + throw new IllegalArgumentException("Generated Type Builder reference cannot be NULL!"); + } + + final String enumerationName = parseToClassName(enumName); + final EnumBuilder enumBuilder = typeBuilder.addEnumeration(enumerationName); + + updateEnumPairsFromEnumTypeDef(enumTypeDef, enumBuilder); + + return enumBuilder; + } + + private void updateEnumPairsFromEnumTypeDef(final EnumTypeDefinition enumTypeDef, final EnumBuilder enumBuilder) { + if (enumBuilder != null) { + final List enums = enumTypeDef.getValues(); + if (enums != null) { + int listIndex = 0; + for (final EnumPair enumPair : enums) { + if (enumPair != null) { + final String enumPairName = parseToClassName(enumPair.getName()); + Integer enumPairValue = enumPair.getValue(); + + if (enumPairValue == null) { + enumPairValue = listIndex; + } + enumBuilder.addValue(enumPairName, enumPairValue); + listIndex++; + } + } + } + } + } + + private Type resolveTypeFromDataSchemaNode(final DataSchemaNode dataNode) { + Type returnType = null; + if (dataNode != null) { + if (dataNode instanceof LeafSchemaNode) { + final LeafSchemaNode leaf = (LeafSchemaNode) dataNode; + returnType = javaTypeForSchemaDefinitionType(leaf.getType()); + } else if (dataNode instanceof LeafListSchemaNode) { + final LeafListSchemaNode leafList = (LeafListSchemaNode) dataNode; + returnType = javaTypeForSchemaDefinitionType(leafList.getType()); + } + } + return returnType; + } + + private void resolveTypeDefsFromContext() { + final Set modules = schemaContext.getModules(); + if (modules == null) { + throw new IllegalArgumentException("Sef of Modules cannot be NULL!"); + } + for (final Module module : modules) { + if (module == null) { + continue; + } + final String moduleName = module.getName(); + final String basePackageName = moduleNamespaceToPackageName(module); + + final Set> typeDefinitions = module.getTypeDefinitions(); + final List> listTypeDefinitions = sortTypeDefinitionAccordingDepth(typeDefinitions); + + final Map typeMap = new HashMap<>(); + genTypeDefsContextMap.put(moduleName, typeMap); + + if ((listTypeDefinitions != null) && (basePackageName != null)) { + for (final TypeDefinition typedef : listTypeDefinitions) { + typedefToGeneratedType(basePackageName, moduleName, typedef); + } + } + } + } + + private Type typedefToGeneratedType(final String basePackageName, final String moduleName, + final TypeDefinition typedef) { + if ((basePackageName != null) && (moduleName != null) && (typedef != null) && (typedef.getQName() != null)) { + + final String typedefName = typedef.getQName().getLocalName(); + final TypeDefinition innerTypeDefinition = typedef.getBaseType(); + if (!(innerTypeDefinition instanceof LeafrefTypeDefinition) + && !(innerTypeDefinition instanceof IdentityrefTypeDefinition)) { + Type returnType = null; + if (innerTypeDefinition instanceof ExtendedType) { + ExtendedType extendedTypeDef = (ExtendedType) innerTypeDefinition; + returnType = resolveExtendedTypeFromTypeDef(extendedTypeDef, basePackageName, typedefName, + moduleName); + } else if (innerTypeDefinition instanceof UnionTypeDefinition) { + final GeneratedTOBuilder genTOBuilder = addUnionGeneratedTypeDefinition(basePackageName, typedef, + typedefName); + returnType = genTOBuilder.toInstance(); + } else if (innerTypeDefinition instanceof EnumTypeDefinition) { + final EnumTypeDefinition enumTypeDef = (EnumTypeDefinition) innerTypeDefinition; + returnType = resolveEnumFromTypeDefinition(enumTypeDef, typedefName); + + } else if (innerTypeDefinition instanceof BitsTypeDefinition) { + final BitsTypeDefinition bitsTypeDefinition = (BitsTypeDefinition) innerTypeDefinition; + final GeneratedTOBuilder genTOBuilder = bitsTypedefToTransferObject(basePackageName, + bitsTypeDefinition, typedefName); + returnType = genTOBuilder.toInstance(); + + } else { + final Type javaType = BaseYangTypes.BASE_YANG_TYPES_PROVIDER + .javaTypeForSchemaDefinitionType(innerTypeDefinition); + + returnType = wrapJavaTypeIntoTO(basePackageName, typedef, javaType); + } + if (returnType != null) { + final Map typeMap = genTypeDefsContextMap.get(moduleName); + if (typeMap != null) { + typeMap.put(typedefName, returnType); + } + return returnType; + } + } + } + return null; + } + + private GeneratedTransferObject wrapJavaTypeIntoTO(final String basePackageName, final TypeDefinition typedef, + final Type javaType) { + if (javaType != null) { + final String typedefName = typedef.getQName().getLocalName(); + final String propertyName = parseToValidParamName(typedefName); + + final GeneratedTOBuilder genTOBuilder = typedefToTransferObject(basePackageName, typedef); + + final GeneratedPropertyBuilder genPropBuilder = genTOBuilder.addProperty(propertyName); + + genPropBuilder.setReturnType(javaType); + genTOBuilder.addEqualsIdentity(genPropBuilder); + genTOBuilder.addHashIdentity(genPropBuilder); + genTOBuilder.addToStringProperty(genPropBuilder); + if (javaType == BaseYangTypes.STRING_TYPE) { + if (typedef instanceof ExtendedType) { + final List regExps = resolveRegExpressionsFromTypedef((ExtendedType) typedef); + addStringRegExAsConstant(genTOBuilder, regExps); + } + } + return genTOBuilder.toInstance(); + } + return null; + } + + public GeneratedTOBuilder addUnionGeneratedTypeDefinition(final String basePackageName, + final TypeDefinition typedef, String typeDefName) { + if (basePackageName == null) { + throw new IllegalArgumentException("Base Package Name cannot be NULL!"); + } + if (typedef == null) { + throw new IllegalArgumentException("Type Definition cannot be NULL!"); + } + if (typedef.getQName() == null) { + throw new IllegalArgumentException( + "Type Definition cannot have non specified QName (QName cannot be NULL!)"); + } + + final TypeDefinition baseTypeDefinition = typedef.getBaseType(); + if ((baseTypeDefinition != null) && (baseTypeDefinition instanceof UnionTypeDefinition)) { + final Module parentModule = findParentModuleForTypeDefinition(schemaContext, typedef); + final UnionTypeDefinition unionTypeDef = (UnionTypeDefinition) baseTypeDefinition; + final List> unionTypes = unionTypeDef.getTypes(); + + Map genTOsMap = null; + if (parentModule != null && parentModule.getName() != null) { + genTOsMap = genTypeDefsContextMap.get(parentModule.getName()); + } + + final GeneratedTOBuilder unionGenTransObject; + if (typeDefName != null && !typeDefName.isEmpty()) { + final String typeName = parseToClassName(typeDefName); + unionGenTransObject = new GeneratedTOBuilderImpl(basePackageName, typeName); + } else { + unionGenTransObject = typedefToTransferObject(basePackageName, typedef); + } + unionGenTransObject.setIsUnion(true); + + final List regularExpressions = new ArrayList(); + for (final TypeDefinition unionType : unionTypes) { + final String typeName = unionType.getQName().getLocalName(); + if (unionType instanceof ExtendedType) { + final Module unionTypeModule = findParentModuleForTypeDefinition(schemaContext, unionType); + if (unionTypeModule != null && unionTypeModule.getName() != null) { + final Map innerGenTOs = genTypeDefsContextMap.get(unionTypeModule.getName()); + Type genTransferObject = null; + if (innerGenTOs != null) { + genTransferObject = innerGenTOs.get(typeName); + } + if (genTransferObject != null) { + updateUnionTypeAsProperty(unionGenTransObject, genTransferObject, + genTransferObject.getName()); + } else { + final TypeDefinition baseType = baseTypeDefForExtendedType(unionType); + if (typeName.equals(baseType.getQName().getLocalName())) { + final Type javaType = BaseYangTypes.BASE_YANG_TYPES_PROVIDER + .javaTypeForSchemaDefinitionType(baseType); + if (javaType != null) { + updateUnionTypeAsProperty(unionGenTransObject, javaType, typeName); + } + } + if (baseType instanceof StringType) { + regularExpressions.addAll(resolveRegExpressionsFromTypedef((ExtendedType) unionType)); + } + } + } + } else if (unionType instanceof EnumTypeDefinition) { + final EnumBuilder enumBuilder = resolveInnerEnumFromTypeDefinition((EnumTypeDefinition) unionType, + typeName, unionGenTransObject); + final Type enumRefType = new ReferencedTypeImpl(enumBuilder.getPackageName(), enumBuilder.getName()); + updateUnionTypeAsProperty(unionGenTransObject, enumRefType, typeName); + } else { + final Type javaType = BaseYangTypes.BASE_YANG_TYPES_PROVIDER + .javaTypeForSchemaDefinitionType(unionType); + if (javaType != null) { + updateUnionTypeAsProperty(unionGenTransObject, javaType, typeName); + } + } + } + if (!regularExpressions.isEmpty()) { + addStringRegExAsConstant(unionGenTransObject, regularExpressions); + } + + genTOsMap.put(typedef.getQName().getLocalName(), unionGenTransObject.toInstance()); + return unionGenTransObject; + } + return null; + } + + private void updateUnionTypeAsProperty(final GeneratedTOBuilder unionGenTransObject, final Type type, + final String propertyName) { + if (unionGenTransObject != null && type != null) { + if (!unionGenTransObject.containsProperty(propertyName)) { + final GeneratedPropertyBuilder propBuilder = unionGenTransObject + .addProperty(parseToValidParamName(propertyName)); + propBuilder.setReturnType(type); + + if (!(type instanceof Enumeration)) { + unionGenTransObject.addEqualsIdentity(propBuilder); + unionGenTransObject.addHashIdentity(propBuilder); + unionGenTransObject.addToStringProperty(propBuilder); + } + } + } + } + + private GeneratedTOBuilder typedefToTransferObject(final String basePackageName, final TypeDefinition typedef) { + + final String packageName = packageNameForGeneratedType(basePackageName, typedef.getPath()); + final String typeDefTOName = typedef.getQName().getLocalName(); + + if ((packageName != null) && (typedef != null) && (typeDefTOName != null)) { + final String genTOName = parseToClassName(typeDefTOName); + final GeneratedTOBuilder newType = new GeneratedTOBuilderImpl(packageName, genTOName); + + return newType; + } + return null; + } + + public GeneratedTOBuilder bitsTypedefToTransferObject(final String basePackageName, + final TypeDefinition typeDef, String typeDefName) { + + if (typeDef == null) { + throw new IllegalArgumentException("typeDef cannot be NULL!"); + } + if (basePackageName == null) { + throw new IllegalArgumentException("Base Package Name cannot be NULL!"); + } + + if (typeDef instanceof BitsTypeDefinition) { + BitsTypeDefinition bitsTypeDefinition = (BitsTypeDefinition) typeDef; + + final String typeName = parseToClassName(typeDefName); + final GeneratedTOBuilder genTOBuilder = new GeneratedTOBuilderImpl(basePackageName, typeName); + + final List bitList = bitsTypeDefinition.getBits(); + GeneratedPropertyBuilder genPropertyBuilder; + for (final Bit bit : bitList) { + String name = bit.getName(); + genPropertyBuilder = genTOBuilder.addProperty(parseToValidParamName(name)); + genPropertyBuilder.setReadOnly(false); + genPropertyBuilder.setReturnType(BaseYangTypes.BOOLEAN_TYPE); + + genTOBuilder.addEqualsIdentity(genPropertyBuilder); + genTOBuilder.addHashIdentity(genPropertyBuilder); + genTOBuilder.addToStringProperty(genPropertyBuilder); + } + + return genTOBuilder; + } + return null; + } + + private List resolveRegExpressionsFromTypedef(ExtendedType typedef) { + final List regExps = new ArrayList(); + if (typedef == null) { + throw new IllegalArgumentException("typedef can't be null"); + } + final TypeDefinition strTypeDef = baseTypeDefForExtendedType(typedef); + if (strTypeDef instanceof StringType) { + final List patternConstraints = typedef.getPatterns(); + if (!patternConstraints.isEmpty()) { + String regEx; + String modifiedRegEx; + for (PatternConstraint patternConstraint : patternConstraints) { + regEx = patternConstraint.getRegularExpression(); + modifiedRegEx = StringEscapeUtils.escapeJava(regEx); + regExps.add(modifiedRegEx); + } + } + } + return regExps; + } + + private void addStringRegExAsConstant(GeneratedTOBuilder genTOBuilder, List regularExpressions) { + if (genTOBuilder == null) + throw new IllegalArgumentException("genTOBuilder can't be null"); + if (regularExpressions == null) + throw new IllegalArgumentException("regularExpressions can't be null"); + + if (!regularExpressions.isEmpty()) { + genTOBuilder.addConstant(Types.listTypeFor(BaseYangTypes.STRING_TYPE), TypeConstants.PATTERN_CONSTANT_NAME, + regularExpressions); + } + } + + private GeneratedTransferObject resolveExtendedTypeFromTypeDef(final ExtendedType extendedType, + final String basePackageName, final String typedefName, final String moduleName) { + + if (extendedType == null) { + throw new IllegalArgumentException("Extended type cannot be NULL!"); + } + if (basePackageName == null) { + throw new IllegalArgumentException("String with base package name cannot be NULL!"); + } + if (typedefName == null) { + throw new IllegalArgumentException("String with type definition name cannot be NULL!"); + } + + final String typeDefName = parseToClassName(typedefName); + final String lowTypeDef = extendedType.getQName().getLocalName(); + final GeneratedTOBuilder genTOBuilder = new GeneratedTOBuilderImpl(basePackageName, typeDefName); + + final Map typeMap = genTypeDefsContextMap.get(moduleName); + if (typeMap != null) { + Type type = typeMap.get(lowTypeDef); + if (type instanceof GeneratedTransferObject) { + genTOBuilder.setExtendsType((GeneratedTransferObject) type); + } + } + + return genTOBuilder.toInstance(); + } + + /** + * The method find out for each type definition how many immersion (depth) + * is necessary to get to the base type. Every type definition is inserted + * to the map which key is depth and value is list of type definitions with + * equal depth. In next step are lists from this map concatenated to one + * list in ascending order according to their depth. All type definitions + * are in the list behind all type definitions on which depends. + * + * @param unsortedTypeDefinitions + * represents list of type definitions + * @return list of type definitions sorted according their each other + * dependencies (type definitions which are depend on other type + * definitions are in list behind them). + */ + private List> sortTypeDefinitionAccordingDepth( + final Set> unsortedTypeDefinitions) { + List> sortedTypeDefinition = new ArrayList<>(); + + Map>> typeDefinitionsDepths = new TreeMap<>(); + for (TypeDefinition unsortedTypeDefinition : unsortedTypeDefinitions) { + final int depth = getTypeDefinitionDepth(unsortedTypeDefinition); + List> typeDefinitionsConcreteDepth = typeDefinitionsDepths.get(depth); + if (typeDefinitionsConcreteDepth == null) { + typeDefinitionsConcreteDepth = new ArrayList>(); + typeDefinitionsDepths.put(depth, typeDefinitionsConcreteDepth); + } + typeDefinitionsConcreteDepth.add(unsortedTypeDefinition); + } + + Set depths = typeDefinitionsDepths.keySet(); // keys are in + // ascending order + for (Integer depth : depths) { + sortedTypeDefinition.addAll(typeDefinitionsDepths.get(depth)); + } + + return sortedTypeDefinition; + } + + /** + * The method return how many immersion is necessary to get from type + * definition to base type. + * + * @param typeDefinition + * is type definition for which is depth looked for. + * @return how many immersion is necessary to get from type definition to + * base type + */ + private int getTypeDefinitionDepth(final TypeDefinition typeDefinition) { + if (typeDefinition == null) { + throw new IllegalArgumentException("Type definition can't be null"); + } + int depth = 1; + TypeDefinition baseType = typeDefinition.getBaseType(); + + if (baseType instanceof ExtendedType) { + depth = depth + getTypeDefinitionDepth(typeDefinition.getBaseType()); + } else if (baseType instanceof UnionType) { + List> childTypeDefinitions = ((UnionType) baseType).getTypes(); + int maxChildDepth = 0; + int childDepth = 1; + for (TypeDefinition childTypeDefinition : childTypeDefinitions) { + childDepth = childDepth + getTypeDefinitionDepth(childTypeDefinition.getBaseType()); + if (childDepth > maxChildDepth) { + maxChildDepth = childDepth; + } + } + return maxChildDepth; + } + return depth; + } + +}