5b98dd941f837b630246527cb0daa6322f216ffd
[appc.git] / appc-dg / appc-dg-shared / appc-dg-common / src / main / java / org / onap / appc / dg / common / impl / DgResolverPluginImpl.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Copyright (C) 2017 Amdocs
8  * =============================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  * 
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  * 
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * 
21  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  * ============LICENSE_END=========================================================
23  */
24
25 package org.onap.appc.dg.common.impl;
26
27 import com.att.eelf.i18n.EELFResourceManager;
28 import java.util.Map;
29 import org.onap.appc.dg.common.DgResolverPlugin;
30 import org.onap.appc.exceptions.APPCException;
31 import org.onap.appc.i18n.Msg;
32 import org.onap.ccsdk.sli.core.sli.SvcLogicContext;
33
34 public class DgResolverPluginImpl implements DgResolverPlugin {
35
36     @Override
37     public void resolveDg(Map<String, String> params, SvcLogicContext ctx) throws APPCException {
38
39         String DGName, DGVersion, DGModule = null;
40         String prefix = params.containsKey("prefix") ? params.get("prefix") + "." : "";
41         AbstractResolver resolver = ResolverFactory.createResolver(params.get("DGResolutionType"));
42         FlowKey flowKey = null;
43         try {
44
45             if (params.get("DGResolutionType").equalsIgnoreCase("VNFC")) {
46                 flowKey = resolver
47                     .resolve(params.get(Constants.IN_PARAM_ACTION), params.get(Constants.IN_PARAM_VNF_TYPE),
48                         params.get(Constants.IN_PARAM_VNFC_TYPE), params.get(Constants.IN_PARAM_API_VERSION));
49             } else if (params.get("DGResolutionType").equalsIgnoreCase("VNF")) {
50                 flowKey = resolver
51                     .resolve(params.get(Constants.IN_PARAM_ACTION), params.get(Constants.IN_PARAM_VNF_TYPE),
52                         params.get("vnfVersion"), params.get(Constants.IN_PARAM_API_VERSION));
53             }
54             if (flowKey != null) {
55                 DGName = flowKey.name();
56                 ctx.setAttribute(prefix + Constants.OUT_PARAM_DG_NAME, DGName);
57                 DGVersion = flowKey.version();
58                 ctx.setAttribute(prefix + Constants.OUT_PARAM_DG_VERSION, DGVersion);
59                 DGModule = flowKey.module();
60                 ctx.setAttribute(prefix + Constants.OUT_PARAM_DG_MODULE, DGModule);
61             } else {
62                 throw new RuntimeException(params.get("DGResolutionType") + " DG not found for vnf type :" + params
63                     .get(Constants.IN_PARAM_VNF_TYPE)
64                     + " vnfc type : " + params.get(Constants.IN_PARAM_VNFC_TYPE)
65                     + " action : " + params.get(Constants.IN_PARAM_ACTION)
66                     + " api version : " + params.get(Constants.IN_PARAM_API_VERSION));
67             }
68         } catch (Exception e) {
69             String msg = EELFResourceManager
70                 .format(Msg.FAILURE_RETRIEVE_VNFC_DG, params.get(Constants.IN_PARAM_VNFC_TYPE), e.getMessage());
71             ctx.setAttribute(Constants.ATTRIBUTE_ERROR_MESSAGE, msg);
72             throw new RuntimeException(e);
73         }
74     }
75 }