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%2FModifiedNode.java;h=5456380cc51609730143f0496b65824a9b8ee122;hb=0535a285e10b25281b8a3a4ac18d2f584a3cd5e3;hp=653bf82635d9f1ef8f9722c718ed8a1a1d606417;hpb=3e4972b4e8edd7387666808014cd33daddef2cb5;p=yangtools.git diff --git a/yang/yang-data-impl/src/main/java/org/opendaylight/yangtools/yang/data/impl/schema/tree/ModifiedNode.java b/yang/yang-data-impl/src/main/java/org/opendaylight/yangtools/yang/data/impl/schema/tree/ModifiedNode.java index 653bf82635..5456380cc5 100644 --- a/yang/yang-data-impl/src/main/java/org/opendaylight/yangtools/yang/data/impl/schema/tree/ModifiedNode.java +++ b/yang/yang-data-impl/src/main/java/org/opendaylight/yangtools/yang/data/impl/schema/tree/ModifiedNode.java @@ -7,11 +7,12 @@ */ package org.opendaylight.yangtools.yang.data.impl.schema.tree; -import com.google.common.base.Optional; -import com.google.common.base.Preconditions; -import com.google.common.base.Predicate; +import static java.util.Objects.requireNonNull; + import java.util.Collection; import java.util.Map; +import java.util.Optional; +import java.util.function.Predicate; import javax.annotation.Nonnull; import javax.annotation.concurrent.NotThreadSafe; import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.PathArgument; @@ -24,12 +25,14 @@ import org.opendaylight.yangtools.yang.data.api.schema.tree.spi.TreeNodeFactory; import org.opendaylight.yangtools.yang.data.api.schema.tree.spi.Version; /** - * Node Modification Node and Tree + * Node Modification Node and Tree. * + *

* Tree which structurally resembles data tree and captures client modifications to the data store tree. This tree is * lazily created and populated via {@link #modifyChild(PathArgument, ModificationApplyOperation, Version)} and * {@link TreeNode} which represents original state as tracked by {@link #getOriginal()}. * + *

* The contract is that the state information exposed here preserves the temporal ordering of whatever modifications * were executed. A child's effects pertain to data node as modified by its ancestors. This means that in order to * reconstruct the effective data node presentation, it is sufficient to perform a depth-first pre-order traversal of @@ -38,7 +41,7 @@ import org.opendaylight.yangtools.yang.data.api.schema.tree.spi.Version; @NotThreadSafe final class ModifiedNode extends NodeModification implements StoreTreeNode { static final Predicate IS_TERMINAL_PREDICATE = input -> { - Preconditions.checkNotNull(input); + requireNonNull(input); switch (input.getOperation()) { case DELETE: case MERGE: @@ -47,9 +50,9 @@ final class ModifiedNode extends NodeModification implements StoreTreeNode children; @@ -68,7 +71,8 @@ final class ModifiedNode extends NodeModification implements StoreTreeNode validatedCurrent; private TreeNode validatedNode; - private ModifiedNode(final PathArgument identifier, final Optional original, final ChildTrackingPolicy childPolicy) { + private ModifiedNode(final PathArgument identifier, final Optional original, + final ChildTrackingPolicy childPolicy) { this.identifier = identifier; this.original = original; this.children = childPolicy.createMap(); @@ -102,20 +106,17 @@ final class ModifiedNode extends NodeModification implements StoreTreeNode getChild(final PathArgument child) { - return Optional.fromNullable(children.get(child)); + return Optional.ofNullable(children.get(child)); } private Optional metadataFromSnapshot(@Nonnull final PathArgument child) { - return original.isPresent() ? original.get().getChild(child) : Optional.absent(); + return original.isPresent() ? original.get().getChild(child) : Optional.empty(); } private Optional metadataFromData(@Nonnull final PathArgument child, final Version modVersion) { @@ -140,28 +141,25 @@ final class ModifiedNode extends NodeModification implements StoreTreeNode findOriginalMetadata(@Nonnull final PathArgument child, final Version modVersion) { switch (operation) { - case DELETE: - // DELETE implies non-presence - return Optional.absent(); - case NONE: - case TOUCH: - case MERGE: - return metadataFromSnapshot(child); - case WRITE: - // WRITE implies presence based on written data - return metadataFromData(child, modVersion); + case DELETE: + // DELETE implies non-presence + return Optional.empty(); + case NONE: + case TOUCH: + case MERGE: + return metadataFromSnapshot(child); + case WRITE: + // WRITE implies presence based on written data + return metadataFromData(child, modVersion); + default: + throw new IllegalStateException("Unhandled node operation " + operation); } - - throw new IllegalStateException("Unhandled node operation " + operation); } /** - * * Returns child modification if child was modified, creates {@link ModifiedNode} - * for child otherwise. - * - * If this node's {@link ModificationType} is {@link ModificationType#UNMODIFIED} - * changes modification type to {@link ModificationType#SUBTREE_MODIFIED} + * for child otherwise. If this node's {@link ModificationType} is {@link ModificationType#UNMODIFIED} + * changes modification type to {@link ModificationType#SUBTREE_MODIFIED}. * * @param child child identifier, may not be null * @param childOper Child operation @@ -201,7 +199,7 @@ final class ModifiedNode extends NodeModification implements StoreTreeNode value) { updateValue(LogicalOperation.WRITE, value); @@ -263,7 +259,8 @@ final class ModifiedNode extends NodeModification implements StoreTreeNode result = schema.apply(this, getOriginal(), version); - if (result.isPresent()) { - schema.verifyStructure(result.get().getData(), true); - } - break; default: break; } @@ -315,7 +296,7 @@ final class ModifiedNode extends NodeModification implements StoreTreeNode setSnapshot(final Optional snapshot) { - snapshotCache = Preconditions.checkNotNull(snapshot); + snapshotCache = requireNonNull(snapshot); return snapshot; } @@ -345,7 +326,7 @@ final class ModifiedNode extends NodeModification implements StoreTreeNode value) { - this.value = Preconditions.checkNotNull(value); + this.value = requireNonNull(value); updateOperationType(type); } @@ -366,9 +347,9 @@ final class ModifiedNode extends NodeModification implements StoreTreeNode current, final TreeNode node) { - this.validatedOp = Preconditions.checkNotNull(op); - this.validatedCurrent = Preconditions.checkNotNull(current); - this.validatedNode = Preconditions.checkNotNull(node); + this.validatedOp = requireNonNull(op); + this.validatedCurrent = requireNonNull(current); + this.validatedNode = requireNonNull(node); } TreeNode getValidatedNode(final SchemaAwareApplyOperation op, final Optional current) {