Fix sonars in policy models
[policy/models.git] / models-base / src / main / java / org / onap / policy / models / base / PfModelService.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2019 Nordix Foundation.
4  *  Modifications Copyright (C) 2021 AT&T Intellectual Property. All rights reserved.
5  * ================================================================================
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *
18  * SPDX-License-Identifier: Apache-2.0
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.policy.models.base;
23
24 import java.util.Map;
25 import java.util.concurrent.ConcurrentHashMap;
26 import javax.ws.rs.core.Response;
27 import lombok.NonNull;
28
29 /**
30  * The model service makes Policy Framework models available to all classes in a JVM.
31  *
32  * <p>The reason for having a model service is to avoid having to pass concept and model definitions down long call
33  * chains in modules such as the Policy Framework engine and editor. The model service makes the model and concept
34  * definitions available statically.
35  *
36  * <p>Note that the use of the model service means that only a single Policy Framework model of a particular type may
37  * exist in Policy Framework (particularly the engine) at any time. Of course the model in a JVM can be changed at any
38  * time provided all users of the model are stopped and restarted in an orderly manner.
39  */
40 public abstract class PfModelService {
41     // The map holding the models
42     private static Map<String, PfConcept> modelMap = new ConcurrentHashMap<>();
43
44     /**
45      * This class is an abstract static class that cannot be extended.
46      */
47     private PfModelService() {
48         // Default constructor
49     }
50
51     /**
52      * Register a model with the model service.
53      *
54      * @param <M> the generic type
55      * @param modelKey the key of the model, used to index the model
56      * @param model The model
57      */
58     public static <M extends PfConcept> void registerModel(@NonNull final String modelKey, @NonNull final M model) {
59         modelMap.put(modelKey, model);
60     }
61
62     /**
63      * Remove a model from the model service.
64      *
65      * @param modelKey the key of the model, used to index the model
66      */
67     public static void deregisterModel(@NonNull final String modelKey) {
68         modelMap.remove(modelKey);
69     }
70
71     /**
72      * Get a model from the model service.
73      *
74      * @param <M> the generic type
75      * @param modelKey the key of the model, used to index the model
76      * @return The model
77      */
78     @SuppressWarnings("unchecked")
79     public static <M extends PfConcept> M getModel(@NonNull final String modelKey) {
80         final var model = (M) modelMap.get(modelKey);
81
82         if (model == null) {
83             throw new PfModelRuntimeException(Response.Status.INTERNAL_SERVER_ERROR,
84                     "Model for name " + modelKey + " not found in model service");
85         }
86
87         return model;
88     }
89
90     /**
91      * Check if a model is defined on the model service.
92      *
93      * @param modelKey the key of the model, used to index the model
94      * @return true if the model is defined
95      */
96     public static boolean existsModel(final String modelKey) {
97         return modelMap.get(modelKey) != null;
98     }
99
100     /**
101      * Clear all models in the model service.
102      */
103     public static void clear() {
104         modelMap.clear();
105     }
106 }