2  * ============LICENSE_START=======================================================
 
   4  * ================================================================================
 
   5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
 
   6  * ================================================================================
 
   7  * Modifications Copyright (c) 2019 Samsung
 
   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
 
  13  *      http://www.apache.org/licenses/LICENSE-2.0
 
  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  * ============LICENSE_END=========================================================
 
  23 package org.onap.so.bpmn.common.workflow.service;
 
  25 import java.util.HashMap;
 
  27 import java.util.Objects;
 
  28 import java.util.UUID;
 
  29 import org.camunda.bpm.engine.RuntimeService;
 
  30 import org.camunda.bpm.engine.runtime.ProcessInstance;
 
  31 import org.camunda.bpm.engine.variable.impl.VariableMapImpl;
 
  32 import org.onap.so.bpmn.common.workflow.context.WorkflowResponse;
 
  33 import org.openecomp.mso.bpmn.common.workflow.service.WorkflowProcessorException;
 
  34 import org.slf4j.Logger;
 
  35 import org.slf4j.LoggerFactory;
 
  36 import org.springframework.scheduling.annotation.Async;
 
  37 import org.springframework.stereotype.Service;
 
  40 public class WorkflowProcessor extends ProcessEngineAwareService {
 
  42     private static final Logger logger = LoggerFactory.getLogger(WorkflowProcessor.class);
 
  43     protected static final String logMarker = "[WRKFLOW-RESOURCE]";
 
  46     public void startProcess(String processKey, VariableMapImpl variableMap) {
 
  48         Map<String, Object> inputVariables;
 
  49         String processInstanceId = null;
 
  51             inputVariables = getInputVariables(variableMap);
 
  52             // This variable indicates that the flow was invoked asynchronously
 
  53             inputVariables.put("isAsyncProcess", "true");
 
  55             // Note: this creates a random businessKey if it wasn't specified.
 
  56             String businessKey = getBusinessKey(inputVariables);
 
  58             logger.debug("***Received MSO startProcessInstanceByKey with processKey: {} and variables: {}", processKey,
 
  61             RuntimeService runtimeService = getProcessEngineServices().getRuntimeService();
 
  62             ProcessInstance processInstance =
 
  63                     runtimeService.startProcessInstanceByKey(processKey, businessKey, inputVariables);
 
  64             processInstanceId = processInstance.getId();
 
  66             logger.debug(logMarker + "Process " + processKey + ":" + processInstanceId + " "
 
  67                     + (processInstance.isEnded() ? "ENDED" : "RUNNING"));
 
  68         } catch (Exception e) {
 
  69             WorkflowResponse workflowResponse = new WorkflowResponse();
 
  70             workflowResponse.setResponse("Error occurred while executing the process: " + e);
 
  71             workflowResponse.setProcessInstanceID(processInstanceId);
 
  72             workflowResponse.setMessageCode(500);
 
  73             workflowResponse.setMessage("Fail");
 
  74             throw new WorkflowProcessorException(workflowResponse);
 
  78     // Note: the business key is used to identify the process in unit tests
 
  79     protected static String getBusinessKey(Map<String, Object> inputVariables) {
 
  80         return getOrCreate(inputVariables, "mso-business-key");
 
  84     protected static Map<String, Object> getInputVariables(VariableMapImpl variableMap) {
 
  85         Map<String, Object> inputVariables = new HashMap<>();
 
  86         @SuppressWarnings("unchecked")
 
  87         Map<String, Object> vMap = (Map<String, Object>) variableMap.get("variables");
 
  89             for (Map.Entry<String, Object> entry : vMap.entrySet()) {
 
  90                 String vName = entry.getKey();
 
  91                 Object value = entry.getValue();
 
  92                 @SuppressWarnings("unchecked")
 
  93                 Map<String, Object> valueMap = (Map<String, Object>) value; // value, type
 
  94                 inputVariables.put(vName, valueMap.get("value"));
 
  97         return inputVariables;
 
 100     protected static String getOrCreate(Map<String, Object> inputVariables, String key) {
 
 101         String value = Objects.toString(inputVariables.get(key), null);
 
 103             value = UUID.randomUUID().toString();
 
 104             inputVariables.put(key, value);