Merge "Add ncmp endpoints to swagger-ui"
[cps.git] / cps-service / src / main / java / org / onap / cps / api / impl / CpsModuleServiceImpl.java
1 /*
2  *  ============LICENSE_START=======================================================
3  *  Copyright (C) 2020-2021 Nordix Foundation
4  *  Modifications Copyright (C) 2020-2021 Pantheon.tech
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.cps.api.impl;
23
24 import java.util.List;
25 import java.util.Map;
26 import org.onap.cps.api.CpsModuleService;
27 import org.onap.cps.spi.CascadeDeleteAllowed;
28 import org.onap.cps.spi.CpsModulePersistenceService;
29 import org.onap.cps.spi.model.ModuleReference;
30 import org.onap.cps.spi.model.SchemaSet;
31 import org.onap.cps.yang.YangTextSchemaSourceSetBuilder;
32 import org.springframework.beans.factory.annotation.Autowired;
33 import org.springframework.stereotype.Service;
34
35 @Service("CpsModuleServiceImpl")
36 public class CpsModuleServiceImpl implements CpsModuleService {
37
38     @Autowired
39     private CpsModulePersistenceService cpsModulePersistenceService;
40
41     @Autowired
42     private YangTextSchemaSourceSetCache yangTextSchemaSourceSetCache;
43
44     @Override
45     public void createSchemaSet(final String dataspaceName, final String schemaSetName,
46         final Map<String, String> yangResourcesNameToContentMap) {
47         final var yangTextSchemaSourceSet
48             = YangTextSchemaSourceSetBuilder.of(yangResourcesNameToContentMap);
49         cpsModulePersistenceService.storeSchemaSet(dataspaceName, schemaSetName, yangResourcesNameToContentMap);
50         yangTextSchemaSourceSetCache.updateCache(dataspaceName, schemaSetName, yangTextSchemaSourceSet);
51     }
52
53     @Override
54     public void createSchemaSetFromModules(final String dataspaceName, final String schemaSetName,
55                                            final Map<String, String> newYangResourcesModuleNameToContentMap,
56                                            final List<ModuleReference> existingModuleReferences) {
57         cpsModulePersistenceService.storeSchemaSetFromModules(dataspaceName, schemaSetName,
58                 newYangResourcesModuleNameToContentMap, existingModuleReferences);
59
60     }
61
62     @Override
63     public SchemaSet getSchemaSet(final String dataspaceName, final String schemaSetName) {
64         final var yangTextSchemaSourceSet = yangTextSchemaSourceSetCache
65             .get(dataspaceName, schemaSetName);
66         return SchemaSet.builder().name(schemaSetName).dataspaceName(dataspaceName)
67             .moduleReferences(yangTextSchemaSourceSet.getModuleReferences()).build();
68     }
69
70     @Override
71     public void deleteSchemaSet(final String dataspaceName, final String schemaSetName,
72         final CascadeDeleteAllowed cascadeDeleteAllowed) {
73         cpsModulePersistenceService.deleteSchemaSet(dataspaceName, schemaSetName, cascadeDeleteAllowed);
74     }
75
76     @Override
77     public List<ModuleReference> getAllYangResourcesModuleReferences() {
78         return cpsModulePersistenceService.getAllYangResourcesModuleReferences();
79     }
80
81 }