cpee 1.3.127 → 1.3.128
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/cockpit/testsets/Signavio Model Base.xml +16 -0
- data/cockpit/testsets/index.xml +1 -0
- data/cpee.gemspec +1 -1
- data/lib/cpee/controller.rb +22 -8
- data/lib/cpee/implementation.rb +1 -0
- data/server/instances/3/properties.xml +109 -0
- data/server/instances/4/properties.xml +43 -0
- data/server/instances/5/properties.xml +23 -0
- data/server/instances/6/notifications/5c8c36c3dfcec8e36c3b25859a71778c/consumer-secret +1 -0
- data/server/instances/6/notifications/5c8c36c3dfcec8e36c3b25859a71778c/producer-secret +1 -0
- data/server/instances/{2/notifications/8f85ce7897598af370c5b350a811756b → 6/notifications/5c8c36c3dfcec8e36c3b25859a71778c}/subscription.xml +0 -0
- data/server/instances/6/properties.xml +203 -0
- data/server/resources/empty_dslx.xml +1 -0
- data/server/server.pid +1 -1
- metadata +10 -4
- data/server/instances/2/notifications/8f85ce7897598af370c5b350a811756b/consumer-secret +0 -1
- data/server/instances/2/notifications/8f85ce7897598af370c5b350a811756b/producer-secret +0 -1
@@ -0,0 +1,16 @@
|
|
1
|
+
<?xml version="1.0"?>
|
2
|
+
<testset>
|
3
|
+
<positions/>
|
4
|
+
<handlerwrapper>DefaultHandlerWrapper</handlerwrapper>
|
5
|
+
<dataelements/>
|
6
|
+
<handlers/>
|
7
|
+
<endpoints><!--{{{-->
|
8
|
+
<timeout>http://gruppe.wst.univie.ac.at/~mangler/services/timeout1.php</timeout>
|
9
|
+
</endpoints><!--}}}-->
|
10
|
+
<description/>
|
11
|
+
<transformation>
|
12
|
+
<description type='rest'>http://localhost:9295/bpmn2/</description>
|
13
|
+
<dataelements type='rest'>http://localhost:9295/bpmn2/</dataelements>
|
14
|
+
<endpoints type='rest'>http://localhost:9295/bpmn2/</endpoints>
|
15
|
+
</transformation>
|
16
|
+
</testset>
|
data/cockpit/testsets/index.xml
CHANGED
data/cpee.gemspec
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = "cpee"
|
3
|
-
s.version = "1.3.
|
3
|
+
s.version = "1.3.128"
|
4
4
|
s.platform = Gem::Platform::RUBY
|
5
5
|
s.license = "LGPL-3"
|
6
6
|
s.summary = "Preliminary release of cloud process execution engine (cpee). If you just need workflow execution, without a rest/xmpp service exposing it, then use WEEL"
|
data/lib/cpee/controller.rb
CHANGED
@@ -337,20 +337,30 @@ module CPEE
|
|
337
337
|
tdata = doc.find("/p:properties/p:transformation/p:dataelements").first
|
338
338
|
tendp = doc.find("/p:properties/p:transformation/p:endpoints").first
|
339
339
|
|
340
|
+
tdesctype = tdesc.attributes['type']
|
341
|
+
tdatatype = tdata.attributes['type']
|
342
|
+
tendptype = tendp.attributes['type']
|
343
|
+
|
344
|
+
if desc.children.empty?
|
345
|
+
tdesctype = tdatatype = tendptype = 'clean'
|
346
|
+
end
|
347
|
+
|
340
348
|
### description transformation, including dslx to dsl
|
341
|
-
addit = if
|
349
|
+
addit = if tdesctype == 'copy' || tdesc.empty?
|
342
350
|
desc.children.first.to_doc.root
|
343
|
-
elsif
|
351
|
+
elsif tdesctype == 'rest' && !tdesc.empty?
|
344
352
|
srv = Riddl::Client.interface(tdesc.text,@opts[:transformation_service],:xmpp => @opts[:xmpp])
|
345
353
|
status, res = srv.post [
|
346
354
|
Riddl::Parameter::Complex.new("description","text/xml",desc.children.first.dump),
|
347
355
|
Riddl::Parameter::Simple.new("type","description")
|
348
356
|
]
|
349
357
|
XML::Smart::string(res[0].value.read).root if status == 200
|
350
|
-
elsif
|
358
|
+
elsif tdesctype == 'xslt' && !tdesc.empty?
|
351
359
|
trans = XML::Smart::open_unprotected(tdesc.text)
|
352
360
|
desc.children.first.to_doc.transform_with(trans).root
|
353
|
-
|
361
|
+
elsif tdesctype == 'clean'
|
362
|
+
XML::Smart::open_unprotected(@opts[:empty_dslx]).root
|
363
|
+
else
|
354
364
|
nil
|
355
365
|
end
|
356
366
|
unless addit.nil?
|
@@ -362,16 +372,18 @@ module CPEE
|
|
362
372
|
end
|
363
373
|
|
364
374
|
### dataelements extraction
|
365
|
-
addit = if
|
375
|
+
addit = if tdatatype == 'rest' && !tdata.empty?
|
366
376
|
srv = Riddl::Client.interface(tdata.text,@opts[:transformation_service],:xmpp => @opts[:xmpp])
|
367
377
|
status, res = srv.post [
|
368
378
|
Riddl::Parameter::Complex.new("description","text/xml",desc.children.first.dump),
|
369
379
|
Riddl::Parameter::Simple.new("type","dataelements")
|
370
380
|
]
|
371
381
|
res
|
372
|
-
elsif
|
382
|
+
elsif tdatatype == 'xslt' && !tdata.empty?
|
373
383
|
trans = XML::Smart::open_unprotected(tdata.text)
|
374
384
|
desc.children.first.to_doc.transform_with(trans)
|
385
|
+
elsif tdatatype == 'clean'
|
386
|
+
[]
|
375
387
|
else
|
376
388
|
nil
|
377
389
|
end
|
@@ -387,16 +399,18 @@ module CPEE
|
|
387
399
|
end
|
388
400
|
|
389
401
|
### enpoints extraction
|
390
|
-
addit = if
|
402
|
+
addit = if tendptype == 'rest' && !tdata.empty?
|
391
403
|
srv = Riddl::Client.interface(tendp.text,@opts[:transformation_service],:xmpp => @opts[:xmpp])
|
392
404
|
status, res = srv.post [
|
393
405
|
Riddl::Parameter::Complex.new("description","text/xml",desc.children.first.dump),
|
394
406
|
Riddl::Parameter::Simple.new("type","endpoints")
|
395
407
|
]
|
396
408
|
res
|
397
|
-
elsif
|
409
|
+
elsif tendptype == 'xslt' && !tdata.empty?
|
398
410
|
trans = XML::Smart::open_unprotected(tendp.text)
|
399
411
|
desc.children.first.to_doc.transform_with(trans)
|
412
|
+
elsif tendptype == 'clean'
|
413
|
+
[]
|
400
414
|
else
|
401
415
|
nil
|
402
416
|
end
|
data/lib/cpee/implementation.rb
CHANGED
@@ -33,6 +33,7 @@ module CPEE
|
|
33
33
|
opts[:properties_schema_inactive] ||= File.expand_path(File.dirname(__FILE__) + '/../../server/resources/properties.schema.inactive')
|
34
34
|
opts[:transformation_dslx] ||= File.expand_path(File.dirname(__FILE__) + '/../../server/resources/transformation_dslx.xsl')
|
35
35
|
opts[:transformation_service] ||= File.expand_path(File.dirname(__FILE__) + '/../../server/resources/transformation.xml')
|
36
|
+
opts[:empty_dslx] ||= File.expand_path(File.dirname(__FILE__) + '/../../server/resources/empty_dslx.xml')
|
36
37
|
|
37
38
|
Proc.new do
|
38
39
|
Dir[opts[:handlerwrappers] + "/*.rb"].each do |h|
|
@@ -0,0 +1,109 @@
|
|
1
|
+
<properties xmlns="http://riddl.org/ns/common-patterns/properties/1.0">
|
2
|
+
<info>Enter info here</info>
|
3
|
+
<state>ready</state>
|
4
|
+
<handlerwrapper>DefaultHandlerWrapper</handlerwrapper>
|
5
|
+
<positions>
|
6
|
+
<a1>after</a1>
|
7
|
+
</positions>
|
8
|
+
<dataelements>
|
9
|
+
<x/>
|
10
|
+
</dataelements>
|
11
|
+
<endpoints>
|
12
|
+
<timeout>http://gruppe.wst.univie.ac.at/~mangler/services/timeout.php</timeout>
|
13
|
+
</endpoints>
|
14
|
+
<dsl>call :a1, :timeout, { :method => "post", :parameters => { :timeout => 2 } }, <<-end
|
15
|
+
data.x += "a1,"
|
16
|
+
end
|
17
|
+
call :a2, :timeout, { :method => "post", :parameters => { :timeout => 4 } }, <<-end
|
18
|
+
data.x += "a2,"
|
19
|
+
end
|
20
|
+
call :a3, :timeout, { :method => "post", :parameters => { :timeout => 4 } }, <<-end
|
21
|
+
data.x += "a3,"
|
22
|
+
end
|
23
|
+
</dsl>
|
24
|
+
<dslx>
|
25
|
+
<description xmlns="http://cpee.org/ns/description/1.0">
|
26
|
+
<!--{{{-->
|
27
|
+
<call id="a1" endpoint="timeout">
|
28
|
+
<parameters>
|
29
|
+
<!--{{{-->
|
30
|
+
<method>post</method>
|
31
|
+
<parameters>
|
32
|
+
<timeout>2</timeout>
|
33
|
+
</parameters>
|
34
|
+
</parameters>
|
35
|
+
<!--}}}-->
|
36
|
+
<manipulate output="result"> data.x += "a1,"</manipulate>
|
37
|
+
</call>
|
38
|
+
<call id="a2" endpoint="timeout">
|
39
|
+
<parameters>
|
40
|
+
<!--{{{-->
|
41
|
+
<method>post</method>
|
42
|
+
<parameters>
|
43
|
+
<timeout>4</timeout>
|
44
|
+
</parameters>
|
45
|
+
</parameters>
|
46
|
+
<!--}}}-->
|
47
|
+
<manipulate output="result"> data.x += "a2,"</manipulate>
|
48
|
+
</call>
|
49
|
+
<call id="a3" endpoint="timeout">
|
50
|
+
<parameters>
|
51
|
+
<!--{{{-->
|
52
|
+
<method>post</method>
|
53
|
+
<parameters>
|
54
|
+
<timeout>4</timeout>
|
55
|
+
</parameters>
|
56
|
+
</parameters>
|
57
|
+
<!--}}}-->
|
58
|
+
<manipulate output="result"> data.x += "a3,"</manipulate>
|
59
|
+
</call>
|
60
|
+
</description>
|
61
|
+
</dslx>
|
62
|
+
<status>
|
63
|
+
<id>0</id>
|
64
|
+
<message>undefined</message>
|
65
|
+
</status>
|
66
|
+
<description>
|
67
|
+
<description xmlns="http://cpee.org/ns/description/1.0">
|
68
|
+
<!--{{{-->
|
69
|
+
<call id="a1" endpoint="timeout">
|
70
|
+
<parameters>
|
71
|
+
<!--{{{-->
|
72
|
+
<method>post</method>
|
73
|
+
<parameters>
|
74
|
+
<timeout>2</timeout>
|
75
|
+
</parameters>
|
76
|
+
</parameters>
|
77
|
+
<!--}}}-->
|
78
|
+
<manipulate output="result"> data.x += "a1,"</manipulate>
|
79
|
+
</call>
|
80
|
+
<call id="a2" endpoint="timeout">
|
81
|
+
<parameters>
|
82
|
+
<!--{{{-->
|
83
|
+
<method>post</method>
|
84
|
+
<parameters>
|
85
|
+
<timeout>4</timeout>
|
86
|
+
</parameters>
|
87
|
+
</parameters>
|
88
|
+
<!--}}}-->
|
89
|
+
<manipulate output="result"> data.x += "a2,"</manipulate>
|
90
|
+
</call>
|
91
|
+
<call id="a3" endpoint="timeout">
|
92
|
+
<parameters>
|
93
|
+
<!--{{{-->
|
94
|
+
<method>post</method>
|
95
|
+
<parameters>
|
96
|
+
<timeout>4</timeout>
|
97
|
+
</parameters>
|
98
|
+
</parameters>
|
99
|
+
<!--}}}-->
|
100
|
+
<manipulate output="result"> data.x += "a3,"</manipulate>
|
101
|
+
</call>
|
102
|
+
</description>
|
103
|
+
</description>
|
104
|
+
<transformation>
|
105
|
+
<description type="copy"/>
|
106
|
+
<dataelements type="rest"/>
|
107
|
+
<endpoints type="rest"/>
|
108
|
+
</transformation>
|
109
|
+
</properties>
|
@@ -0,0 +1,43 @@
|
|
1
|
+
<?xml version="1.0"?>
|
2
|
+
<!--
|
3
|
+
This file is part of CPEE.
|
4
|
+
|
5
|
+
CPEE is free software: you can redistribute it and/or modify it under the terms
|
6
|
+
of the GNU General Public License as published by the Free Software Foundation,
|
7
|
+
either version 3 of the License, or (at your option) any later version.
|
8
|
+
|
9
|
+
CPEE is distributed in the hope that it will be useful, but WITHOUT ANY
|
10
|
+
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
11
|
+
PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
12
|
+
|
13
|
+
You should have received a copy of the GNU General Public License along with
|
14
|
+
CPEE (file COPYING in the main directory). If not, see
|
15
|
+
<http://www.gnu.org/licenses/>.
|
16
|
+
-->
|
17
|
+
|
18
|
+
<properties xmlns="http://riddl.org/ns/common-patterns/properties/1.0">
|
19
|
+
<info/>
|
20
|
+
<state>ready</state>
|
21
|
+
<handlerwrapper>DefaultHandlerWrapper</handlerwrapper>
|
22
|
+
<positions/>
|
23
|
+
<dataelements/>
|
24
|
+
<endpoints>
|
25
|
+
<timeout>http://gruppe.wst.univie.ac.at/~mangler/services/timeout.php</timeout>
|
26
|
+
</endpoints>
|
27
|
+
<dsl/>
|
28
|
+
<dslx>
|
29
|
+
<description xmlns="http://cpee.org/ns/description/1.0"/>
|
30
|
+
</dslx>
|
31
|
+
<status>
|
32
|
+
<id>0</id>
|
33
|
+
<message>undefined</message>
|
34
|
+
</status>
|
35
|
+
<description>
|
36
|
+
<description xmlns="http://cpee.org/ns/description/1.0"/>
|
37
|
+
</description>
|
38
|
+
<transformation>
|
39
|
+
<description type='copy'/>
|
40
|
+
<dataelements type='xslt'/>
|
41
|
+
<endpoints type='xslt'/>
|
42
|
+
</transformation>
|
43
|
+
</properties>
|
@@ -0,0 +1,23 @@
|
|
1
|
+
<properties xmlns="http://riddl.org/ns/common-patterns/properties/1.0">
|
2
|
+
<info>asdad</info>
|
3
|
+
<state>ready</state>
|
4
|
+
<handlerwrapper>DefaultHandlerWrapper</handlerwrapper>
|
5
|
+
<positions/>
|
6
|
+
<dataelements/>
|
7
|
+
<endpoints/>
|
8
|
+
<dsl><?xml version="1.0"?>
|
9
|
+
</dsl>
|
10
|
+
<dslx>
|
11
|
+
<description xmlns="http://cpee.org/ns/description/1.0"/>
|
12
|
+
</dslx>
|
13
|
+
<status>
|
14
|
+
<id>0</id>
|
15
|
+
<message>undefined</message>
|
16
|
+
</status>
|
17
|
+
<description/>
|
18
|
+
<transformation>
|
19
|
+
<description type="rest">http://localhost:9295</description>
|
20
|
+
<dataelements type="rest">http://localhost:9295</dataelements>
|
21
|
+
<endpoints type="rest">http://localhost:9295</endpoints>
|
22
|
+
</transformation>
|
23
|
+
</properties>
|
@@ -0,0 +1 @@
|
|
1
|
+
f25a7be392825036cb2c29fd6e474ab4
|
@@ -0,0 +1 @@
|
|
1
|
+
860f5ceb1376720259e2429ce07941f8
|
File without changes
|
@@ -0,0 +1,203 @@
|
|
1
|
+
<properties xmlns="http://riddl.org/ns/common-patterns/properties/1.0">
|
2
|
+
<info>Enter info here</info>
|
3
|
+
<state>ready</state>
|
4
|
+
<handlerwrapper>DefaultHandlerWrapper</handlerwrapper>
|
5
|
+
<positions/>
|
6
|
+
<dataelements>
|
7
|
+
<a/>
|
8
|
+
</dataelements>
|
9
|
+
<endpoints>
|
10
|
+
<timeout>http://gruppe.wst.univie.ac.at/~mangler/services/timeout.php</timeout>
|
11
|
+
</endpoints>
|
12
|
+
<dsl>manipulate :a22, <<-end
|
13
|
+
data.a = 0
|
14
|
+
end
|
15
|
+
call :a26, :timeout, { :label => "B", :method => nil, :type => "serviceTask", :mid => "sid-49FC5AAA-6F02-4F10-9379-6AB4AADDF819", :parameters => { :timeout => 1 } }, <<-end
|
16
|
+
data.a += 1
|
17
|
+
end
|
18
|
+
loop pre_test("data.a < 3") do
|
19
|
+
call :a26, :timeout, { :label => "B", :method => nil, :type => "serviceTask", :mid => "sid-49FC5AAA-6F02-4F10-9379-6AB4AADDF819", :parameters => { :timeout => 1 } }, <<-end
|
20
|
+
data.a += 1
|
21
|
+
end
|
22
|
+
end
|
23
|
+
</dsl>
|
24
|
+
<dslx>
|
25
|
+
<description xmlns="http://cpee.org/ns/description/1.0">
|
26
|
+
<manipulate id="a22" output="result" language="application/javascript">data.a = 0</manipulate>
|
27
|
+
<call id="a26" endpoint="timeout">
|
28
|
+
<parameters>
|
29
|
+
<label>B</label>
|
30
|
+
<method/>
|
31
|
+
<type>serviceTask</type>
|
32
|
+
<mid>sid-49FC5AAA-6F02-4F10-9379-6AB4AADDF819</mid>
|
33
|
+
<parameters>
|
34
|
+
<timeout>1</timeout>
|
35
|
+
</parameters>
|
36
|
+
</parameters>
|
37
|
+
<manipulate output="result" language="application/javascript">data.a += 1</manipulate>
|
38
|
+
</call>
|
39
|
+
<loop pre_test="data.a < 3" language="text/javascript">
|
40
|
+
<call id="a26" endpoint="timeout">
|
41
|
+
<parameters>
|
42
|
+
<label>B</label>
|
43
|
+
<method/>
|
44
|
+
<type>serviceTask</type>
|
45
|
+
<mid>sid-49FC5AAA-6F02-4F10-9379-6AB4AADDF819</mid>
|
46
|
+
<parameters>
|
47
|
+
<timeout>1</timeout>
|
48
|
+
</parameters>
|
49
|
+
</parameters>
|
50
|
+
<manipulate output="result" language="application/javascript">data.a += 1</manipulate>
|
51
|
+
</call>
|
52
|
+
</loop>
|
53
|
+
</description>
|
54
|
+
</dslx>
|
55
|
+
<status>
|
56
|
+
<id>0</id>
|
57
|
+
<message>undefined</message>
|
58
|
+
</status>
|
59
|
+
<description>
|
60
|
+
<definitions xmlns="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:omgdc="http://www.omg.org/spec/DD/20100524/DC" xmlns:omgdi="http://www.omg.org/spec/DD/20100524/DI" xmlns:signavio="http://www.signavio.com" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" exporter="Signavio Process Editor, http://www.signavio.com" exporterVersion="7.6.0" expressionLanguage="http://www.w3.org/1999/XPath" id="sid-3defc3e5-0d9d-49ab-a544-09f484e9665e" targetNamespace="http://www.signavio.com/bpmn20" typeLanguage="http://www.w3.org/2001/XMLSchema" xsi:schemaLocation="http://www.omg.org/spec/BPMN/20100524/MODEL http://www.omg.org/spec/BPMN/2.0/20100501/BPMN20.xsd">
|
61
|
+
<itemDefinition id="timeout" isCollection="false" structureRef="http://gruppe.wst.univie.ac.at/~mangler/services/timeout.php"/>
|
62
|
+
<process id="sid-e7ec7f0f-533f-46b9-8508-e6cab411a15d" isClosed="false" isExecutable="true" processType="None">
|
63
|
+
<property id="sid-8b87c302-5376-421b-9cd9-e41aaa198a14" itemSubjectRef="timeout">
|
64
|
+
<dataState id="sid-1117f953-b5d5-42ef-b707-c082dc3d978b" name="cpee:endpoint"/>
|
65
|
+
</property>
|
66
|
+
<property id="sid-d0b230e9-4665-40da-8d4c-cfdbd2c30c3a" name="a">
|
67
|
+
<dataState id="sid-41a3c137-21ff-488f-920a-66bd2de5e2de" name="cpee:dataelement"/>
|
68
|
+
</property>
|
69
|
+
<scriptTask completionQuantity="1" id="sid-AE367C8A-F10A-4D12-A504-D9D1F26EC9DB" isForCompensation="false" name="A" scriptFormat="application/javascript" startQuantity="1">
|
70
|
+
<extensionElements>
|
71
|
+
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc"/>
|
72
|
+
<signavio:signavioMetaData metaKey="risklevel" metaValue=""/>
|
73
|
+
<signavio:signavioMetaData metaKey="externaldocuments" metaValue="[]"/>
|
74
|
+
</extensionElements>
|
75
|
+
<incoming>sid-94FB40DD-638F-456C-98F7-1A1C1D7289DA</incoming>
|
76
|
+
<outgoing>sid-564DD764-715A-4CE7-9041-049B1378F1E9</outgoing>
|
77
|
+
<script>data.a = 0
|
78
|
+
</script>
|
79
|
+
</scriptTask>
|
80
|
+
<exclusiveGateway default="sid-50971135-760B-4E94-A668-750D20161820" gatewayDirection="Diverging" id="sid-13A34C12-BE7A-4B17-A6C9-064F97F5C720" name="">
|
81
|
+
<extensionElements>
|
82
|
+
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffff"/>
|
83
|
+
</extensionElements>
|
84
|
+
<incoming>sid-5767BE20-FA77-40C8-8BA1-5CE7F08BE49A</incoming>
|
85
|
+
<outgoing>sid-50971135-760B-4E94-A668-750D20161820</outgoing>
|
86
|
+
<outgoing>sid-6287006E-67AC-4F0B-957B-DAA1B25481BB</outgoing>
|
87
|
+
</exclusiveGateway>
|
88
|
+
<endEvent id="sid-A9E292EC-7A6E-477C-9FB7-CBBF0FCEB65A" name="">
|
89
|
+
<extensionElements>
|
90
|
+
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffff"/>
|
91
|
+
</extensionElements>
|
92
|
+
<incoming>sid-50971135-760B-4E94-A668-750D20161820</incoming>
|
93
|
+
</endEvent>
|
94
|
+
<startEvent id="sid-2A054430-1FC6-495B-B993-C52D7E8F4C5A" name="">
|
95
|
+
<extensionElements>
|
96
|
+
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffff"/>
|
97
|
+
</extensionElements>
|
98
|
+
<outgoing>sid-94FB40DD-638F-456C-98F7-1A1C1D7289DA</outgoing>
|
99
|
+
</startEvent>
|
100
|
+
<serviceTask completionQuantity="1" id="sid-49FC5AAA-6F02-4F10-9379-6AB4AADDF819" implementation="unspecified" isForCompensation="false" name="B " startQuantity="1">
|
101
|
+
<extensionElements>
|
102
|
+
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc"/>
|
103
|
+
<signavio:signavioMetaData metaKey="risklevel" metaValue=""/>
|
104
|
+
<signavio:signavioMetaData metaKey="externaldocuments" metaValue="[]"/>
|
105
|
+
</extensionElements>
|
106
|
+
<incoming>sid-564DD764-715A-4CE7-9041-049B1378F1E9</incoming>
|
107
|
+
<incoming>sid-6287006E-67AC-4F0B-957B-DAA1B25481BB</incoming>
|
108
|
+
<outgoing>sid-4D71E4A1-65DE-482D-934B-A8DA84976540</outgoing>
|
109
|
+
<ioSpecification id="sid-fd521444-b8e5-4112-852b-e97dc282c7bc">
|
110
|
+
<dataInput id="sid-267030ed-8cfb-4efc-864a-7c76731717df" itemSubjectRef="1" name="timeout"/>
|
111
|
+
<dataOutput id="result" isCollection="true" name="result"/>
|
112
|
+
</ioSpecification>
|
113
|
+
<property id="sid-3c14c71f-a713-43cb-a97e-8e0feef6c76f" itemSubjectRef="timeout" name="cpee:endpoint"/>
|
114
|
+
<dataOutputAssociation id="sid-d12149f5-e3fe-4be8-9572-ac6f52590e6c">
|
115
|
+
<sourceRef>result</sourceRef>
|
116
|
+
<targetRef>sid-2B36B8D1-1C12-42B0-B9F4-95B8D987A952</targetRef>
|
117
|
+
</dataOutputAssociation>
|
118
|
+
</serviceTask>
|
119
|
+
<scriptTask completionQuantity="1" id="sid-2B36B8D1-1C12-42B0-B9F4-95B8D987A952" isForCompensation="false" name="BS" scriptFormat="application/javascript" startQuantity="1">
|
120
|
+
<extensionElements>
|
121
|
+
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc"/>
|
122
|
+
<signavio:signavioMetaData metaKey="risklevel" metaValue=""/>
|
123
|
+
<signavio:signavioMetaData metaKey="externaldocuments" metaValue="[]"/>
|
124
|
+
</extensionElements>
|
125
|
+
<incoming>sid-4D71E4A1-65DE-482D-934B-A8DA84976540</incoming>
|
126
|
+
<outgoing>sid-5767BE20-FA77-40C8-8BA1-5CE7F08BE49A</outgoing>
|
127
|
+
<script>data.a += 1
|
128
|
+
</script>
|
129
|
+
</scriptTask>
|
130
|
+
<sequenceFlow id="sid-94FB40DD-638F-456C-98F7-1A1C1D7289DA" name="" sourceRef="sid-2A054430-1FC6-495B-B993-C52D7E8F4C5A" targetRef="sid-AE367C8A-F10A-4D12-A504-D9D1F26EC9DB"/>
|
131
|
+
<sequenceFlow id="sid-564DD764-715A-4CE7-9041-049B1378F1E9" name="" sourceRef="sid-AE367C8A-F10A-4D12-A504-D9D1F26EC9DB" targetRef="sid-49FC5AAA-6F02-4F10-9379-6AB4AADDF819"/>
|
132
|
+
<sequenceFlow id="sid-50971135-760B-4E94-A668-750D20161820" name="" sourceRef="sid-13A34C12-BE7A-4B17-A6C9-064F97F5C720" targetRef="sid-A9E292EC-7A6E-477C-9FB7-CBBF0FCEB65A"/>
|
133
|
+
<sequenceFlow id="sid-5767BE20-FA77-40C8-8BA1-5CE7F08BE49A" name="" sourceRef="sid-2B36B8D1-1C12-42B0-B9F4-95B8D987A952" targetRef="sid-13A34C12-BE7A-4B17-A6C9-064F97F5C720"/>
|
134
|
+
<sequenceFlow id="sid-4D71E4A1-65DE-482D-934B-A8DA84976540" name="" sourceRef="sid-49FC5AAA-6F02-4F10-9379-6AB4AADDF819" targetRef="sid-2B36B8D1-1C12-42B0-B9F4-95B8D987A952"/>
|
135
|
+
<sequenceFlow id="sid-6287006E-67AC-4F0B-957B-DAA1B25481BB" name="" sourceRef="sid-13A34C12-BE7A-4B17-A6C9-064F97F5C720" targetRef="sid-49FC5AAA-6F02-4F10-9379-6AB4AADDF819">
|
136
|
+
<conditionExpression id="sid-396bdaa2-591f-41ab-842f-e3e7b0e21f79" xsi:type="tFormalExpression">data.a < 3</conditionExpression>
|
137
|
+
</sequenceFlow>
|
138
|
+
</process>
|
139
|
+
<bpmndi:BPMNDiagram id="sid-386eba6e-be23-4074-b5d6-90b0941ad55e">
|
140
|
+
<bpmndi:BPMNPlane bpmnElement="sid-e7ec7f0f-533f-46b9-8508-e6cab411a15d" id="sid-31933578-8c41-4391-9a75-accbd8fc04a2">
|
141
|
+
<bpmndi:BPMNShape bpmnElement="sid-AE367C8A-F10A-4D12-A504-D9D1F26EC9DB" id="sid-AE367C8A-F10A-4D12-A504-D9D1F26EC9DB_gui">
|
142
|
+
<omgdc:Bounds height="80.0" width="100.0" x="135.0" y="75.0"/>
|
143
|
+
<bpmndi:BPMNLabel>
|
144
|
+
<omgdc:Bounds height="12.0" width="8.571426391601562" x="180.71428680419922" y="108.0"/>
|
145
|
+
</bpmndi:BPMNLabel>
|
146
|
+
</bpmndi:BPMNShape>
|
147
|
+
<bpmndi:BPMNShape bpmnElement="sid-13A34C12-BE7A-4B17-A6C9-064F97F5C720" id="sid-13A34C12-BE7A-4B17-A6C9-064F97F5C720_gui" isMarkerVisible="true">
|
148
|
+
<omgdc:Bounds height="40.0" width="40.0" x="585.0" y="95.0"/>
|
149
|
+
</bpmndi:BPMNShape>
|
150
|
+
<bpmndi:BPMNShape bpmnElement="sid-A9E292EC-7A6E-477C-9FB7-CBBF0FCEB65A" id="sid-A9E292EC-7A6E-477C-9FB7-CBBF0FCEB65A_gui">
|
151
|
+
<omgdc:Bounds height="28.0" width="28.0" x="670.0" y="101.0"/>
|
152
|
+
</bpmndi:BPMNShape>
|
153
|
+
<bpmndi:BPMNShape bpmnElement="sid-2A054430-1FC6-495B-B993-C52D7E8F4C5A" id="sid-2A054430-1FC6-495B-B993-C52D7E8F4C5A_gui">
|
154
|
+
<omgdc:Bounds height="30.0" width="30.0" x="60.0" y="100.0"/>
|
155
|
+
</bpmndi:BPMNShape>
|
156
|
+
<bpmndi:BPMNShape bpmnElement="sid-49FC5AAA-6F02-4F10-9379-6AB4AADDF819" id="sid-49FC5AAA-6F02-4F10-9379-6AB4AADDF819_gui">
|
157
|
+
<omgdc:Bounds height="80.0" width="100.0" x="278.0" y="75.0"/>
|
158
|
+
<bpmndi:BPMNLabel>
|
159
|
+
<omgdc:Bounds height="12.0" width="8.571426391601562" x="323.7142868041992" y="108.0"/>
|
160
|
+
</bpmndi:BPMNLabel>
|
161
|
+
</bpmndi:BPMNShape>
|
162
|
+
<bpmndi:BPMNShape bpmnElement="sid-2B36B8D1-1C12-42B0-B9F4-95B8D987A952" id="sid-2B36B8D1-1C12-42B0-B9F4-95B8D987A952_gui">
|
163
|
+
<omgdc:Bounds height="80.0" width="100.0" x="440.0" y="75.0"/>
|
164
|
+
<bpmndi:BPMNLabel>
|
165
|
+
<omgdc:Bounds height="12.0" width="17.142852783203125" x="481.42857360839844" y="108.0"/>
|
166
|
+
</bpmndi:BPMNLabel>
|
167
|
+
</bpmndi:BPMNShape>
|
168
|
+
<bpmndi:BPMNEdge bpmnElement="sid-50971135-760B-4E94-A668-750D20161820" id="sid-50971135-760B-4E94-A668-750D20161820_gui">
|
169
|
+
<omgdi:waypoint x="625.0" y="115.37579617834395"/>
|
170
|
+
<omgdi:waypoint x="670.0" y="115.08917197452229"/>
|
171
|
+
</bpmndi:BPMNEdge>
|
172
|
+
<bpmndi:BPMNEdge bpmnElement="sid-6287006E-67AC-4F0B-957B-DAA1B25481BB" id="sid-6287006E-67AC-4F0B-957B-DAA1B25481BB_gui">
|
173
|
+
<omgdi:waypoint x="605.5" y="135.0"/>
|
174
|
+
<omgdi:waypoint x="605.5" y="214.0"/>
|
175
|
+
<omgdi:waypoint x="328.0" y="214.0"/>
|
176
|
+
<omgdi:waypoint x="328.0" y="155.0"/>
|
177
|
+
</bpmndi:BPMNEdge>
|
178
|
+
<bpmndi:BPMNEdge bpmnElement="sid-4D71E4A1-65DE-482D-934B-A8DA84976540" id="sid-4D71E4A1-65DE-482D-934B-A8DA84976540_gui">
|
179
|
+
<omgdi:waypoint x="378.0" y="115.0"/>
|
180
|
+
<omgdi:waypoint x="440.0" y="115.0"/>
|
181
|
+
</bpmndi:BPMNEdge>
|
182
|
+
<bpmndi:BPMNEdge bpmnElement="sid-5767BE20-FA77-40C8-8BA1-5CE7F08BE49A" id="sid-5767BE20-FA77-40C8-8BA1-5CE7F08BE49A_gui">
|
183
|
+
<omgdi:waypoint x="540.0" y="115.5"/>
|
184
|
+
<omgdi:waypoint x="585.0" y="115.5"/>
|
185
|
+
</bpmndi:BPMNEdge>
|
186
|
+
<bpmndi:BPMNEdge bpmnElement="sid-94FB40DD-638F-456C-98F7-1A1C1D7289DA" id="sid-94FB40DD-638F-456C-98F7-1A1C1D7289DA_gui">
|
187
|
+
<omgdi:waypoint x="90.0" y="115.0"/>
|
188
|
+
<omgdi:waypoint x="135.0" y="115.0"/>
|
189
|
+
</bpmndi:BPMNEdge>
|
190
|
+
<bpmndi:BPMNEdge bpmnElement="sid-564DD764-715A-4CE7-9041-049B1378F1E9" id="sid-564DD764-715A-4CE7-9041-049B1378F1E9_gui">
|
191
|
+
<omgdi:waypoint x="235.0" y="115.0"/>
|
192
|
+
<omgdi:waypoint x="278.0" y="115.0"/>
|
193
|
+
</bpmndi:BPMNEdge>
|
194
|
+
</bpmndi:BPMNPlane>
|
195
|
+
</bpmndi:BPMNDiagram>
|
196
|
+
</definitions>
|
197
|
+
</description>
|
198
|
+
<transformation>
|
199
|
+
<description type="rest">http://localhost:9295/bpmn2/</description>
|
200
|
+
<dataelements type="rest">http://localhost:9295/bpmn2/</dataelements>
|
201
|
+
<endpoints type="rest">http://localhost:9295/bpmn2/</endpoints>
|
202
|
+
</transformation>
|
203
|
+
</properties>
|
@@ -0,0 +1 @@
|
|
1
|
+
<description xmlns="http://cpee.org/ns/description/1.0"/>
|
data/server/server.pid
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
27589
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cpee
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.3.
|
4
|
+
version: 1.3.128
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -74,15 +74,20 @@ files:
|
|
74
74
|
- server/resources/properties.schema.active
|
75
75
|
- server/resources/properties.init
|
76
76
|
- server/resources/transformation_dslx.xsl
|
77
|
+
- server/resources/empty_dslx.xml
|
77
78
|
- server/resources/properties.schema.inactive
|
78
79
|
- server/resources/transformation.xml
|
79
80
|
- server/instances/1/notifications/d12eff1ac812661c05d7090ce7394cf9/consumer-secret
|
80
81
|
- server/instances/1/notifications/d12eff1ac812661c05d7090ce7394cf9/producer-secret
|
81
82
|
- server/instances/1/notifications/d12eff1ac812661c05d7090ce7394cf9/subscription.xml
|
82
83
|
- server/instances/1/properties.xml
|
83
|
-
- server/instances/
|
84
|
-
- server/instances/
|
85
|
-
- server/instances/
|
84
|
+
- server/instances/3/properties.xml
|
85
|
+
- server/instances/4/properties.xml
|
86
|
+
- server/instances/6/notifications/5c8c36c3dfcec8e36c3b25859a71778c/consumer-secret
|
87
|
+
- server/instances/6/notifications/5c8c36c3dfcec8e36c3b25859a71778c/producer-secret
|
88
|
+
- server/instances/6/notifications/5c8c36c3dfcec8e36c3b25859a71778c/subscription.xml
|
89
|
+
- server/instances/6/properties.xml
|
90
|
+
- server/instances/5/properties.xml
|
86
91
|
- server/instances/2/properties.xml
|
87
92
|
- server/server.pid
|
88
93
|
- server/handlerwrappers/soap.rb
|
@@ -111,6 +116,7 @@ files:
|
|
111
116
|
- cockpit/testsets/Mangler 2.xml
|
112
117
|
- cockpit/testsets/Mangler 1.xml
|
113
118
|
- cockpit/testsets/index.xml
|
119
|
+
- cockpit/testsets/Signavio Model Base.xml
|
114
120
|
- cockpit/testsets/Concurrent.xml
|
115
121
|
- cockpit/testsets/SOPROMO Test Sonification.xml
|
116
122
|
- cockpit/README
|
@@ -1 +0,0 @@
|
|
1
|
-
a6020d5dd289ae782c866f128f70f25d
|
@@ -1 +0,0 @@
|
|
1
|
-
afa11f78ee8fba13df2b78935c9cf014
|