summaryrefslogtreecommitdiffstats
path: root/common-app-api/src/main/java/org/openecomp/sdc/common/util/YamlToObjectConverter.java
blob: b1f68c9b8230457b34f5c7e083fa6e3605b3aa08 (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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
/*-
 * ============LICENSE_START=======================================================
 * SDC
 * ================================================================================
 * Copyright (C) 2017 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.common.util;

import java.io.ByteArrayInputStream;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.nio.file.Files;
import java.nio.file.Paths;
import java.util.HashMap;
import java.util.Map;
import org.apache.commons.codec.binary.Base64;
import org.openecomp.sdc.be.config.Configuration.ApplicationL1CacheConfig;
import org.openecomp.sdc.be.config.Configuration.ApplicationL2CacheConfig;
import org.openecomp.sdc.be.config.Configuration.ArtifactTypeConfig;
import org.openecomp.sdc.be.config.Configuration.BeMonitoringConfig;
import org.openecomp.sdc.be.config.Configuration.EcompPortalConfig;
import org.openecomp.sdc.be.config.Configuration.OnboardingConfig;
import org.openecomp.sdc.be.config.Configuration.SwitchoverDetectorConfig;
import org.openecomp.sdc.be.config.Configuration.ToscaValidatorsConfig;
import org.openecomp.sdc.be.config.DistributionEngineConfiguration;
import org.openecomp.sdc.be.config.DistributionEngineConfiguration.ComponentArtifactTypesConfig;
import org.openecomp.sdc.be.config.DistributionEngineConfiguration.CreateTopicConfig;
import org.openecomp.sdc.be.config.DistributionEngineConfiguration.DistributionNotificationTopicConfig;
import org.openecomp.sdc.be.config.DistributionEngineConfiguration.DistributionStatusTopicConfig;
import org.openecomp.sdc.be.config.validation.DeploymentArtifactHeatConfiguration;
import org.openecomp.sdc.common.log.enums.EcompLoggerErrorCode;
import org.openecomp.sdc.common.log.wrappers.Logger;
import org.openecomp.sdc.exception.YamlConversionException;
import org.openecomp.sdc.fe.config.Configuration.FeMonitoringConfig;
import org.yaml.snakeyaml.TypeDescription;
import org.yaml.snakeyaml.Yaml;
import org.yaml.snakeyaml.constructor.Constructor;
import org.yaml.snakeyaml.introspector.PropertyUtils;

public class YamlToObjectConverter {

    private static Logger log = Logger.getLogger(YamlToObjectConverter.class.getName());
    private static HashMap<String, Constructor> yamlConstructors = new HashMap<>();

    static {
        Constructor deConstructor = new Constructor(DistributionEngineConfiguration.class);
        TypeDescription deDescription = new TypeDescription(DistributionEngineConfiguration.class);
        deDescription.putListPropertyType("distributionStatusTopic", DistributionStatusTopicConfig.class);
        deDescription.putListPropertyType("distribNotifServiceArtifactTypes", ComponentArtifactTypesConfig.class);
        deDescription.putListPropertyType("distribNotifResourceArtifactTypes", ComponentArtifactTypesConfig.class);
        deDescription.putListPropertyType("createTopic", CreateTopicConfig.class);
        deDescription.putListPropertyType("distributionNotificationTopic", DistributionNotificationTopicConfig.class);
        deConstructor.addTypeDescription(deDescription);
        yamlConstructors.put(DistributionEngineConfiguration.class.getName(), deConstructor);
        // FE conf
        Constructor feConfConstructor = new Constructor(org.openecomp.sdc.fe.config.Configuration.class);
        TypeDescription feConfDescription = new TypeDescription(org.openecomp.sdc.fe.config.Configuration.class);
        feConfDescription.putListPropertyType("systemMonitoring", FeMonitoringConfig.class);
        feConfConstructor.addTypeDescription(feConfDescription);
        yamlConstructors.put(org.openecomp.sdc.fe.config.Configuration.class.getName(), feConfConstructor);
        // BE conf
        Constructor beConfConstructor = new Constructor(org.openecomp.sdc.be.config.Configuration.class);
        TypeDescription beConfDescription = new TypeDescription(org.openecomp.sdc.be.config.Configuration.class);
        beConfConstructor.addTypeDescription(beConfDescription);
        // systemMonitoring
        beConfDescription.putListPropertyType("systemMonitoring", BeMonitoringConfig.class);
        // resourceDeploymentArtifacts and serviceDeploymentArtifacts
        beConfDescription.putMapPropertyType("resourceDeploymentArtifacts", String.class, ArtifactTypeConfig.class);
        beConfDescription.putMapPropertyType("serviceDeploymentArtifacts", String.class, ArtifactTypeConfig.class);
        // onboarding
        beConfDescription.putListPropertyType("onboarding", OnboardingConfig.class);
        // ecompPortal
        beConfDescription.putListPropertyType("ecompPortal", EcompPortalConfig.class);
        // switchoverDetector
        beConfDescription.putListPropertyType("switchoverDetector", SwitchoverDetectorConfig.class);
        // ApplicationL1Cache
        beConfDescription.putListPropertyType("applicationL1Cache", ApplicationL1CacheConfig.class);
        // ApplicationL2Cache
        beConfDescription.putListPropertyType("applicationL2Cache", ApplicationL2CacheConfig.class);
        // tosca validators config
        beConfDescription.putListPropertyType("toscaValidators", ToscaValidatorsConfig.class);
        yamlConstructors.put(org.openecomp.sdc.be.config.Configuration.class.getName(), beConfConstructor);
        // HEAT deployment artifact
        Constructor depArtHeatConstructor = new Constructor(DeploymentArtifactHeatConfiguration.class);
        PropertyUtils propertyUtils = new PropertyUtils();
        // Skip properties which are found in YAML but not found in POJO
        propertyUtils.setSkipMissingProperties(true);
        depArtHeatConstructor.setPropertyUtils(propertyUtils);
        yamlConstructors.put(org.openecomp.sdc.be.config.validation.DeploymentArtifactHeatConfiguration.class.getName(), depArtHeatConstructor);
    }

    private static <T> Yaml getYamlByClassName(Class<T> className) {
        Constructor yamlConstructor = yamlConstructors.get(className.getName());
        return yamlConstructor == null ? new Yaml() : new Yaml(yamlConstructor);
    }

    public <T> T convert(final String dirPath, final Class<T> className, final String configFileName) throws YamlConversionException {
        if (className == null) {
            throw new IllegalArgumentException("className cannot be null");
        }
        final String fullFileName = dirPath + File.separator + configFileName;
        return convert(fullFileName, className);
    }

    public <T> T convert(String fullFileName, Class<T> className) throws YamlConversionException {
        final File file = new File(fullFileName);
        if (!file.exists() || file.isDirectory()) {
            log.warn(EcompLoggerErrorCode.UNKNOWN_ERROR, "", "", "The file {} cannot be found. Ignore reading configuration.", fullFileName);
            return null;
        }
        final Yaml yaml = getYamlByClassName(className);
        try (final InputStream in = Files.newInputStream(Paths.get(fullFileName))) {
            return yaml.loadAs(in, className);
        } catch (final IOException e) {
            log.debug("Failed to open/close input stream", e);
        } catch (Exception e) {
            log.error(EcompLoggerErrorCode.UNKNOWN_ERROR, "", "", "Failed to convert yaml file {} to object.", fullFileName, e);
            final String errorMsg = String.format("Could not parse '%s' to class '%s'", fullFileName, className);
            throw new YamlConversionException(errorMsg, e);
        }
        return null;
    }

    public <T> T convert(byte[] fileContents, Class<T> className) {
        final Yaml yaml = getYamlByClassName(className);
        try (final InputStream in = new ByteArrayInputStream(fileContents)) {
            return yaml.loadAs(in, className);
        } catch (final IOException e) {
            log.debug("Failed to open or close input stream", e);
        } catch (final Exception e) {
            log.error(EcompLoggerErrorCode.UNKNOWN_ERROR, "", "", "Failed to convert yaml file to object", e);
        }
        return null;
    }

    public boolean isValidYamlEncoded64(byte[] fileContents) {
        log.trace("Received Base64 data - decoding before validating...");
        byte[] decodedFileContents = Base64.decodeBase64(fileContents);
        return isValidYaml(decodedFileContents);
    }

    @SuppressWarnings("unchecked")
    public boolean isValidYaml(byte[] fileContents) {
        try {
            Iterable<Object> mappedToscaTemplateIt = new Yaml().loadAll(new ByteArrayInputStream(fileContents));
            for (Object o : mappedToscaTemplateIt) {
                log.debug("Loaded object type:" + o.getClass());
                Map<String, Object> map = (Map<String, Object>) o;
            }
        } catch (Exception e) {
            log.error(EcompLoggerErrorCode.UNKNOWN_ERROR, "", "", "Failed to convert yaml file to object - yaml is invalid. Exception: {}, message: {}", 
                    e.getClass().getName(), e.getMessage());
            log.error("Failed to convert yaml file to object - yaml is invalid", e);
            return false;
        }
        return true;
    }
}