BUG-1014: Moved recursive verify of written data to ready()
[yangtools.git] / yang / yang-data-impl / src / main / java / org / opendaylight / yangtools / yang / data / impl / schema / tree / ModifiedNode.java
1 /*
2  * Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.yangtools.yang.data.impl.schema.tree;
9
10 import com.google.common.base.Optional;
11 import com.google.common.base.Preconditions;
12 import com.google.common.base.Predicate;
13 import java.util.Collection;
14 import java.util.Collections;
15 import java.util.HashMap;
16 import java.util.LinkedHashMap;
17 import java.util.Map;
18 import javax.annotation.Nonnull;
19 import javax.annotation.concurrent.NotThreadSafe;
20 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.PathArgument;
21 import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode;
22 import org.opendaylight.yangtools.yang.data.api.schema.tree.ModificationType;
23 import org.opendaylight.yangtools.yang.data.api.schema.tree.StoreTreeNode;
24 import org.opendaylight.yangtools.yang.data.api.schema.tree.spi.TreeNode;
25
26 /**
27  * Node Modification Node and Tree
28  *
29  * Tree which structurally resembles data tree and captures client modifications
30  * to the data store tree.
31  *
32  * This tree is lazily created and populated via {@link #modifyChild(PathArgument)}
33  * and {@link TreeNode} which represents original state as tracked by {@link #getOriginal()}.
34  */
35 @NotThreadSafe
36 final class ModifiedNode extends NodeModification implements StoreTreeNode<ModifiedNode> {
37     static final Predicate<ModifiedNode> IS_TERMINAL_PREDICATE = new Predicate<ModifiedNode>() {
38         @Override
39         public boolean apply(@Nonnull final ModifiedNode input) {
40             Preconditions.checkNotNull(input);
41             switch (input.getOperation()) {
42             case DELETE:
43             case MERGE:
44             case WRITE:
45                 return true;
46             case TOUCH:
47             case NONE:
48                 return false;
49             }
50
51             throw new IllegalArgumentException(String.format("Unhandled modification type %s", input.getOperation()));
52         }
53     };
54     private static final int DEFAULT_CHILD_COUNT = 8;
55
56     private final Map<PathArgument, ModifiedNode> children;
57     private final Optional<TreeNode> original;
58     private final PathArgument identifier;
59     private LogicalOperation operation = LogicalOperation.NONE;
60     private Optional<TreeNode> snapshotCache;
61     private NormalizedNode<?, ?> value;
62     private ModificationType modType;
63
64     private ModifiedNode(final PathArgument identifier, final Optional<TreeNode> original, final ChildTrackingPolicy childPolicy) {
65         this.identifier = identifier;
66         this.original = original;
67
68         switch (childPolicy) {
69         case NONE:
70             children = Collections.emptyMap();
71             break;
72         case ORDERED:
73             children = new LinkedHashMap<>(DEFAULT_CHILD_COUNT);
74             break;
75         case UNORDERED:
76             children = new HashMap<>(DEFAULT_CHILD_COUNT);
77             break;
78         default:
79             throw new IllegalArgumentException("Unsupported child tracking policy " + childPolicy);
80         }
81     }
82
83     /**
84      * Return the value which was written to this node.
85      *
86      * @return Currently-written value
87      */
88     public NormalizedNode<?, ?> getWrittenValue() {
89         return value;
90     }
91
92     @Override
93     public PathArgument getIdentifier() {
94         return identifier;
95     }
96
97     @Override
98     Optional<TreeNode> getOriginal() {
99         return original;
100     }
101
102     @Override
103     LogicalOperation getOperation() {
104         return operation;
105     }
106
107     /**
108      *
109      * Returns child modification if child was modified
110      *
111      * @return Child modification if direct child or it's subtree
112      *  was modified.
113      *
114      */
115     @Override
116     public Optional<ModifiedNode> getChild(final PathArgument child) {
117         return Optional.<ModifiedNode> fromNullable(children.get(child));
118     }
119
120     /**
121      *
122      * Returns child modification if child was modified, creates {@link ModifiedNode}
123      * for child otherwise.
124      *
125      * If this node's {@link ModificationType} is {@link ModificationType#UNMODIFIED}
126      * changes modification type to {@link ModificationType#SUBTREE_MODIFIED}
127      *
128      * @param child child identifier, may not be null
129      * @param childPolicy child tracking policy for the node we are looking for
130      * @return {@link ModifiedNode} for specified child, with {@link #getOriginal()}
131      *         containing child metadata if child was present in original data.
132      */
133     ModifiedNode modifyChild(@Nonnull final PathArgument child, @Nonnull final ChildTrackingPolicy childPolicy) {
134         clearSnapshot();
135         if (operation == LogicalOperation.NONE) {
136             updateOperationType(LogicalOperation.TOUCH);
137         }
138         final ModifiedNode potential = children.get(child);
139         if (potential != null) {
140             return potential;
141         }
142
143         final Optional<TreeNode> currentMetadata;
144         if (original.isPresent()) {
145             final TreeNode orig = original.get();
146             currentMetadata = orig.getChild(child);
147         } else {
148             currentMetadata = Optional.absent();
149         }
150
151         final ModifiedNode newlyCreated = new ModifiedNode(child, currentMetadata, childPolicy);
152         children.put(child, newlyCreated);
153         return newlyCreated;
154     }
155
156     /**
157      * Returns all recorded direct child modification
158      *
159      * @return all recorded direct child modifications
160      */
161     @Override
162     Collection<ModifiedNode> getChildren() {
163         return children.values();
164     }
165
166     /**
167      * Records a delete for associated node.
168      */
169     void delete() {
170         final LogicalOperation newType;
171
172         switch (operation) {
173         case DELETE:
174         case NONE:
175             // We need to record this delete.
176             newType = LogicalOperation.DELETE;
177             break;
178         case MERGE:
179         case TOUCH:
180         case WRITE:
181             /*
182              * We are canceling a previous modification. This is a bit tricky,
183              * as the original write may have just introduced the data, or it
184              * may have modified it.
185              *
186              * As documented in BUG-2470, a delete of data introduced in this
187              * transaction needs to be turned into a no-op.
188              */
189             newType = original.isPresent() ? LogicalOperation.DELETE : LogicalOperation.NONE;
190             break;
191         default:
192             throw new IllegalStateException("Unhandled deletion of node with " + operation);
193         }
194
195         clearSnapshot();
196         children.clear();
197         this.value = null;
198         updateOperationType(newType);
199     }
200
201     /**
202      * Records a write for associated node.
203      *
204      * @param value
205      */
206     void write(final NormalizedNode<?, ?> value) {
207         clearSnapshot();
208         updateOperationType(LogicalOperation.WRITE);
209         children.clear();
210         this.value = value;
211     }
212
213     void merge(final NormalizedNode<?, ?> value) {
214         clearSnapshot();
215         updateOperationType(LogicalOperation.MERGE);
216
217         /*
218          * Blind overwrite of any previous data is okay, no matter whether the node
219          * is simple or complex type.
220          *
221          * If this is a simple or complex type with unkeyed children, this merge will
222          * be turned into a write operation, overwriting whatever was there before.
223          *
224          * If this is a container with keyed children, there are two possibilities:
225          * - if it existed before, this value will never be consulted and the children
226          *   will get explicitly merged onto the original data.
227          * - if it did not exist before, this value will be used as a seed write and
228          *   children will be merged into it.
229          * In either case we rely on OperationWithModification to manipulate the children
230          * before calling this method, so unlike a write we do not want to clear them.
231          */
232         this.value = value;
233     }
234
235     /**
236      * Seal the modification node and prune any children which has not been modified.
237      * 
238      * @param schema
239      */
240     void seal(final ModificationApplyOperation schema) {
241         clearSnapshot();
242
243         // A TOUCH node without any children is a no-op
244         switch (operation) {
245             case TOUCH:
246                 if (children.isEmpty()) {
247                     updateOperationType(LogicalOperation.NONE);
248                 }
249                 break;
250             case WRITE:
251                 schema.verifyStructure(value, true);
252                 break;
253             default:
254                 break;
255         }
256     }
257
258     private void clearSnapshot() {
259         snapshotCache = null;
260     }
261
262     Optional<TreeNode> getSnapshot() {
263         return snapshotCache;
264     }
265
266     Optional<TreeNode> setSnapshot(final Optional<TreeNode> snapshot) {
267         snapshotCache = Preconditions.checkNotNull(snapshot);
268         return snapshot;
269     }
270
271     private void updateOperationType(final LogicalOperation type) {
272         operation = type;
273         modType = null;
274         clearSnapshot();
275     }
276
277     @Override
278     public String toString() {
279         return "NodeModification [identifier=" + identifier + ", modificationType="
280                 + operation + ", childModification=" + children + "]";
281     }
282
283     void resolveModificationType(@Nonnull final ModificationType type) {
284         modType = type;
285     }
286
287     /**
288      * Return the physical modification done to data. May return null if the
289      * operation has not been applied to the underlying tree. This is different
290      * from the logical operation in that it can actually be a no-op if the
291      * operation has no side-effects (like an empty merge on a container).
292      *
293      * @return Modification type.
294      */
295     ModificationType getModificationType() {
296         return modType;
297     }
298
299     /**
300      * Create a node which will reflect the state of this node, except it will behave as newly-written
301      * value. This is useful only for merge validation.
302      *
303      * @param value Value associated with the node
304      * @return An isolated node. This node should never reach a datatree.
305      */
306     ModifiedNode asNewlyWritten(final NormalizedNode<?, ?> value) {
307         /*
308          * We are instantiating an "equivalent" of this node. Currently the only callsite does not care
309          * about the actual iteration order, so we do not have to specify the same tracking policy as
310          * we were instantiated with. Since this is the only time we need to know that policy (it affects
311          * only things in constructor), we do not want to retain it (saves some memory on per-instance
312          * basis).
313          *
314          * We could reconstruct it using two instanceof checks (to undo what the constructor has done),
315          * which would give perfect results. The memory saving would be at most 32 bytes of a short-lived
316          * object, so let's not bother with that.
317          */
318         final ModifiedNode ret = new ModifiedNode(getIdentifier(), Optional.<TreeNode>absent(), ChildTrackingPolicy.UNORDERED);
319         ret.write(value);
320         return ret;
321     }
322
323     public static ModifiedNode createUnmodified(final TreeNode metadataTree, final ChildTrackingPolicy childPolicy) {
324         return new ModifiedNode(metadataTree.getIdentifier(), Optional.of(metadataTree), childPolicy);
325     }
326 }