Merge "Updated YANG lexer to support unknown statements"
[controller.git] / opendaylight / sal / yang-prototype / code-generator / yang-model-parser-impl / src / main / java / org / opendaylight / controller / yang / model / parser / builder / impl / LeafSchemaNodeBuilder.java
index 5c28e1ba2c8233d7e271a0b98c468c30ef945e67..fe039b2394807037fbb6e0568f8f16c049f780e2 100644 (file)
@@ -7,6 +7,7 @@
  */
 package org.opendaylight.controller.yang.model.parser.builder.impl;
 
+import java.util.ArrayList;
 import java.util.Collections;
 import java.util.List;
 
@@ -17,27 +18,57 @@ import org.opendaylight.controller.yang.model.api.SchemaPath;
 import org.opendaylight.controller.yang.model.api.Status;
 import org.opendaylight.controller.yang.model.api.TypeDefinition;
 import org.opendaylight.controller.yang.model.api.UnknownSchemaNode;
+import org.opendaylight.controller.yang.model.parser.builder.api.AbstractTypeAwareBuilder;
 import org.opendaylight.controller.yang.model.parser.builder.api.DataSchemaNodeBuilder;
 import org.opendaylight.controller.yang.model.parser.builder.api.SchemaNodeBuilder;
-import org.opendaylight.controller.yang.model.parser.builder.api.TypeAwareBuilder;
-
-public class LeafSchemaNodeBuilder implements DataSchemaNodeBuilder,
-        SchemaNodeBuilder, TypeAwareBuilder {
 
+public class LeafSchemaNodeBuilder extends AbstractTypeAwareBuilder implements
+        DataSchemaNodeBuilder, SchemaNodeBuilder {
     private final QName qname;
+    private SchemaPath path;
     private final LeafSchemaNodeImpl instance;
-    private final ConstraintsBuilder constraintsBuilder;
-    private TypeDefinition<?> type;
-
-    LeafSchemaNodeBuilder(QName qname) {
+    private final ConstraintsBuilder constraints = new ConstraintsBuilder();
+    private final List<UnknownSchemaNodeBuilder> addedUnknownNodes = new ArrayList<UnknownSchemaNodeBuilder>();
+
+    private String description;
+    private String reference;
+    private Status status = Status.CURRENT;
+    private boolean augmenting;
+    private boolean configuration;
+    private String defaultStr;
+    private String unitsStr;
+
+    public LeafSchemaNodeBuilder(final QName qname) {
         this.qname = qname;
         instance = new LeafSchemaNodeImpl(qname);
-        constraintsBuilder = new ConstraintsBuilder();
     }
 
     @Override
     public LeafSchemaNode build() {
-        instance.setConstraints(constraintsBuilder.build());
+        instance.setPath(path);
+        instance.setConstraints(constraints.build());
+        instance.setDescription(description);
+        instance.setReference(reference);
+        instance.setStatus(status);
+
+        // TYPE
+        if (type == null) {
+            instance.setType(typedef.build());
+        } else {
+            instance.setType(type);
+        }
+
+        // UNKNOWN NODES
+        final List<UnknownSchemaNode> unknownNodes = new ArrayList<UnknownSchemaNode>();
+        for (UnknownSchemaNodeBuilder b : addedUnknownNodes) {
+            unknownNodes.add(b.build());
+        }
+        instance.setUnknownSchemaNodes(unknownNodes);
+
+        instance.setAugmenting(augmenting);
+        instance.setConfiguration(configuration);
+        instance.setDefault(defaultStr);
+        instance.setUnits(unitsStr);
         return instance;
     }
 
@@ -46,52 +77,90 @@ public class LeafSchemaNodeBuilder implements DataSchemaNodeBuilder,
         return qname;
     }
 
-    @Override
-    public void setPath(SchemaPath path) {
-        instance.setPath(path);
+    public SchemaPath getPath() {
+        return path;
     }
 
     @Override
-    public void setDescription(String description) {
-        instance.setDescription(description);
+    public void setPath(final SchemaPath path) {
+        this.path = path;
     }
 
     @Override
-    public void setReference(String reference) {
-        instance.setReference(reference);
+    public ConstraintsBuilder getConstraints() {
+        return constraints;
     }
 
     @Override
-    public void setStatus(Status status) {
-        if(status != null) {
-            instance.setStatus(status);
-        }
+    public void addUnknownSchemaNode(final UnknownSchemaNodeBuilder unknownNode) {
+        addedUnknownNodes.add(unknownNode);
+    }
+
+    public List<UnknownSchemaNodeBuilder> getUnknownNodes() {
+        return addedUnknownNodes;
+    }
+
+    public String getDescription() {
+        return description;
     }
 
     @Override
-    public void setAugmenting(boolean augmenting) {
-        instance.setAugmenting(augmenting);
+    public void setDescription(final String description) {
+        this.description = description;
+    }
+
+    public String getReference() {
+        return reference;
     }
 
     @Override
-    public void setConfiguration(boolean configuration) {
-        instance.setConfiguration(configuration);
+    public void setReference(final String reference) {
+        this.reference = reference;
+    }
+
+    public Status getStatus() {
+        return status;
     }
 
     @Override
-    public ConstraintsBuilder getConstraintsBuilder() {
-        return constraintsBuilder;
+    public void setStatus(final Status status) {
+        if (status != null) {
+            this.status = status;
+        }
+    }
+
+    public boolean isAugmenting() {
+        return augmenting;
     }
 
     @Override
-    public TypeDefinition<?> getType() {
-        return type;
+    public void setAugmenting(final boolean augmenting) {
+        this.augmenting = augmenting;
+    }
+
+    public boolean isConfiguration() {
+        return configuration;
     }
 
     @Override
-    public void setType(TypeDefinition<?> type) {
-        this.type = type;
-        instance.setType(type);
+    public void setConfiguration(final boolean configuration) {
+        instance.setConfiguration(configuration);
+    }
+
+    public String getDefaultStr() {
+        return defaultStr;
+    }
+
+    public void setDefaultStr(String defaultStr) {
+        this.defaultStr = defaultStr;
+    }
+
+    public String getUnits() {
+        return unitsStr;
+    }
+
+    public void setUnits(String unitsStr) {
+        this.unitsStr = unitsStr;
     }
 
     private class LeafSchemaNodeImpl implements LeafSchemaNode {
@@ -102,11 +171,13 @@ public class LeafSchemaNodeBuilder implements DataSchemaNodeBuilder,
         private Status status = Status.CURRENT;
         private boolean augmenting;
         private boolean configuration;
-        private ConstraintDefinition constraints;
+        private ConstraintDefinition constraintsDef;
         private TypeDefinition<?> type;
-        private List<UnknownSchemaNode> unknownSchemaNodes = Collections.emptyList();
+        private List<UnknownSchemaNode> unknownNodes = Collections.emptyList();
+        private String defaultStr;
+        private String unitsStr;
 
-        private LeafSchemaNodeImpl(QName qname) {
+        private LeafSchemaNodeImpl(final QName qname) {
             this.qname = qname;
         }
 
@@ -120,7 +191,7 @@ public class LeafSchemaNodeBuilder implements DataSchemaNodeBuilder,
             return path;
         }
 
-        private void setPath(SchemaPath path) {
+        private void setPath(final SchemaPath path) {
             this.path = path;
         }
 
@@ -173,11 +244,11 @@ public class LeafSchemaNodeBuilder implements DataSchemaNodeBuilder,
 
         @Override
         public ConstraintDefinition getConstraints() {
-            return constraints;
+            return constraintsDef;
         }
 
-        private void setConstraints(ConstraintDefinition constraints) {
-            this.constraints = constraints;
+        private void setConstraints(ConstraintDefinition constraintsDef) {
+            this.constraintsDef = constraintsDef;
         }
 
         @Override
@@ -191,7 +262,29 @@ public class LeafSchemaNodeBuilder implements DataSchemaNodeBuilder,
 
         @Override
         public List<UnknownSchemaNode> getUnknownSchemaNodes() {
-            return unknownSchemaNodes;
+            return unknownNodes;
+        }
+
+        private void setUnknownSchemaNodes(List<UnknownSchemaNode> unknownNodes) {
+            if (unknownNodes != null) {
+                this.unknownNodes = unknownNodes;
+            }
+        }
+
+        public String getDefault() {
+            return defaultStr;
+        }
+
+        private void setDefault(String defaultStr) {
+            this.defaultStr = defaultStr;
+        }
+
+        public String getUnits() {
+            return unitsStr;
+        }
+
+        public void setUnits(String unitsStr) {
+            this.unitsStr = unitsStr;
         }
 
         @Override
@@ -200,17 +293,6 @@ public class LeafSchemaNodeBuilder implements DataSchemaNodeBuilder,
             int result = 1;
             result = prime * result + ((qname == null) ? 0 : qname.hashCode());
             result = prime * result + ((path == null) ? 0 : path.hashCode());
-            result = prime * result
-                    + ((description == null) ? 0 : description.hashCode());
-            result = prime * result
-                    + ((reference == null) ? 0 : reference.hashCode());
-            result = prime * result
-                    + ((status == null) ? 0 : status.hashCode());
-            result = prime * result + (augmenting ? 1231 : 1237);
-            result = prime * result + (configuration ? 1231 : 1237);
-            result = prime * result
-                    + ((constraints == null) ? 0 : constraints.hashCode());
-            result = prime * result + ((type == null) ? 0 : type.hashCode());
             return result;
         }
 
@@ -240,47 +322,6 @@ public class LeafSchemaNodeBuilder implements DataSchemaNodeBuilder,
             } else if (!path.equals(other.path)) {
                 return false;
             }
-            if (description == null) {
-                if (other.description != null) {
-                    return false;
-                }
-            } else if (!description.equals(other.description)) {
-                return false;
-            }
-            if (reference == null) {
-                if (other.reference != null) {
-                    return false;
-                }
-            } else if (!reference.equals(other.reference)) {
-                return false;
-            }
-            if (status == null) {
-                if (other.status != null) {
-                    return false;
-                }
-            } else if (!status.equals(other.status)) {
-                return false;
-            }
-            if (augmenting != other.augmenting) {
-                return false;
-            }
-            if (configuration != other.configuration) {
-                return false;
-            }
-            if (constraints == null) {
-                if (other.constraints != null) {
-                    return false;
-                }
-            } else if (!constraints.equals(other.constraints)) {
-                return false;
-            }
-            if (type == null) {
-                if (other.type != null) {
-                    return false;
-                }
-            } else if (!type.equals(other.type)) {
-                return false;
-            }
             return true;
         }
 
@@ -291,14 +332,6 @@ public class LeafSchemaNodeBuilder implements DataSchemaNodeBuilder,
             sb.append("[");
             sb.append("qname=" + qname);
             sb.append(", path=" + path);
-            sb.append(", description=" + description);
-            sb.append(", reference=" + reference);
-            sb.append(", status=" + status);
-            sb.append(", augmenting=" + augmenting);
-            sb.append(", configuration=" + configuration);
-            sb.append(", constraints=" + constraints);
-            sb.append(", type=" + type);
-            sb.append(", constraints=" + constraints);
             sb.append("]");
             return sb.toString();
         }