ruote 0.9.20 → 2.1.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +3 -0
- data/CHANGELOG.txt +8 -0
- data/CREDITS.txt +65 -0
- data/LICENSE.txt +21 -0
- data/README.rdoc +76 -0
- data/Rakefile +68 -0
- data/TODO.txt +287 -0
- data/examples/flickr_report.rb +108 -0
- data/examples/ruote_quickstart.rb +42 -0
- data/examples/web_first_page.rb +57 -0
- data/lib/ruote.rb +6 -0
- data/lib/ruote/context.rb +136 -0
- data/lib/ruote/engine.rb +339 -0
- data/lib/{openwfe/expressions/merge.rb → ruote/engine/process_error.rb} +35 -24
- data/lib/ruote/engine/process_status.rb +236 -0
- data/lib/ruote/evt/tracker.rb +110 -0
- data/lib/ruote/exp/command.rb +88 -0
- data/lib/ruote/exp/commanded.rb +69 -0
- data/lib/ruote/exp/condition.rb +120 -0
- data/lib/ruote/exp/expression_map.rb +103 -0
- data/lib/ruote/exp/fe_add_branches.rb +138 -0
- data/lib/ruote/exp/fe_apply.rb +85 -0
- data/lib/ruote/exp/fe_cancel_process.rb +74 -0
- data/lib/ruote/exp/fe_command.rb +163 -0
- data/lib/ruote/exp/fe_concurrence.rb +273 -0
- data/lib/ruote/exp/fe_concurrent_iterator.rb +204 -0
- data/lib/ruote/exp/fe_cron.rb +141 -0
- data/lib/ruote/exp/fe_cursor.rb +270 -0
- data/lib/ruote/exp/fe_define.rb +112 -0
- data/lib/{openwfe/engine/fs_engine.rb → ruote/exp/fe_echo.rb} +24 -18
- data/lib/ruote/exp/fe_equals.rb +115 -0
- data/lib/ruote/exp/fe_error.rb +90 -0
- data/lib/ruote/exp/fe_forget.rb +81 -0
- data/lib/ruote/exp/fe_if.rb +124 -0
- data/lib/ruote/exp/fe_inc.rb +205 -0
- data/lib/ruote/exp/fe_iterator.rb +193 -0
- data/lib/ruote/exp/fe_listen.rb +197 -0
- data/lib/{openwfe/engine.rb → ruote/exp/fe_noop.rb} +20 -3
- data/lib/ruote/exp/fe_participant.rb +202 -0
- data/lib/ruote/exp/fe_redo.rb +83 -0
- data/lib/ruote/exp/fe_reserve.rb +126 -0
- data/lib/ruote/exp/fe_restore.rb +102 -0
- data/lib/ruote/exp/fe_save.rb +79 -0
- data/lib/ruote/exp/fe_sequence.rb +60 -0
- data/lib/ruote/exp/fe_set.rb +160 -0
- data/lib/ruote/exp/fe_subprocess.rb +203 -0
- data/lib/{openwfe/expool/errors.rb → ruote/exp/fe_undo.rb} +28 -30
- data/lib/ruote/exp/fe_wait.rb +92 -0
- data/lib/ruote/exp/fe_when.rb +214 -0
- data/lib/ruote/exp/flowexpression.rb +624 -0
- data/lib/{openwfe/omixins.rb → ruote/exp/iterator.rb} +41 -23
- data/lib/ruote/exp/merge.rb +66 -0
- data/lib/{openwfe/util/ometa.rb → ruote/exp/raw.rb} +16 -16
- data/lib/ruote/exp/ro_attributes.rb +203 -0
- data/lib/ruote/exp/ro_persist.rb +139 -0
- data/lib/ruote/exp/ro_variables.rb +192 -0
- data/lib/ruote/fei.rb +131 -0
- data/lib/{openwfe/version.rb → ruote/id/mnemo_wfid_generator.rb} +17 -3
- data/lib/{openwfe/extras/engine/dm_engine.rb → ruote/id/wfid_generator.rb} +34 -22
- data/lib/ruote/log/fs_history.rb +181 -0
- data/lib/ruote/log/test_logger.rb +254 -0
- data/lib/ruote/log/wait_logger.rb +67 -0
- data/lib/ruote/parser.rb +205 -0
- data/lib/ruote/parser/ruby_dsl.rb +85 -0
- data/lib/ruote/parser/xml.rb +92 -0
- data/lib/ruote/part/block_participant.rb +101 -0
- data/lib/ruote/part/dispatch_pool.rb +84 -0
- data/lib/ruote/part/hash_participant.rb +91 -0
- data/lib/ruote/part/local_participant.rb +52 -0
- data/lib/{openwfe/engine/tc_engine.rb → ruote/part/no_op_participant.rb} +19 -14
- data/lib/{openwfe/engine/tt_engine.rb → ruote/part/null_participant.rb} +17 -18
- data/lib/ruote/part/participant_list.rb +201 -0
- data/lib/ruote/part/smtp_participant.rb +135 -0
- data/lib/ruote/part/storage_participant.rb +140 -0
- data/lib/{openwfe/util/irb.rb → ruote/part/template.rb} +23 -31
- data/lib/ruote/participant.rb +6 -0
- data/lib/ruote/receiver/base.rb +73 -0
- data/lib/ruote/storage/base.rb +210 -0
- data/lib/ruote/storage/fs_storage.rb +89 -0
- data/lib/ruote/storage/hash_storage.rb +171 -0
- data/lib/ruote/tree_dot.rb +85 -0
- data/lib/{openwfe → ruote}/util/dollar.rb +47 -63
- data/lib/{openwfe/extras/singlecon.rb → ruote/util/hashdot.rb} +40 -19
- data/lib/ruote/util/look.rb +129 -0
- data/lib/ruote/util/lookup.rb +92 -0
- data/lib/ruote/util/misc.rb +119 -0
- data/lib/ruote/util/ometa.rb +55 -0
- data/lib/ruote/util/serializer.rb +103 -0
- data/lib/ruote/util/time.rb +90 -0
- data/lib/ruote/util/tree.rb +58 -0
- data/lib/{openwfe → ruote}/util/treechecker.rb +10 -16
- data/lib/ruote/worker.rb +375 -0
- data/lib/ruote/workitem.rb +176 -0
- data/phil.txt +14 -0
- data/ruote.gemspec +278 -0
- data/test/README.rdoc +15 -0
- data/test/bm/ci.rb +55 -0
- data/test/bm/ici.rb +71 -0
- data/test/bm/juuman.rb +54 -0
- data/test/bm/load_26c.rb +25 -7
- data/test/bm/mega.rb +64 -0
- data/test/bm/seq_thousand.rb +31 -0
- data/test/bm/t.rb +35 -0
- data/test/functional/base.rb +88 -99
- data/test/functional/concurrent_base.rb +91 -0
- data/test/functional/crunner.rb +26 -0
- data/test/functional/ct_0_concurrence.rb +68 -0
- data/test/functional/ct_1_iterator.rb +61 -0
- data/test/functional/ct_2_cancel.rb +69 -0
- data/test/functional/eft_0_process_definition.rb +46 -15
- data/test/functional/eft_10_cancel_process.rb +46 -0
- data/test/functional/eft_11_wait.rb +97 -0
- data/test/functional/eft_12_listen.rb +271 -0
- data/test/functional/eft_13_iterator.rb +267 -0
- data/test/functional/eft_14_cursor.rb +278 -0
- data/test/functional/eft_15_loop.rb +67 -0
- data/test/functional/eft_16_if.rb +171 -0
- data/test/functional/eft_17_equals.rb +55 -0
- data/test/functional/eft_18_concurrent_iterator.rb +361 -0
- data/test/functional/eft_19_reserve.rb +136 -0
- data/test/functional/eft_1_echo.rb +59 -0
- data/test/functional/eft_20_save.rb +76 -0
- data/test/functional/eft_21_restore.rb +61 -0
- data/test/functional/eft_22_noop.rb +28 -0
- data/test/functional/eft_23_apply.rb +145 -0
- data/test/functional/eft_24_add_branches.rb +86 -0
- data/test/functional/eft_25_command.rb +28 -0
- data/test/functional/eft_26_error.rb +77 -0
- data/test/functional/eft_27_inc.rb +279 -0
- data/test/functional/eft_28_when.rb +109 -0
- data/test/functional/eft_29_cron.rb +64 -0
- data/test/functional/eft_2_sequence.rb +38 -27
- data/test/functional/eft_3_participant.rb +122 -0
- data/test/functional/eft_4_set.rb +230 -0
- data/test/functional/eft_5_subprocess.rb +164 -0
- data/test/functional/eft_6_concurrence.rb +279 -0
- data/test/functional/eft_7_forget.rb +61 -0
- data/test/functional/eft_8_undo.rb +78 -0
- data/test/functional/eft_9_redo.rb +46 -0
- data/test/functional/ft_0_worker.rb +46 -0
- data/test/functional/ft_10_dollar.rb +90 -0
- data/test/functional/ft_11_recursion.rb +111 -0
- data/test/functional/ft_12_launchitem.rb +37 -0
- data/test/functional/ft_13_variables.rb +131 -0
- data/test/functional/ft_14_re_apply.rb +133 -0
- data/test/functional/ft_15_timeout.rb +205 -0
- data/test/functional/ft_16_participant_params.rb +47 -0
- data/test/functional/ft_17_conditional.rb +76 -0
- data/test/functional/ft_18_kill.rb +85 -0
- data/test/functional/ft_19_alias.rb +33 -0
- data/test/functional/ft_1_process_status.rb +410 -20
- data/test/functional/ft_20_storage_participant.rb +46 -0
- data/test/functional/ft_21_forget.rb +42 -0
- data/test/functional/ft_22_process_definitions.rb +80 -0
- data/test/functional/ft_23_load_defs.rb +55 -0
- data/test/functional/ft_24_block_participants.rb +59 -0
- data/test/functional/ft_25_receiver.rb +87 -0
- data/test/functional/ft_26_participant_timeout.rb +49 -0
- data/test/functional/ft_27_var_indirection.rb +93 -0
- data/test/functional/ft_28_null_noop_participants.rb +51 -0
- data/test/functional/ft_29_part_template.rb +78 -0
- data/test/functional/ft_2_errors.rb +320 -0
- data/test/functional/ft_30_smtp_participant.rb +69 -0
- data/test/functional/ft_31_part_blocking.rb +70 -0
- data/test/functional/ft_32_history.rb +184 -0
- data/test/functional/ft_33_participant_subprocess_priority.rb +32 -0
- data/test/functional/ft_34_cursor_rewind.rb +98 -0
- data/test/functional/ft_35_add_service.rb +48 -0
- data/test/functional/ft_3_participant_registration.rb +107 -0
- data/test/functional/ft_4_cancel.rb +72 -0
- data/test/functional/ft_5_on_error.rb +155 -0
- data/test/functional/ft_6_on_cancel.rb +165 -0
- data/test/functional/ft_7_tags.rb +88 -0
- data/test/functional/ft_8_participant_consumption.rb +75 -0
- data/test/functional/ft_9_subprocesses.rb +145 -0
- data/test/functional/restart_base.rb +17 -26
- data/test/functional/rt_0_wait.rb +55 -0
- data/test/functional/rt_1_listen.rb +56 -0
- data/test/functional/rt_2_errors.rb +56 -0
- data/test/functional/rt_3_when.rb +70 -0
- data/test/functional/rt_4_cron.rb +63 -0
- data/test/functional/rt_5_timeout.rb +60 -0
- data/test/functional/rtest.rb +8 -0
- data/test/functional/storage_helper.rb +79 -0
- data/test/functional/test.rb +23 -11
- data/test/mpc_test.rb +29 -0
- data/test/path_helper.rb +4 -2
- data/test/pdef.xml +7 -0
- data/test/test_helper.rb +2 -30
- data/test/unit/storages.rb +13 -0
- data/test/unit/test.rb +2 -11
- data/test/unit/ut_0_ruby_parser.rb +120 -0
- data/test/unit/ut_11_lookup.rb +51 -0
- data/test/unit/ut_13_serializer.rb +65 -0
- data/test/unit/ut_14_is_uri.rb +28 -0
- data/test/unit/ut_15_util.rb +34 -0
- data/test/unit/ut_16_parser.rb +100 -0
- data/test/unit/ut_17_storage.rb +122 -0
- data/test/unit/ut_1_fei.rb +20 -0
- data/test/unit/ut_2_wfidgen.rb +21 -0
- data/test/unit/ut_3_wait_logger.rb +41 -0
- data/test/unit/ut_4_expmap.rb +20 -0
- data/test/unit/ut_5_tree.rb +54 -0
- data/test/unit/ut_6_condition.rb +138 -0
- data/test/unit/ut_7_workitem.rb +21 -0
- data/test/unit/ut_8_tree_to_dot.rb +72 -0
- data/test/unit/ut_9_xml_parser.rb +61 -0
- metadata +246 -253
- data/README.txt +0 -36
- data/bin/validate-workflow.rb +0 -89
- data/examples/about_state.rb +0 -81
- data/examples/bigflow.rb +0 -19
- data/examples/csv_weather.rb +0 -23
- data/examples/engine_template.rb +0 -222
- data/examples/flowtracing.rb +0 -24
- data/examples/homeworkreview.rb +0 -68
- data/examples/kotoba.rb +0 -22
- data/examples/mano_tracker.rb +0 -172
- data/examples/openwferu.rb +0 -60
- data/examples/quickstart.rb +0 -87
- data/examples/quotereporter.rb +0 -150
- data/examples/simple.rb +0 -56
- data/lib/openwfe.rb +0 -27
- data/lib/openwfe/contextual.rb +0 -120
- data/lib/openwfe/def.rb +0 -37
- data/lib/openwfe/engine/engine.rb +0 -455
- data/lib/openwfe/engine/expool_methods.rb +0 -113
- data/lib/openwfe/engine/file_persisted_engine.rb +0 -84
- data/lib/openwfe/engine/launch_methods.rb +0 -245
- data/lib/openwfe/engine/listener_methods.rb +0 -128
- data/lib/openwfe/engine/lookup_methods.rb +0 -156
- data/lib/openwfe/engine/participant_methods.rb +0 -141
- data/lib/openwfe/engine/status_methods.rb +0 -382
- data/lib/openwfe/engine/update_exp_methods.rb +0 -119
- data/lib/openwfe/expool/def_parser.rb +0 -196
- data/lib/openwfe/expool/errorjournal.rb +0 -294
- data/lib/openwfe/expool/expool_pause_methods.rb +0 -87
- data/lib/openwfe/expool/expressionpool.rb +0 -941
- data/lib/openwfe/expool/expstorage.rb +0 -370
- data/lib/openwfe/expool/fs_expstorage.rb +0 -302
- data/lib/openwfe/expool/history.rb +0 -278
- data/lib/openwfe/expool/journal.rb +0 -210
- data/lib/openwfe/expool/journal_replay.rb +0 -305
- data/lib/openwfe/expool/representation.rb +0 -105
- data/lib/openwfe/expool/tc_expstorage.rb +0 -239
- data/lib/openwfe/expool/threaded_expstorage.rb +0 -163
- data/lib/openwfe/expool/tt_expstorage.rb +0 -55
- data/lib/openwfe/expool/wfidgen.rb +0 -370
- data/lib/openwfe/expool/yaml_errorjournal.rb +0 -187
- data/lib/openwfe/expressions/condition.rb +0 -226
- data/lib/openwfe/expressions/environment.rb +0 -232
- data/lib/openwfe/expressions/expression_map.rb +0 -248
- data/lib/openwfe/expressions/expression_tree.rb +0 -265
- data/lib/openwfe/expressions/fe_cancel.rb +0 -89
- data/lib/openwfe/expressions/fe_command.rb +0 -237
- data/lib/openwfe/expressions/fe_concurrence.rb +0 -599
- data/lib/openwfe/expressions/fe_cron.rb +0 -197
- data/lib/openwfe/expressions/fe_cursor.rb +0 -200
- data/lib/openwfe/expressions/fe_define.rb +0 -146
- data/lib/openwfe/expressions/fe_do.rb +0 -181
- data/lib/openwfe/expressions/fe_equals.rb +0 -273
- data/lib/openwfe/expressions/fe_error.rb +0 -103
- data/lib/openwfe/expressions/fe_filter.rb +0 -112
- data/lib/openwfe/expressions/fe_filter_definition.rb +0 -151
- data/lib/openwfe/expressions/fe_fqv.rb +0 -231
- data/lib/openwfe/expressions/fe_http.rb +0 -198
- data/lib/openwfe/expressions/fe_if.rb +0 -287
- data/lib/openwfe/expressions/fe_iterator.rb +0 -128
- data/lib/openwfe/expressions/fe_listen.rb +0 -327
- data/lib/openwfe/expressions/fe_losfor.rb +0 -102
- data/lib/openwfe/expressions/fe_misc.rb +0 -374
- data/lib/openwfe/expressions/fe_participant.rb +0 -231
- data/lib/openwfe/expressions/fe_reserve.rb +0 -192
- data/lib/openwfe/expressions/fe_save.rb +0 -255
- data/lib/openwfe/expressions/fe_sequence.rb +0 -102
- data/lib/openwfe/expressions/fe_set.rb +0 -121
- data/lib/openwfe/expressions/fe_step.rb +0 -146
- data/lib/openwfe/expressions/fe_subprocess.rb +0 -150
- data/lib/openwfe/expressions/fe_timeout.rb +0 -107
- data/lib/openwfe/expressions/fe_wait.rb +0 -183
- data/lib/openwfe/expressions/fe_when.rb +0 -118
- data/lib/openwfe/expressions/filter.rb +0 -85
- data/lib/openwfe/expressions/flowexpression.rb +0 -872
- data/lib/openwfe/expressions/iterator.rb +0 -206
- data/lib/openwfe/expressions/raw.rb +0 -330
- data/lib/openwfe/expressions/rprocdef.rb +0 -373
- data/lib/openwfe/expressions/time.rb +0 -314
- data/lib/openwfe/expressions/timeout.rb +0 -184
- data/lib/openwfe/expressions/value.rb +0 -100
- data/lib/openwfe/extras/engine/ar_engine.rb +0 -58
- data/lib/openwfe/extras/engine/db_persisted_engine.rb +0 -74
- data/lib/openwfe/extras/expool/ar_expstorage.rb +0 -337
- data/lib/openwfe/extras/expool/db_errorjournal.rb +0 -165
- data/lib/openwfe/extras/expool/db_expstorage.rb +0 -73
- data/lib/openwfe/extras/expool/db_history.rb +0 -163
- data/lib/openwfe/extras/expool/dm_expstorage.rb +0 -327
- data/lib/openwfe/extras/listeners/jabber_listeners.rb +0 -102
- data/lib/openwfe/extras/listeners/jabberlisteners.rb +0 -26
- data/lib/openwfe/extras/listeners/sqs_listeners.rb +0 -128
- data/lib/openwfe/extras/misc/activityfeed.rb +0 -249
- data/lib/openwfe/extras/misc/basecamp.rb +0 -485
- data/lib/openwfe/extras/misc/jabber_common.rb +0 -122
- data/lib/openwfe/extras/participants/active_participants.rb +0 -724
- data/lib/openwfe/extras/participants/active_resource_participants.rb +0 -213
- data/lib/openwfe/extras/participants/activeparticipants.rb +0 -3
- data/lib/openwfe/extras/participants/ar_participants.rb +0 -285
- data/lib/openwfe/extras/participants/atomfeed_participants.rb +0 -158
- data/lib/openwfe/extras/participants/atompub_participants.rb +0 -252
- data/lib/openwfe/extras/participants/basecamp_participants.rb +0 -73
- data/lib/openwfe/extras/participants/decision_participants.rb +0 -113
- data/lib/openwfe/extras/participants/jabber_participants.rb +0 -147
- data/lib/openwfe/extras/participants/jabberparticipants.rb +0 -3
- data/lib/openwfe/extras/participants/sqs_participants.rb +0 -108
- data/lib/openwfe/extras/participants/twitter_participants.rb +0 -162
- data/lib/openwfe/filterdef.rb +0 -277
- data/lib/openwfe/flowexpressionid.rb +0 -396
- data/lib/openwfe/listeners/listener.rb +0 -86
- data/lib/openwfe/listeners/listeners.rb +0 -135
- data/lib/openwfe/logging.rb +0 -108
- data/lib/openwfe/participants.rb +0 -5
- data/lib/openwfe/participants/mail_participants.rb +0 -216
- data/lib/openwfe/participants/participant.rb +0 -142
- data/lib/openwfe/participants/participant_map.rb +0 -245
- data/lib/openwfe/participants/participants.rb +0 -381
- data/lib/openwfe/participants/soap_participants.rb +0 -121
- data/lib/openwfe/participants/store_participants.rb +0 -249
- data/lib/openwfe/participants/yaml_filestorage.rb +0 -216
- data/lib/openwfe/representations.rb +0 -770
- data/lib/openwfe/rexml.rb +0 -44
- data/lib/openwfe/rudefinitions.rb +0 -114
- data/lib/openwfe/service.rb +0 -92
- data/lib/openwfe/tools/flowtracer.rb +0 -63
- data/lib/openwfe/util/json.rb +0 -55
- data/lib/openwfe/util/observable.rb +0 -119
- data/lib/openwfe/util/workqueue.rb +0 -125
- data/lib/openwfe/util/xml.rb +0 -270
- data/lib/openwfe/utils.rb +0 -484
- data/lib/openwfe/workitem.rb +0 -541
- data/lib/openwfe/worklist/storelocks.rb +0 -277
- data/lib/openwfe/worklist/storeparticipant.rb +0 -6
- data/lib/openwfe/worklist/worklist.rb +0 -283
- data/lib/pooltool.ru +0 -311
- data/test/ar_test_connection.rb +0 -63
- data/test/bm/fatxml.rb +0 -70
- data/test/dm_test_connection.rb +0 -11
- data/test/extras/base.rb +0 -3
- data/test/extras/et_0_sqs.rb +0 -37
- data/test/extras/et_jabber_test.rb +0 -226
- data/test/extras/test.rb +0 -16
- data/test/functional/db_ft_0_ar_participants.rb +0 -136
- data/test/functional/eft_10_unset.rb +0 -60
- data/test/functional/eft_11_sleep.rb +0 -95
- data/test/functional/eft_12_wait.rb +0 -57
- data/test/functional/eft_13_cursor.rb +0 -139
- data/test/functional/eft_14_loop.rb +0 -36
- data/test/functional/eft_15_undo.rb +0 -77
- data/test/functional/eft_16_redo.rb +0 -88
- data/test/functional/eft_1_print.rb +0 -57
- data/test/functional/eft_3_equals.rb +0 -98
- data/test/functional/eft_4_if.rb +0 -96
- data/test/functional/eft_5_eval.rb +0 -89
- data/test/functional/eft_6_reval.rb +0 -101
- data/test/functional/eft_7_exp.rb +0 -47
- data/test/functional/eft_8_log.rb +0 -50
- data/test/functional/eft_9_set.rb +0 -132
- data/test/functional/engine_helper.rb +0 -122
- data/test/functional/ft_0_vars_at_launch.rb +0 -27
- data/test/functional/ft_2_file_listener.rb +0 -45
- data/test/functional/ft_3_on_cancel.rb +0 -171
- data/test/functional/ft_4_on_error.rb +0 -220
- data/test/functional/ft_5_process_uri.rb +0 -82
- data/test/functional/ft_6_process_status.rb +0 -62
- data/test/functional/ft_7_parameters.rb +0 -103
- data/test/functional/ft_8_dollar.rb +0 -53
- data/test/functional/ft_9_register_participants.rb +0 -119
- data/test/functional/rft_0_sleep.rb +0 -76
- data/test/unit/ut_0_fei.rb +0 -166
- data/test/unit/ut_10_lookup_attribute.rb +0 -86
- data/test/unit/ut_11_filter.rb +0 -124
- data/test/unit/ut_12_conditional.rb +0 -162
- data/test/unit/ut_13_xmlutil.rb +0 -57
- data/test/unit/ut_14_var_field_lookup.rb +0 -85
- data/test/unit/ut_15_fe_att_lookup.rb +0 -55
- data/test/unit/ut_16_expstorage_findexp.rb +0 -38
- data/test/unit/ut_17_representations.rb +0 -330
- data/test/unit/ut_17b_representations_hash.rb +0 -97
- data/test/unit/ut_18_store_lock.rb +0 -77
- data/test/unit/ut_1_wfid.rb +0 -104
- data/test/unit/ut_2_utils.rb +0 -53
- data/test/unit/ut_3_expmap.rb +0 -65
- data/test/unit/ut_4_fulldup.rb +0 -163
- data/test/unit/ut_5_observable.rb +0 -132
- data/test/unit/ut_6_treechecker.rb +0 -101
- data/test/unit/ut_7_parser_ruby.rb +0 -344
- data/test/unit/ut_7b_parser_ruby.rb +0 -56
- data/test/unit/ut_8_parser_description.rb +0 -77
- data/test/unit/ut_9_workitem.rb +0 -72
@@ -1,89 +0,0 @@
|
|
1
|
-
#--
|
2
|
-
# Copyright (c) 2007-2009, John Mettraux, jmettraux@gmail.com
|
3
|
-
#
|
4
|
-
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
5
|
-
# of this software and associated documentation files (the "Software"), to deal
|
6
|
-
# in the Software without restriction, including without limitation the rights
|
7
|
-
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
8
|
-
# copies of the Software, and to permit persons to whom the Software is
|
9
|
-
# furnished to do so, subject to the following conditions:
|
10
|
-
#
|
11
|
-
# The above copyright notice and this permission notice shall be included in
|
12
|
-
# all copies or substantial portions of the Software.
|
13
|
-
#
|
14
|
-
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
15
|
-
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
16
|
-
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
17
|
-
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
18
|
-
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
19
|
-
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
20
|
-
# THE SOFTWARE.
|
21
|
-
#
|
22
|
-
# Made in Japan.
|
23
|
-
#++
|
24
|
-
|
25
|
-
|
26
|
-
require 'openwfe/expressions/condition'
|
27
|
-
require 'openwfe/expressions/flowexpression'
|
28
|
-
|
29
|
-
|
30
|
-
module OpenWFE
|
31
|
-
|
32
|
-
#
|
33
|
-
# This expression cancels the current process instance. Use with care.
|
34
|
-
#
|
35
|
-
# <sequence>
|
36
|
-
# <participant ref="before" />
|
37
|
-
# <cancel-process />
|
38
|
-
# <participant ref="after" />
|
39
|
-
# </sequence>
|
40
|
-
#
|
41
|
-
# the message "after" will never get printed.
|
42
|
-
#
|
43
|
-
# Use rather in scenarii like that one :
|
44
|
-
#
|
45
|
-
# class TestDefinition1 < ProcessDefinition
|
46
|
-
# def make
|
47
|
-
# process_definition :name => "25_cancel", :revision => "1" do
|
48
|
-
# sequence do
|
49
|
-
# participant "customer"
|
50
|
-
# _cancel_process :if => "${f:no_thanks} == true"
|
51
|
-
# concurrence do
|
52
|
-
# participant "accounting"
|
53
|
-
# participant "logistics"
|
54
|
-
# end
|
55
|
-
# end
|
56
|
-
# end
|
57
|
-
# end
|
58
|
-
# end
|
59
|
-
#
|
60
|
-
# Note that the expression accepts an "if" attribute.
|
61
|
-
#
|
62
|
-
class CancelProcessExpression < FlowExpression
|
63
|
-
include ConditionMixin
|
64
|
-
|
65
|
-
names :cancel_process, :cancel_flow
|
66
|
-
|
67
|
-
def apply (workitem)
|
68
|
-
|
69
|
-
conditional = eval_condition(:if, workitem, :unless)
|
70
|
-
#
|
71
|
-
# for example : <cancel-process if="${approved} == false"/>
|
72
|
-
|
73
|
-
return reply_to_parent(workitem) if conditional == false
|
74
|
-
|
75
|
-
#
|
76
|
-
# else, do cancel the process
|
77
|
-
|
78
|
-
get_expression_pool.cancel_process(self)
|
79
|
-
|
80
|
-
# no need to reply to parent
|
81
|
-
end
|
82
|
-
|
83
|
-
#def reply (workitem)
|
84
|
-
#end
|
85
|
-
|
86
|
-
end
|
87
|
-
|
88
|
-
end
|
89
|
-
|
@@ -1,237 +0,0 @@
|
|
1
|
-
#--
|
2
|
-
# Copyright (c) 2007-2009, John Mettraux, jmettraux@gmail.com
|
3
|
-
#
|
4
|
-
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
5
|
-
# of this software and associated documentation files (the "Software"), to deal
|
6
|
-
# in the Software without restriction, including without limitation the rights
|
7
|
-
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
8
|
-
# copies of the Software, and to permit persons to whom the Software is
|
9
|
-
# furnished to do so, subject to the following conditions:
|
10
|
-
#
|
11
|
-
# The above copyright notice and this permission notice shall be included in
|
12
|
-
# all copies or substantial portions of the Software.
|
13
|
-
#
|
14
|
-
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
15
|
-
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
16
|
-
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
17
|
-
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
18
|
-
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
19
|
-
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
20
|
-
# THE SOFTWARE.
|
21
|
-
#
|
22
|
-
# Made in Japan.
|
23
|
-
#++
|
24
|
-
|
25
|
-
|
26
|
-
require 'openwfe/expressions/condition'
|
27
|
-
|
28
|
-
|
29
|
-
module OpenWFE
|
30
|
-
|
31
|
-
#
|
32
|
-
# Some constants shared by 'cursor', 'loop', 'iterator' and
|
33
|
-
# the CommandExpression.
|
34
|
-
#
|
35
|
-
module CommandConstants
|
36
|
-
|
37
|
-
protected
|
38
|
-
|
39
|
-
A_COMMAND_FIELD = 'command-field'
|
40
|
-
F_COMMAND = '__cursor_command__'
|
41
|
-
A_DISALLOW = 'disallow'
|
42
|
-
|
43
|
-
C_BACK = 'back'
|
44
|
-
C_SKIP = 'skip'
|
45
|
-
|
46
|
-
C_BREAK = 'break'
|
47
|
-
C_CANCEL = 'cancel'
|
48
|
-
C_OVER = 'over'
|
49
|
-
BREAK_COMMANDS = [ C_BREAK, C_CANCEL, C_OVER ]
|
50
|
-
|
51
|
-
C_REWIND = 'rewind'
|
52
|
-
C_CONTINUE = 'continue'
|
53
|
-
C_JUMP = 'jump'
|
54
|
-
|
55
|
-
A_STEP = 'step'
|
56
|
-
end
|
57
|
-
|
58
|
-
#
|
59
|
-
# A mixin shared by 'iterator' and 'cursor' ('loop'), simply
|
60
|
-
# provides the methods for looking up the "command" (break, skip,
|
61
|
-
# rewind, ...) from the workitem and the process.
|
62
|
-
#
|
63
|
-
module CommandMixin
|
64
|
-
include CommandConstants
|
65
|
-
include ConditionMixin
|
66
|
-
|
67
|
-
protected
|
68
|
-
|
69
|
-
def determine_command_and_step (workitem)
|
70
|
-
|
71
|
-
#
|
72
|
-
# at first, look at the condition attribute
|
73
|
-
|
74
|
-
%w{ break rewind }.each do |cmd|
|
75
|
-
return [ cmd, 0 ] \
|
76
|
-
if eval_condition("#{cmd}-if", workitem, "#{cmd}-unless")
|
77
|
-
end
|
78
|
-
|
79
|
-
#
|
80
|
-
# then look at the command field
|
81
|
-
|
82
|
-
command_field = lookup_command_field(workitem)
|
83
|
-
|
84
|
-
command, step = lookup_command(command_field, workitem)
|
85
|
-
|
86
|
-
disallow_list = lookup_disallow(workitem)
|
87
|
-
|
88
|
-
command = nil \
|
89
|
-
if disallow_list and disallow_list.include?(command)
|
90
|
-
|
91
|
-
workitem.attributes.delete(command_field)
|
92
|
-
|
93
|
-
[ command, step ]
|
94
|
-
end
|
95
|
-
|
96
|
-
private
|
97
|
-
|
98
|
-
#
|
99
|
-
# Looks up the value in the command field.
|
100
|
-
#
|
101
|
-
def lookup_command_field (workitem)
|
102
|
-
|
103
|
-
lookup_attribute(A_COMMAND_FIELD, workitem, :default => F_COMMAND)
|
104
|
-
end
|
105
|
-
|
106
|
-
#
|
107
|
-
# Returns the command and the step
|
108
|
-
#
|
109
|
-
def lookup_command (command_field, workitem)
|
110
|
-
|
111
|
-
command = workitem.attributes[command_field]
|
112
|
-
|
113
|
-
return [ nil, 1 ] unless command
|
114
|
-
#
|
115
|
-
# this corresponds to the "just one step forward" default
|
116
|
-
|
117
|
-
command, step = command.strip.split
|
118
|
-
|
119
|
-
step = step ? step.to_i : 1
|
120
|
-
step = -step if command == C_BACK
|
121
|
-
|
122
|
-
[ command, step ]
|
123
|
-
end
|
124
|
-
|
125
|
-
#
|
126
|
-
# Fetches the value of the 'disallow' cursor attribute.
|
127
|
-
#
|
128
|
-
def lookup_disallow (workitem)
|
129
|
-
|
130
|
-
lookup_array_attribute(A_DISALLOW, workitem)
|
131
|
-
end
|
132
|
-
end
|
133
|
-
|
134
|
-
#
|
135
|
-
# This class implements the following expressions : back, break,
|
136
|
-
# cancel, continue, jump, rewind, skip.
|
137
|
-
#
|
138
|
-
# They are generally used inside of a 'cursor' (CursorExpression) or
|
139
|
-
# a 'loop' (LoopExpression), they can be used outside, but their result
|
140
|
-
# (the value of the field '\_\_cursor_command__' will be used as soon as the
|
141
|
-
# flow enters a cursor or a loop).
|
142
|
-
#
|
143
|
-
# In fact, this expression is only a nice wrapper that sets the
|
144
|
-
# value of the field "\_\_cursor_command__" to its name ('back' for example)
|
145
|
-
# plus to the 'step' attribute value.
|
146
|
-
#
|
147
|
-
# For example <skip step="3"/> simply sets the value of the field
|
148
|
-
# '\_\_cursor_command__' to 'skip 3'.
|
149
|
-
#
|
150
|
-
# (The field \_\_cursor_command__ is, by default, read and
|
151
|
-
# obeyed by the 'cursor' expression).
|
152
|
-
#
|
153
|
-
# With Ruby process definitions, you can directly write :
|
154
|
-
#
|
155
|
-
# skip 2
|
156
|
-
# jump "0"
|
157
|
-
#
|
158
|
-
# instead of
|
159
|
-
#
|
160
|
-
# skip :step => "2"
|
161
|
-
# jump :step => "0"
|
162
|
-
#
|
163
|
-
# Likewise, in an XML process definition, you can write
|
164
|
-
#
|
165
|
-
# <skip>2</skip>
|
166
|
-
#
|
167
|
-
# although that might still look lighter (it's longer though) :
|
168
|
-
#
|
169
|
-
# <skip step="2"/>
|
170
|
-
#
|
171
|
-
#
|
172
|
-
# About the command themselves :
|
173
|
-
#
|
174
|
-
# * back : will go back from the number of given steps, 1 by default
|
175
|
-
# * break : will exit the cursor (or the loop)
|
176
|
-
# * cancel : an alias for 'break'
|
177
|
-
# * continue : will exit the cursor, if in a loop, will get back at step 0
|
178
|
-
# * jump : will move the cursor (or loop) to an absolute given position (count starts at 0)
|
179
|
-
# * rewind : an alias for continue
|
180
|
-
# * skip : skips the given number of steps
|
181
|
-
#
|
182
|
-
#
|
183
|
-
# All those command support an 'if' attribute to restrict their execution :
|
184
|
-
#
|
185
|
-
# cursor do
|
186
|
-
# go_to_shop
|
187
|
-
# check_prices
|
188
|
-
# _break :if => "${price} > ${f:current_cash}"
|
189
|
-
# buy_stuff
|
190
|
-
# end
|
191
|
-
#
|
192
|
-
# The 'rif' attribute may be used instead of the 'if' attribute. Its value
|
193
|
-
# is some ruby code that, when evaluating to true will let the command
|
194
|
-
# be executed.
|
195
|
-
#
|
196
|
-
# _skip 2, :rif => "workitem.customers.size % 2 == 0"
|
197
|
-
# #
|
198
|
-
# # skips if the nb of customers is pair
|
199
|
-
#
|
200
|
-
# Note that the 'rif' attribute will work only if the
|
201
|
-
# <tt>:ruby_eval_allowed</tt> parameter is set to true in the engine's
|
202
|
-
# application context.
|
203
|
-
#
|
204
|
-
# engine.application_context[:ruby_eval_allowed] = true
|
205
|
-
#
|
206
|
-
class CursorCommandExpression < FlowExpression
|
207
|
-
include CommandConstants
|
208
|
-
include ConditionMixin
|
209
|
-
|
210
|
-
names :back, :skip, :continue, :break, :cancel, :rewind, :jump, :over
|
211
|
-
|
212
|
-
def apply (workitem)
|
213
|
-
|
214
|
-
conditional = eval_condition(:if, workitem, :unless)
|
215
|
-
#
|
216
|
-
# for example : <break if="${approved} == true"/>
|
217
|
-
|
218
|
-
if conditional == nil or conditional
|
219
|
-
|
220
|
-
command = @fei.expression_name
|
221
|
-
|
222
|
-
step = lookup_attribute(A_STEP, workitem)
|
223
|
-
step = fetch_text_content(workitem) unless step
|
224
|
-
step = 1 unless step
|
225
|
-
step = Integer(step)
|
226
|
-
|
227
|
-
command = "#{command} #{step}" #if step != 1
|
228
|
-
|
229
|
-
workitem.attributes[F_COMMAND] = command
|
230
|
-
end
|
231
|
-
|
232
|
-
reply_to_parent(workitem)
|
233
|
-
end
|
234
|
-
end
|
235
|
-
|
236
|
-
end
|
237
|
-
|
@@ -1,599 +0,0 @@
|
|
1
|
-
#--
|
2
|
-
# Copyright (c) 2006-2009, John Mettraux, jmettraux@gmail.com
|
3
|
-
#
|
4
|
-
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
5
|
-
# of this software and associated documentation files (the "Software"), to deal
|
6
|
-
# in the Software without restriction, including without limitation the rights
|
7
|
-
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
8
|
-
# copies of the Software, and to permit persons to whom the Software is
|
9
|
-
# furnished to do so, subject to the following conditions:
|
10
|
-
#
|
11
|
-
# The above copyright notice and this permission notice shall be included in
|
12
|
-
# all copies or substantial portions of the Software.
|
13
|
-
#
|
14
|
-
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
15
|
-
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
16
|
-
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
17
|
-
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
18
|
-
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
19
|
-
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
20
|
-
# THE SOFTWARE.
|
21
|
-
#
|
22
|
-
# Made in Japan.
|
23
|
-
#++
|
24
|
-
|
25
|
-
|
26
|
-
require 'openwfe/utils'
|
27
|
-
require 'openwfe/rudefinitions'
|
28
|
-
require 'openwfe/expressions/merge'
|
29
|
-
require 'openwfe/expressions/condition'
|
30
|
-
require 'openwfe/expressions/flowexpression'
|
31
|
-
require 'openwfe/expressions/iterator'
|
32
|
-
|
33
|
-
|
34
|
-
#
|
35
|
-
# base expressions like 'sequence' and 'concurrence'
|
36
|
-
#
|
37
|
-
|
38
|
-
module OpenWFE
|
39
|
-
|
40
|
-
#
|
41
|
-
# The concurrence expression will execute each of its (direct) children
|
42
|
-
# in parallel threads.
|
43
|
-
#
|
44
|
-
# Thus,
|
45
|
-
#
|
46
|
-
# <concurrence>
|
47
|
-
# <participant ref="pa" />
|
48
|
-
# <participant ref="pb" />
|
49
|
-
# </concurrence>
|
50
|
-
#
|
51
|
-
# Participants pa and pb will be 'treated' in parallel (quasi
|
52
|
-
# simultaneously).
|
53
|
-
#
|
54
|
-
# The concurrence expressions accept many attributes, that can get
|
55
|
-
# combined. By default, the concurrence waits for all its children to
|
56
|
-
# reply and returns the workitem of the first child that replied.
|
57
|
-
# The attributes tune this behaviour.
|
58
|
-
#
|
59
|
-
# <em>count</em>
|
60
|
-
#
|
61
|
-
# <concurrence count="1">
|
62
|
-
# <participant ref="pa" />
|
63
|
-
# <participant ref="pb" />
|
64
|
-
# </concurrence>
|
65
|
-
#
|
66
|
-
# The concurrence will be over as soon as 'pa' or 'pb' replied, i.e.
|
67
|
-
# as soon as "1" child replied.
|
68
|
-
#
|
69
|
-
# <em>remaining</em>
|
70
|
-
#
|
71
|
-
# The attribute 'remaining' can take two values 'cancel' (the default) and
|
72
|
-
# 'forget'.
|
73
|
-
# Cancelled children are completely wiped away, forgotten ones continue
|
74
|
-
# to operate but their reply will simply get discarded.
|
75
|
-
#
|
76
|
-
# <em>over-if</em>
|
77
|
-
#
|
78
|
-
# 'over-if' accepts a 'boolean expression' (something replying 'true' or
|
79
|
-
# 'false'), if the expression evaluates to true, the concurrence will be
|
80
|
-
# over and the remaining children will get cancelled (the default) or
|
81
|
-
# forgotten.
|
82
|
-
#
|
83
|
-
# <em>merge</em>
|
84
|
-
#
|
85
|
-
# By default, the first child to reply to its parent 'concurrence'
|
86
|
-
# expression 'wins', i.e. its workitem is used for resuming the flow (after
|
87
|
-
# the concurrence).
|
88
|
-
#
|
89
|
-
# [first] The default : the first child to reply wins
|
90
|
-
# [last] The last child to reply wins
|
91
|
-
# [highest] The first 'defined' child (in the list of children) will win
|
92
|
-
# [lowest] The last 'defined' child (in the list of children) will win
|
93
|
-
#
|
94
|
-
# Thus, in that example
|
95
|
-
#
|
96
|
-
# <concurrence merge="lowest">
|
97
|
-
# <participant ref="pa" />
|
98
|
-
# <participant ref="pb" />
|
99
|
-
# </concurrence>
|
100
|
-
#
|
101
|
-
# when the concurrence is done, the workitem of 'pb' is used to resume the
|
102
|
-
# flow after the concurrence.
|
103
|
-
#
|
104
|
-
# <em>merge-type</em>
|
105
|
-
#
|
106
|
-
# [override] The default : no mix of values between the workitems do occur
|
107
|
-
# [mix] Priority is given to the 'winning' workitem but their values
|
108
|
-
# get mixed
|
109
|
-
# [isolate] the attributes of the workitem of each branch is placed
|
110
|
-
# in a field in the resulting workitem. For example, the
|
111
|
-
# attributes of the first branch will be stored under the
|
112
|
-
# field named '0' of the resulting workitem.
|
113
|
-
#
|
114
|
-
# The merge occurs are the top level of workitem attributes.
|
115
|
-
#
|
116
|
-
# More complex merge behaviour can be obtained by extending the
|
117
|
-
# GenericSyncExpression class. But the default sync options are already
|
118
|
-
# numerous and powerful by their combinations.
|
119
|
-
#
|
120
|
-
class ConcurrenceExpression < SequenceExpression
|
121
|
-
include ConditionMixin
|
122
|
-
|
123
|
-
names :concurrence
|
124
|
-
|
125
|
-
attr_accessor :sync_expression
|
126
|
-
|
127
|
-
def apply (workitem)
|
128
|
-
|
129
|
-
extract_children # initializes the @children array
|
130
|
-
|
131
|
-
do_apply(workitem)
|
132
|
-
end
|
133
|
-
|
134
|
-
def reply (workitem)
|
135
|
-
|
136
|
-
@sync_expression.reply(self, workitem)
|
137
|
-
end
|
138
|
-
|
139
|
-
protected
|
140
|
-
|
141
|
-
def do_apply (workitem)
|
142
|
-
|
143
|
-
sync = lookup_sym_attribute(:sync, workitem, :default => :generic)
|
144
|
-
|
145
|
-
@sync_expression =
|
146
|
-
get_expression_map.get_sync_class(sync).new(self, workitem)
|
147
|
-
|
148
|
-
@children.each do |child|
|
149
|
-
@sync_expression.add_child(child)
|
150
|
-
end
|
151
|
-
|
152
|
-
store_itself
|
153
|
-
|
154
|
-
@children.each_with_index do |child, index|
|
155
|
-
|
156
|
-
get_expression_pool.apply(child, get_workitem(workitem, index))
|
157
|
-
end
|
158
|
-
|
159
|
-
reloaded_self, _fei = get_expression_pool.fetch(@fei)
|
160
|
-
reloaded_self.sync_expression.ready(reloaded_self)
|
161
|
-
end
|
162
|
-
|
163
|
-
def get_workitem (workitem, index)
|
164
|
-
|
165
|
-
workitem.dup
|
166
|
-
end
|
167
|
-
end
|
168
|
-
|
169
|
-
#
|
170
|
-
# This expression is a mix between a 'concurrence' and an 'iterator'.
|
171
|
-
# It understands the same attributes and behaves as an interator that
|
172
|
-
# forks its children concurrently.
|
173
|
-
#
|
174
|
-
# Some examples :
|
175
|
-
#
|
176
|
-
# <concurrent-iterator on-value="sales, logistics, lob2" to-field="p">
|
177
|
-
# <participant field-ref="p" />
|
178
|
-
# </concurrent-iterator>
|
179
|
-
#
|
180
|
-
# Within a Ruby process definition :
|
181
|
-
#
|
182
|
-
# sequence do
|
183
|
-
# set :field => f, :value => %w{ Alan, Bob, Clarence }
|
184
|
-
# #...
|
185
|
-
# concurrent_iterator :on_field => "f", :to_field => "p" do
|
186
|
-
# participant "${p}"
|
187
|
-
# end
|
188
|
-
# end
|
189
|
-
#
|
190
|
-
class ConcurrentIteratorExpression < ConcurrenceExpression
|
191
|
-
|
192
|
-
names :concurrent_iterator
|
193
|
-
|
194
|
-
def apply (workitem)
|
195
|
-
|
196
|
-
return reply_to_parent(workitem) if has_no_expression_child
|
197
|
-
|
198
|
-
@workitems = []
|
199
|
-
|
200
|
-
iterator = Iterator.new(self, workitem)
|
201
|
-
|
202
|
-
return reply_to_parent(workitem) \
|
203
|
-
unless iterator.has_next?
|
204
|
-
|
205
|
-
while iterator.has_next?
|
206
|
-
|
207
|
-
wi = workitem.dup
|
208
|
-
vars = iterator.next(wi)
|
209
|
-
@workitems << wi
|
210
|
-
|
211
|
-
get_expression_pool.tprepare_child(
|
212
|
-
self,
|
213
|
-
raw_children.first,
|
214
|
-
iterator.index,
|
215
|
-
:register_child => true,
|
216
|
-
:dont_store_parent => true,
|
217
|
-
:variables => vars)
|
218
|
-
end
|
219
|
-
|
220
|
-
store_itself
|
221
|
-
|
222
|
-
do_apply(workitem)
|
223
|
-
end
|
224
|
-
|
225
|
-
protected
|
226
|
-
|
227
|
-
def get_workitem (wi, index)
|
228
|
-
|
229
|
-
@workitems[index]
|
230
|
-
end
|
231
|
-
end
|
232
|
-
|
233
|
-
#
|
234
|
-
# A base for sync expressions, currently empty.
|
235
|
-
# That may change.
|
236
|
-
#
|
237
|
-
class SyncExpression < ObjectWithMeta
|
238
|
-
|
239
|
-
def initialize
|
240
|
-
|
241
|
-
super
|
242
|
-
end
|
243
|
-
|
244
|
-
def self.names (*exp_names)
|
245
|
-
|
246
|
-
exp_names = exp_names.collect do |n|
|
247
|
-
n.to_s
|
248
|
-
end
|
249
|
-
meta_def :expression_names do
|
250
|
-
exp_names
|
251
|
-
end
|
252
|
-
end
|
253
|
-
end
|
254
|
-
|
255
|
-
#
|
256
|
-
# The classical OpenWFE sync expression.
|
257
|
-
# Used by 'concurrence' and 'concurrent-iterator'
|
258
|
-
#
|
259
|
-
class GenericSyncExpression < SyncExpression
|
260
|
-
|
261
|
-
names :generic
|
262
|
-
|
263
|
-
attr_accessor \
|
264
|
-
:remaining_children,
|
265
|
-
:count,
|
266
|
-
:reply_count,
|
267
|
-
:cancel_remaining,
|
268
|
-
:unready_queue
|
269
|
-
|
270
|
-
def initialize (synchable, workitem)
|
271
|
-
|
272
|
-
super()
|
273
|
-
|
274
|
-
@remaining_children = []
|
275
|
-
@reply_count = 0
|
276
|
-
|
277
|
-
@count = determine_count(synchable, workitem)
|
278
|
-
@cancel_remaining = cancel_remaining?(synchable, workitem)
|
279
|
-
|
280
|
-
merge = synchable.lookup_sym_attribute(
|
281
|
-
:merge, workitem, :default => :first)
|
282
|
-
|
283
|
-
merge_type = synchable.lookup_sym_attribute(
|
284
|
-
:merge_type, workitem, :default => :mix)
|
285
|
-
|
286
|
-
synchable.ldebug { "new() merge_type is '#{merge_type}'" }
|
287
|
-
|
288
|
-
@merge_array = MergeArray.new synchable.fei, merge, merge_type
|
289
|
-
|
290
|
-
@unready_queue = []
|
291
|
-
end
|
292
|
-
|
293
|
-
#
|
294
|
-
# when all the children got applied concurrently, the concurrence
|
295
|
-
# calls this method to notify the sync expression that replies
|
296
|
-
# can be processed
|
297
|
-
#
|
298
|
-
def ready (synchable)
|
299
|
-
|
300
|
-
synchable.ldebug do
|
301
|
-
"ready() called by #{synchable.fei.to_debug_s} " +
|
302
|
-
"#{@unready_queue.length} wi waiting"
|
303
|
-
end
|
304
|
-
|
305
|
-
queue = @unready_queue
|
306
|
-
@unready_queue = nil
|
307
|
-
synchable.store_itself
|
308
|
-
|
309
|
-
queue.each { |workitem| break if do_reply(synchable, workitem) }
|
310
|
-
#
|
311
|
-
# do_reply() will return 'true' as soon as the
|
312
|
-
# concurrence is over, if this is the case, the
|
313
|
-
# queue should not be treated anymore
|
314
|
-
end
|
315
|
-
|
316
|
-
def add_child (child)
|
317
|
-
|
318
|
-
@remaining_children << child
|
319
|
-
end
|
320
|
-
|
321
|
-
def reply (synchable, workitem)
|
322
|
-
|
323
|
-
if @unready_queue
|
324
|
-
|
325
|
-
@unready_queue << workitem
|
326
|
-
|
327
|
-
synchable.store_itself
|
328
|
-
|
329
|
-
synchable.ldebug do
|
330
|
-
"#{self.class}.reply() "+
|
331
|
-
"#{@unready_queue.length} wi waiting..."
|
332
|
-
end
|
333
|
-
|
334
|
-
else
|
335
|
-
|
336
|
-
do_reply(synchable, workitem)
|
337
|
-
end
|
338
|
-
end
|
339
|
-
|
340
|
-
protected
|
341
|
-
|
342
|
-
def do_reply (synchable, workitem)
|
343
|
-
|
344
|
-
synchable.ldebug do
|
345
|
-
"#{self.class}.do_reply() from " +
|
346
|
-
"#{workitem.last_expression_id.to_debug_s}"
|
347
|
-
end
|
348
|
-
|
349
|
-
@merge_array.push(synchable, workitem)
|
350
|
-
|
351
|
-
@reply_count = @reply_count + 1
|
352
|
-
|
353
|
-
@remaining_children.delete(workitem.last_expression_id)
|
354
|
-
|
355
|
-
if @over #over
|
356
|
-
#
|
357
|
-
# sync is over, don't determine it again
|
358
|
-
#
|
359
|
-
synchable.store_itself
|
360
|
-
return true
|
361
|
-
end
|
362
|
-
|
363
|
-
if @remaining_children.length <= 0
|
364
|
-
|
365
|
-
reply_to_parent(synchable)
|
366
|
-
return true
|
367
|
-
end
|
368
|
-
|
369
|
-
if @count > 0 and @reply_count >= @count
|
370
|
-
|
371
|
-
@over = true
|
372
|
-
synchable.store_itself
|
373
|
-
|
374
|
-
#treat_remaining_children(synchable)
|
375
|
-
synchable.get_workqueue.push(
|
376
|
-
self, :treat_remaining_children, synchable)
|
377
|
-
|
378
|
-
return true
|
379
|
-
end
|
380
|
-
|
381
|
-
#
|
382
|
-
# over-if
|
383
|
-
|
384
|
-
if synchable.eval_condition('over-if', workitem, 'over-unless')
|
385
|
-
|
386
|
-
@over = true
|
387
|
-
synchable.store_itself
|
388
|
-
|
389
|
-
#treat_remaining_children(synchable)
|
390
|
-
synchable.get_workqueue.push(
|
391
|
-
self, :treat_remaining_children, synchable)
|
392
|
-
|
393
|
-
return true
|
394
|
-
end
|
395
|
-
|
396
|
-
#
|
397
|
-
# not over, resuming
|
398
|
-
|
399
|
-
synchable.store_itself
|
400
|
-
|
401
|
-
false
|
402
|
-
end
|
403
|
-
|
404
|
-
def reply_to_parent (synchable)
|
405
|
-
|
406
|
-
workitem = @merge_array.do_merge
|
407
|
-
|
408
|
-
synchable.reply_to_parent(workitem)
|
409
|
-
end
|
410
|
-
|
411
|
-
def treat_remaining_children (synchable)
|
412
|
-
|
413
|
-
@remaining_children.each do |child|
|
414
|
-
|
415
|
-
synchable.ldebug do
|
416
|
-
"#{self.class}.treat_remainining_children() " +
|
417
|
-
"#{child.to_debug_s} " +
|
418
|
-
"(cancel ? #{@cancel_remaining})"
|
419
|
-
end
|
420
|
-
|
421
|
-
if @cancel_remaining
|
422
|
-
synchable.get_expression_pool.cancel(child)
|
423
|
-
else
|
424
|
-
synchable.get_expression_pool.forget(synchable, child)
|
425
|
-
end
|
426
|
-
end
|
427
|
-
|
428
|
-
reply_to_parent(synchable)
|
429
|
-
end
|
430
|
-
|
431
|
-
def cancel_remaining? (synchable_expression, workitem)
|
432
|
-
|
433
|
-
s = synchable_expression.lookup_sym_attribute(
|
434
|
-
:remaining, workitem, :default => :cancel)
|
435
|
-
|
436
|
-
(s == :cancel)
|
437
|
-
end
|
438
|
-
|
439
|
-
def determine_count (synchable_expression, workitem)
|
440
|
-
|
441
|
-
c = synchable_expression.lookup_attribute(:count, workitem)
|
442
|
-
return -1 if not c
|
443
|
-
i = c.to_i
|
444
|
-
i < 1 ? -1 : i
|
445
|
-
end
|
446
|
-
|
447
|
-
#
|
448
|
-
# This inner class is used to gather workitems (via push()) before
|
449
|
-
# the final merge
|
450
|
-
# This final merge is triggered by calling the do_merge() method
|
451
|
-
# which will return the resulting, merged workitem.
|
452
|
-
#
|
453
|
-
class MergeArray
|
454
|
-
include MergeMixin
|
455
|
-
|
456
|
-
attr_accessor \
|
457
|
-
:synchable_fei,
|
458
|
-
:workitem,
|
459
|
-
:workitems_by_arrival,
|
460
|
-
:workitems_by_altitude,
|
461
|
-
:merge,
|
462
|
-
:merge_type
|
463
|
-
|
464
|
-
def initialize (synchable_fei, merge, merge_type)
|
465
|
-
|
466
|
-
@synchable_fei = synchable_fei
|
467
|
-
|
468
|
-
@merge = merge
|
469
|
-
@merge_type = merge_type
|
470
|
-
|
471
|
-
ensure_merge_settings
|
472
|
-
|
473
|
-
@workitem = nil
|
474
|
-
|
475
|
-
if highest? or lowest?
|
476
|
-
@workitems_by_arrival = []
|
477
|
-
@workitems_by_altitude = []
|
478
|
-
end
|
479
|
-
end
|
480
|
-
|
481
|
-
def push (synchable, wi)
|
482
|
-
|
483
|
-
if isolate?
|
484
|
-
push_in_isolation(wi)
|
485
|
-
elsif last? or first?
|
486
|
-
push_by_position(wi)
|
487
|
-
else
|
488
|
-
push_by_arrival(wi)
|
489
|
-
end
|
490
|
-
end
|
491
|
-
|
492
|
-
def push_by_position (wi)
|
493
|
-
|
494
|
-
source, target = if first?
|
495
|
-
[ @workitem, wi ]
|
496
|
-
else
|
497
|
-
[ wi, @workitem ]
|
498
|
-
end
|
499
|
-
@workitem = merge_workitems(target, source, override?)
|
500
|
-
end
|
501
|
-
|
502
|
-
def push_in_isolation (wi)
|
503
|
-
|
504
|
-
unless @workitem
|
505
|
-
@workitem = wi.dup
|
506
|
-
att = @workitem.attributes
|
507
|
-
@workitem.attributes = {}
|
508
|
-
end
|
509
|
-
|
510
|
-
key = get_child_id(wi)
|
511
|
-
|
512
|
-
@workitem.attributes[key.to_s] = OpenWFE.fulldup(wi.attributes)
|
513
|
-
end
|
514
|
-
|
515
|
-
def push_by_arrival (wi)
|
516
|
-
|
517
|
-
#index = synchable.children.index wi.last_expression_id
|
518
|
-
#index = Integer(wi.last_expression_id.child_id)
|
519
|
-
index = Integer(get_child_id(wi))
|
520
|
-
|
521
|
-
@workitems_by_arrival << wi
|
522
|
-
@workitems_by_altitude[index] = wi
|
523
|
-
end
|
524
|
-
|
525
|
-
#
|
526
|
-
# merges the workitems stored here
|
527
|
-
#
|
528
|
-
def do_merge
|
529
|
-
|
530
|
-
return @workitem if @workitem
|
531
|
-
|
532
|
-
list = if first?
|
533
|
-
@workitems_by_arrival.reverse
|
534
|
-
elsif last?
|
535
|
-
@workitems_by_arrival
|
536
|
-
elsif highest?
|
537
|
-
@workitems_by_altitude.reverse
|
538
|
-
elsif lowest?
|
539
|
-
@workitems_by_altitude
|
540
|
-
end
|
541
|
-
|
542
|
-
list.inject(nil) do |result, wi|
|
543
|
-
result = merge_workitems(result, wi, override?) if wi
|
544
|
-
result
|
545
|
-
end
|
546
|
-
end
|
547
|
-
|
548
|
-
protected
|
549
|
-
|
550
|
-
def first?
|
551
|
-
@merge == :first
|
552
|
-
end
|
553
|
-
def last?
|
554
|
-
@merge == :last
|
555
|
-
end
|
556
|
-
def highest?
|
557
|
-
@merge == :highest
|
558
|
-
end
|
559
|
-
def lowest?
|
560
|
-
@merge == :lowest
|
561
|
-
end
|
562
|
-
|
563
|
-
def mix?
|
564
|
-
@merge_type == :mix
|
565
|
-
end
|
566
|
-
def override?
|
567
|
-
@merge_type == :override
|
568
|
-
end
|
569
|
-
def isolate?
|
570
|
-
@merge_type == :isolate
|
571
|
-
end
|
572
|
-
|
573
|
-
#
|
574
|
-
# Returns the child id of the expression that just
|
575
|
-
# replied with the given workitem.
|
576
|
-
#
|
577
|
-
def get_child_id (workitem)
|
578
|
-
|
579
|
-
return workitem.fei.child_id \
|
580
|
-
if workitem.fei.wfid == @synchable_fei.wfid
|
581
|
-
|
582
|
-
workitem.fei.last_sub_instance_id
|
583
|
-
end
|
584
|
-
|
585
|
-
#
|
586
|
-
# Making sure @merge and @merge_type are set to
|
587
|
-
# appropriate values.
|
588
|
-
#
|
589
|
-
def ensure_merge_settings
|
590
|
-
|
591
|
-
@merge_type = :mix unless override? or isolate?
|
592
|
-
@merge = :first unless last? or highest? or lowest?
|
593
|
-
end
|
594
|
-
end
|
595
|
-
|
596
|
-
end
|
597
|
-
|
598
|
-
end
|
599
|
-
|