X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=yang%2Fyang-data-impl%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fyangtools%2Fyang%2Fdata%2Fimpl%2Fschema%2Ftree%2FAbstractModifiedNodeBasedCandidateNode.java;h=92586972e9a132aa4f5617874605a5d0de42d330;hb=bb92c633b41a636162f4f14cf818f4f66d9eaab4;hp=6c947843ccd57f989891a1442f0a81767934651d;hpb=6e8cb34ea33cbcbb2990af3247fd04b6a0af6846;p=yangtools.git diff --git a/yang/yang-data-impl/src/main/java/org/opendaylight/yangtools/yang/data/impl/schema/tree/AbstractModifiedNodeBasedCandidateNode.java b/yang/yang-data-impl/src/main/java/org/opendaylight/yangtools/yang/data/impl/schema/tree/AbstractModifiedNodeBasedCandidateNode.java index 6c947843cc..92586972e9 100644 --- a/yang/yang-data-impl/src/main/java/org/opendaylight/yangtools/yang/data/impl/schema/tree/AbstractModifiedNodeBasedCandidateNode.java +++ b/yang/yang-data-impl/src/main/java/org/opendaylight/yangtools/yang/data/impl/schema/tree/AbstractModifiedNodeBasedCandidateNode.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015 Cisco Systems, Inc. and others. All rights reserved. + * Copyright (c) 2015, 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, @@ -13,6 +13,7 @@ import com.google.common.base.Verify; import com.google.common.collect.Collections2; import java.util.Collection; import java.util.Collections; +import javax.annotation.Nonnull; import javax.annotation.Nullable; import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.PathArgument; import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode; @@ -23,7 +24,7 @@ import org.opendaylight.yangtools.yang.data.api.schema.tree.spi.TreeNode; abstract class AbstractModifiedNodeBasedCandidateNode implements DataTreeCandidateNode { - private static final Function, DataTreeCandidateNode> TO_UNMODIFIED_NODES = new Function, DataTreeCandidateNode>() { + private static final Function, DataTreeCandidateNode> TO_UNMODIFIED_NODE = new Function, DataTreeCandidateNode>() { @Override public DataTreeCandidateNode apply(final NormalizedNode input) { return AbstractRecursiveCandidateNode.unmodifiedNode(input); @@ -53,7 +54,7 @@ abstract class AbstractModifiedNodeBasedCandidateNode implements DataTreeCandida return oldMeta; } - private static final TreeNode childMeta(final TreeNode parent, final PathArgument id) { + private static TreeNode childMeta(final TreeNode parent, final PathArgument id) { if (parent != null) { return parent.getChild(id).orNull(); } else { @@ -82,8 +83,11 @@ abstract class AbstractModifiedNodeBasedCandidateNode implements DataTreeCandida } @Override + @Nonnull public Collection getChildNodes() { switch (mod.getModificationType()) { + case APPEARED: + case DISAPPEARED: case SUBTREE_MODIFIED: return Collections2.transform(mod.getChildren(), new Function() { @Override @@ -95,7 +99,7 @@ abstract class AbstractModifiedNodeBasedCandidateNode implements DataTreeCandida // Unmodified node, but we still need to resolve potential children. canHaveChildren returns // false if both arguments are null. if (canHaveChildren(oldMeta, newMeta)) { - return Collections2.transform(getContainer(newMeta != null ? newMeta : oldMeta).getValue(), TO_UNMODIFIED_NODES); + return Collections2.transform(getContainer(newMeta != null ? newMeta : oldMeta).getValue(), TO_UNMODIFIED_NODE); } else { return Collections.emptyList(); } @@ -114,48 +118,60 @@ abstract class AbstractModifiedNodeBasedCandidateNode implements DataTreeCandida } @Override + @Nonnull public ModificationType getModificationType() { return Verify.verifyNotNull(mod.getModificationType(), "Node %s does not have resolved modification type", mod); } private static Optional> optionalData(final TreeNode meta) { if (meta != null) { - return Optional.>of(meta.getData()); + return Optional.of(meta.getData()); } else { return Optional.absent(); } } @Override - public Optional> getDataAfter() { + @Nonnull + public final Optional> getDataAfter() { return optionalData(newMeta); } @Override - public Optional> getDataBefore() { + @Nonnull + public final Optional> getDataBefore() { return optionalData(oldMeta); } @Override - public DataTreeCandidateNode getModifiedChild(final PathArgument identifier) { + public final DataTreeCandidateNode getModifiedChild(final PathArgument identifier) { switch (mod.getModificationType()) { + case APPEARED: + case DISAPPEARED: case SUBTREE_MODIFIED: final Optional childMod = mod.getChild(identifier); if (childMod.isPresent()) { return childNode(childMod.get()); } return null; - case DELETE: case UNMODIFIED: - case WRITE: - // FIXME: this is a linear walk. We need a Map of these in order to - // do something like getChildMap().get(identifier); - for (DataTreeCandidateNode c : getChildNodes()) { - if (identifier.equals(c.getIdentifier())) { - return c; + if (canHaveChildren(oldMeta, newMeta)) { + final Optional> maybeChild = getContainer(newMeta != null ? newMeta : oldMeta).getChild(identifier); + if (maybeChild.isPresent()) { + return TO_UNMODIFIED_NODE.apply(maybeChild.get()); + } else { + return null; } + } else { + return null; + } + case DELETE: + case WRITE: + if (canHaveChildren(oldMeta, newMeta)) { + return AbstractDataTreeCandidateNode.deltaChild(getContainer(oldMeta), getContainer(newMeta), identifier); + } else { + return null; } - return null; default: throw new IllegalArgumentException("Unhandled modification type " + mod.getModificationType()); } @@ -167,8 +183,15 @@ abstract class AbstractModifiedNodeBasedCandidateNode implements DataTreeCandida } @Override + @Nonnull public PathArgument getIdentifier() { return getMod().getIdentifier(); } } -} \ No newline at end of file + + @Override + public String toString() { + return this.getClass().getSimpleName() + "{mod = " + this.mod + ", oldMeta = " + this.oldMeta + ", newMeta = " + + this.newMeta + "}"; + } +}