Package com.founder.fix.fixflow.core.impl.cmd

Source Code of com.founder.fix.fixflow.core.impl.cmd.GetProcessCommand

/**
* Copyright 1996-2013 Founder International Co.,Ltd.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*      http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* @author kenshin
*/
package com.founder.fix.fixflow.core.impl.cmd;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

import com.founder.fix.fixflow.core.ProcessEngineManagement;
import com.founder.fix.fixflow.core.TaskService;
import com.founder.fix.fixflow.core.impl.Context;
import com.founder.fix.fixflow.core.impl.bpmn.behavior.TaskCommandInst;
import com.founder.fix.fixflow.core.impl.identity.Authentication;
import com.founder.fix.fixflow.core.impl.interceptor.Command;
import com.founder.fix.fixflow.core.impl.interceptor.CommandContext;
import com.founder.fix.fixflow.core.impl.util.StringUtil;
import com.founder.fix.fixflow.core.internationalization.FixFlowResources;
import com.founder.fix.fixflow.core.internationalization.ResourcesUtil;
import com.founder.fix.fixflow.core.task.TaskInstance;

public class GetProcessCommand implements Command<List<Map<String, Object>>>{

  protected String processInstanceId;
 
  public GetProcessCommand(String processInstanceId){
    this.processInstanceId=processInstanceId;
  }
 
  public List<Map<String, Object>> execute(CommandContext commandContext) {
    TaskService taskService = ProcessEngineManagement.getDefaultProcessEngine().getTaskService();
    String userId=Authentication.getAuthenticatedUserId();
    List<TaskInstance> taskInstances=taskService.createTaskQuery().processInstanceId(processInstanceId).taskAssignee(userId).taskIsEnd().list();
    List<Map<String, Object>> listMap=new ArrayList<Map<String,Object>>();
    List<TaskInstance> taskInstancesNotEndA=taskService.createTaskQuery().processInstanceId(processInstanceId).taskAssignee(userId).taskNotEnd().list();
    List<TaskInstance> taskInstancesNotEndC=taskService.createTaskQuery().processInstanceId(processInstanceId).taskCandidateUser(userId).taskNotEnd().list();
    Map<String, String> notEndTask=new HashMap<String, String>();
    //独占未完成
    for (TaskInstance taskInstance : taskInstancesNotEndA) {
      List<TaskCommandInst> taskCommandInsts=taskService.GetTaskCommandByTaskInstance(taskInstance,true);
      for (TaskCommandInst taskCommandInst : taskCommandInsts) {
     
        Map<String, Object> mapTemp=taskCommandInst.getPersistentState();
        if( mapTemp.get("type").equals("reminders")||mapTemp.get("type").equals("recover")||mapTemp.get("type").equals("processStatus")){
          mapTemp.put("taskId", taskInstance.getId());
          notEndTask.put( taskInstance.getNodeId(), taskInstance.getNodeId());
            listMap.add(mapTemp);
        }
      }
    }
   
    //共享未完成
    for (TaskInstance taskInstance : taskInstancesNotEndC) {
      List<TaskCommandInst> taskCommandInsts=taskService.GetTaskCommandByTaskInstance(taskInstance,true);
      for (TaskCommandInst taskCommandInst : taskCommandInsts) {
     
        Map<String, Object> mapTemp=taskCommandInst.getPersistentState();
        if( mapTemp.get("type").equals("reminders")||mapTemp.get("type").equals("recover")||mapTemp.get("type").equals("processStatus")){
          mapTemp.put("taskId", taskInstance.getId());
          notEndTask.put( taskInstance.getNodeId(), taskInstance.getNodeId());
            listMap.add(mapTemp);
        }
      }
    }
   
   
    Map<String, String> cfData=new HashMap<String, String>();
   
    for (TaskInstance taskInstance : taskInstances) {
      if(cfData.get(taskInstance.getNodeId())!=null){
        continue;
      }
      if(notEndTask.get(taskInstance.getNodeId())!=null){
        continue;
      }
      cfData.put(taskInstance.getNodeId(), taskInstance.getNodeId());
      List<TaskCommandInst> taskCommandInsts=taskService.GetTaskCommandByTaskInstance(taskInstance,true);
      for (TaskCommandInst taskCommandInst : taskCommandInsts) {
       
        Map<String, Object> mapTemp=taskCommandInst.getPersistentState();
        if( mapTemp.get("type").equals("reminders")||mapTemp.get("type").equals("recover")||mapTemp.get("type").equals("processStatus")){
          mapTemp.put("taskId", taskInstance.getId());
            listMap.add(mapTemp);
        }
      }
    }
   
    int x=0;
    for (Map<String, Object>  map : listMap) {
      if(map.get("type").equals("processStatus")){
        x=1;
        break;
      }
    }
    if(x==0){
      Map<String, Object> map=new HashMap<String, Object>();
      map.put("id", "processStatus");
      boolean booleanTemp = StringUtil.getBoolean(Context.getProcessEngineConfiguration().getInternationalizationConfig().getIsEnable());
      //用户名称国际化处理
      if (booleanTemp) {
        String nameTemp = ResourcesUtil.getResourcesValue(FixFlowResources.TaskComandResource, "System_processStatus");
        if (nameTemp == null || nameTemp.equals("")) {
          map.put("name", "流程状态");
        } else {
          map.put("name", StringUtil.getString(nameTemp));
        }

      } else {
        map.put("name", "流程状态");
      }
      map.put("type", "processStatus");
      listMap.add(map);
    }
    return listMap;
  }
}
TOP

Related Classes of com.founder.fix.fixflow.core.impl.cmd.GetProcessCommand

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.