2 * ============LICENSE_START=======================================================
4 * ================================================================================
5 * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6 * Copyright (C) 2017 Huawei Technologies Co., Ltd. All rights reserved.
7 * ================================================================================
8 * Licensed under the Apache License, Version 2.0 (the "License");
9 * you may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
12 * http://www.apache.org/licenses/LICENSE-2.0
14 * Unless required by applicable law or agreed to in writing, software
15 * distributed under the License is distributed on an "AS IS" BASIS,
16 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 * See the License for the specific language governing permissions and
18 * limitations under the License.
19 * ============LICENSE_END=========================================================
22 package org.openecomp.mso.openstack.utils;
26 import java.io.ByteArrayInputStream;
27 import java.io.InputStream;
28 import java.util.HashSet;
29 import java.util.Iterator;
32 import java.util.Map.Entry;
33 import org.openecomp.mso.db.catalog.beans.HeatTemplateParam;
34 import org.codehaus.jackson.map.ObjectMapper;
35 import java.util.LinkedHashMap;
37 import org.yaml.snakeyaml.Yaml;
39 import org.openecomp.mso.logger.MsoLogger;
41 public class MsoYamlEditorWithEnvt {
43 private static final MsoLogger LOGGER = MsoLogger.getMsoLogger (MsoLogger.Catalog.RA);
45 private Map <String, Object> yml;
46 private Yaml yaml = new Yaml ();
47 private static final ObjectMapper JSON_MAPPER = new ObjectMapper();
49 public MsoYamlEditorWithEnvt() {
52 public MsoYamlEditorWithEnvt(byte[] b) {
56 @SuppressWarnings("unchecked")
57 private synchronized void init (byte[] body) {
58 InputStream input = new ByteArrayInputStream (body);
59 yml = (Map <String, Object>) yaml.load (input);
62 @SuppressWarnings("unchecked")
63 public synchronized Set <MsoHeatEnvironmentParameter> getParameterListFromEnvt() {
64 // In an environment entry, the parameters section can only contain the name:value -
65 // not other attributes.
66 Set <MsoHeatEnvironmentParameter> paramSet = new HashSet<MsoHeatEnvironmentParameter>();
67 Map<String, Object> resourceMap = null;
69 resourceMap = (Map<String,Object>) yml.get("parameters");
70 } catch (Exception e) {
71 LOGGER.debug("Exception:", e);
74 if (resourceMap == null) {
77 Iterator <Entry <String, Object>> it = resourceMap.entrySet().iterator();
79 while (it.hasNext()) {
80 MsoHeatEnvironmentParameter hep = new MsoHeatEnvironmentParameter();
81 Map.Entry <String, Object> pair = it.next();
82 //Map<String, String> resourceEntry = (Map <String, String>) pair.getValue();
83 //String value = null;
85 Object obj = pair.getValue();
86 if (obj instanceof java.lang.String) {
87 //value = (String) pair.getValue();
88 // handle block scalar - literals and folded:
89 value = yaml.dump(obj);
90 // but this adds an extra '\n' at the end - which won't hurt - but we don't need it
91 value = value.substring(0, value.length() - 1);
92 } else if (obj instanceof java.util.LinkedHashMap) {
93 //Handle that it's json
95 value = JSON_MAPPER.writeValueAsString(obj);
96 } catch (Exception e) {
97 LOGGER.debug("Exception:", e);
98 value = "_BAD_JSON_MAPPING";
101 //this handles integers/longs/floats/etc.
102 value = String.valueOf(obj);
104 hep.setName((String) pair.getKey());
110 public synchronized Set <MsoHeatEnvironmentResource> getResourceListFromEnvt() {
112 Set<MsoHeatEnvironmentResource> resourceList = new HashSet<>();
113 @SuppressWarnings("unchecked")
114 Map<String, Object> resourceMap = (Map<String,Object>) yml.get("resource_registry");
115 Iterator<Entry <String,Object>> it = resourceMap.entrySet().iterator();
117 while (it.hasNext()) {
118 MsoHeatEnvironmentResource her = new MsoHeatEnvironmentResource();
119 Map.Entry<String, Object> pair = it.next();
120 her.setName((String) pair.getKey());
121 her.setValue((String) pair.getValue());
122 resourceList.add(her);
125 } catch (Exception e) {
126 LOGGER.debug("Exception:", e);
130 public synchronized Set <HeatTemplateParam> getParameterList () {
131 Set <HeatTemplateParam> paramSet = new HashSet <> ();
132 @SuppressWarnings("unchecked")
133 Map <String, Object> resourceMap = (Map <String, Object>) yml.get ("parameters");
134 Iterator <Entry <String, Object>> it = resourceMap.entrySet ().iterator ();
136 while (it.hasNext ()) {
137 HeatTemplateParam param = new HeatTemplateParam ();
138 Map.Entry <String, Object> pair = it.next ();
139 @SuppressWarnings("unchecked")
140 Map <String, String> resourceEntry = (Map <String, String>) pair.getValue ();
143 value = resourceEntry.get ("default");
144 } catch (java.lang.ClassCastException cce) {
145 LOGGER.debug("Exception:", cce);
146 // This exception only - the value is an integer. For what we're doing
147 // here - we don't care - so set value to something - and it will
148 // get marked as not being required - which is correct.
149 //System.out.println("cce exception!");
153 param.setParamName ((String) pair.getKey ());
155 param.setRequired (false);
157 param.setRequired (true);
159 value = resourceEntry.get ("type");
160 param.setParamType (value);
162 paramSet.add (param);