Add collaboration feature
[sdc.git] / openecomp-be / backend / openecomp-sdc-validation-manager / src / main / java / org / openecomp / sdc / validation / util / 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.util;
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.factory.ValidationManagerFactory;
27 import org.openecomp.sdc.common.errors.Messages;
28 import org.openecomp.sdc.common.utils.SdcCommon;
29 import org.openecomp.sdc.datatypes.error.ErrorLevel;
30 import org.openecomp.sdc.datatypes.error.ErrorMessage;
31
32 import java.io.IOException;
33 import java.io.InputStream;
34 import java.util.List;
35 import java.util.Map;
36
37
38 public class ValidationManagerUtil {
39
40   /**
41    * Handle missing manifest.
42    *
43    * @param fileContentMap the file content map
44    * @param errors         the errors
45    */
46   public static void handleMissingManifest(FileContentHandler fileContentMap,
47                                            Map<String, List<ErrorMessage>> errors) throws IOException {
48     try (InputStream manifest = fileContentMap.getFileContent(SdcCommon.MANIFEST_NAME)) {
49       if (manifest == null) {
50         ErrorMessage.ErrorMessageUtil.addMessage(SdcCommon.MANIFEST_NAME, errors)
51                 .add(new ErrorMessage(ErrorLevel.ERROR, Messages.MANIFEST_NOT_EXIST.getErrorMessage()));
52       }
53     }
54   }
55
56   /**
57    * Init validation manager validation manager.
58    *
59    * @param fileContentMap the file content map
60    * @return the validation manager
61    */
62   public static ValidationManager initValidationManager(FileContentHandler fileContentMap) {
63     ValidationManager validationManager = ValidationManagerFactory.getInstance().createInterface();
64     fileContentMap.getFileList().forEach(fileName -> validationManager
65         .addFile(fileName, FileUtils.toByteArray(fileContentMap.getFileContent(fileName))));
66     return validationManager;
67   }
68 }