/* * Copyright (c) 2016 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.rfc7950.stmt.action; import com.google.common.base.MoreObjects; import com.google.common.base.Verify; import com.google.common.collect.ImmutableSet; import java.util.HashSet; import java.util.LinkedHashSet; import java.util.Objects; import java.util.Set; import org.opendaylight.yangtools.yang.common.QName; import org.opendaylight.yangtools.yang.model.api.ActionDefinition; import org.opendaylight.yangtools.yang.model.api.ContainerSchemaNode; import org.opendaylight.yangtools.yang.model.api.GroupingDefinition; import org.opendaylight.yangtools.yang.model.api.TypeDefinition; import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement; import org.opendaylight.yangtools.yang.model.api.stmt.ActionEffectiveStatement; import org.opendaylight.yangtools.yang.model.api.stmt.ActionStatement; import org.opendaylight.yangtools.yang.model.api.stmt.InputEffectiveStatement; import org.opendaylight.yangtools.yang.model.api.stmt.OutputEffectiveStatement; import org.opendaylight.yangtools.yang.model.api.stmt.TypedefEffectiveStatement; import org.opendaylight.yangtools.yang.parser.rfc7950.stmt.AbstractEffectiveSchemaNode; import org.opendaylight.yangtools.yang.parser.rfc7950.stmt.EffectiveStmtUtils; import org.opendaylight.yangtools.yang.parser.spi.meta.CopyHistory; import org.opendaylight.yangtools.yang.parser.spi.meta.CopyType; import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext; final class ActionEffectiveStatementImpl extends AbstractEffectiveSchemaNode implements ActionDefinition, ActionEffectiveStatement { private final ContainerSchemaNode input; private final ContainerSchemaNode output; private final Set> typeDefinitions; private final Set groupings; private final boolean augmenting; private final boolean addedByUses; ActionEffectiveStatementImpl( final StmtContext> ctx) { super(ctx); input = findAsContainer(this, InputEffectiveStatement.class); output = findAsContainer(this, OutputEffectiveStatement.class); // initSubstatements final Set groupingsInit = new HashSet<>(); final Set> mutableTypeDefinitions = new LinkedHashSet<>(); for (final EffectiveStatement effectiveStatement : effectiveSubstatements()) { if (effectiveStatement instanceof GroupingDefinition) { final GroupingDefinition groupingDefinition = (GroupingDefinition) effectiveStatement; groupingsInit.add(groupingDefinition); } if (effectiveStatement instanceof TypedefEffectiveStatement) { final TypedefEffectiveStatement typeDef = (TypedefEffectiveStatement) effectiveStatement; final TypeDefinition type = typeDef.getTypeDefinition(); if (!mutableTypeDefinitions.contains(type)) { mutableTypeDefinitions.add(type); } else { throw EffectiveStmtUtils.createNameCollisionSourceException(ctx, effectiveStatement); } } } this.groupings = ImmutableSet.copyOf(groupingsInit); this.typeDefinitions = ImmutableSet.copyOf(mutableTypeDefinitions); // initCopyType final CopyHistory copyTypesFromOriginal = ctx.getCopyHistory(); if (copyTypesFromOriginal.contains(CopyType.ADDED_BY_USES_AUGMENTATION)) { this.augmenting = true; this.addedByUses = true; } else { this.augmenting = copyTypesFromOriginal.contains(CopyType.ADDED_BY_AUGMENTATION); this.addedByUses = copyTypesFromOriginal.contains(CopyType.ADDED_BY_USES); } } private static ContainerSchemaNode findAsContainer(final EffectiveStatement parent, final Class> statementType) { final EffectiveStatement statement = parent.findFirstEffectiveSubstatement(statementType).get(); Verify.verify(statement instanceof ContainerSchemaNode, "Child statement %s is not a ContainerSchemaNode"); return (ContainerSchemaNode) statement; } @Override public ContainerSchemaNode getInput() { return input; } @Override public ContainerSchemaNode getOutput() { return output; } @Override public Set> getTypeDefinitions() { return typeDefinitions; } @Override public Set getGroupings() { return groupings; } @Override public boolean isAugmenting() { return augmenting; } @Override public boolean isAddedByUses() { return addedByUses; } @Override public int hashCode() { return Objects.hash(getQName(), getPath()); } @Override public boolean equals(final Object obj) { if (this == obj) { return true; } if (obj == null) { return false; } if (getClass() != obj.getClass()) { return false; } final ActionEffectiveStatementImpl other = (ActionEffectiveStatementImpl) obj; return Objects.equals(getQName(), other.getQName()) && Objects.equals(getPath(), other.getPath()); } @Override public String toString() { return MoreObjects.toStringHelper(this).add("qname", getQName()).add("path", getPath()).add("input", input) .add("output", output).toString(); } }