IT-KIMI_SHI\SINOIT.KIMI
2018-06-04 b12dfac6e495d6cf38df6b7e5222191f59762900
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
package process;
 
import org.activiti.bpmn.model.BpmnModel;
import org.activiti.engine.ProcessEngineConfiguration;
import org.activiti.engine.RepositoryService;
import org.activiti.engine.repository.ProcessDefinition;
import org.activiti.image.ProcessDiagramGenerator;
import org.apache.commons.io.FileUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
 
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.util.HashMap;
import java.util.Map;
 
 
public class WorkflowUtils {
 
    private static Logger logger = LoggerFactory.getLogger(WorkflowUtils.class);
 
    /**
     * 转换流程节点类型为中文说明
     *
     * @param type 英文名称
     * @return 翻译后的中文名称
     */
    public static String parseToZhType(String type) {
        Map<String, String> types = new HashMap<String, String>();
        types.put("userTask", "用户任务");
        types.put("serviceTask", "系统任务");
        types.put("startEvent", "开始节点");
        types.put("endEvent", "结束节点");
        types.put("exclusiveGateway", "条件判断节点(系统自动根据条件处理)");
        types.put("inclusiveGateway", "并行处理任务");
        types.put("callActivity", "子流程");
        return types.get(type) == null ? type : types.get(type);
    }
 
    /**
     * 导出图片文件到硬盘
     *
     * @return 文件的全路径
     */
    public static String exportDiagramToFile(RepositoryService repositoryService, ProcessDefinition processDefinition, String exportDir) throws IOException {
//        String diagramResourceName = processDefinition.getDiagramResourceName();
//        String key = processDefinition.getKey();
//        int version = processDefinition.getVersion();
        String diagramPath = exportDir;
        BpmnModel bpmnModel = repositoryService.getBpmnModel(processDefinition.getId());
        ProcessEngineConfiguration engineConfiguration = EngineLoader.engineConfiguration;
        ProcessDiagramGenerator diagramGenerator = engineConfiguration.getProcessDiagramGenerator();
        InputStream resourceAsStream = diagramGenerator.generateDiagram(bpmnModel, "png", "微软雅黑","微软雅黑" ,null, 0);
        byte[] b = new byte[resourceAsStream.available()];
        
        resourceAsStream.read(b, 0, b.length);
 
        // create file if not exist
//        String diagramDir = exportDir + "/" + key + "/" + version;
//        File diagramDirFile = new File(diagramDir);
//        if (!diagramDirFile.exists()) {
//            diagramDirFile.mkdirs();
//        }
//        diagramPath = exportDir + "/" +11 +".png";
        File file = new File(exportDir);
 
        if (file.exists()) {
 
            logger.debug("diagram exist, ignore... : {}", diagramPath);
            return diagramPath;
        } else {
            file.createNewFile();
        }
 
        logger.debug("export diagram to : {}", diagramPath);
 
        // wirte bytes to file
        FileUtils.writeByteArrayToFile(file, b, true);
        return diagramPath;
    }
 
}