Merge "Fixing SonarQube violations"
[cps.git] / cps-service / src / main / java / org / onap / cps / spi / CpsModulePersistenceService.java
1 /*
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2020-2022 Nordix Foundation
4  *  Modifications Copyright (C) 2020-2022 Bell Canada.
5  *  Modifications Copyright (C) 2022 TechMahindra Ltd.
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  *
19  *  SPDX-License-Identifier: Apache-2.0
20  *  ============LICENSE_END=========================================================
21  */
22
23 package org.onap.cps.spi;
24
25 import java.util.Collection;
26 import java.util.Map;
27 import org.onap.cps.spi.model.ModuleDefinition;
28 import org.onap.cps.spi.model.ModuleReference;
29 import org.onap.cps.spi.model.SchemaSet;
30
31 /**
32  * Service to manage modules.
33  */
34 public interface CpsModulePersistenceService {
35
36     /**
37      * Stores Schema Set.
38      *
39      * @param dataspaceName                 dataspace name
40      * @param schemaSetName                 schema set name
41      * @param yangResourcesNameToContentMap YANG resources (files) map where key is a name and value is content
42      */
43     void storeSchemaSet(String dataspaceName, String schemaSetName, Map<String, String> yangResourcesNameToContentMap);
44
45     /**
46      * Stores a schema set from new modules and existing modules.
47      *
48      * @param dataspaceName             Dataspace name
49      * @param schemaSetName             Schema set name
50      * @param newModuleNameToContentMap YANG resources map where key is a module name and value is content
51      * @param allModuleReferences       All YANG resources module references
52      */
53     void storeSchemaSetFromModules(String dataspaceName, String schemaSetName,
54         Map<String, String> newModuleNameToContentMap, Collection<ModuleReference> allModuleReferences);
55
56     /**
57      * Get all schema sets for a given dataspace.
58      *
59      * @param dataspaceName dataspace name.
60      * @return List of schema sets
61      */
62     Collection<SchemaSet> getSchemaSetsByDataspaceName(String dataspaceName);
63
64     /**
65      * Deletes Schema Set.
66      *
67      * @param dataspaceName dataspace name
68      * @param schemaSetName schema set name
69      */
70     void deleteSchemaSet(String dataspaceName, String schemaSetName);
71
72     /**
73      * Returns YANG resources per specific dataspace / schemaSetName.
74      *
75      * @param dataspaceName dataspace name
76      * @param schemaSetName schema set name
77      * @return YANG resources (files) map where key is a name and value is content
78      */
79     Map<String, String> getYangSchemaResources(String dataspaceName, String schemaSetName);
80
81     /**
82      * Returns YANG resources per specific dataspace / anchorName.
83      *
84      * @param dataspaceName dataspace name
85      * @param anchorName    anchor name
86      * @return YANG resources (files) map where key is a name and value is content
87      */
88     Map<String, String> getYangSchemaSetResources(String dataspaceName, String anchorName);
89
90     /**
91      * Returns YANG resources module references for the given dataspace name.
92      *
93      * @param dataspaceName dataspace name
94      * @return Collection of all YANG resources module information in the database
95      */
96     Collection<ModuleReference> getYangResourceModuleReferences(String dataspaceName);
97
98     /**
99      * Get YANG resource module references for the given anchor name and dataspace name.
100      *
101      * @param dataspaceName dataspace name
102      * @param anchorName    anchor name
103      * @return a collection of module reference (moduleName and revision)
104      */
105     Collection<ModuleReference> getYangResourceModuleReferences(String dataspaceName, String anchorName);
106
107     /**
108      * Get YANG resource definitions for the given anchor name and dataspace name.
109      *
110      * @param dataspaceName dataspace name
111      * @param anchorName    anchor name
112      * @return a collection of module definitions (moduleName, revision and yang resource content)
113      */
114     Collection<ModuleDefinition> getYangResourceDefinitions(String dataspaceName, String anchorName);
115
116     /**
117      * Remove unused Yang Resource Modules.
118      */
119     void deleteUnusedYangResourceModules();
120
121     /**
122      * Identify new module references from those returned by a node compared to what is in CPS already.
123      * The system will ignore the namespace of all module references.
124      *
125      * @param moduleReferencesToCheck the module references ot check
126      * @returns Collection of {@link ModuleReference} (namespace will be always blank)
127      *
128      */
129     Collection<ModuleReference> identifyNewModuleReferences(
130         Collection<ModuleReference> moduleReferencesToCheck);
131
132 }