`
czwlucky
  • 浏览: 50054 次
  • 性别: Icon_minigender_1
  • 来自: 河南郑州
社区版块
存档分类
最新评论

Jbpm流程图

    博客分类:
  • Java
阅读更多

以前写的一个画流程图的Serlvet,发出来和大家共享

import java.awt.BasicStroke;
import java.awt.Color;
import java.awt.Container;
import java.awt.Font;
import java.awt.FontMetrics;
import java.awt.Graphics2D;
import java.awt.Image;
import java.awt.MediaTracker;
import java.awt.Stroke;
import java.awt.Toolkit;
import java.awt.image.BufferedImage;
import java.io.IOException;
import java.io.OutputStream;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Iterator;
import java.util.List;

import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.dom4j.DocumentException;
import org.dom4j.DocumentHelper;
import org.dom4j.Element;
import org.dom4j.XPath;
import org.dom4j.xpath.DefaultXPath;
import org.jbpm.JbpmContext;
import org.jbpm.graph.def.ProcessDefinition;
import org.jbpm.graph.exe.Token;
import org.jbpm.taskmgmt.exe.TaskInstance;
import org.springframework.web.context.WebApplicationContext;
import org.springframework.web.context.support.WebApplicationContextUtils;
import org.springmodules.workflow.jbpm31.JbpmCallback;
import org.springmodules.workflow.jbpm31.JbpmTemplate;

import com.sun.image.codec.jpeg.ImageFormatException;
import com.sun.image.codec.jpeg.JPEGCodec;
import com.sun.image.codec.jpeg.JPEGImageEncoder;

public class JbpmImageServlet extends HttpServlet {
	/**
	 * 
	 */
    private static final long serialVersionUID = 1L;
    //
    private WebApplicationContext wac = null;
    //
    private Token currentToken = null;
    private List<Token> childrens = null;
    
    private String message = "无流程图型信息";
    // 图像参数
	final static Color RunningColor = new Color(0,0,255);
	final static Color RunningBackColor = new Color(153,153,255);//#9999FF
	final static Color SuspenedColor = new Color(170,102,0); //#AA6600
	final static Color SuspenedBackColor = new Color(255,204,153);
	final static Color LockedColor = new Color(170,102,0); //#AA6600
	final static Color LockedBackColor = new Color(255,204,153);//#FFAA99
	final static Color EndedColor = new Color(204,0,0); //#CC0000
	final static Color EndedBackColor = new Color(102,0,0);//#66000
	final static int BorderWidth = 1;
	final static int BoderBackWidth = 2;
	final static int FontSize = 10;
	final static int TitleHeight = 12;

    protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
        if(wac == null) {
        	System.out.println("初始化Spring上下文");
        	wac = WebApplicationContextUtils.getRequiredWebApplicationContext(request.getSession().getServletContext());
        }
        // 设置该类型,可以使浏览器识别出它是一张图片
        response.setContentType("image/jpeg");
        
        // 显示token状态图
        String tokenId = request.getParameter("tokenId");
        if(tokenId != null) {
        	childrens = new ArrayList<Token>();
        	showTokenImage(Long.parseLong(tokenId), response.getOutputStream());
        	return;
        }
        // 显示task实例状态图
        String taskId = request.getParameter("taskId");
        if(taskId != null) {
        	showTaskImage(Long.parseLong(taskId), response.getOutputStream());
        	return;
        }
        // 显示流程定义图
        String processDefinitionId = request.getParameter("definitionId");
        if(processDefinitionId != null) {
        	showProcessDefinitionImage(Long.parseLong(processDefinitionId), response.getOutputStream());
        	return;
        }
    }
    
    /**
     * 输出token状态图
     * 
     * @param id  tokenid
     * @param out 输出流
     * @throws ImageFormatException
     * @throws IOException
     */
    public void showTokenImage(long id, OutputStream out) throws ImageFormatException, IOException {
    	byte [] imageBytes = getProcessDefinitionImageBytesByTokenId(id);
    	// 流程定义图(背景)
    	BufferedImage bi = getProcessDefinitionImage(imageBytes);
    	if(imageBytes != null) {
    		byte [] gpdBytes = getGpdBytesByTokenId(id);
    		try {
				Element rootDiagramElement = DocumentHelper.parseText(new String(gpdBytes)).getRootElement();
				// 当前token所在座标
				int[] boxConstraint = extractBoxConstraint(rootDiagramElement, currentToken);
				int x = boxConstraint[0] - BorderWidth + 1;
				int y = boxConstraint[1] - TitleHeight - BorderWidth + 1;
				int w = boxConstraint[2] - 1;
				int h = boxConstraint[3] + TitleHeight - 1;
				String title = "";
				Font font = new Font("verdana,sans-serif", Font.PLAIN, FontSize);
				Stroke stroke = new BasicStroke(BorderWidth);
				Color color = null;
				Color bColor = null;
				if(currentToken.isSuspended()) {
					title = "Suspended";
					color = SuspenedColor;
					bColor = SuspenedBackColor;
				} else if(currentToken.isLocked()) {
					title = "Locked";
					color = LockedColor;
					bColor = LockedBackColor;
				} else if(currentToken.hasEnded()) {
					title = "Ended";
					color = EndedColor;
					bColor = EndedBackColor;
				} else {
					title = "Running";
					color = RunningColor;
					bColor = RunningBackColor;
				}
				if(currentToken.getName() != null) {
					title += " \"" + currentToken.getName() + "\"";
				}
				
				Graphics2D g = bi.createGraphics();
				g.setFont(font);
				g.setColor(color);
				g.setStroke(stroke);
				// 画边框
				g.drawRect(x, y, w, h);
				// 画Title
				g.fillRect(x, y, w, TitleHeight + BorderWidth);
				g.setColor(bColor);
				// 画竖阴影
				g.fillRect(x + w + BorderWidth - BorderWidth/2, y + BoderBackWidth, BoderBackWidth, h + BorderWidth - BorderWidth/2);
				// 画横阴影
				g.fillRect(x + BoderBackWidth, y + h + BorderWidth - BorderWidth/2, w + BorderWidth - BorderWidth/2, BoderBackWidth);
				
				g.setColor(Color.WHITE);
				// 字符串要离开边框3个宽度.下同
				g.drawString(title, x + BorderWidth + 3, y + TitleHeight/2 + FontSize/2);
				
				for(Token token : childrens) {
					// 子token所在座标
					boxConstraint = extractBoxConstraint(rootDiagramElement, token);
					x = boxConstraint[0] - BorderWidth + 1;
					y = boxConstraint[1] - TitleHeight - BorderWidth + 1;
					w = boxConstraint[2] - 1;
					h = boxConstraint[3] + TitleHeight - 1;
					
					
					if(token.isSuspended()) {
						title = "Suspended";
						color = SuspenedColor;
						bColor = SuspenedBackColor;
					} else if(token.isLocked()) {
						title = "Locked";
						color = LockedColor;
						bColor = LockedBackColor;
					} else if(token.hasEnded()) {
						title = "Ended";
						color = EndedColor;
						bColor = EndedBackColor;
					} else {
						title = "Running";
						color = RunningColor;
						bColor = RunningBackColor;
					}
					
					g.setColor(color);
					// 画边框
					g.drawRect(x, y, w, h);
					// 画Title
					g.fillRect(x, y, w, TitleHeight + BorderWidth);
					g.setColor(bColor);
					// 画竖阴影
					g.fillRect(x + w + BorderWidth - BorderWidth/2, y + BoderBackWidth, BoderBackWidth, h + BorderWidth - BorderWidth/2);
					// 画横阴影
					g.fillRect(x + BoderBackWidth, y + h + BorderWidth - BorderWidth/2, w + BorderWidth - BorderWidth/2, BoderBackWidth);
					
					g.setColor(Color.WHITE);
					if(token.getName() != null) {
						title += " \"" + token.getName() + "\"";
					}
					g.drawString(title, x + BorderWidth + 3, y + TitleHeight/2 + FontSize/2);
				}
			} catch (DocumentException e) {
				e.printStackTrace();
			}
    	}
        JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(out);
        encoder.encode(bi);
        out.flush();
    }
    
    /**
     * 输出task状态图
     * 
     * @param id  taskid
     * @param out 输出流
     * @throws ImageFormatException
     * @throws IOException
     */
    public void showTaskImage(long id, OutputStream out) throws ImageFormatException, IOException {
    	byte [] imageBytes = getProcessDefinitionImageBytesByTaskId(id);
    	BufferedImage bi = getProcessDefinitionImage(imageBytes);
    	if(imageBytes != null) {
    		byte [] gpdBytes = getGpdBytesByTaskId(id);
    		try {
				Element rootDiagramElement = DocumentHelper.parseText(new String(gpdBytes)).getRootElement();
				int[] boxConstraint = extractBoxConstraint(rootDiagramElement, currentToken);
				Graphics2D g = bi.createGraphics();
				g.setColor(RunningColor);
				Stroke stroke = new BasicStroke(BorderWidth);
				g.setStroke(stroke);
				g.drawRect(boxConstraint[0]-BorderWidth, boxConstraint[1]-BorderWidth, boxConstraint[2]+BorderWidth*2, boxConstraint[3]+BorderWidth*2);
			} catch (DocumentException e) {
				e.printStackTrace();
			}
    	}
        JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(out);
        encoder.encode(bi);
        out.flush();
    }
    
    /**
     * 输出流程定义图
     * 
     * @param id  processdefinitionid
     * @param out 输出流
     * @throws ImageFormatException
     * @throws IOException
     */
    public void showProcessDefinitionImage(long id, OutputStream out) throws ImageFormatException, IOException {
        JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(out);
        encoder.encode(getProcessDefinitionImage(getProcessDefinitionImageBytes(id)));
        out.flush();
    }
    
    /**
     * 生成流程定义图
     * 
     * @param bytes 流程定义图字节码
     * @return
     */
    private BufferedImage getProcessDefinitionImage(final byte[] bytes) {
    	// 图型缓存
    	BufferedImage bi = null;
    	// 原始图型
    	Image img = null;
    	// MediaTracker 类是一个跟踪多种媒体对象状态的实用工具类。
		// 媒体对象可以包括音频剪辑和图像,但目前仅支持图像。
        MediaTracker tracker = null;
    	// 图像默认宽度
    	int w = 400;
    	// 图像默认高度
	    int h = 400;
    	
    	if(bytes == null) {
    		bi = new BufferedImage(w, h, BufferedImage.TYPE_3BYTE_BGR);
    	} else {
	        img = Toolkit.getDefaultToolkit().createImage(bytes);
	        // 接收Image信息通知的异步更新接口
	    	Container p = new Container();
	        tracker = new MediaTracker(p);
	        tracker.addImage(img, 0);
	        try {
	        	// 至关重要:没有它,图片的高宽无法得到
	        	// 它将等待图像信息加载完毕
				tracker.waitForAll();
				// tracker.waitForID(0);
				w = img.getWidth(p);
		        h = img.getHeight(p);
			} catch (InterruptedException e) {
				e.printStackTrace();
				message = e.getLocalizedMessage();
			} catch (Exception e) {
				e.printStackTrace();
				message = e.getLocalizedMessage();
			}
			bi = new BufferedImage(w, h, BufferedImage.TYPE_3BYTE_BGR);
    	}
    	
    	Graphics2D g = bi.createGraphics();
    	// 如果不设背景色,默认为黑色
    	g.setBackground(Color.WHITE);
    	// 留1个宽度的边
    	g.clearRect(1, 1, w-2, h-2);
    	if(tracker != null && MediaTracker.COMPLETE == tracker.statusAll(false)) {
    		g.drawImage(img, 0, 0, null);
    	} else {
    		g.setColor(Color.BLACK);
    		g.setFont(new Font("黑体", Font.PLAIN, 20));
    		// 用于获取字符宽度
    		FontMetrics fm = g.getFontMetrics();
    		g.drawString(message, w/2 - fm.stringWidth(message)/2, h/2);
    	}
    	//g.dispose();
    	return bi;
    }
    
    /**
     * 根据taskid获得流程定义图字节码
     * 
     * @param id taskid
     * @return
     */
    private byte[] getProcessDefinitionImageBytesByTaskId(final long id) {
    	JbpmTemplate jbpmTemplate = (JbpmTemplate) wac.getBean("jbpmTemplate");
    	return (byte[])jbpmTemplate.execute(new JbpmCallback() {
            public Object doInJbpm(JbpmContext context) {
            	try {
	            	TaskInstance taskInstance = context.getTaskMgmtSession().loadTaskInstance(id);
	            	currentToken = taskInstance.getToken();
	            	// 这里currentToken有可能为null
	            	ProcessDefinition pd = currentToken.getProcessInstance().getProcessDefinition();
	            	if(pd.getFileDefinition() == null) {
	            		message = "没有流程图";
	            		return null;
	            	} else {
	            		return pd.getFileDefinition().getBytes("processimage.jpg");
	            	}
            	} catch(Exception e) {
            		e.printStackTrace();
            		message = "No TaskInstance:" + id;
            		return null;
            	}
            }
        });
    }
    
    /**
     * 根据tokenid获得流程定义图字节码
     * 
     * @param id tokenid
     * @return
     */
    private byte[] getProcessDefinitionImageBytesByTokenId(final long id) {
    	JbpmTemplate jbpmTemplate = (JbpmTemplate) wac.getBean("jbpmTemplate");
    	return (byte[])jbpmTemplate.execute(new JbpmCallback() {
            public Object doInJbpm(JbpmContext context) {
            	try {
	            	currentToken = context.loadToken(id);
	            	Collection childTokens = currentToken.getChildren().values();
	    			for (Iterator iterator = childTokens.iterator(); iterator.hasNext();) {
	    				Token child = (Token) iterator.next();
	    				childrens.add(child);
	    			}
	    			// 这里token可能没有processInstanceId 即getProcessInstance为null.
	            	ProcessDefinition pd = currentToken.getProcessInstance().getProcessDefinition();
	            	if(pd.getFileDefinition() == null) {
	            		message = "没有流程图";
	            		return null;
	            	} else {
	            		return pd.getFileDefinition().getBytes("processimage.jpg");
	            	}
            	} catch(Exception e) {
            		e.printStackTrace();
            		message = "No Token:" + id;
            		return null;
            	}
            }
        });
    }
    
    /**
     * 根据processdefinitionid获得流程定义图字节码
     * 
     * @param id processdefinitionid
     * @return
     */
    private byte[] getProcessDefinitionImageBytes(final long id) {
    	JbpmTemplate jbpmTemplate = (JbpmTemplate) wac.getBean("jbpmTemplate");
    	return (byte[])jbpmTemplate.execute(new JbpmCallback() {
            public Object doInJbpm(JbpmContext context) {
            	try {
            		ProcessDefinition pd = context.getGraphSession().loadProcessDefinition(id);
	            	if(pd.getFileDefinition() == null) {
	            		message = "没有流程图";
	            		return null;
	            	} else {
	            		return pd.getFileDefinition().getBytes("processimage.jpg");
	            	}
            	} catch(Exception e) {
            		e.printStackTrace();
            		message = "No ProcessDefinition:" + id;
            		return null;
            	}
            }
        });
    }
    
    private byte[] getGpdBytesByTaskId(final long id) {
    	JbpmTemplate jbpmTemplate = (JbpmTemplate) wac.getBean("jbpmTemplate");
    	return (byte[])jbpmTemplate.execute(new JbpmCallback() {
            public Object doInJbpm(JbpmContext context) {
            	try {
            		TaskInstance taskInstance = context.getTaskMgmtSession().loadTaskInstance(id);
	            	currentToken = taskInstance.getToken();
	            	ProcessDefinition pd = currentToken.getProcessInstance().getProcessDefinition();
	            	if(pd.getFileDefinition() == null) {
	            		message = "没有流程图";
	            		return null;
	            	} else {
	            		return pd.getFileDefinition().getBytes("gpd.xml");
	            	}
            	} catch(Exception e) {
            		e.printStackTrace();
            		message = "No TaskInstance:" + id;
            		return null;
            	}
            }
        });
    }
    
    private byte[] getGpdBytesByTokenId(final long id) {
    	JbpmTemplate jbpmTemplate = (JbpmTemplate) wac.getBean("jbpmTemplate");
    	return (byte[])jbpmTemplate.execute(new JbpmCallback() {
            public Object doInJbpm(JbpmContext context) {
            	try {
	            	currentToken = context.loadToken(id);
	            	ProcessDefinition pd = currentToken.getProcessInstance().getProcessDefinition();
	            	if(pd.getFileDefinition() == null) {
	            		message = "没有流程图";
	            		return null;
	            	} else {
	            		return pd.getFileDefinition().getBytes("gpd.xml");
	            	}
            	} catch(Exception e) {
            		e.printStackTrace();
            		message = "No Token:" + id;
            		return null;
            	}
            }
        });
    }
    
    /**
     * 提取座标及宽高
     * 
     * @param root 根节点
     * @param token
     * @return
     */
    private int[] extractBoxConstraint(Element root, Token token) {
		int[] result = new int[4];
		String nodeName = token.getNode().getName();
		XPath xPath = new DefaultXPath("//node[@name='" + nodeName + "']");
		Element node = (Element) xPath.selectSingleNode(root);

		result[0] = Integer.valueOf(node.attribute("x").getValue()).intValue();
		result[1] = Integer.valueOf(node.attribute("y").getValue()).intValue();

		result[2] = Integer.valueOf(node.attribute("width").getValue())
				.intValue();
		result[3] = Integer.valueOf(node.attribute("height").getValue())
				.intValue();
		return result;
	}

}
 
分享到:
评论

相关推荐

    jbpm流程图状态显示

    【jbpm流程图状态显示】是关于jbpm工作流管理系统中的一个重要话题,它涉及到如何在图形界面中实时呈现流程实例的状态。jbpm是一款开源的工作流管理系统,它允许开发者设计、执行和管理业务流程。在jbpm中,流程图是...

    把jbpm流程图显示在jsp页面中

    本主题将详细介绍如何将jbpm流程图显示在JSP(JavaServer Pages)页面上,这涉及到jbpm的图像标签库(taglib)和`web.xml`配置文件的使用。 首先,jbpm提供的图像标签库允许开发者在JSP页面中直接嵌入流程图。`jbpm...

    jbpm4.4 在线设计流程图 ext + raphael

    本教程将深入探讨jbpm4.4的在线设计流程图特性,以及如何利用ext(一个JavaScript UI库)和raphael(一个矢量图形库)进行流程图的绘制与交互。 首先,jbpm4.4中的在线设计流程图功能依赖于ext库,它提供了丰富的...

    jBPM2-流程图与JBPM API.ppt

    jBPM2 版本中,流程图和JBPM API 是核心组成部分,帮助开发者实现复杂的业务流程自动化。 ### 1. jBPM-jBDL 相关概念 jBPM-jBDL(jBPM Business Definition Language)是一种用来定义业务流程的语言,基于有向图...

    JBPM5.4工作流 Eclipse流程插件安装

    利用Eclipse流程插件,你可以通过拖放方式设计流程图。插件提供丰富的活动节点,如用户任务、服务任务、子流程等,以及控制流程流向的网关和事件。设计过程中,可以实时预览流程的运行状态,提高设计效率。 **6. ...

    JBoss JBPM4请假流程示例

    在JBoss JBPM4中,我们可以使用jbpm-designer工具来设计流程图,然后将其导出为XML格式的.bpel文件。 2. **请假申请任务**:流程开始时,员工提交请假申请,这对应于一个任务节点。任务数据可能包括请假人、请假...

    JBPM视屏教程共9节 jBPM 4视频教程09流程图跟踪

    3. 09.swf:SWF文件通常是Adobe Flash格式的动画或交互式内容,这很可能是第九节的视频教程,通过动态演示来展示jBPM流程图跟踪的实际操作。 综合这些信息,学习这套教程可以了解到jBPM的基本概念,如何使用jBPM...

    jbpm4.4流程图

    `subjbpm.jpdl.xml`文件则是jbpm流程定义语言(Job Process Definition Language)的文件,它是jbpm用来存储流程定义的XML格式。此文件包含了流程的所有详细信息,包括活动(tasks)、泳道(lanes)、转换...

    JBPM5流程图设计规则

    在JBPM5中,设计流程图是实现流程自动化的关键步骤,遵循一定的设计规则可以确保流程的有效性和可维护性。 1. **前言** 在设计JBPM5流程图时,文档编写的目的在于规范流程设计,确保流程的清晰度和可理解性。文档...

    JBPM流程引擎设计 工作流资料

    JBPM流程引擎设计是IT领域中的一个重要知识点,尤其对于那些希望理解和实施企业级工作流管理系统的人员来说,它是不可或缺的。 1. **流程建模**:JBPM支持BPMN 2.0(Business Process Model and Notation)标准,这...

    jbpm流程设计器

    1. **图形化界面**:它使用BPMN 2.0(Business Process Model and Notation)标准,提供了一个拖放式的用户界面,使得用户可以通过拖拽不同的活动节点(如任务、决策、事件等)来创建流程图。BPMN是一种国际标准,...

    揭秘jbpm流程引擎内核.pdf

    **jbpm流程引擎内核详解** jbpm,全称Java Business Process Management,是一款开源的工作流管理系统,用于构建灵活且可扩展的业务流程应用。它基于模型驱动的设计理念,提供了强大的流程建模、执行和监控能力,是...

    MyEclipse6.0下Jbpm流程设计器

    Jbpm流程设计器是一个图形化的工具,允许开发者直观地创建和编辑业务流程图。它支持BPMN(Business Process Modeling Notation)标准,这是一种广泛接受的业务流程建模语言,提供了丰富的图形元素来表示流程中的各个...

    根据jbpm4的.jpdl.xml流程定义文件,绘制出流程图

    本篇我们将聚焦于Jbpm4中的流程定义文件——jpdl.xml,以及如何根据该文件绘制出对应的流程图。 首先,我们要理解什么是JPDL(Jbpm Process Definition Language)。JPDL是一种基于XML的语言,用于描述Jbpm中的业务...

    jbpm4生成流程图

    jbpm4生成流程图,根据每个不同的流程轨迹把连线变成红色。

    jbpm4.3 中文乱码解决

    jbpm4.3插件,解决中文乱码,主要修改org.jboss.tools.flow.jpdl4_4.3.0.v201007071649.jar中的JbpmLocationsPage 和 org.jboss.tools.jbpm.common_4.3.0.v201007071649.jar 中的JpdlSerializer和ProcessSerializer

    eclipse3.4解压版带jbpm流程定义插件

    JBPM插件允许用户通过图形化界面来设计流程图,这些流程图可以转化为可执行的流程定义,方便理解和管理复杂的业务逻辑。 在提供的压缩包"eclipse3.4解压版带jbpm流程定义插件"中,用户无需安装,仅需解压即可开始...

    JBPM流程代码演示

    1. **BPMN标准**:了解基本的BPMN元素,如开始事件、结束事件、用户任务、服务任务、流程节点、网关等,以及它们如何在流程图中表示和交互。 2. **JBPM架构**:理解JBPM的主要组件,如流程定义仓库...

Global site tag (gtag.js) - Google Analytics