f7cc14e92082977485c310629e83acef853c3831
[nonrtric.git] / dmaap-adaptor-java / src / main / java / org / oran / dmaapadapter / repository / MultiMap.java
1 /*-
2  * ========================LICENSE_START=================================
3  * O-RAN-SC
4  * %%
5  * Copyright (C) 2019-2021 Nordix Foundation
6  * %%
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ========================LICENSE_END===================================
19  */
20
21 package org.oran.dmaapadapter.repository;
22
23 import java.util.Collection;
24 import java.util.Collections;
25 import java.util.HashMap;
26 import java.util.Map;
27 import java.util.Set;
28 import java.util.Vector;
29
30 /**
31  * A map, where each key can be bound to may values (where each value has an own
32  * ID)
33  */
34 public class MultiMap<T> {
35
36     private final Map<String, Map<String, T>> map = new HashMap<>();
37
38     public void put(String key, String id, T value) {
39         this.map.computeIfAbsent(key, k -> new HashMap<>()).put(id, value);
40     }
41
42     public T remove(String key, String id) {
43         Map<String, T> innerMap = this.map.get(key);
44         if (innerMap != null) {
45             T removedElement = innerMap.remove(id);
46             if (innerMap.isEmpty()) {
47                 this.map.remove(key);
48             }
49             return removedElement;
50         }
51         return null;
52     }
53
54     public T get(String key1, String key2) {
55         Map<String, T> innerMap = this.map.get(key1);
56         if (innerMap == null) {
57             return null;
58         }
59         return innerMap.get(key2);
60     }
61
62     public Collection<T> get(String key) {
63         Map<String, T> innerMap = this.map.get(key);
64         if (innerMap == null) {
65             return Collections.emptyList();
66         }
67         return new Vector<>(innerMap.values());
68     }
69
70     public Set<String> keySet() {
71         return this.map.keySet();
72     }
73
74     public void clear() {
75         this.map.clear();
76     }
77
78 }