Merge "Condense Liquibase steps"
[cps.git] / cps-ncmp-service / src / main / java / org / onap / cps / ncmp / init / AbstractModelLoader.java
1 /*
2  *  ============LICENSE_START=======================================================
3  *  Copyright (C) 2023-2024 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.cps.ncmp.init;
22
23 import com.fasterxml.jackson.databind.ObjectMapper;
24 import java.io.InputStream;
25 import java.nio.charset.StandardCharsets;
26 import java.time.OffsetDateTime;
27 import java.util.HashMap;
28 import java.util.Map;
29 import lombok.NonNull;
30 import lombok.RequiredArgsConstructor;
31 import lombok.extern.slf4j.Slf4j;
32 import org.onap.cps.api.CpsAnchorService;
33 import org.onap.cps.api.CpsDataService;
34 import org.onap.cps.api.CpsDataspaceService;
35 import org.onap.cps.api.CpsModuleService;
36 import org.onap.cps.ncmp.api.impl.exception.NcmpStartUpException;
37 import org.onap.cps.spi.CascadeDeleteAllowed;
38 import org.onap.cps.spi.exceptions.AlreadyDefinedException;
39 import org.onap.cps.utils.JsonObjectMapper;
40 import org.springframework.beans.factory.annotation.Value;
41 import org.springframework.boot.SpringApplication;
42 import org.springframework.boot.context.event.ApplicationReadyEvent;
43
44 @Slf4j
45 @RequiredArgsConstructor
46 abstract class AbstractModelLoader implements ModelLoader {
47
48     private final CpsDataspaceService cpsDataspaceService;
49     private final CpsModuleService cpsModuleService;
50     private final CpsAnchorService cpsAnchorService;
51     protected final CpsDataService cpsDataService;
52
53     private static final int EXIT_CODE_ON_ERROR = 1;
54
55     private final JsonObjectMapper jsonObjectMapper = new JsonObjectMapper(new ObjectMapper());
56
57     @Value("${ncmp.model-loader.maximum-attempt-count:20}")
58     int maximumAttemptCount;
59
60     @Value("${ncmp.timers.model-loader.retry-time-ms:1000}")
61     long retryTimeMs;
62
63     @Override
64     public void onApplicationEvent(@NonNull final ApplicationReadyEvent applicationReadyEvent) {
65         try {
66             onboardOrUpgradeModel();
67         } catch (final NcmpStartUpException ncmpStartUpException) {
68             log.error("Onboarding model for NCMP failed: {} ", ncmpStartUpException.getMessage());
69             SpringApplication.exit(applicationReadyEvent.getApplicationContext(), () -> EXIT_CODE_ON_ERROR);
70         }
71     }
72
73     void createSchemaSet(final String dataspaceName, final String schemaSetName, final String... resourceNames) {
74         try {
75             final Map<String, String> yangResourcesContentMap = createYangResourcesToContentMap(resourceNames);
76             cpsModuleService.createSchemaSet(dataspaceName, schemaSetName, yangResourcesContentMap);
77         } catch (final AlreadyDefinedException alreadyDefinedException) {
78             log.warn("Creating new schema set failed as schema set already exists");
79         } catch (final Exception exception) {
80             log.error("Creating schema set failed: {} ", exception.getMessage());
81             throw new NcmpStartUpException("Creating schema set failed", exception.getMessage());
82         }
83     }
84
85     void createDataspace(final String dataspaceName) {
86         try {
87             cpsDataspaceService.createDataspace(dataspaceName);
88         } catch (final AlreadyDefinedException alreadyDefinedException) {
89             log.debug("Dataspace already exists");
90         } catch (final Exception exception) {
91             log.error("Creating dataspace failed: {} ", exception.getMessage());
92             throw new NcmpStartUpException("Creating dataspace failed", exception.getMessage());
93         }
94     }
95
96     void deleteUnusedSchemaSets(final String dataspaceName, final String... schemaSetNames) {
97         for (final String schemaSetName : schemaSetNames) {
98             try {
99                 cpsModuleService.deleteSchemaSet(
100                     dataspaceName, schemaSetName, CascadeDeleteAllowed.CASCADE_DELETE_PROHIBITED);
101             } catch (final Exception exception) {
102                 log.warn("Deleting schema set failed: {} ", exception.getMessage());
103             }
104         }
105     }
106
107     void createAnchor(final String dataspaceName, final String schemaSetName, final String anchorName) {
108         try {
109             cpsAnchorService.createAnchor(dataspaceName, schemaSetName, anchorName);
110         } catch (final AlreadyDefinedException alreadyDefinedException) {
111             log.warn("Creating new anchor failed as anchor already exists");
112         } catch (final Exception exception) {
113             log.error("Creating anchor failed: {} ", exception.getMessage());
114             throw new NcmpStartUpException("Creating anchor failed", exception.getMessage());
115         }
116     }
117
118     void createTopLevelDataNode(final String dataspaceName, final String anchorName, final String dataNodeName) {
119         final String nodeData = jsonObjectMapper.asJsonString(Map.of(dataNodeName, Map.of()));
120         try {
121             cpsDataService.saveData(dataspaceName, anchorName, nodeData, OffsetDateTime.now());
122         } catch (final AlreadyDefinedException exception) {
123             log.warn("Creating new data node '{}' failed as data node already exists", dataNodeName);
124         } catch (final Exception exception) {
125             log.error("Creating data node failed: {}", exception.getMessage());
126             throw new NcmpStartUpException("Creating data node failed", exception.getMessage());
127         }
128     }
129
130     void updateAnchorSchemaSet(final String dataspaceName, final String anchorName, final String schemaSetName) {
131         try {
132             cpsAnchorService.updateAnchorSchemaSet(dataspaceName, anchorName, schemaSetName);
133         } catch (final Exception exception) {
134             log.error("Updating schema set failed: {}", exception.getMessage());
135             throw new NcmpStartUpException("Updating schema set failed", exception.getMessage());
136         }
137     }
138
139     Map<String, String> createYangResourcesToContentMap(final String... resourceNames) {
140         final Map<String, String> yangResourcesToContentMap = new HashMap<>();
141         for (final String resourceName: resourceNames) {
142             yangResourcesToContentMap.put(resourceName, getFileContentAsString("models/" + resourceName));
143         }
144         return yangResourcesToContentMap;
145     }
146
147     private String getFileContentAsString(final String fileName) {
148         try (InputStream inputStream = getClass().getClassLoader().getResourceAsStream(fileName)) {
149             return new String(inputStream.readAllBytes(), StandardCharsets.UTF_8);
150         } catch (final Exception exception) {
151             final String message = String.format("Onboarding failed as unable to read file: %s", fileName);
152             log.debug(message);
153             throw new NcmpStartUpException(message, exception.getMessage());
154         }
155     }
156
157 }