Remove redundant interface declarations
[yangtools.git] / yang / yang-data-impl / src / main / java / org / opendaylight / yangtools / yang / data / impl / schema / builder / impl / ImmutableLeafSetNodeBuilder.java
1 /*
2  * Copyright (c) 2013 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.builder.impl;
9
10 import com.google.common.collect.Maps;
11 import java.util.Collection;
12 import java.util.Collections;
13 import java.util.HashMap;
14 import java.util.Map;
15 import java.util.Optional;
16 import org.opendaylight.yangtools.util.MapAdaptor;
17 import org.opendaylight.yangtools.util.UnmodifiableCollection;
18 import org.opendaylight.yangtools.yang.common.QName;
19 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.NodeIdentifier;
20 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.NodeWithValue;
21 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.PathArgument;
22 import org.opendaylight.yangtools.yang.data.api.schema.LeafSetEntryNode;
23 import org.opendaylight.yangtools.yang.data.api.schema.LeafSetNode;
24 import org.opendaylight.yangtools.yang.data.impl.schema.builder.api.ListNodeBuilder;
25 import org.opendaylight.yangtools.yang.data.impl.schema.builder.api.NormalizedNodeContainerBuilder;
26 import org.opendaylight.yangtools.yang.data.impl.schema.nodes.AbstractImmutableNormalizedNode;
27 import org.opendaylight.yangtools.yang.data.impl.schema.nodes.AbstractImmutableNormalizedValueNode;
28
29 public class ImmutableLeafSetNodeBuilder<T> implements ListNodeBuilder<T, LeafSetEntryNode<T>> {
30     private static final int DEFAULT_CAPACITY = 4;
31
32     private final Map<NodeWithValue, LeafSetEntryNode<T>> value;
33     private NodeIdentifier nodeIdentifier;
34
35     protected ImmutableLeafSetNodeBuilder() {
36         value = new HashMap<>(DEFAULT_CAPACITY);
37     }
38
39     protected ImmutableLeafSetNodeBuilder(final int sizeHint) {
40         if (sizeHint >= 0) {
41             value = Maps.newHashMapWithExpectedSize(sizeHint);
42         } else {
43             value = new HashMap<>(DEFAULT_CAPACITY);
44         }
45     }
46
47     protected ImmutableLeafSetNodeBuilder(final ImmutableLeafSetNode<T> node) {
48         nodeIdentifier = node.getIdentifier();
49         value = MapAdaptor.getDefaultInstance().takeSnapshot(node.children);
50     }
51
52     public static <T> ListNodeBuilder<T, LeafSetEntryNode<T>> create() {
53         return new ImmutableLeafSetNodeBuilder<>();
54     }
55
56     public static <T> ListNodeBuilder<T, LeafSetEntryNode<T>> create(final int sizeHint) {
57         return new ImmutableLeafSetNodeBuilder<>(sizeHint);
58     }
59
60     public static <T> ListNodeBuilder<T, LeafSetEntryNode<T>> create(final LeafSetNode<T> node) {
61         if (!(node instanceof ImmutableLeafSetNode<?>)) {
62             throw new UnsupportedOperationException(String.format("Cannot initialize from class %s", node.getClass()));
63         }
64
65         return new ImmutableLeafSetNodeBuilder<>((ImmutableLeafSetNode<T>) node);
66     }
67
68     @Override
69     public ListNodeBuilder<T, LeafSetEntryNode<T>> withChild(final LeafSetEntryNode<T> child) {
70         this.value.put(child.getIdentifier(), child);
71         return this;
72     }
73
74     @Override
75     public ListNodeBuilder<T, LeafSetEntryNode<T>> withoutChild(final PathArgument key) {
76         this.value.remove(key);
77         return this;
78     }
79
80     @Override
81     public LeafSetNode<T> build() {
82         return new ImmutableLeafSetNode<>(nodeIdentifier, MapAdaptor.getDefaultInstance().optimize(value));
83     }
84
85     @Override
86     public ListNodeBuilder<T, LeafSetEntryNode<T>> withNodeIdentifier(final NodeIdentifier withNodeIdentifier) {
87         this.nodeIdentifier = withNodeIdentifier;
88         return this;
89     }
90
91     @Override
92     public ListNodeBuilder<T, LeafSetEntryNode<T>> withValue(final Collection<LeafSetEntryNode<T>> withValue) {
93         for (final LeafSetEntryNode<T> leafSetEntry : withValue) {
94             withChild(leafSetEntry);
95         }
96         return this;
97     }
98
99
100     @Override
101     public ListNodeBuilder<T, LeafSetEntryNode<T>> withChildValue(final T childValue,
102             final Map<QName, String> attributes) {
103         final ImmutableLeafSetEntryNodeBuilder<T> b = ImmutableLeafSetEntryNodeBuilder.create();
104         b.withNodeIdentifier(new NodeWithValue<>(nodeIdentifier.getNodeType(), childValue));
105         b.withValue(childValue);
106         b.withAttributes(attributes);
107         return withChild(b.build());
108     }
109
110     @Override
111     public ListNodeBuilder<T, LeafSetEntryNode<T>> withChildValue(final T childValue) {
112         return withChildValue(childValue, Collections.emptyMap());
113     }
114
115     protected static final class ImmutableLeafSetNode<T> extends
116             AbstractImmutableNormalizedValueNode<NodeIdentifier, Collection<LeafSetEntryNode<T>>> implements
117             LeafSetNode<T> {
118
119         private final Map<NodeWithValue, LeafSetEntryNode<T>> children;
120
121         ImmutableLeafSetNode(final NodeIdentifier nodeIdentifier,
122                 final Map<NodeWithValue, LeafSetEntryNode<T>> children) {
123             super(nodeIdentifier, UnmodifiableCollection.create(children.values()));
124             this.children = children;
125         }
126
127         @Override
128         public Optional<LeafSetEntryNode<T>> getChild(final NodeWithValue child) {
129             return Optional.ofNullable(children.get(child));
130         }
131
132         @Override
133         protected int valueHashCode() {
134             return children.hashCode();
135         }
136
137         @Override
138         protected boolean valueEquals(final AbstractImmutableNormalizedNode<?, ?> other) {
139             return children.equals(((ImmutableLeafSetNode<?>) other).children);
140         }
141     }
142
143     @Override
144     public NormalizedNodeContainerBuilder<NodeIdentifier, PathArgument, LeafSetEntryNode<T>, LeafSetNode<T>> addChild(
145             final LeafSetEntryNode<T> child) {
146         return withChild(child);
147     }
148
149     @Override
150     public NormalizedNodeContainerBuilder<NodeIdentifier, PathArgument, LeafSetEntryNode<T>, LeafSetNode<T>>
151             removeChild(final PathArgument key) {
152         return withoutChild(key);
153     }
154
155 }