3fc55adb517028f81198d92687027ae59cc6ead5
[sdc.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2018 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.tosca.csar;
22
23 import com.google.common.collect.ImmutableList;
24 import com.google.common.collect.ImmutableMap;
25 import org.openecomp.sdc.common.errors.Messages;
26 import org.openecomp.sdc.datatypes.error.ErrorLevel;
27 import org.openecomp.sdc.datatypes.error.ErrorMessage;
28 import java.io.InputStream;
29 import java.io.IOException;
30 import org.apache.commons.io.IOUtils;
31
32 import java.util.ArrayList;
33 import java.util.Collections;
34 import java.util.HashMap;
35 import java.util.List;
36 import java.util.Map;
37
38 import static org.openecomp.core.validation.errors.ErrorMessagesFormatBuilder.getErrorWithParameters;
39 import static org.openecomp.sdc.tosca.csar.CSARConstants.TOSCA_META_ENTRY_DEFINITIONS;
40 import static org.openecomp.sdc.tosca.csar.ManifestTokenType.ATTRIBUTE_VALUE_SEPARATOR;
41
42 public class OnboardingToscaMetadata implements ToscaMetadata {
43
44   private Map<String, String> metaEntries;
45   private List<ErrorMessage> errors;
46
47   private OnboardingToscaMetadata(){
48     metaEntries = new HashMap<>();
49     errors = new ArrayList<>();
50   }
51
52   /**
53    * Method parses input stream of meta file, only block_0 is parsed, the rest of metadata ignored
54    * @param st meta file input stream
55    * @return OnboardingToscaMetadata instance
56    * @throws IOException
57    */
58   public static ToscaMetadata parseToscaMetadataFile(InputStream st) throws IOException {
59     if(st == null) {
60         throw new IOException(Messages.METADATA_PARSER_INTERNAL.getErrorMessage());
61     }
62     OnboardingToscaMetadata meta = new OnboardingToscaMetadata();
63     List<String> metadataLines = IOUtils.readLines(st, "utf-8");
64     for (String line : metadataLines) {
65       line = line.trim();
66       if (line.isEmpty()) {
67         return meta;
68       }
69       String[] entry = line.split(ATTRIBUTE_VALUE_SEPARATOR.getToken());
70       //No empty keys allowed, no empty values allowed
71       if (entry.length < 2 || entry[0].isEmpty()) {
72         meta.errors.add(new ErrorMessage(ErrorLevel.ERROR, getErrorWithParameters(
73                 Messages.METADATA_INVALID_ENTRY_DEFINITIONS.getErrorMessage(), line)));
74         //want to get all error lines in meta file block_0, no breaking loop
75       } else {
76         meta.metaEntries.put(entry[0].trim(), entry[1].trim());
77       }
78     }
79
80     if (!meta.metaEntries.containsKey(TOSCA_META_ENTRY_DEFINITIONS)) {
81       meta.errors.add(new ErrorMessage(ErrorLevel.ERROR, getErrorWithParameters(
82               Messages.METADATA_NO_ENTRY_DEFINITIONS.getErrorMessage())));
83     }
84     return meta;
85   }
86
87   @Override  public boolean isValid(){
88     return errors.isEmpty();
89   }
90
91   @Override
92   public List<ErrorMessage> getErrors() {
93     return  ImmutableList.copyOf(errors);
94   }
95
96
97   @Override
98   public Map<String, String> getMetaEntries() {
99     if (!isValid()){
100       return Collections.emptyMap();
101     }
102     return ImmutableMap.copyOf(metaEntries);
103   }
104 }
105