9b7b64053e3b19e3ffd3b0bd8187f3c7d60d65cd
[nonrtric.git] / enrichment-coordinator-service / src / main / java / org / oransc / enrichment / repository / EiTypes.java
1 /*-
2  * ========================LICENSE_START=================================
3  * O-RAN-SC
4  * %%
5  * Copyright (C) 2019 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.oransc.enrichment.repository;
22
23 import java.lang.invoke.MethodHandles;
24 import java.util.Collection;
25 import java.util.HashMap;
26 import java.util.Map;
27 import java.util.Vector;
28
29 import org.oransc.enrichment.exceptions.ServiceException;
30 import org.slf4j.Logger;
31 import org.slf4j.LoggerFactory;
32
33 /**
34  * Dynamic representation of all EI Types in the system.
35  */
36 @SuppressWarnings("squid:S2629") // Invoke method(s) only conditionally
37 public class EiTypes {
38     private final Logger logger = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());
39     private final Map<String, EiType> allEiTypes = new HashMap<>();
40
41     public synchronized void put(EiType type) {
42         allEiTypes.put(type.getId(), type);
43     }
44
45     public synchronized Collection<EiType> getAllEiTypes() {
46         return new Vector<>(allEiTypes.values());
47     }
48
49     public synchronized EiType getType(String id) throws ServiceException {
50         EiType type = allEiTypes.get(id);
51         if (type == null) {
52             throw new ServiceException("Could not find EI type: " + id);
53         }
54         return type;
55     }
56
57     public synchronized EiType get(String id) {
58         return allEiTypes.get(id);
59     }
60
61     public synchronized void remove(String id) {
62         allEiTypes.remove(id);
63     }
64
65     public synchronized void remove(EiType type) {
66         this.remove(type.getId());
67     }
68
69     public synchronized int size() {
70         return allEiTypes.size();
71     }
72
73     public synchronized void clear() {
74         this.allEiTypes.clear();
75     }
76
77     public void deregisterType(EiType type, EiJobs eiJobs) {
78         this.remove(type);
79         for (EiJob job : eiJobs.getJobsForType(type.getId())) {
80             eiJobs.remove(job);
81             this.logger.warn("Deleted job {} because no producers left", job.id());
82         }
83     }
84
85 }