X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=yang%2Fyang-parser-impl%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fyangtools%2Fyang%2Fparser%2Fstmt%2Frfc6020%2FAugmentStatementImpl.java;h=50e6a73e33d33e3e3d306ceb4c6d0c11a79a2870;hb=75402d418085d05b6924a7729f84a78700f8032a;hp=b570d68908fc8149754195e86c9e0969d905a008;hpb=09755fe9c958f3b10e49ec533a589fb0ad60545d;p=yangtools.git diff --git a/yang/yang-parser-impl/src/main/java/org/opendaylight/yangtools/yang/parser/stmt/rfc6020/AugmentStatementImpl.java b/yang/yang-parser-impl/src/main/java/org/opendaylight/yangtools/yang/parser/stmt/rfc6020/AugmentStatementImpl.java index b570d68908..50e6a73e33 100644 --- a/yang/yang-parser-impl/src/main/java/org/opendaylight/yangtools/yang/parser/stmt/rfc6020/AugmentStatementImpl.java +++ b/yang/yang-parser-impl/src/main/java/org/opendaylight/yangtools/yang/parser/stmt/rfc6020/AugmentStatementImpl.java @@ -8,7 +8,7 @@ package org.opendaylight.yangtools.yang.parser.stmt.rfc6020; import com.google.common.base.Verify; -import com.google.common.collect.ImmutableList.Builder; +import com.google.common.collect.ImmutableList; import com.google.common.collect.ImmutableSet; import java.util.ArrayList; import java.util.Collection; @@ -18,6 +18,7 @@ import java.util.Set; import java.util.regex.Pattern; import javax.annotation.Nonnull; import org.opendaylight.yangtools.yang.common.QName; +import org.opendaylight.yangtools.yang.common.YangVersion; import org.opendaylight.yangtools.yang.model.api.YangStmtMapping; import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement; import org.opendaylight.yangtools.yang.model.api.stmt.ActionStatement; @@ -43,7 +44,6 @@ import org.opendaylight.yangtools.yang.parser.spi.source.SourceException; import org.opendaylight.yangtools.yang.parser.spi.source.StmtOrderingNamespace; import org.opendaylight.yangtools.yang.parser.spi.validation.ValidationBundlesNamespace; import org.opendaylight.yangtools.yang.parser.spi.validation.ValidationBundlesNamespace.ValidationBundleType; -import org.opendaylight.yangtools.yang.parser.stmt.reactor.RootStatementContext; import org.opendaylight.yangtools.yang.parser.stmt.reactor.StatementContextBase; import org.opendaylight.yangtools.yang.parser.stmt.rfc6020.effective.AugmentEffectiveStatementImpl; import org.slf4j.Logger; @@ -105,8 +105,8 @@ public class AugmentStatementImpl extends AbstractDeclaredStatement> augmentNode) { - if (!StmtContextUtils.areFeaturesSupported(augmentNode)) { + final Mutable> augmentNode) { + if (!augmentNode.isSupportedByFeatures()) { return; } @@ -125,8 +125,9 @@ public class AugmentStatementImpl extends AbstractDeclaredStatement augmentTargetCtx = (StatementContextBase) target.get(); + public void apply(final ModelActionBuilder.InferenceContext ctx) { + final StatementContextBase augmentTargetCtx = + (StatementContextBase) target.resolve(ctx); if (!isSupportedAugmentTarget(augmentTargetCtx) || StmtContextUtils.isInExtensionBody(augmentTargetCtx)) { augmentNode.setIsSupportedToBuildEffective(false); @@ -147,7 +148,7 @@ public class AugmentStatementImpl extends AbstractDeclaredStatement targetNode = Utils.findNode(getSearchRoot(augmentNode), augmentNode.getStatementArgument()); - if (Utils.isUnknownNode(targetNode)) { + if (StmtContextUtils.isUnknownNode(targetNode)) { augmentNode.setIsSupportedToBuildEffective(false); LOG.warn( "Uses-augment to unknown node {}. Augmentation has not been performed. At line: {}", @@ -203,52 +204,75 @@ public class AugmentStatementImpl extends AbstractDeclaredStatement> declared = sourceCtx.declaredSubstatements(); - final Collection> effective = sourceCtx.effectiveSubstatements(); - final Collection> buffer = new ArrayList<>(declared.size() + effective.size()); + final Collection> declared = sourceCtx.mutableDeclaredSubstatements(); + final Collection> effective = sourceCtx.mutableEffectiveSubstatements(); + final Collection> buffer = new ArrayList<>(declared.size() + effective.size()); - for (final StatementContextBase originalStmtCtx : declared) { - if (StmtContextUtils.areFeaturesSupported(originalStmtCtx)) { - copyStatement(originalStmtCtx, targetCtx, typeOfCopy, buffer); + for (final Mutable originalStmtCtx : declared) { + if (originalStmtCtx.isSupportedByFeatures()) { + copyStatement(originalStmtCtx, targetCtx, typeOfCopy, buffer, skipCheckOfMandatoryNodes); } } - for (final StatementContextBase originalStmtCtx : effective) { - copyStatement(originalStmtCtx, targetCtx, typeOfCopy, buffer); + for (final Mutable originalStmtCtx : effective) { + copyStatement(originalStmtCtx, targetCtx, typeOfCopy, buffer, skipCheckOfMandatoryNodes); } targetCtx.addEffectiveSubstatements(buffer); } - private static void copyStatement(final StatementContextBase original, - final StatementContextBase target, final CopyType typeOfCopy, - final Collection> buffer) { + /** + * Checks whether supplied statement context is conditional augment + * statement. + * + * @param ctx + * statement context to be checked + * + * @return true if supplied statement context is conditional augment + * statement, otherwise false + */ + private static boolean isConditionalAugmentStmt(final StmtContext ctx) { + return ctx.getPublicDefinition() == YangStmtMapping.AUGMENT + && StmtContextUtils.findFirstSubstatement(ctx, WhenStatement.class) != null; + } + + private static void copyStatement(final Mutable original, final StatementContextBase target, + final CopyType typeOfCopy, final Collection> buffer, + final boolean skipCheckOfMandatoryNodes) { if (needToCopyByAugment(original)) { - validateNodeCanBeCopiedByAugment(original, target, typeOfCopy); + validateNodeCanBeCopiedByAugment(original, target, typeOfCopy, skipCheckOfMandatoryNodes); - final StatementContextBase copy = original.createCopy(target, typeOfCopy); + final Mutable copy = original.createCopy(target, typeOfCopy); buffer.add(copy); } else if (isReusedByAugment(original)) { buffer.add(original); } } - private static void validateNodeCanBeCopiedByAugment(final StatementContextBase sourceCtx, - final StatementContextBase targetCtx, final CopyType typeOfCopy) { + private static void validateNodeCanBeCopiedByAugment(final StmtContext sourceCtx, + final StatementContextBase targetCtx, final CopyType typeOfCopy, + final boolean skipCheckOfMandatoryNodes) { if (WhenStatement.class.equals(sourceCtx.getPublicDefinition().getDeclaredRepresentationClass())) { return; } - if (typeOfCopy == CopyType.ADDED_BY_AUGMENTATION && reguiredCheckOfMandatoryNodes(sourceCtx, targetCtx)) { + if (!skipCheckOfMandatoryNodes && typeOfCopy == CopyType.ADDED_BY_AUGMENTATION + && reguiredCheckOfMandatoryNodes(sourceCtx, targetCtx)) { checkForMandatoryNodes(sourceCtx); } - final List> targetSubStatements = new Builder>() - .addAll(targetCtx.declaredSubstatements()).addAll(targetCtx.effectiveSubstatements()).build(); - - for (final StatementContextBase subStatement : targetSubStatements) { + final List> targetSubStatements = ImmutableList.>builder() + .addAll(targetCtx.mutableDeclaredSubstatements()).addAll(targetCtx.mutableEffectiveSubstatements()) + .build(); + for (final Mutable subStatement : targetSubStatements) { final boolean sourceIsDataNode = DataDefinitionStatement.class.isAssignableFrom(sourceCtx .getPublicDefinition().getDeclaredRepresentationClass()); final boolean targetIsDataNode = DataDefinitionStatement.class.isAssignableFrom(subStatement @@ -262,7 +286,7 @@ public class AugmentStatementImpl extends AbstractDeclaredStatement sourceCtx) { + private static void checkForMandatoryNodes(final StmtContext sourceCtx) { if (StmtContextUtils.isNonPresenceContainer(sourceCtx)) { /* * We need to iterate over both declared and effective sub-statements, @@ -281,8 +305,8 @@ public class AugmentStatementImpl extends AbstractDeclaredStatement sourceCtx, - StatementContextBase targetCtx) { + private static boolean reguiredCheckOfMandatoryNodes(final StmtContext sourceCtx, + Mutable targetCtx) { /* * If the statement argument is not QName, it cannot be mandatory * statement, therefore return false and skip mandatory nodes validation @@ -292,7 +316,8 @@ public class AugmentStatementImpl extends AbstractDeclaredStatement root = targetCtx.getRoot(); + // RootStatementContext, for example + final Mutable root = targetCtx.getRoot(); do { Verify.verify(targetCtx.getStatementArgument() instanceof QName, "Argument of augment target statement must be QName."); @@ -306,11 +331,16 @@ public class AugmentStatementImpl extends AbstractDeclaredStatement substatementCtx) { - + static boolean isSupportedAugmentTarget(final StmtContext substatementCtx) { /* * :TODO Substatement must be allowed augment target type e.g. * Container, etc... and must not be for example grouping, identity etc. @@ -345,9 +374,8 @@ public class AugmentStatementImpl extends AbstractDeclaredStatement allowedAugmentTargets = substatementCtx.getFromNamespace(ValidationBundlesNamespace.class, - ValidationBundleType.SUPPORTED_AUGMENT_TARGETS); + final Collection allowedAugmentTargets = substatementCtx.getFromNamespace( + ValidationBundlesNamespace.class, ValidationBundleType.SUPPORTED_AUGMENT_TARGETS); // if no allowed target is returned we consider all targets allowed return allowedAugmentTargets == null || allowedAugmentTargets.isEmpty() @@ -358,7 +386,6 @@ public class AugmentStatementImpl extends AbstractDeclaredStatement