/** * Copyright (c) 2015 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.yangtools.yang.parser.stmt.rfc6020.effective; import com.google.common.base.Optional; import com.google.common.collect.ImmutableList; import java.util.Collection; import java.util.LinkedList; import java.util.List; import java.util.Objects; import org.opendaylight.yangtools.yang.common.QName; import org.opendaylight.yangtools.yang.model.api.ConstraintDefinition; import org.opendaylight.yangtools.yang.model.api.DerivableSchemaNode; import org.opendaylight.yangtools.yang.model.api.LeafListSchemaNode; import org.opendaylight.yangtools.yang.model.api.SchemaPath; import org.opendaylight.yangtools.yang.model.api.TypeDefinition; import org.opendaylight.yangtools.yang.model.api.UnknownSchemaNode; import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement; import org.opendaylight.yangtools.yang.model.api.stmt.LeafListStatement; import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext; import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext.TypeOfCopy; import org.opendaylight.yangtools.yang.parser.stmt.rfc6020.TypeUtils; import org.opendaylight.yangtools.yang.parser.stmt.rfc6020.Utils; public class LeafListEffectiveStatementImpl extends AbstractEffectiveDocumentedNode implements LeafListSchemaNode, DerivableSchemaNode { private final QName qname; private final SchemaPath path; // FIXME: should be private boolean augmenting; private boolean addedByUses; private LeafListSchemaNode original; private boolean configuration = true; private final ConstraintDefinition constraintsDef; private TypeDefinition type; private boolean userOrdered; private ImmutableList unknownNodes; public LeafListEffectiveStatementImpl( final StmtContext> ctx) { super(ctx); this.qname = ctx.getStatementArgument(); this.path = Utils.getSchemaPath(ctx); this.constraintsDef = new EffectiveConstraintDefinitionImpl(this); // :TODO init TypeDefinition initSubstatementCollections(); initCopyType(ctx); } private void initCopyType( final StmtContext> ctx) { List copyTypesFromOriginal = ctx.getCopyHistory(); if (copyTypesFromOriginal.contains(TypeOfCopy.ADDED_BY_AUGMENTATION)) { augmenting = true; } if (copyTypesFromOriginal.contains(TypeOfCopy.ADDED_BY_USES)) { addedByUses = true; } if (copyTypesFromOriginal.contains(TypeOfCopy.ADDED_BY_USES_AUGMENTATION)) { addedByUses = augmenting = true; } if (ctx.getOriginalCtx() != null) { original = (LeafListSchemaNode) ctx.getOriginalCtx().buildEffective(); } } private void initSubstatementCollections() { Collection> effectiveSubstatements = effectiveSubstatements(); List unknownNodesInit = new LinkedList<>(); boolean configurationInit = false; boolean userOrderedInit = false; for (EffectiveStatement effectiveStatement : effectiveSubstatements) { if (effectiveStatement instanceof UnknownSchemaNode) { unknownNodesInit.add((UnknownSchemaNode) effectiveStatement); } if (effectiveStatement instanceof TypeDefinition) { type = TypeUtils.getTypeFromEffectiveStatement(effectiveStatement); } if (!configurationInit && effectiveStatement instanceof ConfigEffectiveStatementImpl) { ConfigEffectiveStatementImpl configStmt = (ConfigEffectiveStatementImpl) effectiveStatement; this.configuration = configStmt.argument(); configurationInit = true; } if (!userOrderedInit && effectiveStatement instanceof OrderedByEffectiveStatementImpl) { OrderedByEffectiveStatementImpl orderedByStmt = (OrderedByEffectiveStatementImpl) effectiveStatement; this.userOrdered = orderedByStmt.argument().equals("user") ? true : false; userOrderedInit = true; } } this.unknownNodes = ImmutableList.copyOf(unknownNodesInit); } @Override public QName getQName() { return qname; } @Override public SchemaPath getPath() { return path; } @Override public boolean isAugmenting() { return augmenting; } @Override public boolean isAddedByUses() { return addedByUses; } @Override public Optional getOriginal() { return Optional.fromNullable(original); } @Override public boolean isConfiguration() { return configuration; } @Override public ConstraintDefinition getConstraints() { return constraintsDef; } @Override public TypeDefinition getType() { return type; } @Override public boolean isUserOrdered() { return userOrdered; } @Override public List getUnknownSchemaNodes() { return unknownNodes; } @Override public int hashCode() { final int prime = 31; int result = 1; result = prime * result + Objects.hashCode(qname); result = prime * result + Objects.hashCode(path); return result; } @Override public boolean equals(final Object obj) { if (this == obj) { return true; } if (obj == null) { return false; } if (getClass() != obj.getClass()) { return false; } LeafListEffectiveStatementImpl other = (LeafListEffectiveStatementImpl) obj; return Objects.equals(qname, other.qname) && Objects.equals(path, other.path); } @Override public String toString() { StringBuilder sb = new StringBuilder(LeafListEffectiveStatementImpl.class.getSimpleName()); sb.append("["); sb.append(qname); sb.append("]"); return sb.toString(); } }