Merge "Use "coder" to serialize Actor requests"
[policy/models.git] / models-interactions / model-actors / actor.vfc / src / main / java / org / onap / policy / controlloop / actor / vfc / VfcActorServiceProvider.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * Copyright (C) 2017-2018 Intel Corp. All rights reserved.
4  * Modifications Copyright (C) 2018-2020 AT&T Intellectual Property. All rights reserved.
5  * Modifications Copyright (C) 2019 Nordix Foundation.
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.onap.policy.controlloop.actor.vfc;
22
23 import com.google.common.collect.ImmutableList;
24 import com.google.common.collect.ImmutableMap;
25 import java.util.Collections;
26 import java.util.List;
27 import org.onap.policy.aai.AaiCqResponse;
28 import org.onap.policy.controlloop.ControlLoopOperation;
29 import org.onap.policy.controlloop.VirtualControlLoopEvent;
30 import org.onap.policy.controlloop.actorserviceprovider.impl.ActorImpl;
31 import org.onap.policy.controlloop.policy.Policy;
32 import org.onap.policy.vfc.VfcHealActionVmInfo;
33 import org.onap.policy.vfc.VfcHealAdditionalParams;
34 import org.onap.policy.vfc.VfcHealRequest;
35 import org.onap.policy.vfc.VfcRequest;
36
37 public class VfcActorServiceProvider extends ActorImpl {
38     private static final String GENERIC_VNF_ID = "generic-vnf.vnf-id";
39
40     // TODO old code: remove lines down to **HERE**
41
42     // Strings for VFC Actor
43     private static final String VFC_ACTOR = "VFC";
44
45     public static final String NAME = VFC_ACTOR;
46
47     // Strings for targets
48     private static final String TARGET_VM = "VM";
49
50     // Strings for recipes
51     private static final String RECIPE_RESTART = "Restart";
52
53     private static final ImmutableList<String> recipes = ImmutableList.of(RECIPE_RESTART);
54     private static final ImmutableMap<String, List<String>> targets =
55             new ImmutableMap.Builder<String, List<String>>().put(RECIPE_RESTART, ImmutableList.of(TARGET_VM)).build();
56
57     // **HERE**
58
59     /**
60      * Constructor.
61      */
62     public VfcActorServiceProvider() {
63         super(NAME);
64
65         addOperator(new VfcOperator(NAME, Restart.NAME, Restart::new));
66     }
67
68     // TODO old code: remove lines down to **HERE**
69
70     @Override
71     public String actor() {
72         return VFC_ACTOR;
73     }
74
75     @Override
76     public List<String> recipes() {
77         return ImmutableList.copyOf(recipes);
78     }
79
80     @Override
81     public List<String> recipeTargets(String recipe) {
82         return ImmutableList.copyOf(targets.getOrDefault(recipe, Collections.emptyList()));
83     }
84
85     @Override
86     public List<String> recipePayloads(String recipe) {
87         return Collections.emptyList();
88     }
89
90     /**
91      * This method constructs the VFC request.
92      *
93      * @param onset onset object
94      * @param operation operation object
95      * @param policy policy object
96      * @param aaiCqResponse response from aai custom query
97      * @return VfcRequest
98      */
99     public static VfcRequest constructRequestCq(VirtualControlLoopEvent onset, ControlLoopOperation operation,
100             Policy policy, AaiCqResponse aaiCqResponse) {
101
102         // Construct an VFC request
103         VfcRequest request = new VfcRequest();
104         String serviceInstance = onset.getAai().get("service-instance.service-instance-id");
105         if (serviceInstance == null || "".equals(serviceInstance)) {
106             // get service instance from AaiCqResponse
107             if (aaiCqResponse == null) {
108                 return null;
109             }
110             serviceInstance = aaiCqResponse.getServiceInstance().getServiceInstanceId();
111             // If the serviceInstanceId returned is null then return null
112             if (serviceInstance == null) {
113                 return null;
114             }
115
116         }
117         request.setNsInstanceId(serviceInstance);
118         request.setRequestId(onset.getRequestId());
119         request.setHealRequest(new VfcHealRequest());
120         request.getHealRequest().setVnfInstanceId(onset.getAai().get(GENERIC_VNF_ID));
121         request.getHealRequest().setCause(operation.getMessage());
122         request.getHealRequest().setAdditionalParams(new VfcHealAdditionalParams());
123
124         if (policy.getRecipe().toLowerCase().equalsIgnoreCase(RECIPE_RESTART)) {
125             request.getHealRequest().getAdditionalParams().setAction("restartvm");
126             request.getHealRequest().getAdditionalParams().setActionInfo(new VfcHealActionVmInfo());
127             request.getHealRequest().getAdditionalParams().getActionInfo()
128                     .setVmid(onset.getAai().get("vserver.vserver-id"));
129             request.getHealRequest().getAdditionalParams().getActionInfo()
130                     .setVmname(onset.getAai().get("vserver.vserver-name"));
131         } else {
132             return null;
133         }
134         return request;
135     }
136
137     // **HERE**
138
139 }