ruote 0.9.19 → 0.9.20
Sign up to get free protection for your applications and to get access to all the features.
- data/README.txt +16 -6
- data/examples/engine_template.rb +6 -43
- data/examples/quickstart.rb +87 -0
- data/examples/quotereporter.rb +42 -49
- data/examples/simple.rb +56 -0
- data/lib/openwfe.rb +20 -34
- data/lib/openwfe/contextual.rb +45 -36
- data/lib/openwfe/def.rb +21 -30
- data/lib/openwfe/engine.rb +17 -26
- data/lib/openwfe/engine/engine.rb +132 -397
- data/lib/openwfe/engine/expool_methods.rb +34 -122
- data/lib/openwfe/engine/file_persisted_engine.rb +39 -60
- data/lib/openwfe/engine/fs_engine.rb +54 -0
- data/lib/openwfe/engine/launch_methods.rb +245 -0
- data/lib/openwfe/engine/listener_methods.rb +128 -0
- data/lib/openwfe/engine/lookup_methods.rb +156 -0
- data/lib/openwfe/engine/participant_methods.rb +60 -52
- data/lib/openwfe/engine/status_methods.rb +102 -97
- data/lib/openwfe/engine/tc_engine.rb +55 -0
- data/lib/openwfe/engine/tt_engine.rb +55 -0
- data/lib/openwfe/engine/update_exp_methods.rb +46 -39
- data/lib/openwfe/expool/def_parser.rb +196 -0
- data/lib/openwfe/expool/errorjournal.rb +51 -219
- data/lib/openwfe/expool/errors.rb +69 -0
- data/lib/openwfe/expool/expool_pause_methods.rb +32 -43
- data/lib/openwfe/expool/expressionpool.rb +398 -594
- data/lib/openwfe/expool/expstorage.rb +68 -72
- data/lib/openwfe/expool/fs_expstorage.rb +302 -0
- data/lib/openwfe/expool/history.rb +54 -38
- data/lib/openwfe/expool/journal.rb +24 -38
- data/lib/openwfe/expool/journal_replay.rb +20 -36
- data/lib/openwfe/expool/representation.rb +62 -78
- data/lib/openwfe/expool/tc_expstorage.rb +239 -0
- data/lib/openwfe/expool/{threadedexpstorage.rb → threaded_expstorage.rb} +25 -53
- data/lib/openwfe/expool/tt_expstorage.rb +55 -0
- data/lib/openwfe/expool/wfidgen.rb +23 -43
- data/lib/openwfe/expool/yaml_errorjournal.rb +187 -0
- data/lib/openwfe/expressions/condition.rb +33 -58
- data/lib/openwfe/expressions/environment.rb +62 -76
- data/lib/openwfe/expressions/{expressionmap.rb → expression_map.rb} +40 -54
- data/lib/openwfe/expressions/expression_tree.rb +265 -0
- data/lib/openwfe/expressions/fe_cancel.rb +19 -39
- data/lib/openwfe/expressions/fe_command.rb +80 -84
- data/lib/openwfe/expressions/fe_concurrence.rb +250 -313
- data/lib/openwfe/expressions/fe_cron.rb +38 -55
- data/lib/openwfe/expressions/fe_cursor.rb +49 -74
- data/lib/openwfe/expressions/fe_define.rb +44 -90
- data/lib/openwfe/expressions/fe_do.rb +83 -70
- data/lib/openwfe/expressions/fe_equals.rb +17 -35
- data/lib/openwfe/expressions/fe_error.rb +103 -0
- data/lib/openwfe/expressions/fe_filter.rb +27 -44
- data/lib/openwfe/expressions/fe_filter_definition.rb +37 -54
- data/lib/openwfe/expressions/fe_fqv.rb +46 -65
- data/lib/openwfe/expressions/fe_http.rb +17 -31
- data/lib/openwfe/expressions/fe_if.rb +39 -55
- data/lib/openwfe/expressions/fe_iterator.rb +25 -42
- data/lib/openwfe/expressions/fe_listen.rb +71 -115
- data/lib/openwfe/expressions/fe_losfor.rb +34 -43
- data/lib/openwfe/expressions/fe_misc.rb +70 -109
- data/lib/openwfe/expressions/fe_participant.rb +61 -99
- data/lib/openwfe/expressions/fe_reserve.rb +28 -59
- data/lib/openwfe/expressions/fe_save.rb +62 -81
- data/lib/openwfe/expressions/fe_sequence.rb +45 -70
- data/lib/openwfe/expressions/fe_set.rb +22 -40
- data/lib/openwfe/expressions/fe_step.rb +22 -37
- data/lib/openwfe/expressions/fe_subprocess.rb +34 -55
- data/lib/openwfe/expressions/fe_timeout.rb +28 -44
- data/lib/openwfe/expressions/fe_wait.rb +142 -36
- data/lib/openwfe/expressions/fe_when.rb +22 -46
- data/lib/openwfe/expressions/filter.rb +24 -43
- data/lib/openwfe/expressions/flowexpression.rb +211 -192
- data/lib/openwfe/expressions/iterator.rb +24 -39
- data/lib/openwfe/expressions/merge.rb +30 -52
- data/lib/openwfe/expressions/raw.rb +168 -384
- data/lib/openwfe/expressions/rprocdef.rb +79 -76
- data/lib/openwfe/expressions/time.rb +89 -103
- data/lib/openwfe/expressions/timeout.rb +98 -92
- data/lib/openwfe/expressions/value.rb +43 -69
- data/lib/openwfe/extras/engine/ar_engine.rb +58 -0
- data/lib/openwfe/extras/engine/db_persisted_engine.rb +37 -57
- data/lib/openwfe/extras/engine/dm_engine.rb +59 -0
- data/lib/openwfe/extras/expool/ar_expstorage.rb +337 -0
- data/lib/openwfe/extras/expool/db_errorjournal.rb +165 -0
- data/lib/openwfe/extras/expool/db_expstorage.rb +73 -0
- data/lib/openwfe/extras/expool/db_history.rb +163 -0
- data/lib/openwfe/extras/expool/dm_expstorage.rb +327 -0
- data/lib/openwfe/extras/listeners/jabber_listeners.rb +102 -0
- data/lib/openwfe/extras/listeners/jabberlisteners.rb +26 -0
- data/lib/openwfe/extras/listeners/sqs_listeners.rb +128 -0
- data/lib/openwfe/extras/misc/activityfeed.rb +19 -34
- data/lib/openwfe/extras/misc/jabber_common.rb +122 -0
- data/lib/openwfe/extras/participants/active_participants.rb +724 -0
- data/lib/openwfe/extras/participants/active_resource_participants.rb +213 -0
- data/lib/openwfe/extras/participants/activeparticipants.rb +1 -747
- data/lib/openwfe/extras/participants/ar_participants.rb +285 -0
- data/lib/openwfe/extras/participants/atomfeed_participants.rb +19 -34
- data/lib/openwfe/extras/participants/atompub_participants.rb +19 -34
- data/lib/openwfe/extras/participants/basecamp_participants.rb +17 -31
- data/lib/openwfe/extras/participants/{csvparticipants.rb → decision_participants.rb} +17 -31
- data/lib/openwfe/extras/participants/jabber_participants.rb +147 -0
- data/lib/openwfe/extras/participants/jabberparticipants.rb +3 -0
- data/lib/openwfe/extras/participants/sqs_participants.rb +108 -0
- data/lib/openwfe/extras/participants/{twitterparticipants.rb → twitter_participants.rb} +20 -34
- data/lib/openwfe/extras/singlecon.rb +56 -0
- data/lib/openwfe/filterdef.rb +83 -65
- data/lib/openwfe/flowexpressionid.rb +99 -62
- data/lib/openwfe/listeners/listener.rb +54 -65
- data/lib/openwfe/listeners/listeners.rb +52 -56
- data/lib/openwfe/logging.rb +17 -31
- data/lib/openwfe/omixins.rb +25 -58
- data/lib/openwfe/participants.rb +1 -34
- data/lib/openwfe/participants/{enoparticipants.rb → mail_participants.rb} +33 -47
- data/lib/openwfe/participants/participant.rb +37 -36
- data/lib/openwfe/participants/participant_map.rb +245 -0
- data/lib/openwfe/participants/participants.rb +43 -69
- data/lib/openwfe/participants/{soapparticipants.rb → soap_participants.rb} +22 -36
- data/lib/openwfe/participants/{storeparticipants.rb → store_participants.rb} +57 -62
- data/lib/openwfe/{storage/yamlfilestorage.rb → participants/yaml_filestorage.rb} +35 -64
- data/lib/openwfe/representations.rb +770 -0
- data/lib/openwfe/rudefinitions.rb +17 -29
- data/lib/openwfe/service.rb +21 -32
- data/lib/openwfe/tools/flowtracer.rb +21 -35
- data/lib/openwfe/util/dollar.rb +48 -61
- data/lib/openwfe/util/irb.rb +19 -34
- data/lib/openwfe/util/json.rb +55 -0
- data/lib/openwfe/util/observable.rb +22 -41
- data/lib/openwfe/util/ometa.rb +21 -35
- data/lib/openwfe/util/treechecker.rb +17 -31
- data/lib/openwfe/util/workqueue.rb +45 -44
- data/lib/openwfe/util/xml.rb +80 -234
- data/lib/openwfe/utils.rb +67 -110
- data/lib/openwfe/version.rb +19 -27
- data/lib/openwfe/workitem.rb +119 -84
- data/lib/openwfe/worklist/storelocks.rb +17 -33
- data/lib/openwfe/worklist/storeparticipant.rb +1 -39
- data/lib/openwfe/worklist/worklist.rb +17 -31
- data/lib/pooltool.ru +311 -0
- data/test/{extras/active_connection.rb → ar_test_connection.rb} +26 -11
- data/test/bm/fatxml.rb +70 -0
- data/test/bm/load_26c.rb +79 -0
- data/test/dm_test_connection.rb +11 -0
- data/test/extras/base.rb +3 -0
- data/test/extras/et_0_sqs.rb +37 -0
- data/test/extras/et_jabber_test.rb +226 -0
- data/test/extras/test.rb +16 -0
- data/test/functional/base.rb +198 -0
- data/test/functional/db_ft_0_ar_participants.rb +136 -0
- data/test/functional/eft_0_process_definition.rb +34 -0
- data/test/functional/eft_10_unset.rb +60 -0
- data/test/functional/eft_11_sleep.rb +95 -0
- data/test/functional/eft_12_wait.rb +57 -0
- data/test/functional/eft_13_cursor.rb +139 -0
- data/test/functional/eft_14_loop.rb +36 -0
- data/test/functional/eft_15_undo.rb +77 -0
- data/test/functional/eft_16_redo.rb +88 -0
- data/test/functional/eft_1_print.rb +57 -0
- data/test/functional/eft_2_sequence.rb +47 -0
- data/test/functional/eft_3_equals.rb +98 -0
- data/test/functional/eft_4_if.rb +96 -0
- data/test/functional/eft_5_eval.rb +89 -0
- data/test/functional/eft_6_reval.rb +101 -0
- data/test/functional/eft_7_exp.rb +47 -0
- data/test/functional/eft_8_log.rb +50 -0
- data/test/functional/eft_9_set.rb +132 -0
- data/test/functional/engine_helper.rb +122 -0
- data/test/functional/ft_0_vars_at_launch.rb +27 -0
- data/test/functional/ft_1_process_status.rb +46 -0
- data/test/functional/ft_2_file_listener.rb +45 -0
- data/test/functional/ft_3_on_cancel.rb +171 -0
- data/test/functional/ft_4_on_error.rb +220 -0
- data/test/functional/ft_5_process_uri.rb +82 -0
- data/test/functional/ft_6_process_status.rb +62 -0
- data/test/functional/ft_7_parameters.rb +103 -0
- data/test/functional/ft_8_dollar.rb +53 -0
- data/test/functional/ft_9_register_participants.rb +119 -0
- data/test/functional/restart_base.rb +43 -0
- data/test/functional/rft_0_sleep.rb +76 -0
- data/test/functional/test.rb +24 -0
- data/test/path_helper.rb +12 -0
- data/test/test.rb +11 -1
- data/test/{rutest_utils.rb → test_helper.rb} +8 -31
- data/test/unit/test.rb +19 -0
- data/test/{fei_test.rb → unit/ut_0_fei.rb} +34 -49
- data/test/unit/ut_10_lookup_attribute.rb +86 -0
- data/test/unit/ut_11_filter.rb +124 -0
- data/test/{condition_test.rb → unit/ut_12_conditional.rb} +33 -40
- data/test/unit/ut_13_xmlutil.rb +57 -0
- data/test/unit/ut_14_var_field_lookup.rb +85 -0
- data/test/{fe_lookup_att_test.rb → unit/ut_15_fe_att_lookup.rb} +14 -21
- data/test/{storage_test.rb → unit/ut_16_expstorage_findexp.rb} +3 -9
- data/test/unit/ut_17_representations.rb +330 -0
- data/test/{hash_test.rb → unit/ut_17b_representations_hash.rb} +25 -21
- data/test/{slock_test.rb → unit/ut_18_store_lock.rb} +17 -20
- data/test/{wfid_test.rb → unit/ut_1_wfid.rb} +2 -73
- data/test/unit/ut_2_utils.rb +53 -0
- data/test/unit/ut_3_expmap.rb +65 -0
- data/test/{clone_test.rb → unit/ut_4_fulldup.rb} +41 -46
- data/test/{obs_test.rb → unit/ut_5_observable.rb} +9 -19
- data/test/unit/ut_6_treechecker.rb +101 -0
- data/test/unit/ut_7_parser_ruby.rb +344 -0
- data/test/unit/ut_7b_parser_ruby.rb +56 -0
- data/test/{description_test.rb → unit/ut_8_parser_description.rb} +8 -19
- data/test/unit/ut_9_workitem.rb +72 -0
- metadata +117 -234
- data/lib/openwfe/exceptions.rb +0 -51
- data/lib/openwfe/expool/parser.rb +0 -278
- data/lib/openwfe/expool/paused_error.rb +0 -77
- data/lib/openwfe/expool/yamlexpstorage.rb +0 -224
- data/lib/openwfe/expressions/fe_sleep.rb +0 -173
- data/lib/openwfe/extras/expool/dberrorjournal.rb +0 -189
- data/lib/openwfe/extras/expool/dbexpstorage.rb +0 -355
- data/lib/openwfe/extras/expool/dbhistory.rb +0 -135
- data/lib/openwfe/extras/listeners/sqslisteners.rb +0 -146
- data/lib/openwfe/extras/participants/sqsparticipants.rb +0 -125
- data/lib/openwfe/listeners/socketlisteners.rb +0 -272
- data/lib/openwfe/orest/definitions.rb +0 -113
- data/lib/openwfe/orest/osocket.rb +0 -148
- data/lib/openwfe/orest/xmlcodec.rb +0 -682
- data/lib/openwfe/participants/participantmap.rb +0 -249
- data/lib/openwfe/participants/socketparticipants.rb +0 -202
- data/lib/openwfe/storage/yamlcustom.rb +0 -106
- data/lib/openwfe/worklist/oldrest.rb +0 -244
- data/test/README.txt +0 -27
- data/test/back_0916_test.rb +0 -109
- data/test/bm/bm_1_xml_vs_prog.rb +0 -59
- data/test/bm/bm_2_step.rb +0 -109
- data/test/bm/ft_0f_5ms.rb +0 -35
- data/test/bm/ft_26_load.rb +0 -208
- data/test/bm/ft_26b_load.rb +0 -84
- data/test/bm/ft_26c_load.rb +0 -102
- data/test/bm/ft_recu.rb +0 -71
- data/test/concurrence_test.rb +0 -77
- data/test/console_test.rb +0 -12
- data/test/cron_ltest.rb +0 -15
- data/test/eno_test.rb +0 -76
- data/test/expmap_test.rb +0 -54
- data/test/expool_20031219_0916.tgz +0 -0
- data/test/extras/README.txt +0 -5
- data/test/extras/active_with_engine_test.rb +0 -140
- data/test/extras/activityfeed_test.rb +0 -85
- data/test/extras/ap_0_test.rb +0 -287
- data/test/extras/ap_1_test.rb +0 -53
- data/test/extras/ap_test_base.rb +0 -24
- data/test/extras/atomfeedp_test.rb +0 -113
- data/test/extras/atompubp_test.rb +0 -91
- data/test/extras/basecamp_test.rb +0 -53
- data/test/extras/db_errorjournal_utest.rb +0 -75
- data/test/extras/db_expstorage_utest.rb +0 -171
- data/test/extras/db_history_0_test.rb +0 -58
- data/test/extras/ft_19_csv.rb +0 -58
- data/test/extras/ft_71_b14008.rb +0 -85
- data/test/extras/sqs_test.rb +0 -57
- data/test/extras/twitter_test.rb +0 -62
- data/test/file_persisted_engine_test.rb +0 -64
- data/test/file_persistence_test.rb +0 -135
- data/test/filep_cancel_test.rb +0 -123
- data/test/filter_test.rb +0 -109
- data/test/flowtestbase.rb +0 -339
- data/test/ft_0.rb +0 -68
- data/test/ft_0b_sequence.rb +0 -36
- data/test/ft_0c_testname.rb +0 -33
- data/test/ft_0d_participant.rb +0 -30
- data/test/ft_0e_multibody.rb +0 -34
- data/test/ft_10_loop.rb +0 -133
- data/test/ft_11_ppd.rb +0 -411
- data/test/ft_11b_ppd.rb +0 -54
- data/test/ft_12_blockparticipant.rb +0 -97
- data/test/ft_13_eno.rb +0 -52
- data/test/ft_14_subprocess.rb +0 -88
- data/test/ft_14b_subprocess.rb +0 -192
- data/test/ft_14c_subprocess.rb +0 -68
- data/test/ft_15_iterator.rb +0 -216
- data/test/ft_15b_iterator.rb +0 -74
- data/test/ft_16_fqv.rb +0 -73
- data/test/ft_17_condition.rb +0 -84
- data/test/ft_18_pname.rb +0 -56
- data/test/ft_1_unset.rb +0 -175
- data/test/ft_1b_unset.rb +0 -39
- data/test/ft_20_cron.rb +0 -53
- data/test/ft_21_cron.rb +0 -87
- data/test/ft_21b_cron_pause.rb +0 -82
- data/test/ft_22_history.rb +0 -78
- data/test/ft_23_when.rb +0 -77
- data/test/ft_23b_when.rb +0 -70
- data/test/ft_23c_wait.rb +0 -80
- data/test/ft_23d_cww.rb +0 -58
- data/test/ft_24_def.rb +0 -44
- data/test/ft_25_cancel.rb +0 -92
- data/test/ft_27_getflowpos.rb +0 -143
- data/test/ft_28_fileparticipant.rb +0 -63
- data/test/ft_29_httprb.rb +0 -106
- data/test/ft_2_concurrence.rb +0 -137
- data/test/ft_2b_concurrence.rb +0 -188
- data/test/ft_2c_concurrence.rb +0 -64
- data/test/ft_30_socketlistener.rb +0 -203
- data/test/ft_31_flowname.rb +0 -39
- data/test/ft_32_journal.rb +0 -91
- data/test/ft_32c_journal.rb +0 -102
- data/test/ft_32d_journal.rb +0 -81
- data/test/ft_33_description.rb +0 -107
- data/test/ft_34_cancelwfid.rb +0 -80
- data/test/ft_35_localdefs.rb +0 -77
- data/test/ft_36_subprocids.rb +0 -97
- data/test/ft_37_pnames.rb +0 -70
- data/test/ft_38_tag.rb +0 -127
- data/test/ft_38b_tag.rb +0 -161
- data/test/ft_38c_tag.rb +0 -100
- data/test/ft_38d_tag.rb +0 -53
- data/test/ft_39_reserve.rb +0 -63
- data/test/ft_39b_reserve.rb +0 -84
- data/test/ft_3_equals.rb +0 -170
- data/test/ft_3b_lookup_vf.rb +0 -83
- data/test/ft_40_defined.rb +0 -61
- data/test/ft_41_case.rb +0 -110
- data/test/ft_42_environments.rb +0 -75
- data/test/ft_43_pat10.rb +0 -85
- data/test/ft_44_save.rb +0 -70
- data/test/ft_44b_restore.rb +0 -212
- data/test/ft_45_citerator.rb +0 -214
- data/test/ft_45b_citerator.rb +0 -77
- data/test/ft_46_pparams.rb +0 -62
- data/test/ft_47_filter.rb +0 -160
- data/test/ft_48_fe_filter.rb +0 -88
- data/test/ft_49_condition.rb +0 -133
- data/test/ft_4_misc.rb +0 -232
- data/test/ft_50_xml_attribute.rb +0 -152
- data/test/ft_51_stack.rb +0 -55
- data/test/ft_52_obs_participant.rb +0 -123
- data/test/ft_53_null_noop_participant.rb +0 -62
- data/test/ft_54_listen.rb +0 -288
- data/test/ft_54b_listen.rb +0 -66
- data/test/ft_54c_listen.rb +0 -99
- data/test/ft_55_ptimeout.rb +0 -58
- data/test/ft_56_timeout.rb +0 -59
- data/test/ft_57_a.rb +0 -148
- data/test/ft_58_ejournal.rb +0 -154
- data/test/ft_58b_ejournal.rb +0 -82
- data/test/ft_59_ps.rb +0 -212
- data/test/ft_5_time.rb +0 -118
- data/test/ft_60_ecancel.rb +0 -161
- data/test/ft_61_elsub.rb +0 -51
- data/test/ft_62_procparticipant.rb +0 -71
- data/test/ft_63_pause.rb +0 -137
- data/test/ft_64_alias.rb +0 -101
- data/test/ft_65_stringlaunch.rb +0 -59
- data/test/ft_66_subforget.rb +0 -70
- data/test/ft_67_schedlaunch.rb +0 -115
- data/test/ft_68_ifparticipant.rb +0 -70
- data/test/ft_69_cancelmissing.rb +0 -53
- data/test/ft_6_lambda.rb +0 -64
- data/test/ft_70_lookupvar.rb +0 -55
- data/test/ft_71_log.rb +0 -60
- data/test/ft_72_lookup_processes.rb +0 -79
- data/test/ft_73_cancel_sub.rb +0 -139
- data/test/ft_74_block_and_workitem_dup.rb +0 -63
- data/test/ft_75_ruby_attributes.rb +0 -89
- data/test/ft_76_merge_isolate.rb +0 -88
- data/test/ft_77_segments.rb +0 -35
- data/test/ft_78_eval.rb +0 -150
- data/test/ft_79_tticket.rb +0 -187
- data/test/ft_79b_tticket.rb +0 -172
- data/test/ft_79c_outcome.rb +0 -56
- data/test/ft_7_lose.rb +0 -104
- data/test/ft_7b_lose.rb +0 -78
- data/test/ft_80_spname.rb +0 -91
- data/test/ft_81_exp.rb +0 -60
- data/test/ft_82_trecu.rb +0 -52
- data/test/ft_83_badpause.rb +0 -58
- data/test/ft_84_updateexp.rb +0 -198
- data/test/ft_84b_subrepr.rb +0 -72
- data/test/ft_85_dolhash.rb +0 -43
- data/test/ft_86_dollar_fv.rb +0 -68
- data/test/ft_87_define.rb +0 -74
- data/test/ft_88_http.rb +0 -100
- data/test/ft_8_forget.rb +0 -44
- data/test/ft_9_cursor.rb +0 -154
- data/test/ft_9b_cursor.rb +0 -105
- data/test/ft_tests.rb +0 -130
- data/test/hparticipant_test.rb +0 -168
- data/test/lookup_att_test.rb +0 -90
- data/test/lookup_vf_test.rb +0 -94
- data/test/misc_test.rb +0 -94
- data/test/nut_0_irb.rb +0 -20
- data/test/param_test.rb +0 -290
- data/test/participant_test.rb +0 -101
- data/test/pending.rb +0 -23
- data/test/ps_representation.rb +0 -133
- data/test/rake_ltest.rb +0 -38
- data/test/rake_qtest.rb +0 -68
- data/test/raw_prog_test.rb +0 -407
- data/test/restart_cron_test.rb +0 -136
- data/test/restart_paused_test.rb +0 -103
- data/test/restart_sleep_test.rb +0 -140
- data/test/restart_tests.rb +0 -18
- data/test/restart_when_test.rb +0 -112
- data/test/ruby_procdef_test.rb +0 -132
- data/test/sec_test.rb +0 -206
- data/test/timeout_test.rb +0 -105
- data/test/treechecker_test.rb +0 -111
- data/test/util_xml_test.rb +0 -112
- data/test/wi_test.rb +0 -75
@@ -1,44 +1,27 @@
|
|
1
|
-
#
|
2
1
|
#--
|
3
|
-
# Copyright (c) 2006-
|
4
|
-
# All rights reserved.
|
5
|
-
#
|
6
|
-
# Redistribution and use in source and binary forms, with or without
|
7
|
-
# modification, are permitted provided that the following conditions are met:
|
2
|
+
# Copyright (c) 2006-2009, Nicolas Modryzk and John Mettraux, OpenWFE.org
|
8
3
|
#
|
9
|
-
#
|
10
|
-
#
|
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:
|
11
10
|
#
|
12
|
-
#
|
13
|
-
#
|
14
|
-
# and/or other materials provided with the distribution.
|
11
|
+
# The above copyright notice and this permission notice shall be included in
|
12
|
+
# all copies or substantial portions of the Software.
|
15
13
|
#
|
16
|
-
#
|
17
|
-
#
|
18
|
-
#
|
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.
|
19
21
|
#
|
20
|
-
#
|
21
|
-
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
22
|
-
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
23
|
-
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
24
|
-
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
25
|
-
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
26
|
-
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
27
|
-
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
28
|
-
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
29
|
-
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
30
|
-
# POSSIBILITY OF SUCH DAMAGE.
|
22
|
+
# Made in Japan.
|
31
23
|
#++
|
32
|
-
#
|
33
|
-
|
34
|
-
#
|
35
|
-
# "made in Japan"
|
36
|
-
#
|
37
|
-
# Nicolas Modrzyk at openwfe.org
|
38
|
-
# John Mettraux at openwfe.org
|
39
|
-
#
|
40
24
|
|
41
|
-
require 'fileutils'
|
42
25
|
|
43
26
|
require 'rufus/lru'
|
44
27
|
|
@@ -59,13 +42,13 @@ module OpenWFE
|
|
59
42
|
|
60
43
|
def observe_expool
|
61
44
|
|
45
|
+
return unless get_expression_pool
|
46
|
+
|
62
47
|
get_expression_pool.add_observer(:update) do |channel, fei, fe|
|
63
|
-
ldebug { ":update for #{fei}" }
|
64
48
|
self[fei] = fe
|
65
49
|
end
|
66
50
|
get_expression_pool.add_observer(:remove) do |channel, fei|
|
67
|
-
|
68
|
-
self.delete fei
|
51
|
+
self.delete(fei)
|
69
52
|
end
|
70
53
|
end
|
71
54
|
|
@@ -138,7 +121,7 @@ module OpenWFE
|
|
138
121
|
if wfrevision and fei.wfrevision != wfrevision
|
139
122
|
|
140
123
|
return false \
|
141
|
-
if cs and fei.sub_instance_id !=
|
124
|
+
if cs and fei.sub_instance_id != ''
|
142
125
|
return false \
|
143
126
|
if wfid and fei.wfid != wfid
|
144
127
|
return false \
|
@@ -202,8 +185,6 @@ module OpenWFE
|
|
202
185
|
|
203
186
|
@cache = LruHash.new(size)
|
204
187
|
|
205
|
-
@real_storage = nil
|
206
|
-
|
207
188
|
observe_expool
|
208
189
|
end
|
209
190
|
|
@@ -212,7 +193,7 @@ module OpenWFE
|
|
212
193
|
#ldebug { "[] size is #{@cache.size}" }
|
213
194
|
#ldebug { "[] (sz #{@cache.size}) for #{fei.to_debug_s}" }
|
214
195
|
|
215
|
-
fe = @cache[fei.
|
196
|
+
fe = @cache[fei.short_hash]
|
216
197
|
return fe if fe
|
217
198
|
|
218
199
|
#ldebug { "[] (reload) for #{fei.to_debug_s}" }
|
@@ -224,23 +205,23 @@ module OpenWFE
|
|
224
205
|
return nil
|
225
206
|
end
|
226
207
|
|
227
|
-
@cache[fei.
|
228
|
-
|
229
|
-
fe
|
208
|
+
@cache[fei.short_hash] = fe
|
230
209
|
end
|
231
210
|
|
232
211
|
def []= (fei, fe)
|
233
212
|
|
234
|
-
ldebug { "[]= caching #{fei}" }
|
235
|
-
|
236
|
-
@cache[fei.hash] = fe
|
213
|
+
#ldebug { "[]= caching #{fei}" }
|
214
|
+
@cache[fei.short_hash] = fe
|
237
215
|
end
|
238
216
|
|
239
217
|
def delete (fei)
|
240
218
|
|
241
|
-
@cache.delete
|
219
|
+
@cache.delete(fei.short_hash)
|
242
220
|
end
|
243
221
|
|
222
|
+
#
|
223
|
+
# returns the count of expressions currently cached here
|
224
|
+
#
|
244
225
|
def length
|
245
226
|
|
246
227
|
@cache.length
|
@@ -261,7 +242,9 @@ module OpenWFE
|
|
261
242
|
#
|
262
243
|
def find_expressions (options={})
|
263
244
|
|
264
|
-
|
245
|
+
options[:cache] = self
|
246
|
+
|
247
|
+
get_real_storage.find_expressions(options)
|
265
248
|
end
|
266
249
|
|
267
250
|
#
|
@@ -270,34 +253,39 @@ module OpenWFE
|
|
270
253
|
#
|
271
254
|
def fetch_root (wfid)
|
272
255
|
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
256
|
+
@cache.values.find { |fexp|
|
257
|
+
fexp.fei.wfid == wfid and fexp.is_a?(DefineExpression)
|
258
|
+
} || get_real_storage.fetch_root(wfid)
|
259
|
+
end
|
277
260
|
|
278
|
-
|
279
|
-
|
280
|
-
|
261
|
+
#
|
262
|
+
# Returns the expression corresponding to the fei if cached.
|
263
|
+
# Does not lookup in the underlying "real" storage (will therefore
|
264
|
+
# return nil if the expression is not cached.
|
265
|
+
#
|
266
|
+
def fetch (fei)
|
281
267
|
|
282
|
-
|
268
|
+
@cache[fei.short_hash]
|
283
269
|
end
|
284
270
|
|
285
271
|
protected
|
286
272
|
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
|
273
|
+
#
|
274
|
+
# Returns the "real storage" i.e. the storage that does the real
|
275
|
+
# persistence behind this "cache storage".
|
276
|
+
#
|
277
|
+
def get_real_storage
|
292
278
|
|
293
|
-
|
294
|
-
|
279
|
+
@application_context[:s_expression_storage__1]
|
280
|
+
end
|
295
281
|
end
|
296
282
|
|
297
283
|
#
|
298
|
-
#
|
284
|
+
# [memory consuming] in-memory storage.
|
299
285
|
# No memory limit, puts everything in a Hash
|
300
286
|
#
|
287
|
+
# USE ONLY FOR TESTS
|
288
|
+
#
|
301
289
|
class InMemoryExpressionStorage < Hash
|
302
290
|
include ServiceMixin
|
303
291
|
include OwfeServiceLocator
|
@@ -305,13 +293,25 @@ module OpenWFE
|
|
305
293
|
|
306
294
|
def initialize (service_name, application_context)
|
307
295
|
|
308
|
-
service_init
|
296
|
+
service_init(service_name, application_context)
|
309
297
|
|
310
298
|
observe_expool
|
311
299
|
end
|
312
300
|
|
313
301
|
alias :purge :clear
|
314
302
|
|
303
|
+
#--
|
304
|
+
#def [] (k)
|
305
|
+
# super(k.short_hash)
|
306
|
+
#end
|
307
|
+
#def []= (k, v)
|
308
|
+
# super(k.short_hash, v)
|
309
|
+
#end
|
310
|
+
#def delete (k)
|
311
|
+
# super(k.short_hash)
|
312
|
+
#end
|
313
|
+
#++
|
314
|
+
|
315
315
|
#
|
316
316
|
# Finds expressions matching the given criteria (returns a list
|
317
317
|
# of expressions).
|
@@ -353,9 +353,7 @@ module OpenWFE
|
|
353
353
|
#
|
354
354
|
def find_expressions (options={})
|
355
355
|
|
356
|
-
values.find_all
|
357
|
-
does_match? options, fexp
|
358
|
-
end
|
356
|
+
values.find_all { |fexp| does_match?(options, fexp) }
|
359
357
|
end
|
360
358
|
|
361
359
|
#
|
@@ -364,9 +362,7 @@ module OpenWFE
|
|
364
362
|
#
|
365
363
|
def fetch_root (wfid)
|
366
364
|
|
367
|
-
find_expressions(
|
368
|
-
:wfid => wfid,
|
369
|
-
:include_classes => DefineExpression)[0]
|
365
|
+
find_expressions(:wfid => wfid, :include_classes => DefineExpression)[0]
|
370
366
|
end
|
371
367
|
|
372
368
|
end
|
@@ -0,0 +1,302 @@
|
|
1
|
+
#--
|
2
|
+
# Copyright (c) 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 'fileutils'
|
27
|
+
require 'openwfe/expool/expstorage'
|
28
|
+
require 'openwfe/expool/threaded_expstorage'
|
29
|
+
|
30
|
+
|
31
|
+
module OpenWFE
|
32
|
+
|
33
|
+
#
|
34
|
+
# Stores the expressions (the pieces of process instances) in the file system.
|
35
|
+
#
|
36
|
+
# By default uses Ruby Marshalling. If the options :persist_as_yaml is set
|
37
|
+
# to true in the application context, YAML serialization will be used.
|
38
|
+
# YAML is more portable than Ruby Marshalling, but considerably slower.
|
39
|
+
#
|
40
|
+
# The default (Ruby Marshalling) is recommended. If you need to migrate from
|
41
|
+
# one version of Marshalling to the other, you can use work/pooltool.rb
|
42
|
+
# to migrate the whole set of expressions from one format to the other.
|
43
|
+
#
|
44
|
+
class FsExpressionStorage
|
45
|
+
include ServiceMixin
|
46
|
+
include OwfeServiceLocator
|
47
|
+
include ExpressionStorageBase
|
48
|
+
|
49
|
+
attr_accessor :persist_as_yaml, :suffix
|
50
|
+
attr_reader :basepath
|
51
|
+
|
52
|
+
def initialize (service_name, application_context)
|
53
|
+
|
54
|
+
service_init(service_name, application_context)
|
55
|
+
|
56
|
+
@basepath =
|
57
|
+
application_context[:expstorage_path] || get_work_directory + '/expool'
|
58
|
+
|
59
|
+
@persist_as_yaml = (application_context[:persist_as_yaml] == true)
|
60
|
+
@suffix = 'ruote'
|
61
|
+
|
62
|
+
observe_expool
|
63
|
+
end
|
64
|
+
|
65
|
+
#
|
66
|
+
# Stores an expression
|
67
|
+
#
|
68
|
+
def []= (fei, fexp)
|
69
|
+
|
70
|
+
d, fn = filename_for(fei)
|
71
|
+
|
72
|
+
FileUtils.mkdir_p(d) unless File.exist?(d)
|
73
|
+
|
74
|
+
File.open("#{d}/#{fn}", 'w') { |f| f.write(encode(fexp)) }
|
75
|
+
end
|
76
|
+
|
77
|
+
#
|
78
|
+
# Retrieves an expression
|
79
|
+
#
|
80
|
+
def [] (fei)
|
81
|
+
|
82
|
+
fexp = load_fexp(filename_for(fei, true))
|
83
|
+
fexp.application_context = @application_context if fexp
|
84
|
+
fexp
|
85
|
+
end
|
86
|
+
|
87
|
+
#
|
88
|
+
# Removes the expression from the storage
|
89
|
+
#
|
90
|
+
def delete (fei)
|
91
|
+
|
92
|
+
FileUtils.rm_f(filename_for(fei, true))
|
93
|
+
end
|
94
|
+
|
95
|
+
#
|
96
|
+
# Returns the count of expressions currently stored
|
97
|
+
#
|
98
|
+
def size
|
99
|
+
|
100
|
+
Dir["#{@basepath}/**/*.#{@suffix}"].size
|
101
|
+
end
|
102
|
+
|
103
|
+
#
|
104
|
+
# Finds expressions matching the given criteria (returns a list
|
105
|
+
# of expressions).
|
106
|
+
#
|
107
|
+
# This methods is called by the expression pool, it's thus not
|
108
|
+
# very "public" (not used directly by integrators, who should
|
109
|
+
# just focus on the methods provided by the Engine).
|
110
|
+
#
|
111
|
+
# :wfid ::
|
112
|
+
# will list only one process,
|
113
|
+
# <tt>:wfid => '20071208-gipijiwozo'</tt>
|
114
|
+
# :parent_wfid ::
|
115
|
+
# will list only one process, and its subprocesses,
|
116
|
+
# <tt>:parent_wfid => '20071208-gipijiwozo'</tt>
|
117
|
+
# :consider_subprocesses ::
|
118
|
+
# if true, "process-definition" expressions
|
119
|
+
# of subprocesses will be returned as well.
|
120
|
+
# :wfid_prefix ::
|
121
|
+
# allows your to query for specific workflow instance
|
122
|
+
# id prefixes. for example :
|
123
|
+
# <tt>:wfid_prefix => "200712"</tt>
|
124
|
+
# for the processes started in December.
|
125
|
+
# :include_classes ::
|
126
|
+
# excepts a class or an array of classes, only instances of these
|
127
|
+
# classes will be returned. Parent classes or mixins can be
|
128
|
+
# given.
|
129
|
+
# <tt>:includes_classes => OpenWFE::SequenceExpression</tt>
|
130
|
+
# :exclude_classes ::
|
131
|
+
# works as expected.
|
132
|
+
# :wfname ::
|
133
|
+
# will return only the expressions who belongs to the given
|
134
|
+
# workflow [name].
|
135
|
+
# :wfrevision ::
|
136
|
+
# usued in conjuction with :wfname, returns only the expressions
|
137
|
+
# with a given workflow revision.
|
138
|
+
# :applied ::
|
139
|
+
# if this option is set to true, will only return the expressions
|
140
|
+
# that have been applied (exp.apply_time != nil).
|
141
|
+
#
|
142
|
+
def find_expressions (options={})
|
143
|
+
|
144
|
+
dir = if wfid = options[:wfid]
|
145
|
+
dir_for(wfid)
|
146
|
+
else
|
147
|
+
"#{@basepath}/**" # brute force
|
148
|
+
end
|
149
|
+
|
150
|
+
Dir["#{dir}/*.#{@suffix}"].inject([]) do |a, path|
|
151
|
+
|
152
|
+
fexp = load_fexp(path)
|
153
|
+
|
154
|
+
if fexp and does_match?(options, fexp)
|
155
|
+
|
156
|
+
fexp.application_context = @application_context
|
157
|
+
a << fexp
|
158
|
+
end
|
159
|
+
|
160
|
+
a
|
161
|
+
end
|
162
|
+
end
|
163
|
+
|
164
|
+
#
|
165
|
+
# An iterator on ALL expressions in the storage (only used by pooltool.ru)
|
166
|
+
#
|
167
|
+
def each
|
168
|
+
|
169
|
+
return unless block_given?
|
170
|
+
|
171
|
+
Dir["#{@basepath}/**/*.#{@suffix}"].each do |path|
|
172
|
+
|
173
|
+
fexp = load_fexp(path)
|
174
|
+
|
175
|
+
yield(fexp.fei, fexp)
|
176
|
+
end
|
177
|
+
end
|
178
|
+
|
179
|
+
#
|
180
|
+
# Dangerous ! Nukes the whole work/expool/ dir
|
181
|
+
#
|
182
|
+
def purge
|
183
|
+
|
184
|
+
FileUtils.rm_f(@basepath)
|
185
|
+
end
|
186
|
+
|
187
|
+
#
|
188
|
+
# Fetches the root expression of a process instance
|
189
|
+
#
|
190
|
+
def fetch_root (wfid)
|
191
|
+
|
192
|
+
dir = dir_for(wfid)
|
193
|
+
|
194
|
+
fexps = Dir["#{dir}/*.#{@suffix}"].collect { |path| load_fexp(path) }
|
195
|
+
|
196
|
+
root = fexps.find { |fexp|
|
197
|
+
fexp.fei.expid == '0' &&
|
198
|
+
fexp.fei.sub_instance_id == '' &&
|
199
|
+
fexp.is_a?(OpenWFE::DefineExpression)
|
200
|
+
}
|
201
|
+
root.application_context = @application_context
|
202
|
+
root
|
203
|
+
end
|
204
|
+
|
205
|
+
#
|
206
|
+
# Called by pooltool.ru
|
207
|
+
#
|
208
|
+
def close
|
209
|
+
# nothing to do
|
210
|
+
end
|
211
|
+
|
212
|
+
protected
|
213
|
+
|
214
|
+
#
|
215
|
+
# Encodes the flow expression (if the options :yaml_persistence is set
|
216
|
+
# to true in the application context or via #yaml= will save as
|
217
|
+
# YAML)
|
218
|
+
#
|
219
|
+
def encode (fexp)
|
220
|
+
@persist_as_yaml ? fexp.to_yaml : Marshal.dump(fexp)
|
221
|
+
end
|
222
|
+
|
223
|
+
#
|
224
|
+
# Loads the flow expression at the given path
|
225
|
+
#
|
226
|
+
def load_fexp (path)
|
227
|
+
return nil unless File.exist?(path)
|
228
|
+
File.open(path, 'r') { |f| decode(f.read) }
|
229
|
+
end
|
230
|
+
|
231
|
+
#
|
232
|
+
# Decodes the content of a file (reads YAML or Marshall binary
|
233
|
+
# indifferently)
|
234
|
+
#
|
235
|
+
def decode (s)
|
236
|
+
s[0, 5] == '--- !' ? YAML.load(s) : Marshal.load(s)
|
237
|
+
end
|
238
|
+
|
239
|
+
#
|
240
|
+
# Returns the directory path for a given workflow instance id
|
241
|
+
#
|
242
|
+
def dir_for (wfid)
|
243
|
+
|
244
|
+
wfid = FlowExpressionId.to_parent_wfid(wfid)
|
245
|
+
a_wfid = get_wfid_generator.split_wfid(wfid)
|
246
|
+
|
247
|
+
"#{@basepath}/#{a_wfid[-2]}/#{a_wfid[-1]}"
|
248
|
+
end
|
249
|
+
|
250
|
+
#
|
251
|
+
# Returns the pair dir / filename for an expression.
|
252
|
+
# If the optional arg join is set to true, will return the full path
|
253
|
+
# for the expression
|
254
|
+
#
|
255
|
+
def filename_for (fei, join=false)
|
256
|
+
|
257
|
+
r = if fei.wfid == '0'
|
258
|
+
[ @basepath, "engine_environment.#{@suffix}" ]
|
259
|
+
else
|
260
|
+
[
|
261
|
+
dir_for(fei.wfid),
|
262
|
+
"#{fei.workflow_instance_id}__#{fei.expression_id}_#{fei.expression_name}.#{@suffix}"
|
263
|
+
]
|
264
|
+
end
|
265
|
+
|
266
|
+
join ? "#{r.first}/#{r.last}" : r
|
267
|
+
end
|
268
|
+
|
269
|
+
end
|
270
|
+
|
271
|
+
#
|
272
|
+
# YAML expression storage. Expressions (atomic pieces of process instances)
|
273
|
+
# are stored in a hierarchy of YAML files.
|
274
|
+
#
|
275
|
+
# DEPRECATED, use the plain FsExpressionStorage instead.
|
276
|
+
#
|
277
|
+
class YamlFileExpressionStorage < FsExpressionStorage
|
278
|
+
|
279
|
+
def initialize (service_name, application_context)
|
280
|
+
super
|
281
|
+
@persist_as_yaml = true
|
282
|
+
@suffix = 'yaml'
|
283
|
+
end
|
284
|
+
end
|
285
|
+
|
286
|
+
#
|
287
|
+
# With this extension of YmalFileExpressionStorage, persistence occurs
|
288
|
+
# in a separate thread, for a snappier response.
|
289
|
+
#
|
290
|
+
# Will probably get deprecated soon.
|
291
|
+
#
|
292
|
+
class ThreadedYamlFileExpressionStorage < YamlFileExpressionStorage
|
293
|
+
include ThreadedStorageMixin
|
294
|
+
|
295
|
+
def initialize (service_name, application_context)
|
296
|
+
super
|
297
|
+
start_queue
|
298
|
+
end
|
299
|
+
end
|
300
|
+
|
301
|
+
end
|
302
|
+
|