dad05b64f25690f161669121a94c7dfd68134320
[sdc.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2019, Nordix Foundation. All rights reserved.
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  * ============LICENSE_END=========================================================
19  */
20 package org.openecomp.sdc.vendorsoftwareproduct.services.impl.etsi;
21
22 import com.vdurmont.semver4j.Semver;
23 import java.io.IOException;
24 import java.nio.file.Path;
25 import java.util.Map;
26 import java.util.Optional;
27 import org.openecomp.core.utilities.file.FileContentHandler;
28 import org.openecomp.sdc.be.datatypes.enums.ResourceTypeEnum;
29 import org.openecomp.sdc.tosca.csar.Manifest;
30 import org.openecomp.sdc.tosca.datatypes.ToscaServiceModel;
31
32 public interface ETSIService {
33
34     /**
35      * Checks package structure is CSAR with TOSCA-Metadata directory according to SOL004 v2.5.1 and contains mandatory Entries in Tosca.meta
36      *
37      * @param handler contains csar artifacts
38      * @return true if all condition matched, false otherwise
39      * @throws IOException when TOSCA.meta file is invalid
40      */
41     boolean isSol004WithToscaMetaDirectory(FileContentHandler handler) throws IOException;
42
43     /**
44      * Update file structure. Moves non mano files to the correct folder based on the manifest non mano type.
45      *
46      * @param handler The file handler containing the artifacts to move.
47      * @return A Map with pairs of from and to path of the moved artifacts.
48      */
49     Optional<Map<String, Path>> moveNonManoFileToArtifactFolder(final FileContentHandler handler) throws IOException;
50
51     /**
52      * Updates the main descriptor paths referring the artifacts that were moved.
53      *
54      * @param toscaServiceModel      The tosca service model containing the main descriptor.
55      * @param fromToMovedArtifactMap A Map representing the from and to artifacts path changes.
56      */
57     void updateMainDescriptorPaths(final ToscaServiceModel toscaServiceModel, final Map<String, Path> fromToMovedArtifactMap);
58
59     /**
60      * Retrieves the manifest file from the CSAR
61      *
62      * @param handler contains csar artifacts
63      * @throws IOException when TOSCA.meta file or manifest file is invalid
64      */
65     Manifest getManifest(FileContentHandler handler) throws IOException;
66
67     /**
68      * Determines the type of resource that the CSAR represents
69      *
70      * @param handler contains csar artifacts
71      * @throws IOException when TOSCA.meta file or manifest file is invalid
72      */
73     ResourceTypeEnum getResourceType(FileContentHandler handler) throws IOException;
74
75     /**
76      * Determines the type of resource that the CSAR represents
77      *
78      * @param manifest contains manifest content
79      * @throws IOException when TOSCA.meta file or manifest file is invalid
80      */
81     ResourceTypeEnum getResourceType(Manifest manifest) throws IOException;
82
83     Path getOriginalManifestPath(final FileContentHandler handler) throws IOException;
84
85     /**
86      * Determines the highest compatible specification version based on ETSI manifest file
87      *
88      * @param handler contains csar artifacts
89      * @return Semver representing highest compatible specification version
90      */
91     Semver getHighestCompatibleSpecificationVersion(final FileContentHandler handler);
92
93     /**
94      * Verifies if SOL004 3.3.1 manifest file has onap_cnf_helm non mano entry
95      *
96      * @return true if manifest files has onap_cnf_helm non mano entry
97      */
98     boolean hasCnfEnhancements(final FileContentHandler fileContentHandler) throws IOException;
99 }