summaryrefslogtreecommitdiffstats
path: root/openecomp-be/lib/openecomp-tosca-lib/src/main/java/org/openecomp/sdc/tosca/csar/OnboardingToscaMetadata.java
blob: bc104335f57c63d384e6d30fea5b6f01117a0976 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
/*-
 * ============LICENSE_START=======================================================
 * SDC
 * ================================================================================
 * Copyright (C) 2018 AT&T Intellectual Property. All rights reserved.
 * ================================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ============LICENSE_END=========================================================
 */
package org.openecomp.sdc.tosca.csar;

import static org.openecomp.core.validation.errors.ErrorMessagesFormatBuilder.getErrorWithParameters;
import static org.openecomp.sdc.tosca.csar.ManifestTokenType.ATTRIBUTE_VALUE_SEPARATOR;
import static org.openecomp.sdc.tosca.csar.ToscaMetaEntry.ENTRY_DEFINITIONS;

import com.google.common.collect.ImmutableList;
import com.google.common.collect.ImmutableMap;
import java.io.IOException;
import java.io.InputStream;
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Optional;
import org.apache.commons.io.IOUtils;
import org.openecomp.sdc.common.errors.Messages;
import org.openecomp.sdc.datatypes.error.ErrorLevel;
import org.openecomp.sdc.datatypes.error.ErrorMessage;

public class OnboardingToscaMetadata implements ToscaMetadata {

    private Map<String, String> metaEntries;
    private List<ErrorMessage> errors;

    private OnboardingToscaMetadata() {
        metaEntries = new HashMap<>();
        errors = new ArrayList<>();
    }

    /**
     * Method parses input stream of meta file, only block_0 is parsed, the rest of metadata ignored
     *
     * @param st meta file input stream
     * @return OnboardingToscaMetadata instance
     * @throws IOException
     */
    public static ToscaMetadata parseToscaMetadataFile(InputStream st) throws IOException {
        if (st == null) {
            throw new IOException(Messages.METADATA_PARSER_INTERNAL.getErrorMessage());
        }
        OnboardingToscaMetadata meta = new OnboardingToscaMetadata();
        List<String> metadataLines = IOUtils.readLines(st, "utf-8");
        for (String line : metadataLines) {
            line = line.trim();
            if (line.isEmpty()) {
                return meta;
            }
            String[] entry = line.split(ATTRIBUTE_VALUE_SEPARATOR.getToken());
            //No empty keys allowed, no empty values allowed
            if (entry.length < 2 || entry[0].isEmpty()) {
                meta.errors.add(
                    new ErrorMessage(ErrorLevel.ERROR, getErrorWithParameters(Messages.METADATA_INVALID_ENTRY_DEFINITIONS.getErrorMessage(), line)));
                //want to get all error lines in meta file block_0, no breaking loop
            } else {
                meta.metaEntries.put(entry[0].trim(), entry[1].trim());
            }
        }
        if (!meta.metaEntries.containsKey(ENTRY_DEFINITIONS.getName())) {
            meta.errors.add(new ErrorMessage(ErrorLevel.ERROR, getErrorWithParameters(Messages.METADATA_NO_ENTRY_DEFINITIONS.getErrorMessage())));
        }
        return meta;
    }

    @Override
    public boolean isValid() {
        return errors.isEmpty();
    }

    @Override
    public List<ErrorMessage> getErrors() {
        return ImmutableList.copyOf(errors);
    }

    @Override
    public Map<String, String> getMetaEntries() {
        if (!isValid()) {
            return Collections.emptyMap();
        }
        return ImmutableMap.copyOf(metaEntries);
    }

    @Override
    public boolean hasEntry(final String entry) {
        return metaEntries.containsKey(entry);
    }

    @Override
    public Optional<String> getEntry(final ToscaMetaEntry entry) {
        return Optional.ofNullable(metaEntries.get(entry.getName()));
    }
}