/* * Copyright (c) 2013 Cisco Systems, Inc. and others. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 which accompanies this distribution, * and is available at http://www.eclipse.org/legal/epl-v10.html */ package org.opendaylight.controller.yang.model.parser.builder.impl; import java.util.Collections; import java.util.HashMap; import java.util.HashSet; import java.util.List; import java.util.Map; import java.util.Set; import org.opendaylight.controller.yang.common.QName; import org.opendaylight.controller.yang.model.api.DataSchemaNode; import org.opendaylight.controller.yang.model.api.GroupingDefinition; import org.opendaylight.controller.yang.model.api.NotificationDefinition; import org.opendaylight.controller.yang.model.api.SchemaNode; 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.api.UsesNode; import org.opendaylight.controller.yang.model.parser.builder.api.AbstractChildNodeBuilder; import org.opendaylight.controller.yang.model.parser.builder.api.DataSchemaNodeBuilder; import org.opendaylight.controller.yang.model.parser.builder.api.GroupingBuilder; import org.opendaylight.controller.yang.model.parser.builder.api.SchemaNodeBuilder; import org.opendaylight.controller.yang.model.parser.builder.api.TypeDefinitionAwareBuilder; import org.opendaylight.controller.yang.model.parser.builder.api.TypeDefinitionBuilder; import org.opendaylight.controller.yang.model.parser.builder.api.UsesNodeBuilder; public class NotificationBuilder extends AbstractChildNodeBuilder implements TypeDefinitionAwareBuilder, SchemaNodeBuilder { private final NotificationDefinitionImpl instance; private final Set addedTypedefs = new HashSet(); private final Set addedUsesNodes = new HashSet(); NotificationBuilder(QName qname) { super(qname); instance = new NotificationDefinitionImpl(qname); } @Override public SchemaNode build() { // CHILD NODES Map childs = new HashMap(); for (DataSchemaNodeBuilder node : childNodes) { childs.put(node.getQName(), node.build()); } instance.setChildNodes(childs); // GROUPINGS Set groupingDefinitions = new HashSet(); for (GroupingBuilder builder : groupings) { groupingDefinitions.add(builder.build()); } instance.setGroupings(groupingDefinitions); // TYPEDEFS Set> typedefs = new HashSet>(); for (TypeDefinitionBuilder entry : addedTypedefs) { typedefs.add(entry.build()); } instance.setTypeDefinitions(typedefs); // USES Set uses = new HashSet(); for (UsesNodeBuilder builder : addedUsesNodes) { uses.add(builder.build()); } instance.setUses(uses); return instance; } @Override public void addTypedef(TypeDefinitionBuilder type) { addedTypedefs.add(type); } @Override public void addUsesNode(UsesNodeBuilder usesNodeBuilder) { addedUsesNodes.add(usesNodeBuilder); } @Override public void setPath(SchemaPath schemaPath) { instance.setPath(schemaPath); } @Override public void setDescription(String description) { instance.setDescription(description); } @Override public void setReference(String reference) { instance.setReference(reference); } @Override public void setStatus(Status status) { instance.setStatus(status); } private class NotificationDefinitionImpl implements NotificationDefinition { private final QName qname; private SchemaPath path; private String description; private String reference; private Status status; private Map childNodes = Collections.emptyMap(); private Set groupings = Collections.emptySet(); private Set> typeDefinitions = Collections.emptySet(); private Set uses = Collections.emptySet(); private List unknownSchemaNodes = Collections.emptyList(); private NotificationDefinitionImpl(QName qname) { this.qname = qname; } @Override public QName getQName() { return qname; } @Override public SchemaPath getPath() { return path; } private void setPath(SchemaPath path) { this.path = path; } @Override public String getDescription() { return description; } private void setDescription(String description) { this.description = description; } @Override public String getReference() { return reference; } private void setReference(String reference) { this.reference = reference; } @Override public Status getStatus() { return status; } private void setStatus(Status status) { this.status = status; } @Override public Set getChildNodes() { return new HashSet(childNodes.values()); } private void setChildNodes(Map childNodes) { if(childNodes != null) { this.childNodes = childNodes; } } @Override public Set getGroupings() { return groupings; } private void setGroupings(Set groupings) { if(groupings != null) { this.groupings = groupings; } } @Override public Set getUses() { return uses; } private void setUses(Set uses) { if(uses != null) { this.uses = uses; } } @Override public Set> getTypeDefinitions() { return typeDefinitions; } private void setTypeDefinitions(Set> typeDefinitions) { if(typeDefinitions != null) { this.typeDefinitions = typeDefinitions; } } @Override public List getUnknownSchemaNodes() { return unknownSchemaNodes; } @Override public DataSchemaNode getDataChildByName(QName name) { return childNodes.get(name); } @Override public DataSchemaNode getDataChildByName(String name) { DataSchemaNode result = null; for (Map.Entry entry : childNodes.entrySet()) { if (entry.getKey().getLocalName().equals(name)) { result = entry.getValue(); break; } } return result; } @Override public int hashCode() { final int prime = 31; 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 + ((childNodes == null) ? 0 : childNodes.hashCode()); result = prime * result + ((groupings == null) ? 0 : groupings.hashCode()); result = prime * result + ((typeDefinitions == null) ? 0 : typeDefinitions.hashCode()); result = prime * result + ((uses == null) ? 0 : uses.hashCode()); return result; } @Override public boolean equals(Object obj) { if (this == obj) { return true; } if (obj == null) { return false; } if (getClass() != obj.getClass()) { return false; } NotificationDefinitionImpl other = (NotificationDefinitionImpl) obj; if (qname == null) { if (other.qname != null) { return false; } } else if (!qname.equals(other.qname)) { return false; } if (path == null) { if (other.path != null) { return false; } } 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 (childNodes == null) { if (other.childNodes != null) { return false; } } else if (!childNodes.equals(other.childNodes)) { return false; } if (groupings == null) { if (other.groupings != null) { return false; } } else if (!groupings.equals(other.groupings)) { return false; } if (typeDefinitions == null) { if (other.typeDefinitions != null) { return false; } } else if (!typeDefinitions.equals(other.typeDefinitions)) { return false; } if (uses == null) { if (other.uses != null) { return false; } } else if (!uses.equals(other.uses)) { return false; } return true; } @Override public String toString() { StringBuilder sb = new StringBuilder( NotificationDefinitionImpl.class.getSimpleName()); sb.append("[qname=" + qname + "]"); return sb.toString(); } } }