2 * ============LICENSE_START=======================================================
4 * ================================================================================
5 * Copyright (C) 2017 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
11 * http://www.apache.org/licenses/LICENSE-2.0
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=========================================================
21 package org.openecomp.sdc.translator.services.heattotosca.impl.resourcetranslation;
23 import org.openecomp.sdc.heat.datatypes.HeatBoolean;
24 import org.openecomp.sdc.heat.services.HeatConstants;
25 import org.openecomp.sdc.tosca.datatypes.ToscaNodeType;
26 import org.openecomp.sdc.tosca.datatypes.model.NodeTemplate;
27 import org.openecomp.sdc.tosca.services.DataModelUtil;
28 import org.openecomp.sdc.translator.datatypes.heattotosca.to.TranslateTo;
29 import org.openecomp.sdc.translator.services.heattotosca.HeatToToscaUtil;
30 import org.openecomp.sdc.translator.services.heattotosca.mapping.TranslatorHeatToToscaPropertyConverter;
35 public class ResourceTranslationCinderVolumeImpl extends ResourceTranslationBase {
38 public void translate(TranslateTo translateTo) {
41 mdcDataDebugMessage.debugEntryMessage(null, null);
43 NodeTemplate nodeTemplate = new NodeTemplate();
44 nodeTemplate.setType(ToscaNodeType.CINDER_VOLUME);
45 nodeTemplate.setProperties(TranslatorHeatToToscaPropertyConverter
46 .getToscaPropertiesSimpleConversion(translateTo.getServiceTemplate(),translateTo.
47 getResourceId(),translateTo.getResource().getProperties(),
48 nodeTemplate.getProperties(), translateTo.getHeatFileName(),
49 translateTo.getHeatOrchestrationTemplate(), translateTo.getResource().getType(),
50 nodeTemplate, translateTo.getContext()));
51 handleSizeProperty(nodeTemplate.getProperties());
52 String toscaReadOnlyPropName =
53 HeatToToscaUtil.getToscaPropertyName(translateTo, HeatConstants.READ_ONLY_PROPERTY_NAME);
54 Object readOnlyPropVal = nodeTemplate.getProperties().get(toscaReadOnlyPropName);
55 if (readOnlyPropVal != null && !(readOnlyPropVal instanceof Map)) {
56 nodeTemplate.getProperties().put(toscaReadOnlyPropName, HeatBoolean.eval(readOnlyPropVal));
58 DataModelUtil.addNodeTemplate(translateTo.getServiceTemplate(), translateTo.getTranslatedId(),
61 mdcDataDebugMessage.debugExitMessage(null, null);
65 private void handleSizeProperty(Map<String, Object> nodeTemplateProperties) {
68 mdcDataDebugMessage.debugEntryMessage(null, null);
70 Object size = nodeTemplateProperties.get("size");
75 if (size instanceof Map) {
76 Map<String, Object> propMap = (Map) size;
77 for (Map.Entry entry : propMap.entrySet()) {
78 String val = "(" + entry.getKey() + " : " + entry.getValue() + ") * 1024";
79 nodeTemplateProperties.put("size", val);
81 mdcDataDebugMessage.debugExitMessage(null, null);
85 nodeTemplateProperties.put("size", size + "*1024");
88 mdcDataDebugMessage.debugExitMessage(null, null);