[sdc] docker file fix for cassandra
[sdc.git] / openecomp-be / lib / openecomp-sdc-validation-lib / openecomp-sdc-validation-core / src / main / java / org / openecomp / sdc / validation / utils / ValidationManagerUtil.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. 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
21 package org.openecomp.sdc.validation.utils;
22
23 import org.openecomp.core.utilities.file.FileContentHandler;
24 import org.openecomp.core.utilities.file.FileUtils;
25 import org.openecomp.core.validation.api.ValidationManager;
26 import org.openecomp.core.validation.errors.Messages;
27 import org.openecomp.core.validation.factory.ValidationManagerFactory;
28 import org.openecomp.sdc.common.utils.AsdcCommon;
29 import org.openecomp.sdc.datatypes.error.ErrorLevel;
30 import org.openecomp.sdc.datatypes.error.ErrorMessage;
31
32 import java.io.InputStream;
33 import java.util.List;
34 import java.util.Map;
35
36 public class ValidationManagerUtil {
37
38   /**
39    * Handle missing manifest.
40    *
41    * @param fileContentMap the file content map
42    * @param errors         the errors
43    */
44   public static void handleMissingManifest(FileContentHandler fileContentMap,
45                                            Map<String, List<ErrorMessage>> errors) {
46     InputStream manifest = fileContentMap.getFileContent(AsdcCommon.MANIFEST_NAME);
47     if (manifest == null) {
48       ErrorMessage.ErrorMessageUtil.addMessage(AsdcCommon.MANIFEST_NAME, errors)
49           .add(new ErrorMessage(ErrorLevel.ERROR, Messages.MANIFEST_NOT_EXIST.getErrorMessage()));
50     }
51   }
52
53   /**
54    * Init validation manager validation manager.
55    *
56    * @param fileContentMap the file content map
57    * @return the validation manager
58    */
59   public static ValidationManager initValidationManager(FileContentHandler fileContentMap) {
60     ValidationManager validationManager = ValidationManagerFactory.getInstance().createInterface();
61     fileContentMap.getFileList().stream().forEach(fileName -> validationManager
62         .addFile(fileName, FileUtils.toByteArray(fileContentMap.getFileContent(fileName))));
63     return validationManager;
64   }
65 }