Lower reliance on SchemaNode collection types
[mdsal.git] / binding / mdsal-binding-generator-impl / src / main / java / org / opendaylight / mdsal / binding / yang / types / AbstractTypeProvider.java
1 /*
2  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.mdsal.binding.yang.types;
9
10 import static java.util.Objects.requireNonNull;
11 import static org.opendaylight.mdsal.binding.model.util.BindingTypes.TYPE_OBJECT;
12 import static org.opendaylight.yangtools.yang.model.util.SchemaContextUtil.findDataSchemaNodeForRelativeXPath;
13 import static org.opendaylight.yangtools.yang.model.util.SchemaContextUtil.findDataTreeSchemaNode;
14 import static org.opendaylight.yangtools.yang.model.util.SchemaContextUtil.findParentModule;
15
16 import com.google.common.annotations.Beta;
17 import com.google.common.annotations.VisibleForTesting;
18 import com.google.common.base.Preconditions;
19 import com.google.common.base.Strings;
20 import com.google.common.collect.ImmutableMap;
21 import java.math.BigDecimal;
22 import java.util.ArrayList;
23 import java.util.Base64;
24 import java.util.Collection;
25 import java.util.Collections;
26 import java.util.Comparator;
27 import java.util.HashMap;
28 import java.util.HashSet;
29 import java.util.Iterator;
30 import java.util.List;
31 import java.util.Map;
32 import java.util.Optional;
33 import java.util.Set;
34 import java.util.TreeMap;
35 import java.util.regex.Pattern;
36 import org.opendaylight.mdsal.binding.generator.spi.TypeProvider;
37 import org.opendaylight.mdsal.binding.model.api.AccessModifier;
38 import org.opendaylight.mdsal.binding.model.api.ConcreteType;
39 import org.opendaylight.mdsal.binding.model.api.Enumeration;
40 import org.opendaylight.mdsal.binding.model.api.GeneratedProperty;
41 import org.opendaylight.mdsal.binding.model.api.GeneratedTransferObject;
42 import org.opendaylight.mdsal.binding.model.api.JavaTypeName;
43 import org.opendaylight.mdsal.binding.model.api.Restrictions;
44 import org.opendaylight.mdsal.binding.model.api.Type;
45 import org.opendaylight.mdsal.binding.model.api.type.builder.EnumBuilder;
46 import org.opendaylight.mdsal.binding.model.api.type.builder.GeneratedPropertyBuilder;
47 import org.opendaylight.mdsal.binding.model.api.type.builder.GeneratedTOBuilder;
48 import org.opendaylight.mdsal.binding.model.api.type.builder.GeneratedTypeBuilder;
49 import org.opendaylight.mdsal.binding.model.api.type.builder.GeneratedTypeBuilderBase;
50 import org.opendaylight.mdsal.binding.model.api.type.builder.MethodSignatureBuilder;
51 import org.opendaylight.mdsal.binding.model.util.BindingGeneratorUtil;
52 import org.opendaylight.mdsal.binding.model.util.TypeConstants;
53 import org.opendaylight.mdsal.binding.model.util.Types;
54 import org.opendaylight.mdsal.binding.model.util.generated.type.builder.AbstractEnumerationBuilder;
55 import org.opendaylight.mdsal.binding.model.util.generated.type.builder.GeneratedPropertyBuilderImpl;
56 import org.opendaylight.mdsal.binding.spec.naming.BindingMapping;
57 import org.opendaylight.yangtools.yang.common.QName;
58 import org.opendaylight.yangtools.yang.common.Revision;
59 import org.opendaylight.yangtools.yang.common.Uint16;
60 import org.opendaylight.yangtools.yang.common.Uint32;
61 import org.opendaylight.yangtools.yang.common.Uint64;
62 import org.opendaylight.yangtools.yang.common.Uint8;
63 import org.opendaylight.yangtools.yang.model.api.DataNodeContainer;
64 import org.opendaylight.yangtools.yang.model.api.DataSchemaNode;
65 import org.opendaylight.yangtools.yang.model.api.IdentitySchemaNode;
66 import org.opendaylight.yangtools.yang.model.api.LeafListSchemaNode;
67 import org.opendaylight.yangtools.yang.model.api.LeafSchemaNode;
68 import org.opendaylight.yangtools.yang.model.api.Module;
69 import org.opendaylight.yangtools.yang.model.api.PathExpression;
70 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
71 import org.opendaylight.yangtools.yang.model.api.SchemaNode;
72 import org.opendaylight.yangtools.yang.model.api.SchemaPath;
73 import org.opendaylight.yangtools.yang.model.api.Status;
74 import org.opendaylight.yangtools.yang.model.api.TypeDefinition;
75 import org.opendaylight.yangtools.yang.model.api.type.BinaryTypeDefinition;
76 import org.opendaylight.yangtools.yang.model.api.type.BitsTypeDefinition;
77 import org.opendaylight.yangtools.yang.model.api.type.BitsTypeDefinition.Bit;
78 import org.opendaylight.yangtools.yang.model.api.type.BooleanTypeDefinition;
79 import org.opendaylight.yangtools.yang.model.api.type.DecimalTypeDefinition;
80 import org.opendaylight.yangtools.yang.model.api.type.EmptyTypeDefinition;
81 import org.opendaylight.yangtools.yang.model.api.type.EnumTypeDefinition;
82 import org.opendaylight.yangtools.yang.model.api.type.IdentityrefTypeDefinition;
83 import org.opendaylight.yangtools.yang.model.api.type.InstanceIdentifierTypeDefinition;
84 import org.opendaylight.yangtools.yang.model.api.type.LeafrefTypeDefinition;
85 import org.opendaylight.yangtools.yang.model.api.type.PatternConstraint;
86 import org.opendaylight.yangtools.yang.model.api.type.StringTypeDefinition;
87 import org.opendaylight.yangtools.yang.model.api.type.UnionTypeDefinition;
88 import org.opendaylight.yangtools.yang.model.util.ModuleDependencySort;
89 import org.opendaylight.yangtools.yang.model.util.PathExpressionImpl;
90 import org.opendaylight.yangtools.yang.model.util.SchemaContextUtil;
91 import org.opendaylight.yangtools.yang.model.util.type.BaseTypes;
92 import org.opendaylight.yangtools.yang.model.util.type.CompatUtils;
93 import org.slf4j.Logger;
94 import org.slf4j.LoggerFactory;
95
96 @Beta
97 public abstract class AbstractTypeProvider implements TypeProvider {
98     private static final Logger LOG = LoggerFactory.getLogger(AbstractTypeProvider.class);
99     private static final Pattern GROUPS_PATTERN = Pattern.compile("\\[(.*?)\\]");
100
101     // Backwards compatibility: Union types used to be instantiated in YANG namespace, which is no longer
102     // the case, as unions are emitted to their correct schema path.
103     private static final SchemaPath UNION_PATH = SchemaPath.create(true,
104         org.opendaylight.yangtools.yang.model.util.BaseTypes.UNION_QNAME);
105
106     /**
107      * Contains the schema data red from YANG files.
108      */
109     private final SchemaContext schemaContext;
110
111     private final Map<String, Map<Optional<Revision>, Map<String, Type>>> genTypeDefsContextMap = new HashMap<>();
112
113     /**
114      * The map which maps schema paths to JAVA <code>Type</code>.
115      */
116     private final Map<SchemaPath, Type> referencedTypes = new HashMap<>();
117     private final Map<Module, Set<Type>> additionalTypes = new HashMap<>();
118     private final Map<SchemaNode, JavaTypeName> renames;
119
120     /**
121      * Creates new instance of class <code>TypeProviderImpl</code>.
122      *
123      * @param schemaContext contains the schema data red from YANG files
124      * @param renames renaming table
125      * @throws IllegalArgumentException if <code>schemaContext</code> equal null.
126      */
127     AbstractTypeProvider(final SchemaContext schemaContext, final Map<SchemaNode, JavaTypeName> renames) {
128         Preconditions.checkArgument(schemaContext != null, "Schema Context cannot be null!");
129         this.schemaContext = schemaContext;
130         this.renames = requireNonNull(renames);
131         resolveTypeDefsFromContext();
132     }
133
134     /**
135      * Puts <code>refType</code> to map with key <code>refTypePath</code>.
136      *
137      * @param refTypePath schema path used as the map key
138      * @param refType type which represents the map value
139      * @throws IllegalArgumentException
140      *             <ul>
141      *             <li>if <code>refTypePath</code> equal null</li>
142      *             <li>if <code>refType</code> equal null</li>
143      *             </ul>
144      *
145      */
146     public void putReferencedType(final SchemaPath refTypePath, final Type refType) {
147         Preconditions.checkArgument(refTypePath != null,
148                 "Path reference of Enumeration Type Definition cannot be NULL!");
149         Preconditions.checkArgument(refType != null, "Reference to Enumeration Type cannot be NULL!");
150         referencedTypes.put(refTypePath, refType);
151     }
152
153     public Map<Module, Set<Type>> getAdditionalTypes() {
154         return additionalTypes;
155     }
156
157     @Override
158     public Type javaTypeForSchemaDefinitionType(final TypeDefinition<?> typeDefinition, final SchemaNode parentNode,
159             final boolean lenientRelativeLeafrefs) {
160         return javaTypeForSchemaDefinitionType(typeDefinition, parentNode, null, lenientRelativeLeafrefs);
161     }
162
163     /**
164      * Converts schema definition type <code>typeDefinition</code> to JAVA <code>Type</code>.
165      *
166      * @param typeDefinition type definition which is converted to JAVA type
167      * @throws IllegalArgumentException
168      *             <ul>
169      *             <li>if <code>typeDefinition</code> equal null</li>
170      *             <li>if Qname of <code>typeDefinition</code> equal null</li>
171      *             <li>if name of <code>typeDefinition</code> equal null</li>
172      *             </ul>
173      */
174     @Override
175     public Type javaTypeForSchemaDefinitionType(final TypeDefinition<?> typeDefinition, final SchemaNode parentNode,
176             final Restrictions restrictions, final boolean lenientRelativeLeafrefs) {
177         Preconditions.checkArgument(typeDefinition != null, "Type Definition cannot be NULL!");
178         Preconditions.checkArgument(typeDefinition.getQName() != null,
179                 "Type Definition cannot have non specified QName (QName cannot be NULL!)");
180         final String typedefName = typeDefinition.getQName().getLocalName();
181         Preconditions.checkArgument(typedefName != null, "Type Definitions Local Name cannot be NULL!");
182
183         // Deal with base types
184         if (typeDefinition.getBaseType() == null) {
185             // We have to deal with differing handling of decimal64. The old parser used a fixed Decimal64 type
186             // and generated an enclosing ExtendedType to hold any range constraints. The new parser instantiates
187             // a base type which holds these constraints.
188             if (typeDefinition instanceof DecimalTypeDefinition) {
189                 final Type ret = BaseYangTypes.BASE_YANG_TYPES_PROVIDER.javaTypeForSchemaDefinitionType(typeDefinition,
190                     parentNode, restrictions, lenientRelativeLeafrefs);
191                 if (ret != null) {
192                     return ret;
193                 }
194             }
195
196             // Deal with leafrefs/identityrefs
197             Type ret = javaTypeForLeafrefOrIdentityRef(typeDefinition, parentNode, lenientRelativeLeafrefs);
198             if (ret != null) {
199                 return ret;
200             }
201
202             // FIXME: it looks as though we could be using the same codepath as above...
203             ret = BaseYangTypes.javaTypeForYangType(typeDefinition.getQName().getLocalName());
204             if (ret == null) {
205                 LOG.debug("Failed to resolve Java type for {}", typeDefinition);
206             }
207
208             return ret;
209         }
210
211         Type returnType = javaTypeForExtendedType(typeDefinition, lenientRelativeLeafrefs);
212         if (restrictions != null && returnType instanceof GeneratedTransferObject) {
213             final GeneratedTransferObject gto = (GeneratedTransferObject) returnType;
214             final Module module = findParentModule(schemaContext, parentNode);
215             final String basePackageName = BindingMapping.getRootPackageName(module.getQNameModule());
216             final String packageName = BindingGeneratorUtil.packageNameForGeneratedType(basePackageName,
217                 typeDefinition.getPath());
218             final String genTOName = BindingMapping.getClassName(typedefName);
219             final String name = packageName + "." + genTOName;
220             if (!returnType.getFullyQualifiedName().equals(name)) {
221                 returnType = shadedTOWithRestrictions(gto, restrictions);
222             }
223         }
224         return returnType;
225     }
226
227     private GeneratedTransferObject shadedTOWithRestrictions(final GeneratedTransferObject gto,
228             final Restrictions restrictions) {
229         final GeneratedTOBuilder gtob = newGeneratedTOBuilder(gto.getIdentifier());
230         final GeneratedTransferObject parent = gto.getSuperType();
231         if (parent != null) {
232             gtob.setExtendsType(parent);
233         }
234         gtob.setRestrictions(restrictions);
235         for (GeneratedProperty gp : gto.getProperties()) {
236             final GeneratedPropertyBuilder gpb = gtob.addProperty(gp.getName());
237             gpb.setValue(gp.getValue());
238             gpb.setReadOnly(gp.isReadOnly());
239             gpb.setAccessModifier(gp.getAccessModifier());
240             gpb.setReturnType(gp.getReturnType());
241             gpb.setFinal(gp.isFinal());
242             gpb.setStatic(gp.isStatic());
243         }
244         return gtob.build();
245     }
246
247     private boolean isLeafRefSelfReference(final LeafrefTypeDefinition leafref, final SchemaNode parentNode) {
248         /*
249          * First check if the leafref is an augment. If that is the case, skip it as it will be checked once augments
250          * are resolved.
251          */
252         DataNodeContainer current = null;
253         DataSchemaNode dataChildByName;
254         for (QName next : parentNode.getPath().getPathFromRoot()) {
255             if (current == null) {
256                 dataChildByName = schemaContext.getDataChildByName(next);
257             } else {
258                 dataChildByName = current.getDataChildByName(next);
259             }
260             if (dataChildByName == null) {
261                 return false;
262             }
263             if (dataChildByName.isAugmenting()) {
264                 return false;
265             }
266             if (dataChildByName instanceof DataNodeContainer) {
267                 current = (DataNodeContainer) dataChildByName;
268             }
269         }
270
271         // Then try to look up the expression.
272         final PathExpression leafRefXPath = leafref.getPathStatement();
273         final Module parentModule = getParentModule(parentNode);
274         final SchemaNode leafRefValueNode;
275         if (leafRefXPath.isAbsolute()) {
276             leafRefValueNode = SchemaContextUtil.findDataTreeSchemaNode(schemaContext, parentModule.getQNameModule(),
277                 leafRefXPath);
278         } else {
279             leafRefValueNode = SchemaContextUtil.findDataSchemaNodeForRelativeXPath(schemaContext, parentModule,
280                 parentNode, new PathExpressionImpl(
281                     GROUPS_PATTERN.matcher(leafRefXPath.getOriginalString()).replaceAll(""), false));
282         }
283
284         return leafRefValueNode != null && leafRefValueNode.equals(parentNode);
285     }
286
287     /**
288      * Returns JAVA <code>Type</code> for instances of the type <code>LeafrefTypeDefinition</code> or
289      * <code>IdentityrefTypeDefinition</code>.
290      *
291      * @param typeDefinition type definition which is converted to JAVA <code>Type</code>
292      * @return JAVA <code>Type</code> instance for <code>typeDefinition</code>
293      */
294     private Type javaTypeForLeafrefOrIdentityRef(final TypeDefinition<?> typeDefinition, final SchemaNode parentNode,
295             final boolean inGrouping) {
296         if (typeDefinition instanceof LeafrefTypeDefinition) {
297             final LeafrefTypeDefinition leafref = (LeafrefTypeDefinition) typeDefinition;
298             Preconditions.checkArgument(!isLeafRefSelfReference(leafref, parentNode),
299                 "Leafref %s is referencing itself, incoming StackOverFlowError detected.", leafref);
300             return provideTypeForLeafref(leafref, parentNode, inGrouping);
301         } else if (typeDefinition instanceof IdentityrefTypeDefinition) {
302             return provideTypeForIdentityref((IdentityrefTypeDefinition) typeDefinition);
303         }
304
305         return null;
306     }
307
308     /**
309      * Returns JAVA <code>Type</code> for instances of the type <code>ExtendedType</code>.
310      *
311      * @param typeDefinition type definition which is converted to JAVA <code>Type</code>
312      * @return JAVA <code>Type</code> instance for <code>typeDefinition</code>
313      */
314     private Type javaTypeForExtendedType(final TypeDefinition<?> typeDefinition, final boolean lenient) {
315         final String typedefName = typeDefinition.getQName().getLocalName();
316         final TypeDefinition<?> baseTypeDef = baseTypeDefForExtendedType(typeDefinition);
317         Type returnType = javaTypeForLeafrefOrIdentityRef(baseTypeDef, typeDefinition, lenient);
318         if (returnType == null) {
319             if (baseTypeDef instanceof EnumTypeDefinition) {
320                 final EnumTypeDefinition enumTypeDef = (EnumTypeDefinition) baseTypeDef;
321                 returnType = provideTypeForEnum(enumTypeDef, typedefName, typeDefinition);
322             } else {
323                 final Module module = findParentModule(schemaContext, typeDefinition);
324                 final Restrictions r = BindingGeneratorUtil.getRestrictions(typeDefinition);
325                 if (module != null) {
326                     final Map<Optional<Revision>, Map<String, Type>> modulesByDate = genTypeDefsContextMap.get(
327                         module.getName());
328                     final Map<String, Type> genTOs = modulesByDate.get(module.getRevision());
329                     if (genTOs != null) {
330                         returnType = genTOs.get(typedefName);
331                     }
332                     if (returnType == null) {
333                         returnType = BaseYangTypes.BASE_YANG_TYPES_PROVIDER.javaTypeForSchemaDefinitionType(
334                                 baseTypeDef, typeDefinition, r, lenient);
335                     }
336                 }
337             }
338         }
339         return returnType;
340     }
341
342     /**
343      * Seeks for identity reference <code>idref</code> the JAVA <code>type</code>.
344      *
345      * <p>
346      * <i>Example:<br />
347      * If identy which is referenced via <code>idref</code> has name <b>Idn</b>
348      * then returning type is <b>{@code Class<? extends Idn>}</b></i>
349      *
350      * @param idref identityref type definition for which JAVA <code>Type</code> is sought
351      * @return JAVA <code>Type</code> of the identity which is referenced through <code>idref</code>
352      */
353     private Type provideTypeForIdentityref(final IdentityrefTypeDefinition idref) {
354         final Collection<? extends IdentitySchemaNode> identities = idref.getIdentities();
355         if (identities.size() > 1) {
356             LOG.warn("Identity reference {} has multiple identities, using only the first one", idref);
357         }
358
359         final QName baseIdQName = identities.iterator().next().getQName();
360         final Module module = schemaContext.findModule(baseIdQName.getModule()).orElse(null);
361         IdentitySchemaNode identity = null;
362         for (IdentitySchemaNode id : module.getIdentities()) {
363             if (id.getQName().equals(baseIdQName)) {
364                 identity = id;
365             }
366         }
367         Preconditions.checkArgument(identity != null, "Target identity '" + baseIdQName + "' do not exist");
368
369         final String basePackageName = BindingMapping.getRootPackageName(module.getQNameModule());
370         final JavaTypeName identifier = JavaTypeName.create(BindingGeneratorUtil.packageNameForGeneratedType(
371             basePackageName, identity.getPath()), BindingMapping.getClassName(identity.getQName()));
372         return Types.classType(Types.wildcardTypeFor(identifier));
373     }
374
375     /**
376      * Converts <code>typeDefinition</code> to concrete JAVA <code>Type</code>.
377      *
378      * @param typeDefinition
379      *            type definition which should be converted to JAVA
380      *            <code>Type</code>
381      * @return JAVA <code>Type</code> which represents
382      *         <code>typeDefinition</code>
383      * @throws IllegalArgumentException
384      *             <ul>
385      *             <li>if <code>typeDefinition</code> equal null</li>
386      *             <li>if Q name of <code>typeDefinition</code></li>
387      *             <li>if name of <code>typeDefinition</code></li>
388      *             </ul>
389      */
390     public Type generatedTypeForExtendedDefinitionType(final TypeDefinition<?> typeDefinition,
391             final SchemaNode parentNode) {
392         Preconditions.checkArgument(typeDefinition != null, "Type Definition cannot be NULL!");
393         if (typeDefinition.getQName() == null) {
394             throw new IllegalArgumentException("Type Definition cannot have unspecified QName (QName cannot be NULL!)");
395         }
396         Preconditions.checkArgument(typeDefinition.getQName().getLocalName() != null,
397                 "Type Definitions Local Name cannot be NULL!");
398
399         final TypeDefinition<?> baseTypeDef = baseTypeDefForExtendedType(typeDefinition);
400         if (baseTypeDef instanceof LeafrefTypeDefinition || baseTypeDef instanceof IdentityrefTypeDefinition) {
401             /*
402              * This is backwards compatibility baggage from way back when. The problem at hand is inconsistency between
403              * the fact that identity is mapped to a Class, which is also returned from leaves which specify it like
404              * this:
405              *
406              *     identity iden;
407              *
408              *     container foo {
409              *         leaf foo {
410              *             type identityref {
411              *                 base iden;
412              *             }
413              *         }
414              *     }
415              *
416              * This results in getFoo() returning Class<? extends Iden>, which looks fine on the surface, but gets more
417              * dicey when we throw in:
418              *
419              *     typedef bar-ref {
420              *         type identityref {
421              *             base iden;
422              *         }
423              *     }
424              *
425              *     container bar {
426              *         leaf bar {
427              *             type bar-ref;
428              *         }
429              *     }
430              *
431              * Now we have competing requirements: typedef would like us to use encapsulation to capture the defined
432              * type, while getBar() wants us to retain shape with getFoo(), as it should not matter how the identityref
433              * is formed.
434              *
435              * In this particular case getFoo() won just after the Binding Spec was frozen, hence we do not generate
436              * an encapsulation for identityref typedefs.
437              *
438              * In case you are thinking we could get by having foo-ref map to a subclass of Iden, that is not a good
439              * option, as it would look as though it is the product of a different construct:
440              *
441              *     identity bar-ref {
442              *         base iden;
443              *     }
444              *
445              * Leading to a rather nice namespace clash and also slight incompatibility with unknown third-party
446              * sub-identities of iden.
447              *
448              * The story behind leafrefs is probably similar, but that needs to be ascertained.
449              */
450             return null;
451         }
452
453         final Module module = findParentModule(schemaContext, parentNode);
454         if (module != null) {
455             final Map<Optional<Revision>, Map<String, Type>> modulesByDate = genTypeDefsContextMap.get(
456                 module.getName());
457             final Map<String, Type> genTOs = modulesByDate.get(module.getRevision());
458             if (genTOs != null) {
459                 return genTOs.get(typeDefinition.getQName().getLocalName());
460             }
461         }
462         return null;
463     }
464
465     /**
466      * Gets base type definition for <code>extendTypeDef</code>. The method is
467      * recursively called until non <code>ExtendedType</code> type is found.
468      *
469      * @param extendTypeDef
470      *            type definition for which is the base type definition sought
471      * @return type definition which is base type for <code>extendTypeDef</code>
472      * @throws IllegalArgumentException
473      *             if <code>extendTypeDef</code> equal null
474      */
475     private static TypeDefinition<?> baseTypeDefForExtendedType(final TypeDefinition<?> extendTypeDef) {
476         Preconditions.checkArgument(extendTypeDef != null, "Type Definition reference cannot be NULL!");
477
478         TypeDefinition<?> ret = extendTypeDef;
479         while (ret.getBaseType() != null) {
480             ret = ret.getBaseType();
481         }
482
483         return ret;
484     }
485
486     /**
487      * Converts <code>leafrefType</code> to JAVA <code>Type</code>. The path of <code>leafrefType</code> is followed
488      * to find referenced node and its <code>Type</code> is returned.
489      *
490      * @param leafrefType leafref type definition for which is the type sought
491      * @param parentNode parent node of the leaf being resolved
492      * @param inGrouping true if we are resolving the type within a grouping.
493      * @return JAVA <code>Type</code> of data schema node which is referenced in <code>leafrefType</code>
494      * @throws IllegalArgumentException
495      *             <ul>
496      *             <li>if <code>leafrefType</code> equal null</li>
497      *             <li>if path statement of <code>leafrefType</code> equal null</li>
498      *             </ul>
499      */
500     @VisibleForTesting
501     Type provideTypeForLeafref(final LeafrefTypeDefinition leafrefType, final SchemaNode parentNode,
502             final boolean inGrouping) {
503         Preconditions.checkArgument(leafrefType != null, "Leafref Type Definition reference cannot be NULL!");
504
505         final PathExpression xpath = leafrefType.getPathStatement();
506         Preconditions.checkArgument(xpath != null, "The Path Statement for Leafref Type Definition cannot be NULL!");
507
508         final String strXPath = xpath.getOriginalString();
509         if (strXPath.indexOf('[') != -1) {
510             // XXX: why are we special-casing this?
511             return Types.objectType();
512         }
513
514         final Module module = findParentModule(schemaContext, parentNode);
515         Preconditions.checkArgument(module != null, "Failed to find module for parent %s", parentNode);
516
517         final SchemaNode dataNode;
518         if (xpath.isAbsolute()) {
519             dataNode = findDataTreeSchemaNode(schemaContext, module.getQNameModule(), xpath);
520         } else {
521             dataNode = findDataSchemaNodeForRelativeXPath(schemaContext, module, parentNode, xpath);
522             if (dataNode == null && inGrouping) {
523                 // Relative path within a grouping may end up being unresolvable because it may refer outside
524                 // the grouping, in which case it is polymorphic based on instantiation, for example:
525                 //
526                 // grouping foo {
527                 //     leaf foo {
528                 //         type leafref {
529                 //             path "../../bar";
530                 //         }
531                 //     }
532                 // }
533                 //
534                 // container one {
535                 //     leaf bar {
536                 //         type string;
537                 //     }
538                 //     uses foo;
539                 // }
540                 //
541                 // container two {
542                 //     leaf bar {
543                 //         type uint16;
544                 //     }
545                 //     uses foo;
546                 // }
547                 LOG.debug("Leafref type {} not found in parent {}, assuming polymorphic object", leafrefType,
548                     parentNode);
549                 return Types.objectType();
550             }
551         }
552         Preconditions.checkArgument(dataNode != null, "Failed to find leafref target: %s in module %s (%s)",
553                 strXPath, this.getParentModule(parentNode).getName(), parentNode.getQName().getModule());
554
555         // FIXME: this block seems to be some weird magic hack. Analyze and refactor it.
556         Type returnType = null;
557         if (leafContainsEnumDefinition(dataNode)) {
558             returnType = referencedTypes.get(dataNode.getPath());
559         } else if (leafListContainsEnumDefinition(dataNode)) {
560             returnType = Types.listTypeFor(referencedTypes.get(dataNode.getPath()));
561         }
562         if (returnType == null) {
563             returnType = resolveTypeFromDataSchemaNode(dataNode);
564         }
565         Preconditions.checkArgument(returnType != null, "Failed to find leafref target: %s in module %s (%s)",
566                 strXPath, this.getParentModule(parentNode).getName(), parentNode.getQName().getModule(), this);
567         return returnType;
568     }
569
570     /**
571      * Checks if <code>dataNode</code> is <code>LeafSchemaNode</code> and if it so then checks if it is of type
572      * <code>EnumTypeDefinition</code>.
573      *
574      * @param dataNode data schema node for which is checked if it is leaf and if it is of enum type
575      * @return boolean value
576      *         <ul>
577      *         <li>true - if <code>dataNode</code> is leaf of type enumeration</li>
578      *         <li>false - other cases</li>
579      *         </ul>
580      */
581     private static boolean leafContainsEnumDefinition(final SchemaNode dataNode) {
582         if (dataNode instanceof LeafSchemaNode) {
583             final LeafSchemaNode leaf = (LeafSchemaNode) dataNode;
584             return CompatUtils.compatType(leaf) instanceof EnumTypeDefinition;
585         }
586         return false;
587     }
588
589     /**
590      * Checks if <code>dataNode</code> is <code>LeafListSchemaNode</code> and if it so then checks if it is of type
591      * <code>EnumTypeDefinition</code>.
592      *
593      * @param dataNode data schema node for which is checked if it is leaflist and if it is of enum type
594      * @return boolean value
595      *         <ul>
596      *         <li>true - if <code>dataNode</code> is leaflist of type
597      *         enumeration</li>
598      *         <li>false - other cases</li>
599      *         </ul>
600      */
601     private static boolean leafListContainsEnumDefinition(final SchemaNode dataNode) {
602         if (dataNode instanceof LeafListSchemaNode) {
603             final LeafListSchemaNode leafList = (LeafListSchemaNode) dataNode;
604             return leafList.getType() instanceof EnumTypeDefinition;
605         }
606         return false;
607     }
608
609     /**
610      * Converts <code>enumTypeDef</code> to {@link Enumeration enumeration}.
611      *
612      * @param enumTypeDef enumeration type definition which is converted to enumeration
613      * @param enumName string with name which is used as the enumeration name
614      * @return enumeration type which is built with data (name, enum values) from <code>enumTypeDef</code>
615      * @throws IllegalArgumentException
616      *             <ul>
617      *             <li>if <code>enumTypeDef</code> equals null</li>
618      *             <li>if enum values of <code>enumTypeDef</code> equal null</li>
619      *             <li>if Q name of <code>enumTypeDef</code> equal null</li>
620      *             <li>if name of <code>enumTypeDef</code> equal null</li>
621      *             </ul>
622      */
623     private Enumeration provideTypeForEnum(final EnumTypeDefinition enumTypeDef, final String enumName,
624             final SchemaNode parentNode) {
625         Preconditions.checkArgument(enumTypeDef != null, "EnumTypeDefinition reference cannot be NULL!");
626         Preconditions.checkArgument(enumTypeDef.getValues() != null,
627                 "EnumTypeDefinition MUST contain at least ONE value definition!");
628         Preconditions.checkArgument(enumTypeDef.getQName() != null, "EnumTypeDefinition MUST contain NON-NULL QName!");
629         Preconditions.checkArgument(enumTypeDef.getQName().getLocalName() != null,
630                 "Local Name in EnumTypeDefinition QName cannot be NULL!");
631
632         final Module module = findParentModule(schemaContext, parentNode);
633         final AbstractEnumerationBuilder enumBuilder = newEnumerationBuilder(JavaTypeName.create(
634             BindingMapping.getRootPackageName(module.getQNameModule()), BindingMapping.getClassName(enumName)));
635         addEnumDescription(enumBuilder, enumTypeDef);
636         enumTypeDef.getReference().ifPresent(enumBuilder::setReference);
637         enumBuilder.setModuleName(module.getName());
638         enumBuilder.setSchemaPath(enumTypeDef.getPath());
639         enumBuilder.updateEnumPairsFromEnumTypeDef(enumTypeDef);
640         return enumBuilder.toInstance(null);
641     }
642
643     /**
644      * Adds enumeration to <code>typeBuilder</code>. The enumeration data are taken from <code>enumTypeDef</code>.
645      *
646      * @param enumTypeDef enumeration type definition is source of enumeration data for <code>typeBuilder</code>
647      * @param enumName string with the name of enumeration
648      * @param typeBuilder generated type builder to which is enumeration added
649      * @return enumeration type which contains enumeration data form <code>enumTypeDef</code>
650      * @throws IllegalArgumentException
651      *             <ul>
652      *             <li>if <code>enumTypeDef</code> equals null</li>
653      *             <li>if enum values of <code>enumTypeDef</code> equal null</li>
654      *             <li>if Q name of <code>enumTypeDef</code> equal null</li>
655      *             <li>if name of <code>enumTypeDef</code> equal null</li>
656      *             <li>if name of <code>typeBuilder</code> equal null</li>
657      *             </ul>
658      *
659      */
660     private Enumeration addInnerEnumerationToTypeBuilder(final EnumTypeDefinition enumTypeDef,
661             final String enumName, final GeneratedTypeBuilderBase<?> typeBuilder) {
662         Preconditions.checkArgument(enumTypeDef != null, "EnumTypeDefinition reference cannot be NULL!");
663         Preconditions.checkArgument(enumTypeDef.getValues() != null,
664                 "EnumTypeDefinition MUST contain at least ONE value definition!");
665         Preconditions.checkArgument(enumTypeDef.getQName() != null, "EnumTypeDefinition MUST contain NON-NULL QName!");
666         Preconditions.checkArgument(enumTypeDef.getQName().getLocalName() != null,
667                 "Local Name in EnumTypeDefinition QName cannot be NULL!");
668         Preconditions.checkArgument(typeBuilder != null, "Generated Type Builder reference cannot be NULL!");
669
670         final EnumBuilder enumBuilder = typeBuilder.addEnumeration(BindingMapping.getClassName(enumName));
671
672         addEnumDescription(enumBuilder, enumTypeDef);
673         enumBuilder.updateEnumPairsFromEnumTypeDef(enumTypeDef);
674         return enumBuilder.toInstance(enumBuilder);
675     }
676
677     public abstract void addEnumDescription(EnumBuilder enumBuilder, EnumTypeDefinition enumTypeDef);
678
679     public abstract AbstractEnumerationBuilder newEnumerationBuilder(JavaTypeName identifier);
680
681     public abstract GeneratedTOBuilder newGeneratedTOBuilder(JavaTypeName identifier);
682
683     public abstract GeneratedTypeBuilder newGeneratedTypeBuilder(JavaTypeName identifier);
684
685     /**
686      * Converts the pattern constraints to the list of the strings which represents these constraints.
687      *
688      * @param patternConstraints list of pattern constraints
689      * @return list of strings which represents the constraint patterns
690      */
691     public abstract Map<String, String> resolveRegExpressions(List<PatternConstraint> patternConstraints);
692
693     abstract void addCodegenInformation(GeneratedTypeBuilderBase<?> genTOBuilder, TypeDefinition<?> typeDef);
694
695     /**
696      * Converts the pattern constraints from <code>typedef</code> to the list of the strings which represents these
697      * constraints.
698      *
699      * @param typedef extended type in which are the pattern constraints sought
700      * @return list of strings which represents the constraint patterns
701      * @throws IllegalArgumentException if <code>typedef</code> equals null
702      *
703      */
704     private Map<String, String> resolveRegExpressionsFromTypedef(final TypeDefinition<?> typedef) {
705         if (!(typedef instanceof StringTypeDefinition)) {
706             return ImmutableMap.of();
707         }
708
709         // TODO: run diff against base ?
710         return resolveRegExpressions(((StringTypeDefinition) typedef).getPatternConstraints());
711     }
712
713     /**
714      * Converts <code>dataNode</code> to JAVA <code>Type</code>.
715      *
716      * @param dataNode contains information about YANG type
717      * @return JAVA <code>Type</code> representation of <code>dataNode</code>
718      */
719     private Type resolveTypeFromDataSchemaNode(final SchemaNode dataNode) {
720         Type returnType = null;
721         if (dataNode != null) {
722             if (dataNode instanceof LeafSchemaNode) {
723                 final LeafSchemaNode leaf = (LeafSchemaNode) dataNode;
724                 final TypeDefinition<?> type = CompatUtils.compatType(leaf);
725                 returnType = javaTypeForSchemaDefinitionType(type, leaf);
726             } else if (dataNode instanceof LeafListSchemaNode) {
727                 final LeafListSchemaNode leafList = (LeafListSchemaNode) dataNode;
728                 returnType = javaTypeForSchemaDefinitionType(leafList.getType(), leafList);
729             }
730         }
731         return returnType;
732     }
733
734     /**
735      * Passes through all modules and through all its type definitions and convert it to generated types.
736      *
737      * <p>
738      * The modules are first sorted by mutual dependencies. The modules are sequentially passed. All type definitions
739      * of a module are at the beginning sorted so that type definition with less amount of references to other type
740      * definition are processed first.<br>
741      * For each module is created mapping record in the map
742      * {@link AbstractTypeProvider#genTypeDefsContextMap genTypeDefsContextMap}
743      * which map current module name to the map which maps type names to returned types (generated types).
744      */
745     private void resolveTypeDefsFromContext() {
746         final List<Module> modulesSortedByDependency = ModuleDependencySort.sort(schemaContext.getModules());
747
748         for (Module module : modulesSortedByDependency) {
749             Map<Optional<Revision>, Map<String, Type>> dateTypeMap = genTypeDefsContextMap.computeIfAbsent(
750                 module.getName(), key -> new HashMap<>());
751             dateTypeMap.put(module.getRevision(), Collections.emptyMap());
752             genTypeDefsContextMap.put(module.getName(), dateTypeMap);
753         }
754
755         for (Module module : modulesSortedByDependency) {
756             if (module != null) {
757                 final String basePackageName = BindingMapping.getRootPackageName(module.getQNameModule());
758                 if (basePackageName != null) {
759                     final List<TypeDefinition<?>> typeDefinitions = TypedefResolver.getAllTypedefs(module);
760                     for (TypeDefinition<?> typedef : sortTypeDefinitionAccordingDepth(typeDefinitions)) {
761                         typedefToGeneratedType(basePackageName, module, typedef);
762                     }
763                 }
764             }
765         }
766     }
767
768     /**
769      * Create Type for specified type definition.
770      *
771      * @param basePackageName string with name of package to which the module belongs
772      * @param module string with the name of the module for to which the <code>typedef</code> belongs
773      * @param typedef type definition of the node for which should be created JAVA <code>Type</code>
774      *                (usually generated TO)
775      * @return JAVA <code>Type</code> representation of <code>typedef</code> or
776      *         <code>null</code> value if <code>basePackageName</code> or
777      *         <code>modulName</code> or <code>typedef</code> or Q name of
778      *         <code>typedef</code> equals <code>null</code>
779      */
780     private Type typedefToGeneratedType(final String basePackageName, final Module module,
781             final TypeDefinition<?> typedef) {
782         final TypeDefinition<?> baseTypedef = typedef.getBaseType();
783
784         // See generatedTypeForExtendedDefinitionType() above for rationale behind this special case.
785         if (baseTypedef instanceof LeafrefTypeDefinition || baseTypedef instanceof IdentityrefTypeDefinition) {
786             return null;
787         }
788
789         final String typedefName = typedef.getQName().getLocalName();
790
791         final Type returnType;
792         if (baseTypedef.getBaseType() != null) {
793             returnType = provideGeneratedTOFromExtendedType(typedef, baseTypedef, basePackageName,
794                 module.getName());
795         } else if (baseTypedef instanceof UnionTypeDefinition) {
796             final GeneratedTOBuilder genTOBuilder = provideGeneratedTOBuilderForUnionTypeDef(
797                 JavaTypeName.create(basePackageName, BindingMapping.getClassName(typedef.getQName())),
798                 (UnionTypeDefinition) baseTypedef, typedef);
799             genTOBuilder.setTypedef(true);
800             genTOBuilder.setIsUnion(true);
801             addUnitsToGenTO(genTOBuilder, typedef.getUnits().orElse(null));
802             makeSerializable(genTOBuilder);
803             returnType = genTOBuilder.build();
804
805             // Define a corresponding union builder. Typedefs are always anchored at a Java package root,
806             // so we are placing the builder alongside the union.
807             final GeneratedTOBuilder unionBuilder = newGeneratedTOBuilder(
808                 JavaTypeName.create(genTOBuilder.getPackageName(), genTOBuilder.getName() + "Builder"));
809             unionBuilder.setIsUnionBuilder(true);
810             final MethodSignatureBuilder method = unionBuilder.addMethod("getDefaultInstance");
811             method.setReturnType(returnType);
812             method.addParameter(Types.STRING, "defaultValue");
813             method.setAccessModifier(AccessModifier.PUBLIC);
814             method.setStatic(true);
815             additionalTypes.computeIfAbsent(module, key -> new HashSet<>()).add(unionBuilder.build());
816         } else if (baseTypedef instanceof EnumTypeDefinition) {
817             // enums are automatically Serializable
818             final EnumTypeDefinition enumTypeDef = (EnumTypeDefinition) baseTypedef;
819             // TODO units for typedef enum
820             returnType = provideTypeForEnum(enumTypeDef, typedefName, typedef);
821         } else if (baseTypedef instanceof BitsTypeDefinition) {
822             final GeneratedTOBuilder genTOBuilder = provideGeneratedTOBuilderForBitsTypeDefinition(
823                 JavaTypeName.create(basePackageName, BindingMapping.getClassName(typedef.getQName())),
824                 (BitsTypeDefinition) baseTypedef, module.getName());
825             genTOBuilder.setTypedef(true);
826             addUnitsToGenTO(genTOBuilder, typedef.getUnits().orElse(null));
827             makeSerializable(genTOBuilder);
828             returnType = genTOBuilder.build();
829         } else {
830             final Type javaType = javaTypeForSchemaDefinitionType(baseTypedef, typedef);
831             returnType = wrapJavaTypeIntoTO(basePackageName, typedef, javaType, module.getName());
832         }
833         if (returnType != null) {
834             final Map<Optional<Revision>, Map<String, Type>> modulesByDate =
835                     genTypeDefsContextMap.get(module.getName());
836             final Optional<Revision> moduleRevision = module.getRevision();
837             Map<String, Type> typeMap = modulesByDate.get(moduleRevision);
838             if (typeMap != null) {
839                 if (typeMap.isEmpty()) {
840                     typeMap = new HashMap<>(4);
841                     modulesByDate.put(moduleRevision, typeMap);
842                 }
843                 typeMap.put(typedefName, returnType);
844             }
845             return returnType;
846         }
847         return null;
848     }
849
850     /**
851      * Wraps base YANG type to generated TO.
852      *
853      * @param basePackageName string with name of package to which the module belongs
854      * @param typedef type definition which is converted to the TO
855      * @param javaType JAVA <code>Type</code> to which is <code>typedef</code> mapped
856      * @return generated transfer object which represent<code>javaType</code>
857      */
858     private GeneratedTransferObject wrapJavaTypeIntoTO(final String basePackageName, final TypeDefinition<?> typedef,
859             final Type javaType, final String moduleName) {
860         requireNonNull(javaType, "javaType cannot be null");
861
862         final GeneratedTOBuilder genTOBuilder = typedefToTransferObject(basePackageName, typedef, moduleName);
863         genTOBuilder.setRestrictions(BindingGeneratorUtil.getRestrictions(typedef));
864         final GeneratedPropertyBuilder genPropBuilder = genTOBuilder.addProperty("value");
865         genPropBuilder.setReturnType(javaType);
866         genTOBuilder.addEqualsIdentity(genPropBuilder);
867         genTOBuilder.addHashIdentity(genPropBuilder);
868         genTOBuilder.addToStringProperty(genPropBuilder);
869         genTOBuilder.addImplementsType(TYPE_OBJECT);
870         if (typedef.getStatus() == Status.DEPRECATED) {
871             genTOBuilder.addAnnotation("java.lang", "Deprecated");
872         }
873         if (javaType instanceof ConcreteType && "String".equals(javaType.getName()) && typedef.getBaseType() != null) {
874             addStringRegExAsConstant(genTOBuilder, resolveRegExpressionsFromTypedef(typedef));
875         }
876         addUnitsToGenTO(genTOBuilder, typedef.getUnits().orElse(null));
877         genTOBuilder.setTypedef(true);
878         makeSerializable(genTOBuilder);
879         return genTOBuilder.build();
880     }
881
882     /**
883      * Converts output list of generated TO builders to one TO builder (first
884      * from list) which contains the remaining builders as its enclosing TO.
885      *
886      * @param typeName new type identifier
887      * @param typedef type definition which should be of type {@link UnionTypeDefinition}
888      * @return generated TO builder with the list of enclosed generated TO builders
889      */
890     public GeneratedTOBuilder provideGeneratedTOBuilderForUnionTypeDef(final JavaTypeName typeName,
891             final UnionTypeDefinition typedef, final TypeDefinition<?> parentNode) {
892         final List<GeneratedTOBuilder> builders = provideGeneratedTOBuildersForUnionTypeDef(typeName, typedef,
893             parentNode);
894         Preconditions.checkState(!builders.isEmpty(), "No GeneratedTOBuilder objects generated from union %s", typedef);
895
896         final GeneratedTOBuilder resultTOBuilder = builders.remove(0);
897         builders.forEach(resultTOBuilder::addEnclosingTransferObject);
898         return resultTOBuilder;
899     }
900
901     /**
902      * Converts <code>typedef</code> to generated TO with <code>typeDefName</code>. Every union type from
903      * <code>typedef</code> is added to generated TO builder as property.
904      *
905      * @param typeName new type identifier
906      * @param typedef type definition which should be of type <code>UnionTypeDefinition</code>
907      * @return generated TO builder which represents <code>typedef</code>
908      * @throws NullPointerException
909      *             <ul>
910      *             <li>if <code>basePackageName</code> is null</li>
911      *             <li>if <code>typedef</code> is null</li>
912      *             <li>if Qname of <code>typedef</code> is null</li>
913      *             </ul>
914      */
915     public List<GeneratedTOBuilder> provideGeneratedTOBuildersForUnionTypeDef(final JavaTypeName typeName,
916             final UnionTypeDefinition typedef, final SchemaNode parentNode) {
917         requireNonNull(typedef, "Type Definition cannot be NULL!");
918         requireNonNull(typedef.getQName(), "Type definition QName cannot be NULL!");
919
920         final List<GeneratedTOBuilder> generatedTOBuilders = new ArrayList<>();
921         final List<TypeDefinition<?>> unionTypes = typedef.getTypes();
922         final Module module = findParentModule(schemaContext, parentNode);
923
924         final GeneratedTOBuilder unionGenTOBuilder = newGeneratedTOBuilder(typeName);
925         unionGenTOBuilder.setIsUnion(true);
926         unionGenTOBuilder.setSchemaPath(typedef.getPath());
927         unionGenTOBuilder.setModuleName(module.getName());
928         unionGenTOBuilder.addImplementsType(TYPE_OBJECT);
929         addCodegenInformation(unionGenTOBuilder, typedef);
930         generatedTOBuilders.add(unionGenTOBuilder);
931
932         // Pattern string is the key, XSD regex is the value. The reason for this choice is that the pattern carries
933         // also negation information and hence guarantees uniqueness.
934         final Map<String, String> expressions = new HashMap<>();
935         for (TypeDefinition<?> unionType : unionTypes) {
936             final String unionTypeName = unionType.getQName().getLocalName();
937
938             // If we have a base type we should follow the type definition backwards, except for identityrefs, as those
939             // do not follow type encapsulation -- we use the general case for that.
940             if (unionType.getBaseType() != null  && !(unionType instanceof IdentityrefTypeDefinition)) {
941                 resolveExtendedSubtypeAsUnion(unionGenTOBuilder, unionType, expressions, parentNode);
942             } else if (unionType instanceof UnionTypeDefinition) {
943                 generatedTOBuilders.addAll(resolveUnionSubtypeAsUnion(unionGenTOBuilder,
944                     (UnionTypeDefinition) unionType, parentNode));
945             } else if (unionType instanceof EnumTypeDefinition) {
946                 final Enumeration enumeration = addInnerEnumerationToTypeBuilder((EnumTypeDefinition) unionType,
947                         unionTypeName, unionGenTOBuilder);
948                 updateUnionTypeAsProperty(unionGenTOBuilder, enumeration, unionTypeName);
949             } else {
950                 final Type javaType = javaTypeForSchemaDefinitionType(unionType, parentNode);
951                 updateUnionTypeAsProperty(unionGenTOBuilder, javaType, unionTypeName);
952             }
953         }
954         addStringRegExAsConstant(unionGenTOBuilder, expressions);
955
956         storeGenTO(typedef, unionGenTOBuilder, parentNode);
957
958         return generatedTOBuilders;
959     }
960
961     /**
962      * Wraps code which handles the case when union subtype is also of the type <code>UnionType</code>.
963      *
964      * <p>
965      * In this case the new generated TO is created for union subtype (recursive call of method
966      * {@link #provideGeneratedTOBuildersForUnionTypeDef(String, UnionTypeDefinition, String, SchemaNode)}
967      * provideGeneratedTOBuilderForUnionTypeDef} and in parent TO builder <code>parentUnionGenTOBuilder</code> is
968      * created property which type is equal to new generated TO.
969      *
970      * @param parentUnionGenTOBuilder generated TO builder to which is the property with the child union subtype added
971      * @param basePackageName string with the name of the module package
972      * @param unionSubtype type definition which represents union subtype
973      * @return list of generated TO builders. The number of the builders can be bigger one due to recursive call of
974      *         <code>provideGeneratedTOBuildersForUnionTypeDef</code> method.
975      */
976     private List<GeneratedTOBuilder> resolveUnionSubtypeAsUnion(final GeneratedTOBuilder parentUnionGenTOBuilder,
977             final UnionTypeDefinition unionSubtype, final SchemaNode parentNode) {
978         final JavaTypeName newTOBuilderName = parentUnionGenTOBuilder.getIdentifier().createSibling(
979             provideAvailableNameForGenTOBuilder(parentUnionGenTOBuilder.getName()));
980         final List<GeneratedTOBuilder> subUnionGenTOBUilders = provideGeneratedTOBuildersForUnionTypeDef(
981             newTOBuilderName, unionSubtype, parentNode);
982
983         final GeneratedPropertyBuilder propertyBuilder;
984         propertyBuilder = parentUnionGenTOBuilder.addProperty(BindingMapping.getPropertyName(
985             newTOBuilderName.simpleName()));
986         propertyBuilder.setReturnType(subUnionGenTOBUilders.get(0).build());
987         parentUnionGenTOBuilder.addEqualsIdentity(propertyBuilder);
988         parentUnionGenTOBuilder.addToStringProperty(propertyBuilder);
989
990         return subUnionGenTOBUilders;
991     }
992
993     /**
994      * Wraps code which handle case when union subtype is of the type <code>ExtendedType</code>. If TO for this type
995      * already exists it is used for the creation of the property in <code>parentUnionGenTOBuilder</code>. Otherwise
996      * the base type is used for the property creation.
997      *
998      * @param parentUnionGenTOBuilder generated TO builder in which new property is created
999      * @param unionSubtype type definition of the <code>ExtendedType</code> type which represents union subtype
1000      * @param expressions list of strings with the regular expressions
1001      * @param parentNode parent Schema Node for Extended Subtype
1002      */
1003     private void resolveExtendedSubtypeAsUnion(final GeneratedTOBuilder parentUnionGenTOBuilder,
1004             final TypeDefinition<?> unionSubtype, final Map<String, String> expressions, final SchemaNode parentNode) {
1005         final String unionTypeName = unionSubtype.getQName().getLocalName();
1006         final Type genTO = findGenTO(unionTypeName, unionSubtype);
1007         if (genTO != null) {
1008             updateUnionTypeAsProperty(parentUnionGenTOBuilder, genTO, genTO.getName());
1009             return;
1010         }
1011
1012         final TypeDefinition<?> baseType = baseTypeDefForExtendedType(unionSubtype);
1013         if (unionTypeName.equals(baseType.getQName().getLocalName())) {
1014             final Type javaType = BaseYangTypes.BASE_YANG_TYPES_PROVIDER.javaTypeForSchemaDefinitionType(baseType,
1015                 parentNode, BindingGeneratorUtil.getRestrictions(unionSubtype));
1016             if (javaType != null) {
1017                 updateUnionTypeAsProperty(parentUnionGenTOBuilder, javaType, unionTypeName);
1018             }
1019         } else if (baseType instanceof LeafrefTypeDefinition) {
1020             final Type javaType = javaTypeForSchemaDefinitionType(baseType, parentNode);
1021             boolean typeExist = false;
1022             for (GeneratedPropertyBuilder generatedPropertyBuilder : parentUnionGenTOBuilder.getProperties()) {
1023                 final Type origType = ((GeneratedPropertyBuilderImpl) generatedPropertyBuilder).getReturnType();
1024                 if (origType != null && javaType != null && javaType == origType) {
1025                     typeExist = true;
1026                     break;
1027                 }
1028             }
1029             if (!typeExist && javaType != null) {
1030                 updateUnionTypeAsProperty(parentUnionGenTOBuilder, javaType,
1031                     javaType.getName() + parentUnionGenTOBuilder.getName() + "Value");
1032             }
1033         }
1034         if (baseType instanceof StringTypeDefinition) {
1035             expressions.putAll(resolveRegExpressionsFromTypedef(unionSubtype));
1036         }
1037     }
1038
1039     /**
1040      * Searches for generated TO for <code>searchedTypeDef</code> type  definition
1041      * in {@link #genTypeDefsContextMap genTypeDefsContextMap}.
1042      *
1043      * @param searchedTypeName string with name of <code>searchedTypeDef</code>
1044      * @return generated TO for <code>searchedTypeDef</code> or <code>null</code> it it doesn't exist
1045      */
1046     private Type findGenTO(final String searchedTypeName, final SchemaNode parentNode) {
1047         final Module typeModule = findParentModule(schemaContext, parentNode);
1048         if (typeModule != null && typeModule.getName() != null) {
1049             final Map<Optional<Revision>, Map<String, Type>> modulesByDate = genTypeDefsContextMap.get(
1050                 typeModule.getName());
1051             final Map<String, Type> genTOs = modulesByDate.get(typeModule.getRevision());
1052             if (genTOs != null) {
1053                 return genTOs.get(searchedTypeName);
1054             }
1055         }
1056         return null;
1057     }
1058
1059     /**
1060      * Stores generated TO created from <code>genTOBuilder</code> for <code>newTypeDef</code>
1061      * to {@link #genTypeDefsContextMap genTypeDefsContextMap} if the module for <code>newTypeDef</code> exists.
1062      *
1063      * @param newTypeDef type definition for which is <code>genTOBuilder</code> created
1064      * @param genTOBuilder generated TO builder which is converted to generated TO and stored
1065      */
1066     private void storeGenTO(final TypeDefinition<?> newTypeDef, final GeneratedTOBuilder genTOBuilder,
1067             final SchemaNode parentNode) {
1068         if (!(newTypeDef instanceof UnionTypeDefinition)) {
1069             final Module parentModule = findParentModule(schemaContext, parentNode);
1070             if (parentModule != null && parentModule.getName() != null) {
1071                 final Map<Optional<Revision>, Map<String, Type>> modulesByDate = genTypeDefsContextMap.get(
1072                     parentModule.getName());
1073                 final Map<String, Type> genTOsMap = modulesByDate.get(parentModule.getRevision());
1074                 genTOsMap.put(newTypeDef.getQName().getLocalName(), genTOBuilder.build());
1075             }
1076         }
1077     }
1078
1079     /**
1080      * Adds a new property with the name <code>propertyName</code> and with type <code>type</code>
1081      * to <code>unonGenTransObject</code>.
1082      *
1083      * @param unionGenTransObject generated TO to which should be property added
1084      * @param type JAVA <code>type</code> of the property which should be added to <code>unionGentransObject</code>
1085      * @param propertyName string with name of property which should be added to <code>unionGentransObject</code>
1086      */
1087     private static void updateUnionTypeAsProperty(final GeneratedTOBuilder unionGenTransObject, final Type type,
1088             final String propertyName) {
1089         if (unionGenTransObject != null && type != null && !unionGenTransObject.containsProperty(propertyName)) {
1090             final GeneratedPropertyBuilder propBuilder = unionGenTransObject
1091                     .addProperty(BindingMapping.getPropertyName(propertyName));
1092             propBuilder.setReturnType(type);
1093
1094             unionGenTransObject.addEqualsIdentity(propBuilder);
1095             unionGenTransObject.addHashIdentity(propBuilder);
1096             unionGenTransObject.addToStringProperty(propBuilder);
1097         }
1098     }
1099
1100     /**
1101      * Converts <code>typedef</code> to the generated TO builder.
1102      *
1103      * @param basePackageName string with name of package to which the module belongs
1104      * @param typedef type definition from which is the generated TO builder created
1105      * @return generated TO builder which contains data from <code>typedef</code> and <code>basePackageName</code>
1106      */
1107     private GeneratedTOBuilder typedefToTransferObject(final String basePackageName,
1108             final TypeDefinition<?> typedef, final String moduleName) {
1109         JavaTypeName name = renames.get(typedef);
1110         if (name == null) {
1111             name = JavaTypeName.create(
1112                 BindingGeneratorUtil.packageNameForGeneratedType(basePackageName, typedef.getPath()),
1113                 BindingMapping.getClassName(typedef.getQName().getLocalName()));
1114         }
1115
1116         final GeneratedTOBuilder newType = newGeneratedTOBuilder(name);
1117         newType.setSchemaPath(typedef.getPath());
1118         newType.setModuleName(moduleName);
1119         addCodegenInformation(newType, typedef);
1120         return newType;
1121     }
1122
1123     /**
1124      * Converts <code>typeDef</code> which should be of the type <code>BitsTypeDefinition</code>
1125      * to <code>GeneratedTOBuilder</code>. All the bits of the typeDef are added to returning generated TO as
1126      * properties.
1127      *
1128      * @param typeName new type identifier
1129      * @param typeDef type definition from which is the generated TO builder created
1130      * @return generated TO builder which represents <code>typeDef</code>
1131      * @throws IllegalArgumentException
1132      *             <ul>
1133      *             <li>if <code>typeDef</code> equals null</li>
1134      *             <li>if <code>basePackageName</code> equals null</li>
1135      *             </ul>
1136      */
1137     public GeneratedTOBuilder provideGeneratedTOBuilderForBitsTypeDefinition(final JavaTypeName typeName,
1138             final BitsTypeDefinition typeDef, final String moduleName) {
1139         final GeneratedTOBuilder genTOBuilder = newGeneratedTOBuilder(typeName);
1140         genTOBuilder.setSchemaPath(typeDef.getPath());
1141         genTOBuilder.setModuleName(moduleName);
1142         genTOBuilder.setBaseType(typeDef);
1143         genTOBuilder.addImplementsType(TYPE_OBJECT);
1144         addCodegenInformation(genTOBuilder, typeDef);
1145
1146         for (Bit bit : typeDef.getBits()) {
1147             final String name = bit.getName();
1148             GeneratedPropertyBuilder genPropertyBuilder = genTOBuilder.addProperty(
1149                 BindingMapping.getPropertyName(name));
1150             genPropertyBuilder.setReadOnly(true);
1151             genPropertyBuilder.setReturnType(BaseYangTypes.BOOLEAN_TYPE);
1152
1153             genTOBuilder.addEqualsIdentity(genPropertyBuilder);
1154             genTOBuilder.addHashIdentity(genPropertyBuilder);
1155             genTOBuilder.addToStringProperty(genPropertyBuilder);
1156         }
1157
1158         return genTOBuilder;
1159     }
1160
1161     /**
1162      * Adds to the <code>genTOBuilder</code> the constant which contains regular expressions from
1163      * the <code>regularExpressions</code>.
1164      *
1165      * @param genTOBuilder generated TO builder to which are <code>regular expressions</code> added
1166      * @param expressions list of string which represent regular expressions
1167      */
1168     private static void addStringRegExAsConstant(final GeneratedTOBuilder genTOBuilder,
1169             final Map<String, String> expressions) {
1170         if (!expressions.isEmpty()) {
1171             genTOBuilder.addConstant(Types.listTypeFor(BaseYangTypes.STRING_TYPE), TypeConstants.PATTERN_CONSTANT_NAME,
1172                 ImmutableMap.copyOf(expressions));
1173         }
1174     }
1175
1176     /**
1177      * Creates generated TO with data about inner extended type <code>innerExtendedType</code>, about the package name
1178      * <code>typedefName</code> and about the generated TO name <code>typedefName</code>.
1179      *
1180      * <p>
1181      * It is assumed that <code>innerExtendedType</code> is already present in
1182      * {@link AbstractTypeProvider#genTypeDefsContextMap genTypeDefsContextMap} to be possible set it as extended type
1183      * for the returning generated TO.
1184      *
1185      * @param typedef Type Definition
1186      * @param innerExtendedType extended type which is part of some other extended type
1187      * @param basePackageName string with the package name of the module
1188      * @param moduleName Module Name
1189      * @return generated TO which extends generated TO for <code>innerExtendedType</code>
1190      * @throws IllegalArgumentException
1191      *             <ul>
1192      *             <li>if <code>extendedType</code> equals null</li>
1193      *             <li>if <code>basePackageName</code> equals null</li>
1194      *             <li>if <code>typedefName</code> equals null</li>
1195      *             </ul>
1196      */
1197     private GeneratedTransferObject provideGeneratedTOFromExtendedType(final TypeDefinition<?> typedef,
1198             final TypeDefinition<?> innerExtendedType, final String basePackageName, final String moduleName) {
1199         Preconditions.checkArgument(innerExtendedType != null, "Extended type cannot be NULL!");
1200         Preconditions.checkArgument(basePackageName != null, "String with base package name cannot be NULL!");
1201
1202         final GeneratedTOBuilder genTOBuilder = newGeneratedTOBuilder(JavaTypeName.create(basePackageName,
1203             BindingMapping.getClassName(typedef.getQName())));
1204         genTOBuilder.setSchemaPath(typedef.getPath());
1205         genTOBuilder.setModuleName(moduleName);
1206         genTOBuilder.setTypedef(true);
1207         addCodegenInformation(genTOBuilder, typedef);
1208
1209         final Restrictions r = BindingGeneratorUtil.getRestrictions(typedef);
1210         genTOBuilder.setRestrictions(r);
1211         addStringRegExAsConstant(genTOBuilder, resolveRegExpressionsFromTypedef(typedef));
1212
1213         if (typedef.getStatus() == Status.DEPRECATED) {
1214             genTOBuilder.addAnnotation("java.lang", "Deprecated");
1215         }
1216
1217         if (baseTypeDefForExtendedType(innerExtendedType) instanceof UnionTypeDefinition) {
1218             genTOBuilder.setIsUnion(true);
1219         }
1220
1221         Map<Optional<Revision>, Map<String, Type>> modulesByDate = null;
1222         Map<String, Type> typeMap = null;
1223         final Module parentModule = findParentModule(schemaContext, innerExtendedType);
1224         if (parentModule != null) {
1225             modulesByDate = genTypeDefsContextMap.get(parentModule.getName());
1226             typeMap = modulesByDate.get(parentModule.getRevision());
1227         }
1228
1229         if (typeMap != null) {
1230             final String innerTypeDef = innerExtendedType.getQName().getLocalName();
1231             final Type type = typeMap.get(innerTypeDef);
1232             if (type instanceof GeneratedTransferObject) {
1233                 genTOBuilder.setExtendsType((GeneratedTransferObject) type);
1234             }
1235         }
1236         addUnitsToGenTO(genTOBuilder, typedef.getUnits().orElse(null));
1237         makeSerializable(genTOBuilder);
1238
1239         return genTOBuilder.build();
1240     }
1241
1242     /**
1243      * Add {@link java.io.Serializable} to implemented interfaces of this TO. Also compute and add serialVersionUID
1244      * property.
1245      *
1246      * @param gto transfer object which needs to be made serializable
1247      */
1248     private static void makeSerializable(final GeneratedTOBuilder gto) {
1249         gto.addImplementsType(Types.serializableType());
1250         final GeneratedPropertyBuilder prop = new GeneratedPropertyBuilderImpl("serialVersionUID");
1251         prop.setValue(Long.toString(BindingGeneratorUtil.computeDefaultSUID(gto)));
1252         gto.setSUID(prop);
1253     }
1254
1255     /**
1256      * Finds out for each type definition how many immersion (depth) is necessary to get to the base type. Every type
1257      * definition is inserted to the map which key is depth and value is list of type definitions with equal depth.
1258      * In next step are lists from this map concatenated to one list in ascending order according to their depth. All
1259      * type definitions are in the list behind all type definitions on which depends.
1260      *
1261      * @param unsortedTypeDefinitions list of type definitions which should be sorted by depth
1262      * @return list of type definitions sorted according their each other dependencies (type definitions which are
1263      *              dependent on other type definitions are in list behind them).
1264      */
1265     private static List<TypeDefinition<?>> sortTypeDefinitionAccordingDepth(
1266             final Collection<TypeDefinition<?>> unsortedTypeDefinitions) {
1267         final List<TypeDefinition<?>> sortedTypeDefinition = new ArrayList<>();
1268
1269         final Map<Integer, List<TypeDefinition<?>>> typeDefinitionsDepths = new TreeMap<>();
1270         for (TypeDefinition<?> unsortedTypeDefinition : unsortedTypeDefinitions) {
1271             final Integer depth = getTypeDefinitionDepth(unsortedTypeDefinition);
1272             List<TypeDefinition<?>> typeDefinitionsConcreteDepth =
1273                 typeDefinitionsDepths.computeIfAbsent(depth, k -> new ArrayList<>());
1274             typeDefinitionsConcreteDepth.add(unsortedTypeDefinition);
1275         }
1276
1277         // SortedMap guarantees order corresponding to keys in ascending order
1278         for (List<TypeDefinition<?>> v : typeDefinitionsDepths.values()) {
1279             sortedTypeDefinition.addAll(v);
1280         }
1281
1282         return sortedTypeDefinition;
1283     }
1284
1285     /**
1286      * Returns how many immersion is necessary to get from the type definition to the base type.
1287      *
1288      * @param typeDefinition type definition for which is depth sought.
1289      * @return number of immersions which are necessary to get from the type definition to the base type
1290      */
1291     private static int getTypeDefinitionDepth(final TypeDefinition<?> typeDefinition) {
1292         // FIXME: rewrite this in a non-recursive manner
1293         if (typeDefinition == null) {
1294             return 1;
1295         }
1296         final TypeDefinition<?> baseType = typeDefinition.getBaseType();
1297         if (baseType == null) {
1298             return 1;
1299         }
1300
1301         int depth = 1;
1302         if (baseType.getBaseType() != null) {
1303             depth = depth + getTypeDefinitionDepth(baseType);
1304         } else if (baseType instanceof UnionTypeDefinition) {
1305             final List<TypeDefinition<?>> childTypeDefinitions = ((UnionTypeDefinition) baseType).getTypes();
1306             int maxChildDepth = 0;
1307             int childDepth = 1;
1308             for (TypeDefinition<?> childTypeDefinition : childTypeDefinitions) {
1309                 childDepth = childDepth + getTypeDefinitionDepth(childTypeDefinition);
1310                 if (childDepth > maxChildDepth) {
1311                     maxChildDepth = childDepth;
1312                 }
1313             }
1314             return maxChildDepth;
1315         }
1316         return depth;
1317     }
1318
1319     /**
1320      * Returns string which contains the same value as <code>name</code> but integer suffix is incremented by one. If
1321      * <code>name</code> contains no number suffix, a new suffix initialized at 1 is added. A suffix is actually
1322      * composed of a '$' marker, which is safe, as no YANG identifier can contain '$', and a unsigned decimal integer.
1323      *
1324      * @param name string with name of augmented node
1325      * @return string with the number suffix incremented by one (or 1 is added)
1326      */
1327     private static String provideAvailableNameForGenTOBuilder(final String name) {
1328         final int dollar = name.indexOf('$');
1329         if (dollar == -1) {
1330             return name + "$1";
1331         }
1332
1333         final int newSuffix = Integer.parseUnsignedInt(name.substring(dollar + 1)) + 1;
1334         Preconditions.checkState(newSuffix > 0, "Suffix counter overflow");
1335         return name.substring(0, dollar + 1) + newSuffix;
1336     }
1337
1338     public static void addUnitsToGenTO(final GeneratedTOBuilder to, final String units) {
1339         if (!Strings.isNullOrEmpty(units)) {
1340             to.addConstant(Types.STRING, "_UNITS", "\"" + units + "\"");
1341             final GeneratedPropertyBuilder prop = new GeneratedPropertyBuilderImpl("UNITS");
1342             prop.setReturnType(Types.STRING);
1343             to.addToStringProperty(prop);
1344         }
1345     }
1346
1347     @Override
1348     public String getTypeDefaultConstruction(final LeafSchemaNode node) {
1349         return getTypeDefaultConstruction(node, (String) node.getType().getDefaultValue().orElse(null));
1350     }
1351
1352     public String getTypeDefaultConstruction(final LeafSchemaNode node, final String defaultValue) {
1353         final TypeDefinition<?> type = CompatUtils.compatType(node);
1354         final QName typeQName = type.getQName();
1355         final TypeDefinition<?> base = baseTypeDefForExtendedType(type);
1356         requireNonNull(type, () -> "Cannot provide default construction for null type of " + node);
1357         requireNonNull(defaultValue, () -> "Cannot provide default construction for null default statement of "
1358             + node);
1359
1360         final StringBuilder sb = new StringBuilder();
1361         String result = null;
1362         if (base instanceof BinaryTypeDefinition) {
1363             result = binaryToDef(defaultValue);
1364         } else if (base instanceof BitsTypeDefinition) {
1365             String parentName;
1366             String className;
1367             final Module parent = getParentModule(node);
1368             final Iterator<QName> path = node.getPath().getPathFromRoot().iterator();
1369             path.next();
1370             if (!path.hasNext()) {
1371                 parentName = BindingMapping.getClassName(parent.getName()) + "Data";
1372                 final String basePackageName = BindingMapping.getRootPackageName(parent.getQNameModule());
1373                 className = basePackageName + "." + parentName + "." + BindingMapping.getClassName(node.getQName());
1374             } else {
1375                 final String basePackageName = BindingMapping.getRootPackageName(parent.getQNameModule());
1376                 final String packageName = BindingGeneratorUtil.packageNameForGeneratedType(basePackageName,
1377                     type.getPath());
1378                 parentName = BindingMapping.getClassName(parent.getName());
1379                 className = packageName + "." + parentName + "." + BindingMapping.getClassName(node.getQName());
1380             }
1381             result = bitsToDef((BitsTypeDefinition) base, className, defaultValue, type.getBaseType() != null);
1382         } else if (base instanceof BooleanTypeDefinition) {
1383             result = typeToBooleanDef(defaultValue);
1384         } else if (base instanceof DecimalTypeDefinition) {
1385             result = typeToDef(BigDecimal.class, defaultValue);
1386         } else if (base instanceof EmptyTypeDefinition) {
1387             result = typeToBooleanDef(defaultValue);
1388         } else if (base instanceof EnumTypeDefinition) {
1389             final char[] defValArray = defaultValue.toCharArray();
1390             final char first = Character.toUpperCase(defaultValue.charAt(0));
1391             defValArray[0] = first;
1392             final String newDefVal = new String(defValArray);
1393             String className;
1394             if (type.getBaseType() != null) {
1395                 final Module m = getParentModule(type);
1396                 final String basePackageName = BindingMapping.getRootPackageName(m.getQNameModule());
1397                 final String packageName = BindingGeneratorUtil.packageNameForGeneratedType(basePackageName,
1398                     type.getPath());
1399                 className = packageName + "." + BindingMapping.getClassName(typeQName);
1400             } else {
1401                 final Module parentModule = getParentModule(node);
1402                 final String basePackageName = BindingMapping.getRootPackageName(parentModule.getQNameModule());
1403                 final String packageName = BindingGeneratorUtil.packageNameForGeneratedType(basePackageName,
1404                     node.getPath());
1405                 className = packageName + "." + BindingMapping.getClassName(node.getQName());
1406             }
1407             result = className + "." + newDefVal;
1408         } else if (base instanceof IdentityrefTypeDefinition) {
1409             throw new UnsupportedOperationException("Cannot get default construction for identityref type");
1410         } else if (base instanceof InstanceIdentifierTypeDefinition) {
1411             throw new UnsupportedOperationException("Cannot get default construction for instance-identifier type");
1412         } else if (BaseTypes.isInt8(base)) {
1413             result = typeToValueOfDef(Byte.class, defaultValue);
1414         } else if (BaseTypes.isInt16(base)) {
1415             result = typeToValueOfDef(Short.class, defaultValue);
1416         } else if (BaseTypes.isInt32(base)) {
1417             result = typeToValueOfDef(Integer.class, defaultValue);
1418         } else if (BaseTypes.isInt64(base)) {
1419             result = typeToValueOfDef(Long.class, defaultValue);
1420         } else if (base instanceof LeafrefTypeDefinition) {
1421             result = leafrefToDef(node, (LeafrefTypeDefinition) base, defaultValue);
1422         } else if (base instanceof StringTypeDefinition) {
1423             result = "\"" + defaultValue + "\"";
1424         } else if (BaseTypes.isUint8(base)) {
1425             result = typeToValueOfDef(Uint8.class, defaultValue);
1426         } else if (BaseTypes.isUint16(base)) {
1427             result = typeToValueOfDef(Uint16.class, defaultValue);
1428         } else if (BaseTypes.isUint32(base)) {
1429             result = typeToValueOfDef(Uint32.class, defaultValue);
1430         } else if (BaseTypes.isUint64(base)) {
1431             result = typeToValueOfDef(Uint64.class, defaultValue);
1432         } else if (base instanceof UnionTypeDefinition) {
1433             result = unionToDef(node);
1434         } else {
1435             result = "";
1436         }
1437         sb.append(result);
1438
1439         if (type.getBaseType() != null && !(base instanceof LeafrefTypeDefinition)
1440                 && !(base instanceof EnumTypeDefinition) && !(base instanceof UnionTypeDefinition)) {
1441             final Module m = getParentModule(type);
1442             final String basePackageName = BindingMapping.getRootPackageName(m.getQNameModule());
1443             final String packageName = BindingGeneratorUtil.packageNameForGeneratedType(basePackageName,
1444                 type.getPath());
1445             final String className = packageName + "." + BindingMapping.getClassName(typeQName);
1446             sb.insert(0, "new " + className + "(");
1447             sb.insert(sb.length(), ')');
1448         }
1449
1450         return sb.toString();
1451     }
1452
1453     private static String typeToDef(final Class<?> clazz, final String defaultValue) {
1454         return "new " + clazz.getName() + "(\"" + defaultValue + "\")";
1455     }
1456
1457     private static String typeToValueOfDef(final Class<?> clazz, final String defaultValue) {
1458         return clazz.getName() + ".valueOf(\"" + defaultValue + "\")";
1459     }
1460
1461     private static String typeToBooleanDef(final String defaultValue) {
1462         switch (defaultValue) {
1463             case "false":
1464                 return "java.lang.Boolean.FALSE";
1465             case "true":
1466                 return "java.lang.Boolean.TRUE";
1467             default:
1468                 return typeToValueOfDef(Boolean.class, defaultValue);
1469         }
1470     }
1471
1472     private static String binaryToDef(final String defaultValue) {
1473         final StringBuilder sb = new StringBuilder();
1474         final byte[] encoded = Base64.getDecoder().decode(defaultValue);
1475         sb.append("new byte[] {");
1476         for (int i = 0; i < encoded.length; i++) {
1477             sb.append(encoded[i]);
1478             if (i != encoded.length - 1) {
1479                 sb.append(", ");
1480             }
1481         }
1482         sb.append('}');
1483         return sb.toString();
1484     }
1485
1486     private static final Comparator<Bit> BIT_NAME_COMPARATOR = Comparator.comparing(Bit::getName);
1487
1488     private static String bitsToDef(final BitsTypeDefinition type, final String className, final String defaultValue,
1489             final boolean isExt) {
1490         final List<Bit> bits = new ArrayList<>(type.getBits());
1491         bits.sort(BIT_NAME_COMPARATOR);
1492         final StringBuilder sb = new StringBuilder();
1493         if (!isExt) {
1494             sb.append("new ");
1495             sb.append(className);
1496             sb.append('(');
1497         }
1498         for (int i = 0; i < bits.size(); i++) {
1499             if (bits.get(i).getName().equals(defaultValue)) {
1500                 sb.append(true);
1501             } else {
1502                 sb.append(false);
1503             }
1504             if (i != bits.size() - 1) {
1505                 sb.append(", ");
1506             }
1507         }
1508         if (!isExt) {
1509             sb.append(')');
1510         }
1511         return sb.toString();
1512     }
1513
1514     private Module getParentModule(final SchemaNode node) {
1515         final QName qname = node.getPath().getPathFromRoot().iterator().next();
1516         return schemaContext.findModule(qname.getModule()).orElse(null);
1517     }
1518
1519     private String leafrefToDef(final LeafSchemaNode parentNode, final LeafrefTypeDefinition leafrefType,
1520             final String defaultValue) {
1521         Preconditions.checkArgument(leafrefType != null, "Leafref Type Definition reference cannot be NULL!");
1522         Preconditions.checkArgument(leafrefType.getPathStatement() != null,
1523                 "The Path Statement for Leafref Type Definition cannot be NULL!");
1524
1525         final PathExpression xpath = leafrefType.getPathStatement();
1526         final String strXPath = xpath.getOriginalString();
1527
1528         if (strXPath != null) {
1529             if (strXPath.indexOf('[') == -1) {
1530                 final Module module = findParentModule(schemaContext, parentNode);
1531                 if (module != null) {
1532                     final SchemaNode dataNode;
1533                     if (xpath.isAbsolute()) {
1534                         dataNode = findDataTreeSchemaNode(schemaContext, module.getQNameModule(), xpath);
1535                     } else {
1536                         dataNode = findDataSchemaNodeForRelativeXPath(schemaContext, module, parentNode, xpath);
1537                     }
1538                     final String result = getTypeDefaultConstruction((LeafSchemaNode) dataNode, defaultValue);
1539                     return result;
1540                 }
1541             } else {
1542                 return "new java.lang.Object()";
1543             }
1544         }
1545
1546         return null;
1547     }
1548
1549     private String unionToDef(final LeafSchemaNode node) {
1550         final TypeDefinition<?> type = CompatUtils.compatType(node);
1551         String parentName;
1552         String className;
1553
1554         if (type.getBaseType() != null) {
1555             final QName typeQName = type.getQName();
1556             Module module = null;
1557             final Collection<? extends Module> modules = schemaContext.findModules(typeQName.getNamespace());
1558             if (modules.size() > 1) {
1559                 for (Module m : modules) {
1560                     if (m.getRevision().equals(typeQName.getRevision())) {
1561                         module = m;
1562                         break;
1563                     }
1564                 }
1565                 if (module == null) {
1566                     final List<Module> modulesList = new ArrayList<>(modules);
1567                     modulesList.sort((o1, o2) -> Revision.compare(o1.getRevision(), o2.getRevision()));
1568                     module = modulesList.get(0);
1569                 }
1570             } else {
1571                 module = modules.iterator().next();
1572             }
1573
1574             final String basePackageName = BindingMapping.getRootPackageName(module.getQNameModule());
1575             className = basePackageName + "." + BindingMapping.getClassName(typeQName);
1576         } else {
1577             final Iterator<QName> path = node.getPath().getPathFromRoot().iterator();
1578             final QName first = path.next();
1579             final Module parent = schemaContext.findModule(first.getModule()).orElse(null);
1580             final String basePackageName = BindingMapping.getRootPackageName(parent.getQNameModule());
1581             if (!path.hasNext()) {
1582                 parentName = BindingMapping.getClassName(parent.getName()) + "Data";
1583                 className = basePackageName + "." + parentName + "." + BindingMapping.getClassName(node.getQName());
1584             } else {
1585                 final String packageName = BindingGeneratorUtil.packageNameForGeneratedType(basePackageName,
1586                     UNION_PATH);
1587                 className = packageName + "." + BindingMapping.getClassName(node.getQName());
1588             }
1589         }
1590         return union(className, (String) node.getType().getDefaultValue().orElse(null), node);
1591     }
1592
1593     private static String union(final String className, final String defaultValue, final LeafSchemaNode node) {
1594         final StringBuilder sb = new StringBuilder();
1595         sb.append("new ");
1596         sb.append(className);
1597         sb.append("(\"");
1598         sb.append(defaultValue);
1599         sb.append("\".toCharArray())");
1600         return sb.toString();
1601     }
1602
1603     @Override
1604     public String getConstructorPropertyName(final SchemaNode node) {
1605         return node instanceof TypeDefinition<?> ? "value" : "";
1606     }
1607
1608     @Override
1609     public String getParamNameFromType(final TypeDefinition<?> type) {
1610         return BindingMapping.getPropertyName(type.getQName().getLocalName());
1611     }
1612 }