BUG-6522: fix missed optimization
[yangtools.git] / yang / yang-parser-impl / src / main / java / org / opendaylight / yangtools / yang / parser / stmt / reactor / NamespaceStorageSupport.java
1 /*
2  * Copyright (c) 2015 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.parser.stmt.reactor;
9
10 import com.google.common.collect.ImmutableMap;
11 import java.util.HashMap;
12 import java.util.Map;
13 import java.util.Map.Entry;
14 import java.util.Set;
15 import org.opendaylight.yangtools.yang.model.api.ModuleIdentifier;
16 import org.opendaylight.yangtools.yang.model.api.meta.IdentifierNamespace;
17 import org.opendaylight.yangtools.yang.parser.spi.meta.NamespaceBehaviour;
18 import org.opendaylight.yangtools.yang.parser.spi.meta.NamespaceBehaviour.NamespaceStorageNode;
19 import org.opendaylight.yangtools.yang.parser.spi.meta.NamespaceNotAvailableException;
20 import org.opendaylight.yangtools.yang.parser.spi.meta.StatementNamespace;
21 import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext;
22 import org.opendaylight.yangtools.yang.parser.stmt.rfc6020.Utils;
23
24 abstract class NamespaceStorageSupport implements NamespaceStorageNode {
25
26     private Map<Class<?>, Map<?,?>> namespaces = ImmutableMap.of();
27
28     @Override
29     public abstract NamespaceStorageNode getParentNamespaceStorage();
30
31     public abstract NamespaceBehaviour.Registry getBehaviourRegistry();
32
33     protected void checkLocalNamespaceAllowed(final Class<? extends IdentifierNamespace<?, ?>> type) {
34         // NOOP
35     }
36
37     protected <K, V, N extends IdentifierNamespace<K, V>> void onNamespaceElementAdded(final Class<N> type, final K key, final V value) {
38         // NOOP
39     }
40
41     public final <K,V, KT extends K, N extends IdentifierNamespace<K, V>> V getFromNamespace(final Class<N> type, final KT key)
42             throws NamespaceNotAvailableException {
43         return getBehaviourRegistry().getNamespaceBehaviour(type).getFrom(this,key);
44     }
45
46     public final <K, V, N extends IdentifierNamespace<K, V>> Map<K, V> getAllFromNamespace(final Class<N> type){
47         return getBehaviourRegistry().getNamespaceBehaviour(type).getAllFrom(this);
48     }
49
50     @SuppressWarnings("unchecked")
51     public final <K, V, N extends IdentifierNamespace<K, V>> Map<K, V> getAllFromCurrentStmtCtxNamespace(final Class<N> type){
52         return (Map<K, V>) namespaces.get(type);
53     }
54
55     public final <K,V, KT extends K, VT extends V,N extends IdentifierNamespace<K, V>> void addToNs(final Class<N> type, final KT key, final VT value)
56             throws NamespaceNotAvailableException {
57         getBehaviourRegistry().getNamespaceBehaviour(type).addTo(this,key,value);
58     }
59
60     @SuppressWarnings({ "unchecked", "rawtypes" })
61     public final <K, N extends StatementNamespace<K, ?,?>> void addContextToNamespace(final Class<N> type, final K key, final StmtContext<?, ?, ?> value)
62             throws NamespaceNotAvailableException {
63         getBehaviourRegistry().getNamespaceBehaviour((Class)type).addTo(this, key, value);
64     }
65
66     @SuppressWarnings("unchecked")
67     @Override
68     public <K, V, N extends IdentifierNamespace<K, V>> V getFromLocalStorage(final Class<N> type, final K key) {
69         Map<K, V> localNamespace = (Map<K,V>) namespaces.get(type);
70
71         V potential = null;
72         if (localNamespace != null) {
73             potential = localNamespace.get(key);
74         }
75
76         if (potential == null && Utils.isModuleIdentifierWithoutSpecifiedRevision(key)) {
77             potential = getRegardlessOfRevision((ModuleIdentifier)key,(Map<ModuleIdentifier,V>)localNamespace);
78         }
79
80         return potential;
81     }
82
83     private static <K, V, N extends IdentifierNamespace<K, V>> V getRegardlessOfRevision(final ModuleIdentifier key,
84             final Map<ModuleIdentifier, V> localNamespace) {
85
86         if (localNamespace == null) {
87             return null;
88         }
89
90         Set<Entry<ModuleIdentifier, V>> entrySet = localNamespace.entrySet();
91         for (Entry<ModuleIdentifier, V> entry : entrySet) {
92             ModuleIdentifier moduleIdentifierInMap = entry.getKey();
93             if (moduleIdentifierInMap.getName().equals(key.getName())) {
94                 return entry.getValue();
95             }
96         }
97
98         return null;
99     }
100
101     @Override
102     public <K, V, N extends IdentifierNamespace<K, V>> Map<K, V> getAllFromLocalStorage(final Class<N> type) {
103         @SuppressWarnings("unchecked")
104         Map<K, V> localNamespace = (Map<K, V>) namespaces.get(type);
105         return localNamespace;
106     }
107
108     @Override
109     public <K, V, N extends IdentifierNamespace<K, V>> void addToLocalStorage(final Class<N> type, final K key, final V value) {
110         @SuppressWarnings("unchecked")
111         Map<K, V> localNamespace = (Map<K,V>) namespaces.get(type);
112         if (localNamespace == null) {
113             checkLocalNamespaceAllowed(type);
114             localNamespace = new HashMap<>(1);
115
116             if (namespaces.isEmpty()) {
117                 namespaces = new HashMap<>(1);
118             }
119             namespaces.put(type, localNamespace);
120         }
121         localNamespace.put(key,value);
122         onNamespaceElementAdded(type,key,value);
123     }
124
125 }