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
 
  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.onap.policy.controlloop.actor.vfc;
 
  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;
 
  37 public class VfcActorServiceProvider extends ActorImpl {
 
  38     private static final String GENERIC_VNF_ID = "generic-vnf.vnf-id";
 
  40     // TODO old code: remove lines down to **HERE**
 
  42     // Strings for VFC Actor
 
  43     private static final String VFC_ACTOR = "VFC";
 
  45     public static final String NAME = VFC_ACTOR;
 
  47     // Strings for targets
 
  48     private static final String TARGET_VM = "VM";
 
  50     // Strings for recipes
 
  51     private static final String RECIPE_RESTART = "Restart";
 
  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();
 
  62     public VfcActorServiceProvider() {
 
  65         addOperator(new VfcOperator(NAME, Restart.NAME, Restart::new));
 
  68     // TODO old code: remove lines down to **HERE**
 
  71     public String actor() {
 
  76     public List<String> recipes() {
 
  77         return ImmutableList.copyOf(recipes);
 
  81     public List<String> recipeTargets(String recipe) {
 
  82         return ImmutableList.copyOf(targets.getOrDefault(recipe, Collections.emptyList()));
 
  86     public List<String> recipePayloads(String recipe) {
 
  87         return Collections.emptyList();
 
  91      * This method constructs the VFC request.
 
  93      * @param onset onset object
 
  94      * @param operation operation object
 
  95      * @param policy policy object
 
  96      * @param aaiCqResponse response from aai custom query
 
  99     public static VfcRequest constructRequestCq(VirtualControlLoopEvent onset, ControlLoopOperation operation,
 
 100             Policy policy, AaiCqResponse aaiCqResponse) {
 
 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) {
 
 110             serviceInstance = aaiCqResponse.getServiceInstance().getServiceInstanceId();
 
 111             // If the serviceInstanceId returned is null then return null
 
 112             if (serviceInstance == null) {
 
 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());
 
 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"));