12813f231debf7578dd9a8b30b2a02915a0a54a7
[sdc.git] / common-be / src / main / java / org / openecomp / sdc / be / config / NonManoConfigurationManager.java
1 /*
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2019 Nordix Foundation
4  *  ================================================================================
5  *  Licensed under the Apache License, Version 2.0 (the "License");
6  *  you may not use this file except in compliance with the License.
7  *  You may obtain a copy of the License at
8  *
9  *        http://www.apache.org/licenses/LICENSE-2.0
10  *  Unless required by applicable law or agreed to in writing, software
11  *  distributed under the License is distributed on an "AS IS" BASIS,
12  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *  See the License for the specific language governing permissions and
14  *  limitations under the License.
15  *
16  *  SPDX-License-Identifier: Apache-2.0
17  *  ============LICENSE_END=========================================================
18  */
19
20 package org.openecomp.sdc.be.config;
21
22 import org.apache.commons.io.IOUtils;
23 import org.onap.sdc.tosca.parser.utils.YamlToObjectConverter;
24 import org.openecomp.sdc.be.config.exception.LoadConfigurationException;
25
26 import java.io.IOException;
27 import java.io.InputStream;
28 import java.nio.charset.StandardCharsets;
29
30 /**
31  * Singleton that loads and stores the Non Mano configuration
32  */
33 public class NonManoConfigurationManager {
34     private static NonManoConfigurationManager nonManoConfigurationManager = null;
35     private NonManoConfiguration nonManoConfiguration;
36
37     private NonManoConfigurationManager() {
38         loadConfiguration();
39     }
40
41     /**
42      * Loads the configuration yaml from the resources.
43      */
44     private void loadConfiguration() {
45         final InputStream configYamlAsStream = getClass().getClassLoader().getResourceAsStream("config/nonManoConfig.yaml");
46         if (configYamlAsStream == null) {
47             throw new LoadConfigurationException("Expected non-mano configuration file 'config/nonManoConfig.yaml' not found in resources");
48         }
49         final String data;
50         try {
51             data = IOUtils.toString(configYamlAsStream, String.valueOf(StandardCharsets.UTF_8));
52         } catch (final IOException e) {
53             throw new LoadConfigurationException("Could not parse non-mano configuration file 'config/nonManoConfig.yaml' to string", e);
54         }
55         nonManoConfiguration = new YamlToObjectConverter().convertFromString(data, NonManoConfiguration.class);
56     }
57
58     public static NonManoConfigurationManager getInstance() {
59         if (nonManoConfigurationManager == null) {
60             nonManoConfigurationManager = new NonManoConfigurationManager();
61         }
62
63         return nonManoConfigurationManager;
64     }
65
66     public NonManoConfiguration getNonManoConfiguration() {
67         return nonManoConfiguration;
68     }
69 }