/* * 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.ArrayList; import java.util.Collections; import java.util.List; import org.opendaylight.controller.yang.common.QName; import org.opendaylight.controller.yang.model.api.ExtensionDefinition; import org.opendaylight.controller.yang.model.api.SchemaPath; import org.opendaylight.controller.yang.model.api.Status; import org.opendaylight.controller.yang.model.api.UnknownSchemaNode; import org.opendaylight.controller.yang.model.parser.builder.api.SchemaNodeBuilder; public class ExtensionBuilder implements SchemaNodeBuilder { private final ExtensionDefinitionImpl instance; private final QName qname; private final List addedExtensions = new ArrayList(); private final List addedUnknownNodes = new ArrayList(); ExtensionBuilder(QName qname) { this.qname = qname; instance = new ExtensionDefinitionImpl(qname); } @Override public ExtensionDefinition build() { List extensions = new ArrayList(); for (UnknownSchemaNodeBuilder e : addedExtensions) { extensions.add(e.build()); } instance.setUnknownSchemaNodes(extensions); return instance; } public void addExtension(UnknownSchemaNodeBuilder extension) { addedExtensions.add(extension); } public void setYinElement(boolean yin) { instance.setYinElement(yin); } public void setArgument(String argument) { instance.setArgument(argument); } @Override public QName getQName() { return qname; } @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); } @Override public void addUnknownSchemaNode(UnknownSchemaNodeBuilder unknownSchemaNodeBuilder) { addedUnknownNodes.add(unknownSchemaNodeBuilder); } private static class ExtensionDefinitionImpl implements ExtensionDefinition { private final QName qname; private String argument; private SchemaPath schemaPath; private String description; private String reference; private Status status = Status.CURRENT; private List unknownSchemaNodes = Collections .emptyList(); private boolean yin; private ExtensionDefinitionImpl(QName qname) { this.qname = qname; } @Override public QName getQName() { return qname; } @Override public SchemaPath getPath() { return schemaPath; } private void setPath(SchemaPath schemaPath) { this.schemaPath = schemaPath; } @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) { if (status != null) { this.status = status; } } @Override public List getUnknownSchemaNodes() { return unknownSchemaNodes; } private void setUnknownSchemaNodes( List unknownSchemaNodes) { if(unknownSchemaNodes != null) { this.unknownSchemaNodes = unknownSchemaNodes; } } @Override public String getArgument() { return argument; } private void setArgument(String argument) { this.argument = argument; } @Override public boolean isYinElement() { return yin; } private void setYinElement(boolean yin) { this.yin = yin; } @Override public int hashCode() { final int prime = 31; int result = 1; result = prime * result + ((qname == null) ? 0 : qname.hashCode()); result = prime * result + ((schemaPath == null) ? 0 : schemaPath.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 + ((unknownSchemaNodes == null) ? 0 : unknownSchemaNodes.hashCode()); result = prime * result + (yin ? 1231 : 1237); return result; } @Override public boolean equals(Object obj) { if (this == obj) { return true; } if (obj == null) { return false; } if (getClass() != obj.getClass()) { return false; } ExtensionDefinitionImpl other = (ExtensionDefinitionImpl) obj; if (qname == null) { if (other.qname != null) { return false; } } else if (!qname.equals(other.qname)) { return false; } if (schemaPath == null) { if (other.schemaPath != null) { return false; } } else if (!schemaPath.equals(other.schemaPath)) { 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 (unknownSchemaNodes == null) { if (other.unknownSchemaNodes != null) { return false; } } else if (!unknownSchemaNodes.equals(other.unknownSchemaNodes)) { return false; } if (yin != other.yin) { return false; } return true; } @Override public String toString() { StringBuilder sb = new StringBuilder( ExtensionDefinitionImpl.class.getSimpleName()); sb.append("["); sb.append("argument="+ argument); sb.append(", qname=" + qname); sb.append(", schemaPath=" + schemaPath); sb.append(", description=" + description); sb.append(", reference=" + reference); sb.append(", status=" + status); sb.append(", extensionSchemaNodes=" + unknownSchemaNodes); sb.append(", yin=" + yin); sb.append("]"); return sb.toString(); } } }