2 * ============LICENSE_START=======================================================
4 * ================================================================================
5 * Copyright (C) 2017 - 2018 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.onap.so.bpmn.servicedecomposition.tasks;
25 import org.camunda.bpm.engine.delegate.BpmnError;
26 import org.camunda.bpm.engine.delegate.DelegateExecution;
27 import org.onap.so.bpmn.core.WorkflowException;
28 import org.onap.so.bpmn.servicedecomposition.bbobjects.GenericVnf;
29 import org.onap.so.bpmn.servicedecomposition.entities.ExecuteBuildingBlock;
30 import org.onap.so.bpmn.servicedecomposition.entities.GeneralBuildingBlock;
31 import org.onap.so.bpmn.servicedecomposition.entities.ResourceKey;
32 import org.onap.so.db.catalog.beans.macro.RainyDayHandlerStatus;
33 import org.onap.so.db.catalog.client.CatalogDbClient;
34 import org.onap.so.db.request.beans.InfraActiveRequests;
35 import org.onap.so.db.request.client.RequestsDbClient;
36 import org.onap.so.logger.MsoLogger;
37 import org.springframework.beans.factory.annotation.Autowired;
38 import org.springframework.core.env.Environment;
39 import org.springframework.stereotype.Component;
42 public class ExecuteBuildingBlockRainyDay {
44 private static final MsoLogger msoLogger = MsoLogger.getMsoLogger(MsoLogger.Catalog.BPEL, ExecuteBuildingBlockRainyDay.class);
45 public static final String HANDLING_CODE = "handlingCode";
48 private CatalogDbClient catalogDbClient;
50 private RequestsDbClient requestDbclient;
51 private static final String ASTERISK = "*";
54 private Environment environment;
55 protected String retryDurationPath = "mso.rainyDay.retryDurationMultiplier";
57 public void setRetryTimer(DelegateExecution execution) {
59 int retryDurationMult = Integer.parseInt(this.environment.getProperty(retryDurationPath));
60 int retryCount = (int) execution.getVariable("retryCount");
61 int retryTimeToWait = (int) Math.pow(retryDurationMult, retryCount) * 10;
62 String RetryDuration = "PT" + retryTimeToWait + "S";
63 execution.setVariable("RetryDuration", RetryDuration);
64 } catch (Exception e) {
66 throw new BpmnError("Unknown error incrementing retry counter");
70 public void queryRainyDayTable(DelegateExecution execution, boolean primaryPolicy) {
72 ExecuteBuildingBlock ebb = (ExecuteBuildingBlock) execution.getVariable("buildingBlock");
73 String bbName = ebb.getBuildingBlock().getBpmnFlowName();
74 GeneralBuildingBlock gBBInput = (GeneralBuildingBlock) execution.getVariable("gBBInput");
75 String requestId = (String) execution.getVariable("mso-request-id");
76 Map<ResourceKey, String> lookupKeyMap = (Map<ResourceKey, String>) execution.getVariable("lookupKeyMap");
77 String serviceType = ASTERISK;
78 boolean aLaCarte = (boolean) execution.getVariable("aLaCarte");
79 boolean suppressRollback = (boolean) execution.getVariable("suppressRollback");
80 String handlingCode = "";
82 handlingCode = "Abort";
85 serviceType = gBBInput.getCustomer().getServiceSubscription().getServiceInstances().get(0).getModelInfoServiceInstance().getServiceType();
86 } catch (Exception ex) {
87 // keep default serviceType value
89 String vnfType = ASTERISK;
91 for(GenericVnf vnf : gBBInput.getCustomer().getServiceSubscription().getServiceInstances().get(0).getVnfs()) {
92 if(vnf.getVnfId().equalsIgnoreCase(lookupKeyMap.get(ResourceKey.GENERIC_VNF_ID))) {
93 vnfType = vnf.getVnfType();
96 } catch (Exception ex) {
97 // keep default vnfType value
99 WorkflowException workflowException = (WorkflowException) execution.getVariable("WorkflowException");
100 String errorCode = ASTERISK;
102 errorCode = "" + workflowException.getErrorCode();
103 } catch (Exception ex) {
104 // keep default errorCode value
106 String workStep = ASTERISK;
108 workStep = workflowException.getWorkStep();
109 } catch (Exception ex) {
110 // keep default workStep value
112 //Extract error data to be returned to WorkflowAction
113 execution.setVariable("WorkflowExceptionErrorMessage", workflowException.getErrorMessage());
114 RainyDayHandlerStatus rainyDayHandlerStatus;
115 rainyDayHandlerStatus = catalogDbClient.getRainyDayHandlerStatusByFlowNameAndServiceTypeAndVnfTypeAndErrorCodeAndWorkStep(bbName,serviceType,vnfType,errorCode,workStep);
116 if(rainyDayHandlerStatus==null){
117 rainyDayHandlerStatus = catalogDbClient.getRainyDayHandlerStatusByFlowNameAndServiceTypeAndVnfTypeAndErrorCodeAndWorkStep(bbName,ASTERISK,ASTERISK,ASTERISK,ASTERISK);
118 if(rainyDayHandlerStatus==null){
119 handlingCode = "Abort";
122 handlingCode = rainyDayHandlerStatus.getPolicy();
124 handlingCode = rainyDayHandlerStatus.getSecondaryPolicy();
129 handlingCode = rainyDayHandlerStatus.getPolicy();
131 handlingCode = rainyDayHandlerStatus.getSecondaryPolicy();
136 InfraActiveRequests request = requestDbclient.getInfraActiveRequestbyRequestId(requestId);
137 request.setRetryStatusMessage("Retries have been exhausted.");
138 requestDbclient.updateInfraActiveRequests(request);
139 } catch(Exception ex){
140 msoLogger.debug(ex.toString());
141 msoLogger.error("Failed to update Request Db Infra Active Requests with Retry Status");
144 if(handlingCode.equals("RollbackToAssigned")&&!aLaCarte){
145 handlingCode = "Rollback";
148 msoLogger.debug("RainyDayHandler Status Code is: " + handlingCode);
149 execution.setVariable(HANDLING_CODE, handlingCode);
150 } catch (Exception e) {
151 msoLogger.error("Failed to determine RainyDayHandler Status. Seting handlingCode = Abort");
152 execution.setVariable(HANDLING_CODE, "Abort");
156 public void setHandlingStatusSuccess(DelegateExecution execution){
157 execution.setVariable(HANDLING_CODE, "Success");