美文网首页
一、工作流 Activiti7-19.高亮历史流程渲染接口

一、工作流 Activiti7-19.高亮历史流程渲染接口

作者: 那钱有着落吗 | 来源:发表于2021-04-10 08:03 被阅读0次
image.png

1.实战

image.png

首先我们把任务和线条都根据编号写好,这样我们测试的时候也会很方便的看到数据,然后我写下思路:

1.我们需要获取到所有的历史信息包含:当前人完成的任务信息,当前实例完成的任务信息,该实例所有的节点信息,待办信息

2.根据分类分别把完成的线条找到,完成的任务找到,待办任务找到,当前登录人完成任务找到

下面是编码:

 //高亮显示历史
    @GetMapping(path = "/findHighLine")
    public AjaxResponse findHighLine(String processInstanceId,@AuthenticationPrincipal UserInfo userInfo) {
        try {
            if(GlobalConfig.Test){
                securityUtil.logInAs("bajie");
            }

            HistoricProcessInstance historicProcessInstance = historyService.createHistoricProcessInstanceQuery()
                    .processInstanceId(processInstanceId).singleResult();

            //读取BPMN
            BpmnModel bpmnModel = repositoryService.getBpmnModel(historicProcessInstance.getProcessDefinitionId());
            Process process = bpmnModel.getProcesses().get(0);
            Collection<FlowElement> elements = process.getFlowElements();
            Map<String,String> map = new HashMap<>();
            for(FlowElement element:elements){
                if(element instanceof SequenceFlow){
                    SequenceFlow sequenceFlow = (SequenceFlow)element;
                    String sourceRef = sequenceFlow.getSourceRef();
                    String targetRef = sequenceFlow.getTargetRef();
                    map.put(sourceRef+targetRef,sequenceFlow.getId());
                }
            }

            List<HistoricActivityInstance> list = historyService.createHistoricActivityInstanceQuery()
                    .processInstanceId(processInstanceId).list();
            Set<String> set = new HashSet<>();
            for(HistoricActivityInstance i:list){
                for(HistoricActivityInstance j:list){
                    if(i!=j){
                        set.add(i.getActivityId()+j.getActivityId());
                    }
                }
            }

            //收集高亮连线数据
            Set<String> highLineSet = new HashSet<>();
            set.forEach(s -> {
                if(map.containsKey(s)){
                    highLineSet.add(map.get(s));
                }
            });


            List<HistoricActivityInstance> finishedList = historyService.createHistoricActivityInstanceQuery()
                    .processInstanceId(processInstanceId).finished().list();
            //收集高亮点的数据
            Set<String> highPointSet = new HashSet<>();
            finishedList.forEach(s -> highPointSet.add(s.getActivityId()));


            List<HistoricActivityInstance> unfinishedList = historyService.createHistoricActivityInstanceQuery()
                    .processInstanceId(processInstanceId).unfinished().list();
            //收集待办点的数据
            Set<String> highPointTodoSet = new HashSet<>();
            unfinishedList.forEach(s -> highPointTodoSet.add(s.getActivityId()));


            //获取当前用户完成的任务的定义key
            Set<String> idoSet = new HashSet<>();
            String assigneeName;
            if(GlobalConfig.Test){
                assigneeName = "bajie";
            }else{
                assigneeName = userInfo.getUsername();
            }
            List<HistoricTaskInstance> taskInstances = historyService.createHistoricTaskInstanceQuery()
                    .taskAssignee(assigneeName)
                    .processInstanceId(processInstanceId).finished().list();
            taskInstances.forEach(s -> idoSet.add(s.getTaskDefinitionKey()));

            Map<String,Object> resultMap = new HashMap<>();
            resultMap.put("highPoint",highPointSet);
            resultMap.put("highLine",highLineSet);
            resultMap.put("highPointTodo",highPointTodoSet);
            resultMap.put("ido",idoSet);


            return AjaxResponse.ajaxData(GlobalConfig.ResponseCode.SUCCESS.getCode(),
                    GlobalConfig.ResponseCode.SUCCESS.getDesc(),resultMap);
        }catch (Exception e){
            return AjaxResponse.ajaxData(GlobalConfig.ResponseCode.ERROR.getCode(),"高亮显示历史失败"+e.getMessage(),null);
        }
    }

下面我拆分代码来讲解:

第一段,我们的目的是获取历史人物的线条id,那么首先我们获取到实例,然后拿到这个实例中所有的线条,然后拼装一下(key:上一个任务id拼接下一个任务id,value:线条id)

HistoricProcessInstance historicProcessInstance = historyService.createHistoricProcessInstanceQuery()
                    .processInstanceId(processInstanceId).singleResult();

            //读取BPMN
            BpmnModel bpmnModel = repositoryService.getBpmnModel(historicProcessInstance.getProcessDefinitionId());
            Process process = bpmnModel.getProcesses().get(0);
            Collection<FlowElement> elements = process.getFlowElements();
            Map<String,String> map = new HashMap<>();
            for(FlowElement element:elements){
                if(element instanceof SequenceFlow){
                    SequenceFlow sequenceFlow = (SequenceFlow)element;
                    String sourceRef = sequenceFlow.getSourceRef();
                    String targetRef = sequenceFlow.getTargetRef();
                    map.put(sourceRef+targetRef,sequenceFlow.getId());
                }
            }

上一段代码我们获取到了所有完成任务的线条信息(key:上一个任务id拼接下一个任务id,value:线条id),为什么要两个for循环呢?其实就是拿到所有的拼接组合(其实我们主要用到的是正序的组合,这里图省事,反正最后跟代码一能匹配到的只有正序数据),然后这里是拿到所有任务(包含完成和待完成的),然后拼接 上一个任务id,下一个任务id 到一个set中;

在下面的for循环中,要做的就是:把属于历史任务的线条给找出来。

List<HistoricActivityInstance> list = historyService.createHistoricActivityInstanceQuery()
                    .processInstanceId(processInstanceId).list();
            Set<String> set = new HashSet<>();
            for(HistoricActivityInstance i:list){
                for(HistoricActivityInstance j:list){
                    if(i!=j){
                        set.add(i.getActivityId()+j.getActivityId());
                    }
                }
            }

            //收集高亮连线数据
            Set<String> highLineSet = new HashSet<>();
            set.forEach(s -> {
                if(map.containsKey(s)){
                    highLineSet.add(map.get(s));
                }
            });

与线条不一样,我们可以直接获取到历史任务的任务id,所以就不需要像线条一样的麻烦,直接拿就行了。因为历史任务分为 完成的任务和待办的任务,所以我们分别都需要获取

List<HistoricActivityInstance> finishedList = historyService.createHistoricActivityInstanceQuery()
                    .processInstanceId(processInstanceId).finished().list();
            //收集高亮点的数据
            Set<String> highPointSet = new HashSet<>();
            finishedList.forEach(s -> highPointSet.add(s.getActivityId()));


List<HistoricActivityInstance> unfinishedList = historyService.createHistoricActivityInstanceQuery()
                    .processInstanceId(processInstanceId).unfinished().list();
            //收集待办点的数据
            Set<String> highPointTodoSet = new HashSet<>();
            unfinishedList.forEach(s -> highPointTodoSet.add(s.getActivityId()));

最后一段代码是获取到我完成的任务,为什么会需要这样的信息呢?是这样呢,我们一般是从实例中打开历史渲染的界面,而该实例未必是由当前用户完成的,所以这里需要标注一下当前登录人是否有他完成的任务:

//获取当前用户完成的任务的定义key
            Set<String> idoSet = new HashSet<>();
            String assigneeName;
            if(GlobalConfig.Test){
                assigneeName = "bajie";
            }else{
                assigneeName = userInfo.getUsername();
            }
            List<HistoricTaskInstance> taskInstances = historyService.createHistoricTaskInstanceQuery()
                    .taskAssignee(assigneeName)
                    .processInstanceId(processInstanceId).finished().list();
            taskInstances.forEach(s -> idoSet.add(s.getTaskDefinitionKey()));

相关文章

  • 一、工作流 Activiti7-19.高亮历史流程渲染接口

    1.实战 首先我们把任务和线条都根据编号写好,这样我们测试的时候也会很方便的看到数据,然后我写下思路: 1.我们需...

  • Cronet

    介绍: 接口: 组件及工作流程: 接口基本组件包括: 序号 组件 功能 1 CronetEngine Cronet...

  • 02 - Metal学习之渲染管线

    通过这篇文章你将了解Metal渲染管线的工作流程,这有助于你深入了解Metal工作流程,以及Metal是基于什么现...

  • 通过OpenGL理解前端渲染原理(1)

    通过OpenGL理解前端渲染原理,本文着重介绍渲染管线工作流程。 一、OpenGL OpenGL,是一套绘制3D图...

  • HundsunLastWork

    工作流程 一、 梳理工作流程 售前去聊客户,看客户有没有新的业务需求,具体是哪家券商,然后达到对应的券商的业务接口...

  • 渲染的工作流程

    前端web页面的渲染流程 1、构建DOM与 CSSOM浏览器通过http请求,获得静态资源后,进行页面渲染时,构建...

  • 二、浏览器渲染引擎工作流程

    1. 渲染引擎 2.渲染引擎工作流程 3. 疑问 1. Render Tree是DOM Tree和Style Ru...

  • js repaint 重绘 reflow 渲染

    我们先看一下浏览器解析的工作流程 从图上可以看出,浏览器的工作流程可分为四步: 1、解析HTML构建DOM树:渲染...

  • 渲染管线浅析

    这篇文章是描述GPU渲染管线的大致工作流程。 渲染管线 ,也称渲染流水线,是显示芯片内部处理图形信号相互独立的并行...

  • vue核心之虚拟DOM(vdom)

    一、真实DOM和其解析流程? 浏览器渲染引擎工作流程都差不多,大致分为5步,创建DOM树——创建StyleRu...

网友评论

      本文标题:一、工作流 Activiti7-19.高亮历史流程渲染接口

      本文链接:https://www.haomeiwen.com/subject/rckhhltx.html