ce160cee49553aabd0ce7c2b8908849aca6b9099
[sdc.git] / openecomp-be / lib / openecomp-sdc-translator-lib / openecomp-sdc-translator-core / src / main / java / org / openecomp / sdc / translator / services / heattotosca / impl / functiontranslation / FunctionTranslationGetResourceImpl.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
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
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
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=========================================================
19  */
20
21 package org.openecomp.sdc.translator.services.heattotosca.impl.functiontranslation;
22
23 import org.openecomp.sdc.heat.datatypes.model.HeatOrchestrationTemplate;
24 import org.openecomp.sdc.tosca.datatypes.model.ServiceTemplate;
25 import org.openecomp.sdc.tosca.datatypes.model.Template;
26 import org.openecomp.sdc.translator.datatypes.heattotosca.TranslationContext;
27 import org.openecomp.sdc.translator.services.heattotosca.FunctionTranslation;
28 import org.openecomp.sdc.translator.services.heattotosca.helper.FunctionTranslationHelper;
29 import org.openecomp.sdc.translator.services.heattotosca.impl.resourcetranslation.ResourceTranslationBase;
30
31 import java.util.Optional;
32
33 /**
34  * @author SHIRIA
35  * @since December 15, 2016.
36  */
37 public class FunctionTranslationGetResourceImpl implements FunctionTranslation {
38   @Override
39   public Object translateFunction(ServiceTemplate serviceTemplate, String resourceId,
40                                   String propertyName, String functionKey,
41                                   Object functionValue, String heatFileName,
42                                   HeatOrchestrationTemplate heatOrchestrationTemplate,
43                                   Template toscaTemplate, TranslationContext context) {
44     Object returnValue;
45     Optional<String> resourceTranslatedId = ResourceTranslationBase
46         .getResourceTranslatedId(heatFileName, heatOrchestrationTemplate, (String) functionValue,
47             context);
48     returnValue = resourceTranslatedId
49         .orElseGet(() -> FunctionTranslationHelper.getUnsupportedResourcePrefix() + functionValue);
50     return returnValue;
51   }
52 }