Fix a nullness warning
[yangtools.git] / data / yang-data-tree-ri / src / main / java / org / opendaylight / yangtools / yang / data / tree / impl / DataTreeState.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.tree.impl;
9
10 import static java.util.Objects.requireNonNull;
11
12 import com.google.common.base.MoreObjects;
13 import org.eclipse.jdt.annotation.NonNull;
14 import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNodes;
15 import org.opendaylight.yangtools.yang.data.tree.impl.node.TreeNode;
16 import org.opendaylight.yangtools.yang.model.api.EffectiveModelContext;
17
18 /**
19  * Instances of this class hold the current state of a DataTree instance.
20  * The need for encapsulation stems from atomic updates, which potentially change
21  * multiple fields in one go.
22  */
23 final class DataTreeState {
24     private final LatestOperationHolder holder;
25     private final EffectiveModelContext schemaContext;
26     private final @NonNull TreeNode root;
27
28     private DataTreeState(final TreeNode root) {
29         this.root = requireNonNull(root);
30         holder = new LatestOperationHolder();
31         schemaContext = null;
32     }
33
34     private DataTreeState(final TreeNode root, final LatestOperationHolder holder,
35             final EffectiveModelContext schemaContext) {
36         // It should be impossible to instantiate a new root without a SchemaContext
37         this.schemaContext = requireNonNull(schemaContext);
38         this.holder = requireNonNull(holder);
39         this.root = requireNonNull(root);
40     }
41
42     static DataTreeState createInitial(final TreeNode root) {
43         return new DataTreeState(root);
44     }
45
46     @NonNull TreeNode getRoot() {
47         return root;
48     }
49
50     @NonNull InMemoryDataTreeSnapshot newSnapshot() {
51         return new InMemoryDataTreeSnapshot(schemaContext, root, holder.newSnapshot());
52     }
53
54     DataTreeState withSchemaContext(final EffectiveModelContext newSchemaContext,
55             final ModificationApplyOperation operation) {
56         holder.setCurrent(operation);
57         return new DataTreeState(root, holder, newSchemaContext);
58     }
59
60     DataTreeState withRoot(final TreeNode newRoot) {
61         return new DataTreeState(newRoot, holder, schemaContext);
62     }
63
64     @Override
65     public String toString() {
66         final TreeNode r = root;
67         return MoreObjects.toStringHelper(this).add("data", NormalizedNodes.toStringTree(r.getData())).toString();
68     }
69 }