Remove LeafRefYangSyntaxErrorException
[yangtools.git] / data / yang-data-tree-ri / src / main / java / org / opendaylight / yangtools / yang / data / tree / leafref / LeafRefContextTreeBuilder.java
index 9b563c10b1f28888311e36f6988521d8b2380b71..57f63194f5f80af3a8dfafd04667bd49f86ebb94 100644 (file)
@@ -8,11 +8,9 @@
 package org.opendaylight.yangtools.yang.data.tree.leafref;
 
 import com.google.common.collect.ImmutableList;
-import java.util.Collection;
-import java.util.LinkedList;
+import java.util.ArrayList;
 import java.util.List;
 import org.opendaylight.yangtools.yang.common.QName;
-import org.opendaylight.yangtools.yang.model.api.CaseSchemaNode;
 import org.opendaylight.yangtools.yang.model.api.ChoiceSchemaNode;
 import org.opendaylight.yangtools.yang.model.api.DataNodeContainer;
 import org.opendaylight.yangtools.yang.model.api.DataSchemaNode;
@@ -20,42 +18,38 @@ import org.opendaylight.yangtools.yang.model.api.EffectiveModelContext;
 import org.opendaylight.yangtools.yang.model.api.LeafListSchemaNode;
 import org.opendaylight.yangtools.yang.model.api.LeafSchemaNode;
 import org.opendaylight.yangtools.yang.model.api.Module;
-import org.opendaylight.yangtools.yang.model.api.PathExpression;
 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
-import org.opendaylight.yangtools.yang.model.api.TypeDefinition;
 import org.opendaylight.yangtools.yang.model.api.TypedDataSchemaNode;
 import org.opendaylight.yangtools.yang.model.api.type.LeafrefTypeDefinition;
 import org.opendaylight.yangtools.yang.model.util.SchemaInferenceStack;
 
 final class LeafRefContextTreeBuilder {
-    private final List<LeafRefContext> leafRefs = new LinkedList<>();
+    private final List<LeafRefContext> leafRefs = new ArrayList<>();
     private final EffectiveModelContext schemaContext;
 
     LeafRefContextTreeBuilder(final EffectiveModelContext schemaContext) {
         this.schemaContext = schemaContext;
     }
 
-    LeafRefContext buildLeafRefContextTree() throws LeafRefYangSyntaxErrorException {
-        final SchemaInferenceStack stack = SchemaInferenceStack.of(schemaContext);
-        final LeafRefContextBuilder rootBuilder = new LeafRefContextBuilder(SchemaContext.NAME, ImmutableList.of(),
-            schemaContext);
+    LeafRefContext buildLeafRefContextTree() {
+        final var stack = SchemaInferenceStack.of(schemaContext);
+        final var rootBuilder = new LeafRefContextBuilder(SchemaContext.NAME, ImmutableList.of(), schemaContext);
 
-        final Collection<? extends Module> modules = schemaContext.getModules();
-        for (final Module module : modules) {
-            for (final DataSchemaNode childNode : module.getChildNodes()) {
+        final var modules = schemaContext.getModules();
+        for (final var module : modules) {
+            for (var childNode : module.getChildNodes()) {
                 stack.enterSchemaTree(childNode.getQName());
-                final LeafRefContext childLeafRefContext = buildLeafRefContextReferencingTree(childNode, stack);
+                final var childLeafRefContext = buildLeafRefContextReferencingTree(childNode, stack);
                 stack.exit();
                 if (childLeafRefContext.hasReferencingChild() || childLeafRefContext.isReferencing()) {
                     rootBuilder.addReferencingChild(childLeafRefContext, childLeafRefContext.getNodeName());
                 }
             }
         }
-        for (final Module module : modules) {
-            for (final DataSchemaNode childNode : module.getChildNodes()) {
+        for (final var module : modules) {
+            for (var childNode : module.getChildNodes()) {
                 stack.enterSchemaTree(childNode.getQName());
-                final LeafRefContext childLeafRefContext = buildLeafRefContextReferencedByTree(childNode, module,
-                        stack);
+                final var childLeafRefContext = buildLeafRefContextReferencedByTree(childNode, module, stack);
                 stack.exit();
                 if (childLeafRefContext.hasReferencedChild() || childLeafRefContext.isReferenced()) {
                     rootBuilder.addReferencedByChild(childLeafRefContext, childLeafRefContext.getNodeName());
@@ -75,7 +69,7 @@ final class LeafRefContextTreeBuilder {
             extractPath(stack), schemaContext);
 
         if (node instanceof DataNodeContainer container) {
-            for (final DataSchemaNode childNode : container.getChildNodes()) {
+            for (var childNode : container.getChildNodes()) {
                 stack.enterSchemaTree(childNode.getQName());
                 final LeafRefContext childLeafRefContext = buildLeafRefContextReferencingTree(childNode, stack);
                 stack.exit();
@@ -86,7 +80,7 @@ final class LeafRefContextTreeBuilder {
             }
         } else if (node instanceof ChoiceSchemaNode choice) {
             // :FIXME choice without case
-            for (final CaseSchemaNode caseNode : choice.getCases()) {
+            for (var caseNode : choice.getCases()) {
                 stack.enterSchemaTree(caseNode.getQName());
                 final LeafRefContext childLeafRefContext = buildLeafRefContextReferencingTree(caseNode, stack);
                 stack.exit();
@@ -97,19 +91,19 @@ final class LeafRefContextTreeBuilder {
             }
 
         } else if (node instanceof TypedDataSchemaNode typedNode) {
-            final TypeDefinition<?> type = typedNode.getType();
+            final var type = typedNode.getType();
 
             // FIXME: fix case when type is e.g. typedef -> typedef -> leafref
             if (type instanceof LeafrefTypeDefinition leafrefType) {
-                final PathExpression path = leafrefType.getPathStatement();
-                final LeafRefPathParserImpl leafRefPathParser = new LeafRefPathParserImpl(leafrefType, typedNode);
-                final LeafRefPath leafRefPath = leafRefPathParser.parseLeafRefPath(path);
+                final var path = leafrefType.getPathStatement();
+                final var leafRefPathParser = new LeafRefPathParserImpl(leafrefType, typedNode);
+                final var  leafRefPath = leafRefPathParser.parseLeafRefPath(path);
 
                 currentLeafRefContextBuilder.setLeafRefTargetPathString(path.getOriginalString());
                 currentLeafRefContextBuilder.setReferencing(true);
                 currentLeafRefContextBuilder.setLeafRefTargetPath(leafRefPath);
 
-                final LeafRefContext currentLeafRefContext = currentLeafRefContextBuilder.build();
+                final var currentLeafRefContext = currentLeafRefContextBuilder.build();
                 leafRefs.add(currentLeafRefContext);
                 return currentLeafRefContext;
             }
@@ -120,13 +114,12 @@ final class LeafRefContextTreeBuilder {
 
     private LeafRefContext buildLeafRefContextReferencedByTree(final DataSchemaNode node, final Module currentModule,
             final SchemaInferenceStack stack) {
-        final LeafRefContextBuilder currentLeafRefContextBuilder = new LeafRefContextBuilder(node.getQName(),
-                extractPath(stack), schemaContext);
+        final var currentLeafRefContextBuilder = new LeafRefContextBuilder(node.getQName(), extractPath(stack),
+            schemaContext);
         if (node instanceof DataNodeContainer container) {
-            for (final DataSchemaNode childNode : container.getChildNodes()) {
+            for (var childNode : container.getChildNodes()) {
                 stack.enterSchemaTree(childNode.getQName());
-                final LeafRefContext childLeafRefContext = buildLeafRefContextReferencedByTree(childNode,
-                        currentModule, stack);
+                final var childLeafRefContext = buildLeafRefContextReferencedByTree(childNode, currentModule, stack);
                 stack.exit();
                 if (childLeafRefContext.hasReferencedChild() || childLeafRefContext.isReferenced()) {
                     currentLeafRefContextBuilder.addReferencedByChild(childLeafRefContext,
@@ -134,10 +127,9 @@ final class LeafRefContextTreeBuilder {
                 }
             }
         } else if (node instanceof ChoiceSchemaNode choice) {
-            for (final CaseSchemaNode caseNode : choice.getCases()) {
+            for (var caseNode : choice.getCases()) {
                 stack.enterSchemaTree(caseNode.getQName());
-                final LeafRefContext childLeafRefContext = buildLeafRefContextReferencedByTree(caseNode, currentModule,
-                        stack);
+                final var childLeafRefContext = buildLeafRefContextReferencedByTree(caseNode, currentModule, stack);
                 stack.exit();
                 if (childLeafRefContext.hasReferencedChild() || childLeafRefContext.isReferenced()) {
                     currentLeafRefContextBuilder.addReferencedByChild(childLeafRefContext,
@@ -145,10 +137,10 @@ final class LeafRefContextTreeBuilder {
                 }
             }
         } else if (node instanceof LeafSchemaNode || node instanceof LeafListSchemaNode) {
-            final List<LeafRefContext> foundLeafRefs = getLeafRefsFor(currentModule, stack);
+            final var foundLeafRefs = getLeafRefsFor(currentModule, stack);
             if (!foundLeafRefs.isEmpty()) {
                 currentLeafRefContextBuilder.setReferencedBy(true);
-                for (final LeafRefContext leafRef : foundLeafRefs) {
+                for (var leafRef : foundLeafRefs) {
                     currentLeafRefContextBuilder.addReferencedByLeafRefCtx(leafRef.getNodeName(), leafRef);
                 }
             }
@@ -158,10 +150,10 @@ final class LeafRefContextTreeBuilder {
     }
 
     private List<LeafRefContext> getLeafRefsFor(final Module module, final SchemaInferenceStack stack) {
-        final LeafRefPath nodeXPath = LeafRefUtils.schemaPathToLeafRefPath(extractPath(stack), module);
-        final List<LeafRefContext> foundLeafRefs = new LinkedList<>();
-        for (final LeafRefContext leafref : leafRefs) {
-            final LeafRefPath leafRefTargetPath = leafref.getAbsoluteLeafRefTargetPath();
+        final var nodeXPath = LeafRefUtils.schemaPathToLeafRefPath(extractPath(stack), module);
+        final var foundLeafRefs = new ArrayList<LeafRefContext>();
+        for (var leafref: leafRefs) {
+            final var leafRefTargetPath = leafref.getAbsoluteLeafRefTargetPath();
             if (leafRefTargetPath.equals(nodeXPath)) {
                 foundLeafRefs.add(leafref);
             }