我们在第一章中介绍了怎么通过EMF读写BPMN2.0官方元素,
第三章中介绍了怎么建立一个简单的EMF模型来读写XML,
在这章里边我们介绍下怎么给BPMN2.0模型注入扩展元素。
1.为什么需要扩展
由于BPMN2.0官方提供的标准不能满足一个引擎需要运行起来的所需的一些元素,所有各个基于BPMN2.0标准的厂商都对BPMN2.0标准进行了自己的扩展。
例如:
activiti引擎的扩展都是以"activiti:"开头的
1 <serviceTask id="javaService" 2 name="Java service invocation" 3 activiti:class="org.activiti.examples.bpmn.servicetask.ToUpperCaseFieldInjected"> 4 <extensionElements> 5 <activiti:field name="text" stringValue="Hello World" /> 6 </extensionElements> 7 </serviceTask>
fixflow引擎的扩展都是以"fixflow:"开头的
1 <bpmn2:userTask id="UserTask_1" fixflow:taskType="FIXFLOWTASK" name="人工任务"> 2 <bpmn2:extensionElements> 3 <fixflow:assignPolicyType id="potentialOwner"/> 4 <fixflow:skipStrategy/> 5 <fixflow:taskCommand id="HandleCommand_3" name="提交" commandType="submit"/> 8 <fixflow:expectedExecutionTime/> 9 <fixflow:formUri> 10 <fixflow:expression xsi:type="fixflow:Expression" id="Expression_3">DemoServlet?action=startOneTask</fixflow:expression> 11 </fixflow:formUri> 12 </bpmn2:extensionElements> 13 <bpmn2:incoming>SequenceFlow_1</bpmn2:incoming> 14 <bpmn2:outgoing>SequenceFlow_3</bpmn2:outgoing> 15 <bpmn2:potentialOwner id="PotentialOwner_1" fixflow:resourceType="user" fixflow:includeExclusion="INCLUDE"name="所有人"> 16 <bpmn2:resourceAssignmentExpression id="ResourceAssignmentExpression_1"> 17 <bpmn2:formalExpression id="所有人">"fixflow_allusers"</bpmn2:formalExpression> 18 </bpmn2:resourceAssignmentExpression> 19 </bpmn2:potentialOwner> 21 </bpmn2:userTask>
每个引擎的厂商都会对BPMN2.0官方元素做出扩展,这就导致了流程定义虽然可以在不同的流程产品相互显示,但是想运行起来是不可能的。
2.BPMN2.0官方关于扩展元素的支持
可以看到BPMN2.0官方已经提供了扩展元素的存放位置:
1 <bpmn2:userTask id="UserTask_1" fixflow:taskType="FIXFLOWTASK" name="人工任务"> 2 <bpmn2:extensionElements> 3 <fixflow:assignPolicyType id="potentialOwner"/> 4 <fixflow:skipStrategy/> 12 </bpmn2:extensionElements> 13 </bpmn2:userTask>
"extensionElements" 元素内就用来存放各个厂商自己扩展的元素,"fixflow:"开头的 attribute 就是官网元素本身的属性扩展,
官方也是清楚的,他们给的那点肯定是不够用的,所以就有了上面的扩展,3.0出来了肯定会提供更多支持。
3.扩展 BPMN2.0 EMF模型的思路
Fixflow在读写BPMN2.0模型的时候使用了Eclipse官方提供的EMF模型,扩展元素的最好的方式就是不修改原始Eclipse提供的模型,
采用外部注入的方式修改给EMF模型添加新的元素。我们需要重新建立一个EMF模型来放置Fixflow引擎自己扩展的元素定义,
通过EMF提供的注入方法添加到元素的模型保存中去,下面我们一步步来完成这个过程。
4.创建一个EMF模型
这里我们不再详细介绍创建模型文件的过程,不清楚的请参考第三章创建模型。
下面的截图是 fixflow 的扩展元素模型:
这个扩展模型有些需要注意的地方,模型 整体的 Ns Prefix 和 Ns URI 这个两个属性决定了你扩展元素的名称和命名空间。
Attributes 的设置需要注意的事项。
EReference 引用设置需要主要的地方。
创建完毕生成三个模型文件,并生成对应java代码。
5.读写扩展元素
下面的代码就是在web环境下读写BPMN2.0模型扩展元素的代码:
模型文件下载地址: SampleProcess.bpmn.7z
1 import java.util.List; 2 3 import org.eclipse.bpmn2.BaseElement; 4 import org.eclipse.bpmn2.Bpmn2Factory; 5 import org.eclipse.bpmn2.Bpmn2Package; 6 import org.eclipse.bpmn2.Definitions; 7 import org.eclipse.bpmn2.ExtensionAttributeValue; 8 import org.eclipse.bpmn2.RootElement; 9 import org.eclipse.bpmn2.di.BpmnDiPackage; 10 import org.eclipse.bpmn2.util.Bpmn2ResourceFactoryImpl; 11 import org.eclipse.dd.dc.DcPackage; 12 import org.eclipse.dd.di.DiPackage; 13 import org.eclipse.emf.common.util.URI; 14 import org.eclipse.emf.ecore.EPackage; 15 import org.eclipse.emf.ecore.EReference; 16 import org.eclipse.emf.ecore.impl.EStructuralFeatureImpl.SimpleFeatureMapEntry; 17 import org.eclipse.emf.ecore.resource.Resource; 18 import org.eclipse.emf.ecore.resource.ResourceSet; 19 import org.eclipse.emf.ecore.resource.impl.ResourceSetImpl; 20 import org.eclipse.emf.ecore.util.FeatureMap; 21 22 import com.founder.fix.bpmn2extensions.fixflow.ConnectorInstance; 23 import com.founder.fix.bpmn2extensions.fixflow.FixFlowFactory; 24 import com.founder.fix.bpmn2extensions.fixflow.FixFlowPackage; 25 26 27 public class test { 28 29 public static void main(String[] args) { 30 //创建资源集 31 ResourceSet resourceSet = getResourceSet(); 32 //创建资源 33 Resource resource = resourceSet.createResource(URI.createURI("SampleProcess.bpmn")); 34 35 36 try { 37 //加载资源 38 resource.load(null); 39 } catch (Exception e) { 40 e.printStackTrace(); 41 } 42 //获取根元素 43 Definitions definitions = (Definitions) resource.getContents().get(0).eContents().get(0); 44 //获取process对象 45 org.eclipse.bpmn2.Process process=null; 46 for (RootElement rootElement : definitions.getRootElements()) { 47 if (rootElement instanceof org.eclipse.bpmn2.Process) { 48 process = (org.eclipse.bpmn2.Process) rootElement; 49 } 50 } 51 52 if(process==null){ 53 return; 54 } 55 56 //设置扩展 EAttribute fixflow:dbid 57 process.eSet(FixFlowPackage.Literals.DOCUMENT_ROOT__DBID, "SampleProcess_1"); 58 //读取扩展 EAttribute fixflow:dbid 59 process.eGet(FixFlowPackage.Literals.DOCUMENT_ROOT__DBID); 60 61 62 ConnectorInstance connectorInstance=FixFlowFactory.eINSTANCE.createConnectorInstance(); 63 //添加扩展元素 64 addExtensionElement(process,FixFlowPackage.Literals.DOCUMENT_ROOT__CONNECTOR_INSTANCE,connectorInstance); 65 //读取扩展元素 66 getExtensionElementList(ConnectorInstance.class,process,FixFlowPackage.Literals.DOCUMENT_ROOT__CONNECTOR_INSTANCE); 67 68 69 } 70 71 /** 72 * 创建资源集 73 * @return 74 */ 75 private static ResourceSet getResourceSet() { 76 77 //以下的方式是脱离Eclipse环境在web下使用EMF的时候使用的方式,Eclipse里使用要简单的多。 78 79 ResourceSet resourceSet = new ResourceSetImpl(); 80 (EPackage.Registry.INSTANCE).put("http://www.omg.org/spec/BPMN/20100524/MODEL", Bpmn2Package.eINSTANCE); 81 //注意这里的注册没有这个注册是没有办法通过直接获取扩展元素的 82 (EPackage.Registry.INSTANCE).put("http://www.founderfix.com/fixflow", FixFlowPackage.eINSTANCE); 83 (EPackage.Registry.INSTANCE).put("http://www.omg.org/spec/DD/20100524/DI", DiPackage.eINSTANCE); 84 (EPackage.Registry.INSTANCE).put("http://www.omg.org/spec/DD/20100524/DC", DcPackage.eINSTANCE); 85 (EPackage.Registry.INSTANCE).put("http://www.omg.org/spec/BPMN/20100524/DI", BpmnDiPackage.eINSTANCE); 86 FixFlowPackage.eINSTANCE.eClass(); 87 FixFlowPackage xxxPackage = FixFlowPackage.eINSTANCE; 88 EPackage.Registry.INSTANCE.put(xxxPackage.getNsURI(), xxxPackage); 89 Bpmn2ResourceFactoryImpl ddd = new Bpmn2ResourceFactoryImpl(); 90 //注意这里的注册没有这个注册是没有办法通过直接获取扩展元素的 91 Resource.Factory.Registry.INSTANCE.getExtensionToFactoryMap().put("fixflow", ddd); 92 resourceSet.getResourceFactoryRegistry().getExtensionToFactoryMap().put("bpmn", ddd); 93 resourceSet.getPackageRegistry().put(xxxPackage.getNsURI(), xxxPackage); 94 Resource.Factory.Registry.INSTANCE.getExtensionToFactoryMap().put("bpmn", ddd); 95 return resourceSet; 96 } 97 98 /** 99 * 读取扩展元素 Element 100 * @param t 扩展元素的java类型 101 * @param baseElement 主元素 102 * @param eReference 引用 103 * @return 104 */ 105 @SuppressWarnings("unchecked") 106 public static <T> List<T> getExtensionElementList( Class<T> t ,BaseElement baseElement,EReference eReference){ 107 108 //BPMN2.0官方定义每个BaseElement元素都含有扩展元素ExtensionValues 109 if (baseElement.getExtensionValues().size() > 0) { 110 for (ExtensionAttributeValue extensionAttributeValue : baseElement.getExtensionValues()) { 111 FeatureMap extensionElements = extensionAttributeValue.getValue(); 112 Object objectElement = extensionElements.get(eReference, true); 113 if (objectElement != null) { 114 115 List<T> tObjList = (List<T>) objectElement; 116 return tObjList; 117 118 119 } 120 } 121 } 122 123 124 return (List<T>)null; 125 } 126 127 /** 128 * 添加扩展元素 129 * @param baseElement 主元素 130 * @param eReference 引用 131 * @param o 扩展元素对象 132 * @return 133 */ 134 public static boolean addExtensionElement(BaseElement baseElement,EReference eReference,Object o){ 135 final FeatureMap.Entry extensionElementEntry = new SimpleFeatureMapEntry((org.eclipse.emf.ecore.EStructuralFeature.Internal) eReference, o); 136 if(baseElement.getExtensionValues().size() > 0){ 137 baseElement.getExtensionValues().get(0).getValue().add(extensionElementEntry); 138 }else{ 139 ExtensionAttributeValue extensionElement = Bpmn2Factory.eINSTANCE.createExtensionAttributeValue(); 140 extensionElement.getValue().add(extensionElementEntry); 141 baseElement.getExtensionValues().add(extensionElement); 142 } 143 return false; 144 } 145 146 }
相关推荐
*Name:*Activiti BPMN 2.0 designer *Location:*http://activiti.org/designer/update/ 出错,有人说是 是这个网址已经不存在了。 用其他的联网安装确实速度有些让人吃惊,毕竟是连的外面的网。 只好使用离线安装。 ...
*Name:*Activiti BPMN 2.0 designer *Location:*http://activiti.org/designer/update/ 总是出现以下的错误 An error occurred while collecting items to be installed 原因是这个网址已经不存在,最可恶是官网的...
3. org.eclipse.emf.validation_1.7.0.201306111341.jar:这是EMF验证框架的实现,提供了一种机制,可以在模型元素创建或修改时进行一致性检查和约束验证,确保设计的BPMN流程符合预设规则。 当在Eclipse中安装...
此“Activiti BPMN2.0 Designer activiti5.18插件”是专门为Eclipse集成开发环境设计的,用于帮助开发者直观地设计、部署和管理基于BPMN 2.0规范的流程模型。 该插件的安装ZIP文件包含了必要的组件,如`emf.jar`,...
Software being installed: Activiti Eclipse BPMN 2.0 Designer 5.18.0.201508100929 (org.activiti.designer.feature.feature.group 5.18.0.201508100929) Missing requirement: Activiti Eclipse BPMN 2.0 ...
Software being installed: Activiti Eclipse BPMN 2.0 Designer 5.18.0.201508100929 (org.activiti.designer.feature.feature.group 5.18.0.201508100929) Missing requirement: Activiti Eclipse BPMN 2.0 ...
Software being installed: Flowable Eclipse BPMN 2.0 Designer 5.22.0 (org.flowable.designer.feature.feature.group 5.22.0) Missing requirement: Graphiti (Incubation) 0.13.1.v20160830-1309 (org....
Flowable Designer是一款强大的业务流程建模工具,基于BPMN 2.0标准,用于创建、编辑和管理业务流程模型。它提供了用户友好的图形化界面,使得非技术人员也能理解和设计复杂的业务流程。5.22.0是Flowable Designer的...
Missing requirement: Activiti Eclipse BPMN 2.0 Designer 5.14.1 (org.activiti.designer.feature.feature.group 5.14.1) requires 'org.eclipse.emf.transaction 1.4.0' but it could not be found b、解决办法...
该工具提供了将BPMN 2.0模型转换为可执行WS-BPEL 2.0模型的框架。 它基于EMF。 当前,我们提供了一个带有一个简单示例BPMN 2.0工作流程的原型,该原型可以部署在Linux系统上。 示例工作流程将调用...
在"emf-xsd-SDK-2.6.1"的压缩包中,包含了Eclipse环境的相关文件,这通常意味着我们可以在这个环境中开发和测试基于EMF和XSD的模型应用。Eclipse是一个集成开发环境(IDE),支持多种编程语言和插件,EMF相关的插件...
了解MS-EMF规范对于研究EMF文件格式是至关重要的,尤其是在开发需要解析或创建EMF文件的应用程序时。 微软在发布其开放规范(Open Specifications)文档时,采取了特定的知识产权政策。这些政策允许开发者复制和...
在处理XML数据时,EMF提供了一种高效且灵活的方式,能够将XML文档转换为可操作的对象模型,进而进行读取、解析和编辑。下面将详细介绍EMF读取XML的相关知识点。 1. **EMF模型与XML的关系** - EMF模型是面向对象的...
它作为Activiti BPMN 2.0引擎的一个强大插件,允许开发者和业务分析师直观地创建、编辑和管理流程图,极大地提高了工作效率和流程定义的准确性。 在"activiti-designer-5.18.0.zip"这个压缩包中,包含了几个关键的...
Software being installed: Activiti Eclipse BPMN 2.0 Designer 5.18.0 (org.activiti.designer.feature.feature.group 5.18.0) Missing requirement: Activiti Eclipse BPMN 2.0 Designer 5.18.0 (org.activiti....
Missing requirement: Activiti Eclipse BPMN 2.0 Designer 5.18.0 (org.activiti.designer.feature.feature.group 5.18.0) requires 'org.eclipse.emf.transaction 1.4.0' but it could not be found 解决办法:将...
Missing requirement: Activiti Eclipse BPMN 2.0 Designer 5.18.0.201508100929 (org.activiti.designer.feature.feature.group 5.18.0.201508100929) requires 'org.eclipse.emf.transaction 1.4.0' but it could...
本文将详细解析"emf-sdo-xsd-SDK-2.3.2.zip"这一关键插件,探讨它在Eclipse TPTP插件安装中的作用以及背后的原理和技术。 1. **Eclipse TPTP插件**: TPTP(Test and Performance Tools Platform)是Eclipse基金会...
此外,如果EMF文件包含特殊效果或非标准元素,可能无法完全准确地转换。 总的来说,将EMF转换为PNG的过程涉及到了Java编程、图像处理库的使用以及文件格式的转换。通过`freehep`库,我们可以方便地在Java环境中实现...