/* * Copyright (c) 2014 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.data.impl.schema.tree; import com.google.common.base.Optional; import com.google.common.base.Preconditions; import com.google.common.base.Predicate; import java.util.Collection; import java.util.Map; import javax.annotation.Nonnull; import javax.annotation.concurrent.NotThreadSafe; import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.PathArgument; import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode; import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNodes; import org.opendaylight.yangtools.yang.data.api.schema.tree.ModificationType; import org.opendaylight.yangtools.yang.data.api.schema.tree.StoreTreeNode; import org.opendaylight.yangtools.yang.data.api.schema.tree.spi.TreeNode; 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 * * 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)} * and {@link TreeNode} which represents original state as tracked by {@link #getOriginal()}. */ @NotThreadSafe final class ModifiedNode extends NodeModification implements StoreTreeNode { static final Predicate IS_TERMINAL_PREDICATE = new Predicate() { @Override public boolean apply(@Nonnull final ModifiedNode input) { Preconditions.checkNotNull(input); switch (input.getOperation()) { case DELETE: case MERGE: case WRITE: return true; case TOUCH: case NONE: return false; } throw new IllegalArgumentException(String.format("Unhandled modification type %s", input.getOperation())); } }; private final Map children; private final Optional original; private final PathArgument identifier; private LogicalOperation operation = LogicalOperation.NONE; private Optional snapshotCache; private NormalizedNode value; private ModificationType modType; // Alternative history introduced in WRITE nodes. Instantiated when we touch any child underneath such a node. private TreeNode writtenOriginal; private ModifiedNode(final PathArgument identifier, final Optional original, final ChildTrackingPolicy childPolicy) { this.identifier = identifier; this.original = original; this.children = childPolicy.createMap(); } /** * Return the value which was written to this node. * * @return Currently-written value */ public NormalizedNode getWrittenValue() { return value; } @Override public PathArgument getIdentifier() { return identifier; } @Override Optional getOriginal() { return original; } @Override LogicalOperation getOperation() { return operation; } /** * * Returns child modification if child was modified * * @return Child modification if direct child or it's subtree * was modified. * */ @Override public Optional getChild(final PathArgument child) { return Optional. fromNullable(children.get(child)); } private Optional metadataFromSnapshot(@Nonnull final PathArgument child) { return original.isPresent() ? original.get().getChild(child) : Optional.absent(); } private Optional metadataFromData(@Nonnull final PathArgument child, final Version modVersion) { if (writtenOriginal == null) { // Lazy instantiation, as we do not want do this for all writes. We are using the modification's version // here, as that version is what the SchemaAwareApplyOperation will see when dealing with the resulting // modifications. writtenOriginal = TreeNodeFactory.createTreeNode(value, modVersion); } return writtenOriginal.getChild(child); } /** * Determine the base tree node we are going to apply the operation to. This is not entirely trivial because * both DELETE and WRITE operations unconditionally detach their descendants from the original snapshot, so we need * to take the current node's operation into account. * * @param child Child we are looking to modify * @param modVersion Version allocated by the calling {@link InMemoryDataTreeModification} * @return Before-image tree node as observed by that child. */ private Optional findOriginalMetadata(@Nonnull final PathArgument child, final Version modVersion) { switch (operation) { case DELETE: // DELETE implies non-presence return Optional.absent(); case NONE: case TOUCH: return metadataFromSnapshot(child); case MERGE: // MERGE is half-way between TOUCH and WRITE. If the child exists in data, it behaves as a WRITE, otherwise // it behaves as a TOUCH if (NormalizedNodes.findNode(value, child).isPresent()) { return metadataFromData(child, modVersion); } else { return metadataFromSnapshot(child); } case WRITE: // WRITE implies presence based on written data return metadataFromData(child, modVersion); } 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} * * @param child child identifier, may not be null * @param childPolicy child tracking policy for the node we are looking for * @param modVersion Version allocated by the calling {@link InMemoryDataTreeModification} * @return {@link ModifiedNode} for specified child, with {@link #getOriginal()} * containing child metadata if child was present in original data. */ ModifiedNode modifyChild(@Nonnull final PathArgument child, @Nonnull final ChildTrackingPolicy childPolicy, @Nonnull final Version modVersion) { clearSnapshot(); if (operation == LogicalOperation.NONE) { updateOperationType(LogicalOperation.TOUCH); } final ModifiedNode potential = children.get(child); if (potential != null) { return potential; } final Optional currentMetadata = findOriginalMetadata(child, modVersion); final ModifiedNode newlyCreated = new ModifiedNode(child, currentMetadata, childPolicy); children.put(child, newlyCreated); return newlyCreated; } /** * Returns all recorded direct child modification * * @return all recorded direct child modifications */ @Override Collection getChildren() { return children.values(); } /** * Records a delete for associated node. */ void delete() { final LogicalOperation newType; switch (operation) { case DELETE: case NONE: // We need to record this delete. newType = LogicalOperation.DELETE; break; case MERGE: case TOUCH: case WRITE: /* * We are canceling a previous modification. This is a bit tricky, * as the original write may have just introduced the data, or it * may have modified it. * * As documented in BUG-2470, a delete of data introduced in this * transaction needs to be turned into a no-op. */ newType = original.isPresent() ? LogicalOperation.DELETE : LogicalOperation.NONE; break; default: throw new IllegalStateException("Unhandled deletion of node with " + operation); } clearSnapshot(); children.clear(); this.value = null; updateOperationType(newType); } /** * Records a write for associated node. * * @param value */ void write(final NormalizedNode value) { pushWrite(value); children.clear(); } // Promote the node to write, but do not lose children void pushWrite(final NormalizedNode value) { clearSnapshot(); updateOperationType(LogicalOperation.WRITE); this.value = value; } void merge(final NormalizedNode value) { clearSnapshot(); updateOperationType(LogicalOperation.MERGE); /* * Blind overwrite of any previous data is okay, no matter whether the node * is simple or complex type. * * If this is a simple or complex type with unkeyed children, this merge will * be turned into a write operation, overwriting whatever was there before. * * If this is a container with keyed children, there are two possibilities: * - if it existed before, this value will never be consulted and the children * will get explicitly merged onto the original data. * - if it did not exist before, this value will be used as a seed write and * children will be merged into it. * In either case we rely on OperationWithModification to manipulate the children * before calling this method, so unlike a write we do not want to clear them. */ this.value = value; } /** * Seal the modification node and prune any children which has not been modified. * * @param schema */ void seal(final ModificationApplyOperation schema, final Version version) { clearSnapshot(); writtenOriginal = null; switch (operation) { case TOUCH: // A TOUCH node without any children is a no-op if (children.isEmpty()) { updateOperationType(LogicalOperation.NONE); } break; case WRITE: // A WRITE can collapse all of its children if (!children.isEmpty()) { value = schema.apply(this, getOriginal(), version).get().getData(); children.clear(); } schema.verifyStructure(value, true); break; default: break; } } private void clearSnapshot() { snapshotCache = null; } Optional getSnapshot() { return snapshotCache; } Optional setSnapshot(final Optional snapshot) { snapshotCache = Preconditions.checkNotNull(snapshot); return snapshot; } private void updateOperationType(final LogicalOperation type) { operation = type; modType = null; // Make sure we do not reuse previously-instantiated data-derived metadata writtenOriginal = null; clearSnapshot(); } @Override public String toString() { return "NodeModification [identifier=" + identifier + ", modificationType=" + operation + ", childModification=" + children + "]"; } void resolveModificationType(@Nonnull final ModificationType type) { modType = type; } /** * Return the physical modification done to data. May return null if the * operation has not been applied to the underlying tree. This is different * from the logical operation in that it can actually be a no-op if the * operation has no side-effects (like an empty merge on a container). * * @return Modification type. */ ModificationType getModificationType() { return modType; } /** * Create a node which will reflect the state of this node, except it will behave as newly-written * value. This is useful only for merge validation. * * @param value Value associated with the node * @return An isolated node. This node should never reach a datatree. */ ModifiedNode asNewlyWritten(final NormalizedNode value) { /* * We are instantiating an "equivalent" of this node. Currently the only callsite does not care * about the actual iteration order, so we do not have to specify the same tracking policy as * we were instantiated with. Since this is the only time we need to know that policy (it affects * only things in constructor), we do not want to retain it (saves some memory on per-instance * basis). * * We could reconstruct it using two instanceof checks (to undo what the constructor has done), * which would give perfect results. The memory saving would be at most 32 bytes of a short-lived * object, so let's not bother with that. */ final ModifiedNode ret = new ModifiedNode(getIdentifier(), Optional.absent(), ChildTrackingPolicy.UNORDERED); ret.write(value); return ret; } public static ModifiedNode createUnmodified(final TreeNode metadataTree, final ChildTrackingPolicy childPolicy) { return new ModifiedNode(metadataTree.getIdentifier(), Optional.of(metadataTree), childPolicy); } }