BUG-7464: Do not recalculate hash on LNode removal
[yangtools.git] / third-party / triemap / src / main / java / org / opendaylight / yangtools / triemap / LNode.java
1 /*
2  * (C) Copyright 2016 Pantheon Technologies, s.r.o. and others.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.opendaylight.yangtools.triemap;
17
18 import java.util.Iterator;
19 import java.util.Map.Entry;
20 import java.util.Optional;
21
22 final class LNode<K, V> extends MainNode<K, V> {
23     private final ListMap<K, V> listmap;
24
25     private LNode(final ListMap<K, V> listmap) {
26         this.listmap = listmap;
27     }
28
29     LNode(final K k1, final V v1, final K k2, final V v2) {
30         this(ListMap.map(k1, v1, k2, v2));
31     }
32
33     LNode<K, V> addChild(final K k, final V v) {
34         return new LNode<>(listmap.add(k, v));
35     }
36
37     MainNode<K, V> removeChild(final K k, final int hc, final TrieMap<K, V> ct) {
38         // We only ever create ListMaps with two or more entries,  and remove them as soon as they reach one element
39         // (below), so we cannot observe a null return here.
40         final ListMap<K, V> map = listmap.remove(k);
41         final Optional<Entry<K, V>> maybeKv = map.maybeSingleton();
42         if (maybeKv.isPresent()) {
43             final Entry<K, V> kv = maybeKv.get();
44             // create it tombed so that it gets compressed on subsequent accesses
45             return new TNode<>(kv.getKey(), kv.getValue(), hc);
46         }
47
48         return new LNode<>(map);
49     }
50
51     Optional<V> get(final K k) {
52         return listmap.get(k);
53     }
54
55     @Override
56     int cachedSize(final TrieMap<K, V> ct) {
57         return listmap.size();
58     }
59
60     @Override
61     String string(final int lev) {
62         // (" " * lev) + "LNode(%s)".format(listmap.mkString(", "))
63         return "LNode";
64     }
65
66     Iterator<Entry<K, V>> iterator() {
67         return listmap.iterator();
68     }
69 }