Implement validation and hierarchical get
[policy/models.git] / models-tosca / src / main / java / org / onap / policy / models / tosca / utils / ToscaUtils.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2019-2020 Nordix Foundation.
4  * ================================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  * SPDX-License-Identifier: Apache-2.0
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.policy.models.tosca.utils;
22
23 import java.util.Collection;
24 import java.util.Set;
25 import java.util.function.Function;
26
27 import javax.ws.rs.core.Response;
28
29 import lombok.NonNull;
30
31 import org.apache.commons.collections4.CollectionUtils;
32 import org.onap.policy.models.base.PfConcept;
33 import org.onap.policy.models.base.PfConceptContainer;
34 import org.onap.policy.models.base.PfConceptKey;
35 import org.onap.policy.models.base.PfKey;
36 import org.onap.policy.models.base.PfModelRuntimeException;
37 import org.onap.policy.models.base.PfNameVersion;
38 import org.onap.policy.models.base.PfValidationMessage;
39 import org.onap.policy.models.base.PfValidationResult;
40 import org.onap.policy.models.base.PfValidationResult.ValidationResult;
41 import org.onap.policy.models.tosca.authorative.concepts.ToscaEntity;
42 import org.onap.policy.models.tosca.simple.concepts.JpaToscaEntityType;
43 import org.onap.policy.models.tosca.simple.concepts.JpaToscaServiceTemplate;
44
45 /**
46  * Utility class for TOSCA concepts.
47  *
48  * @author Liam Fallon (liam.fallon@est.tech)
49  */
50 public final class ToscaUtils {
51     private static final String ROOT_KEY_NAME_SUFFIX = ".Root";
52
53     // @formatter:off
54     private static final Set<PfConceptKey> PREDEFINED_TOSCA_DATA_TYPES = Set.of(
55             new PfConceptKey("string",                       PfKey.NULL_KEY_VERSION),
56             new PfConceptKey("integer",                      PfKey.NULL_KEY_VERSION),
57             new PfConceptKey("float",                        PfKey.NULL_KEY_VERSION),
58             new PfConceptKey("boolean",                      PfKey.NULL_KEY_VERSION),
59             new PfConceptKey("timestamp",                    PfKey.NULL_KEY_VERSION),
60             new PfConceptKey("null",                         PfKey.NULL_KEY_VERSION),
61             new PfConceptKey("list",                         PfKey.NULL_KEY_VERSION),
62             new PfConceptKey("map",                          PfKey.NULL_KEY_VERSION),
63             new PfConceptKey("scalar-unit.size",             PfKey.NULL_KEY_VERSION),
64             new PfConceptKey("scalar-unit.time",             PfKey.NULL_KEY_VERSION),
65             new PfConceptKey("scalar-unit.frequency",        PfKey.NULL_KEY_VERSION),
66             new PfConceptKey("tosca.datatypes.TimeInterval", PfKey.NULL_KEY_VERSION)
67         );
68     // @formatter:on
69
70     /**
71      * Private constructor to prevent subclassing.
72      */
73     private ToscaUtils() {
74         // Private constructor to prevent subclassing
75     }
76
77     /**
78      * Get the predefined policy types.
79      *
80      * @return the predefined policy types
81      */
82     public static Collection<PfConceptKey> getPredefinedDataTypes() {
83         return PREDEFINED_TOSCA_DATA_TYPES;
84     }
85
86     /**
87      * Assert that data types have been specified correctly.
88      *
89      * @param serviceTemplate the service template containing data types to be checked
90      */
91     public static void assertDataTypesExist(final JpaToscaServiceTemplate serviceTemplate) {
92         assertExist(serviceTemplate, ToscaUtils::checkDataTypesExist);
93     }
94
95     /**
96      * Assert that policy types have been specified correctly.
97      *
98      * @param serviceTemplate the service template containing policy types to be checked
99      */
100     public static void assertPolicyTypesExist(final JpaToscaServiceTemplate serviceTemplate) {
101         assertExist(serviceTemplate, ToscaUtils::checkPolicyTypesExist);
102     }
103
104     /**
105      * Assert that policies have been specified correctly.
106      *
107      * @param serviceTemplate the service template containing policy types to be checked
108      */
109     public static void assertPoliciesExist(final JpaToscaServiceTemplate serviceTemplate) {
110         assertExist(serviceTemplate, ToscaUtils::checkPoliciesExist);
111     }
112
113     /**
114      * Check that data types have been specified correctly.
115      *
116      * @param serviceTemplate the service template containing data types to be checked
117      */
118     public static boolean doDataTypesExist(final JpaToscaServiceTemplate serviceTemplate) {
119         return doExist(serviceTemplate, ToscaUtils::checkDataTypesExist);
120     }
121
122     /**
123      * Check that policy types have been specified correctly.
124      *
125      * @param serviceTemplate the service template containing policy types to be checked
126      */
127     public static boolean doPolicyTypesExist(final JpaToscaServiceTemplate serviceTemplate) {
128         return doExist(serviceTemplate, ToscaUtils::checkPolicyTypesExist);
129     }
130
131     /**
132      * Check that policies have been specified correctly.
133      *
134      * @param serviceTemplate the service template containing policy types to be checked
135      */
136     public static boolean doPoliciesExist(final JpaToscaServiceTemplate serviceTemplate) {
137
138         return doExist(serviceTemplate, ToscaUtils::checkPoliciesExist);
139     }
140
141     /**
142      * Assert that something have been specified correctly.
143      *
144      * @param serviceTemplate the service template containing policy types to be checked
145      */
146     public static void assertExist(final JpaToscaServiceTemplate serviceTemplate,
147             final Function<JpaToscaServiceTemplate, String> checkerFunction) {
148         String message = checkerFunction.apply(serviceTemplate);
149         if (message != null) {
150             throw new PfModelRuntimeException(Response.Status.BAD_REQUEST, message);
151         }
152     }
153
154     /**
155      * Check that something have been specified correctly.
156      *
157      * @param serviceTemplate the service template containing policy types to be checked
158      */
159     public static boolean doExist(final JpaToscaServiceTemplate serviceTemplate,
160             final Function<JpaToscaServiceTemplate, String> checkerFunction) {
161         return checkerFunction.apply(serviceTemplate) == null;
162     }
163
164     /**
165      * Check if data types have been specified correctly.
166      */
167     public static String checkDataTypesExist(final JpaToscaServiceTemplate serviceTemplate) {
168         if (serviceTemplate.getDataTypes() == null) {
169             return "no data types specified on service template";
170         }
171
172         if (serviceTemplate.getDataTypes().getConceptMap().isEmpty()) {
173             return "list of data types specified on service template is empty";
174         }
175
176         return null;
177     }
178
179     /**
180      * Check if policy types have been specified correctly.
181      */
182     public static String checkPolicyTypesExist(final JpaToscaServiceTemplate serviceTemplate) {
183         if (serviceTemplate.getPolicyTypes() == null) {
184             return "no policy types specified on service template";
185         }
186
187         if (serviceTemplate.getPolicyTypes().getConceptMap().isEmpty()) {
188             return "list of policy types specified on service template is empty";
189         }
190
191         return null;
192     }
193
194     /**
195      * Check if policies have been specified correctly.
196      */
197     public static String checkPoliciesExist(final JpaToscaServiceTemplate serviceTemplate) {
198         if (serviceTemplate.getTopologyTemplate() == null) {
199             return "topology template not specified on service template";
200         }
201
202         if (serviceTemplate.getTopologyTemplate().getPolicies() == null) {
203             return "no policies specified on topology template of service template";
204         }
205
206         if (serviceTemplate.getTopologyTemplate().getPolicies().getConceptMap().isEmpty()) {
207             return "list of policies specified on topology template of service template is empty";
208         }
209
210         return null;
211     }
212
213     /**
214      * Find all the ancestors of an entity type.
215      *
216      * @param entityTypes the set of entity types that exist
217      * @param entityType the entity type for which to get the parents
218      * @param result the result of the ancestor search with any warnings or errors
219      * @return the entity set containing the ancestors of the incoming entity
220      */
221     public static Collection<JpaToscaEntityType<ToscaEntity>> getEntityTypeAncestors(
222             @NonNull PfConceptContainer<? extends PfConcept, ? extends PfNameVersion> entityTypes,
223             @NonNull JpaToscaEntityType<?> entityType, @NonNull final PfValidationResult result) {
224
225         PfConceptKey parentEntityTypeKey = entityType.getDerivedFrom();
226         if (parentEntityTypeKey == null || parentEntityTypeKey.getName().endsWith(ROOT_KEY_NAME_SUFFIX)) {
227             return CollectionUtils.emptyCollection();
228         }
229
230         @SuppressWarnings("unchecked")
231         Set<JpaToscaEntityType<ToscaEntity>> ancestorEntitySet = (Set<JpaToscaEntityType<ToscaEntity>>) entityTypes
232                 .getAll(parentEntityTypeKey.getName(), parentEntityTypeKey.getVersion());
233
234         if (ancestorEntitySet.isEmpty()) {
235             result.addValidationMessage(new PfValidationMessage(entityType.getKey(), ToscaUtils.class,
236                     ValidationResult.INVALID, "parent " + parentEntityTypeKey.getId() + " of entity not found"));
237         } else {
238             for (JpaToscaEntityType<?> filteredEntityType : ancestorEntitySet) {
239                 ancestorEntitySet.addAll(getEntityTypeAncestors(entityTypes, filteredEntityType, result));
240             }
241         }
242         return ancestorEntitySet;
243     }
244
245     /**
246      * Get the entity tree from a concept container for a given entity key.
247      *
248      * @param entityTypes the concept container containing entity types
249      * @param entityName the name of the entity
250      * @param entityVersion the version of the entity
251      */
252     public static void getEntityTree(
253             @NonNull final PfConceptContainer<? extends PfConcept, ? extends PfNameVersion> entityTypes,
254             final String entityName, final String entityVersion) {
255
256         PfValidationResult result = new PfValidationResult();
257
258         @SuppressWarnings("unchecked")
259         Set<JpaToscaEntityType<?>> filteredEntitySet =
260                 (Set<JpaToscaEntityType<?>>) entityTypes.getAll(entityName, entityVersion);
261         for (JpaToscaEntityType<?> filteredEntityType : filteredEntitySet) {
262             filteredEntitySet.addAll(ToscaUtils.getEntityTypeAncestors(entityTypes, filteredEntityType, result));
263         }
264
265         if (!result.isValid()) {
266             throw new PfModelRuntimeException(Response.Status.BAD_REQUEST, result.toString());
267         }
268
269         entityTypes.getConceptMap().entrySet()
270                 .removeIf(entityEntry -> !filteredEntitySet.contains(entityEntry.getValue()));
271     }
272 }