2 * ============LICENSE_START=======================================================
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
11 * http://www.apache.org/licenses/LICENSE-2.0
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=========================================================
20 package org.openecomp.sdc.vendorsoftwareproduct.services.impl.etsi;
22 import com.vdurmont.semver4j.Semver;
23 import java.io.IOException;
24 import java.nio.file.Path;
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;
32 public interface ETSIService {
35 * Checks package structure is CSAR with TOSCA-Metadata directory according to SOL004 v2.5.1 and contains mandatory Entries in Tosca.meta
37 * @param handler contains csar artifacts
38 * @return true if all condition matched, false otherwise
39 * @throws IOException when TOSCA.meta file is invalid
41 boolean isSol004WithToscaMetaDirectory(FileContentHandler handler) throws IOException;
44 * Update file structure. Moves non mano files to the correct folder based on the manifest non mano type.
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.
49 Optional<Map<String, Path>> moveNonManoFileToArtifactFolder(final FileContentHandler handler) throws IOException;
52 * Updates the main descriptor paths referring the artifacts that were moved.
54 * @param toscaServiceModel The tosca service model containing the main descriptor.
55 * @param fromToMovedArtifactMap A Map representing the from and to artifacts path changes.
57 void updateMainDescriptorPaths(final ToscaServiceModel toscaServiceModel, final Map<String, Path> fromToMovedArtifactMap);
60 * Retrieves the manifest file from the CSAR
62 * @param handler contains csar artifacts
63 * @throws IOException when TOSCA.meta file or manifest file is invalid
65 Manifest getManifest(FileContentHandler handler) throws IOException;
68 * Determines the type of resource that the CSAR represents
70 * @param handler contains csar artifacts
71 * @throws IOException when TOSCA.meta file or manifest file is invalid
73 ResourceTypeEnum getResourceType(FileContentHandler handler) throws IOException;
76 * Determines the type of resource that the CSAR represents
78 * @param manifest contains manifest content
79 * @throws IOException when TOSCA.meta file or manifest file is invalid
81 ResourceTypeEnum getResourceType(Manifest manifest) throws IOException;
83 Path getOriginalManifestPath(final FileContentHandler handler) throws IOException;
86 * Determines the highest compatible specification version based on ETSI manifest file
88 * @param handler contains csar artifacts
89 * @return Semver representing highest compatible specification version
91 Semver getHighestCompatibleSpecificationVersion(final FileContentHandler handler);
94 * Verifies if SOL004 3.3.1 manifest file has onap_cnf_helm non mano entry
96 * @return true if manifest files has onap_cnf_helm non mano entry
98 boolean hasCnfEnhancements(final FileContentHandler fileContentHandler) throws IOException;