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
@@ -0,0 +1,196 @@
|
|
1
|
+
#--
|
2
|
+
# Copyright (c) 2008-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 'uri'
|
27
|
+
require 'yaml'
|
28
|
+
require 'openwfe/rexml'
|
29
|
+
require 'openwfe/service'
|
30
|
+
require 'openwfe/contextual'
|
31
|
+
require 'openwfe/util/treechecker'
|
32
|
+
require 'openwfe/util/xml'
|
33
|
+
require 'openwfe/util/json'
|
34
|
+
require 'openwfe/expressions/rprocdef'
|
35
|
+
require 'openwfe/expressions/expression_map'
|
36
|
+
|
37
|
+
require 'rufus/verbs' # sudo gem install 'rufus-verbs'
|
38
|
+
|
39
|
+
|
40
|
+
module OpenWFE
|
41
|
+
|
42
|
+
#
|
43
|
+
# A process definition parser.
|
44
|
+
#
|
45
|
+
# Currently supports XML, Ruby process definitions, YAML and JSON.
|
46
|
+
#
|
47
|
+
class DefParser < Service
|
48
|
+
include OwfeServiceLocator
|
49
|
+
|
50
|
+
#
|
51
|
+
# a static version of the parse method,
|
52
|
+
# by default checks the tree if it's Ruby code that is passed.
|
53
|
+
#
|
54
|
+
def self.parse (pdef, use_ruby_treechecker=true)
|
55
|
+
|
56
|
+
# preparing a small ad-hoc env (app context) for this parsing
|
57
|
+
|
58
|
+
ac = { :use_ruby_treechecker => use_ruby_treechecker }
|
59
|
+
|
60
|
+
ac[:s_tree_checker] = TreeChecker.new(:s_tree_checker, ac)
|
61
|
+
ac[:s_def_parser] = DefParser.new(:s_def_parser, ac)
|
62
|
+
ac[:s_expression_map] = ExpressionMap.new
|
63
|
+
|
64
|
+
ac[:s_def_parser].parse(pdef)
|
65
|
+
end
|
66
|
+
|
67
|
+
#
|
68
|
+
# the classical initialize() of Ruote services
|
69
|
+
#
|
70
|
+
def initialize (service_name, application_context)
|
71
|
+
super
|
72
|
+
end
|
73
|
+
|
74
|
+
#
|
75
|
+
# This is the only point in the expression pool where an URI
|
76
|
+
# is read, so this is where the :remote_definitions_allowed
|
77
|
+
# security check is enforced.
|
78
|
+
#
|
79
|
+
def read_uri (uri)
|
80
|
+
|
81
|
+
u = URI.parse(uri.to_s)
|
82
|
+
|
83
|
+
raise(':remote_definitions_allowed is set to false') \
|
84
|
+
if (ac[:remote_definitions_allowed] != true and
|
85
|
+
u.scheme and
|
86
|
+
u.scheme != 'file')
|
87
|
+
|
88
|
+
f = Rufus::Verbs.fopen(u) # Rufus::Verbs is OK with redirections
|
89
|
+
result = f.read
|
90
|
+
f.close if f.respond_to?(:close)
|
91
|
+
|
92
|
+
result
|
93
|
+
end
|
94
|
+
|
95
|
+
#
|
96
|
+
# Returns the tree representation into behind the param (uri, string, ...)
|
97
|
+
#
|
98
|
+
def determine_rep (param)
|
99
|
+
|
100
|
+
param = param.is_a?(URI) ? read_uri(param) : param
|
101
|
+
parse(param)
|
102
|
+
end
|
103
|
+
|
104
|
+
#
|
105
|
+
# in : a process pdefinition
|
106
|
+
# out : a tree [ name, attributes, children ]
|
107
|
+
#
|
108
|
+
def parse (pdef)
|
109
|
+
|
110
|
+
tree = case pdef
|
111
|
+
when Array then pdef
|
112
|
+
when String then parse_string(pdef)
|
113
|
+
when Class then pdef.do_make
|
114
|
+
when ProcessDefinition then pdef.do_make
|
115
|
+
when SimpleExpRepresentation then pdef.do_make # legacy...
|
116
|
+
else
|
117
|
+
raise "cannot handle pdefinition of class #{pdef.class.name}"
|
118
|
+
end
|
119
|
+
|
120
|
+
tree = [ 'define', { 'name' => 'NoName', 'revision' => '0' }, [ tree ] ] \
|
121
|
+
unless get_expression_map.is_definition?(tree.first)
|
122
|
+
#
|
123
|
+
# making sure the first expression in the tree is a DefineExpression
|
124
|
+
# (an alias for 'process-definition')
|
125
|
+
|
126
|
+
tree
|
127
|
+
end
|
128
|
+
|
129
|
+
X_START = /^</
|
130
|
+
Y_START = /^--- /
|
131
|
+
J_ARRAY = /^\[.*\]$/
|
132
|
+
#
|
133
|
+
# TODO : place that somewhere in utils/
|
134
|
+
|
135
|
+
def parse_string (pdef)
|
136
|
+
|
137
|
+
pdef = pdef.strip
|
138
|
+
|
139
|
+
return parse_xml(pdef) if pdef.match(X_START)
|
140
|
+
return YAML.load(pdef) if pdef.match(Y_START)
|
141
|
+
|
142
|
+
#(json = (OpenWFE::Json.from_json(pdef) rescue nil)) and return json
|
143
|
+
return OpenWFE::Json.from_json(pdef) if pdef.match(J_ARRAY)
|
144
|
+
|
145
|
+
#
|
146
|
+
# else it's some ruby code to eval
|
147
|
+
|
148
|
+
get_tree_checker.check(pdef)
|
149
|
+
|
150
|
+
# no exception, green for eval...
|
151
|
+
|
152
|
+
ProcessDefinition.eval_ruby_process_definition(pdef)
|
153
|
+
end
|
154
|
+
|
155
|
+
#
|
156
|
+
# The process definition is expressed as XML, turn that into
|
157
|
+
# an expression tree.
|
158
|
+
#
|
159
|
+
def parse_xml (xml)
|
160
|
+
|
161
|
+
xml = REXML::Document.new(xml) \
|
162
|
+
if xml.is_a?(String)
|
163
|
+
|
164
|
+
xml = xml.root \
|
165
|
+
if xml.is_a?(REXML::Document)
|
166
|
+
|
167
|
+
if xml.is_a?(REXML::Text)
|
168
|
+
|
169
|
+
s = xml.to_s.strip
|
170
|
+
|
171
|
+
return s if s.length > 0
|
172
|
+
|
173
|
+
return nil
|
174
|
+
end
|
175
|
+
|
176
|
+
return nil if xml.is_a?(REXML::Comment)
|
177
|
+
|
178
|
+
# then it's a REXML::Element
|
179
|
+
|
180
|
+
rep = [
|
181
|
+
xml.name,
|
182
|
+
xml.attributes.inject({}) { |r, (k, v)| r[k] = v; r },
|
183
|
+
[] ]
|
184
|
+
|
185
|
+
xml.children.each do |c|
|
186
|
+
|
187
|
+
r = parse_xml(c)
|
188
|
+
|
189
|
+
rep.last << r if r
|
190
|
+
end
|
191
|
+
|
192
|
+
rep
|
193
|
+
end
|
194
|
+
end
|
195
|
+
end
|
196
|
+
|
@@ -1,44 +1,27 @@
|
|
1
|
-
#
|
2
1
|
#--
|
3
|
-
# Copyright (c) 2007-
|
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) 2007-2009, John Mettraux, jmettraux@gmail.com
|
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
|
-
# John Mettraux at openwfe.org
|
38
|
-
#
|
39
24
|
|
40
|
-
require 'find'
|
41
|
-
require 'fileutils'
|
42
25
|
|
43
26
|
require 'openwfe/service'
|
44
27
|
require 'openwfe/omixins'
|
@@ -81,6 +64,8 @@ module OpenWFE
|
|
81
64
|
#
|
82
65
|
attr_reader :stacktrace
|
83
66
|
|
67
|
+
alias :backtrace :stacktrace
|
68
|
+
|
84
69
|
#
|
85
70
|
# The error class (String) of the top level error
|
86
71
|
#
|
@@ -132,7 +117,7 @@ module OpenWFE
|
|
132
117
|
# same error as this one.
|
133
118
|
#
|
134
119
|
def == (other)
|
135
|
-
return false unless other.is_a?(ProcessError)
|
120
|
+
return false unless other.is_a?(OpenWFE::ProcessError)
|
136
121
|
return to_s == other.to_s
|
137
122
|
#
|
138
123
|
# a bit costly but as it's only used by resume_process()...
|
@@ -145,6 +130,7 @@ module OpenWFE
|
|
145
130
|
# or YamlErrorJournal.
|
146
131
|
#
|
147
132
|
class ErrorJournal < Service
|
133
|
+
|
148
134
|
include OwfeServiceLocator
|
149
135
|
include FeiMixin
|
150
136
|
|
@@ -152,31 +138,42 @@ module OpenWFE
|
|
152
138
|
|
153
139
|
super
|
154
140
|
|
155
|
-
|
141
|
+
@observers = []
|
142
|
+
|
143
|
+
@observers << get_expression_pool.add_observer(:error) do |evt, *args|
|
156
144
|
#
|
157
145
|
# logs each error occurring in the expression pool
|
158
146
|
|
159
147
|
begin
|
160
148
|
|
161
|
-
record_error(ProcessError.new(*args))
|
149
|
+
record_error(OpenWFE::ProcessError.new(*args))
|
162
150
|
|
163
151
|
rescue Exception => e
|
164
|
-
lwarn { "(failed to record error : #{e})" }
|
165
|
-
lwarn { "*** process error : \n
|
152
|
+
lwarn { "(failed to record error : #{e})\n#{e.backtrace.join("\n")}" }
|
153
|
+
lwarn { "*** process error : \n#{args.join("\n")}" }
|
166
154
|
end
|
167
155
|
end
|
168
156
|
|
169
|
-
get_expression_pool.add_observer
|
157
|
+
@observers << get_expression_pool.add_observer(:terminate) do |evt, *args|
|
170
158
|
#
|
171
159
|
# removes error log when a process terminates
|
172
160
|
|
173
161
|
fei = args[0].fei
|
174
162
|
|
175
|
-
remove_error_log
|
176
|
-
if fei.is_in_parent_process?
|
163
|
+
remove_error_log(fei.wfid) if fei.is_in_parent_process?
|
177
164
|
end
|
178
165
|
end
|
179
166
|
|
167
|
+
#
|
168
|
+
# Stops this journal, takes care of 'unobserving' the expression pool
|
169
|
+
#
|
170
|
+
def stop
|
171
|
+
|
172
|
+
super
|
173
|
+
|
174
|
+
@observers.each { |o| get_expression_pool.remove_observer(o) }
|
175
|
+
end
|
176
|
+
|
180
177
|
#
|
181
178
|
# Returns true if the given wfid (or fei) (process instance id)
|
182
179
|
# has had errors.
|
@@ -192,6 +189,8 @@ module OpenWFE
|
|
192
189
|
#
|
193
190
|
def replay_at_error (error)
|
194
191
|
|
192
|
+
error = error.as_owfe_error if error.respond_to?(:as_owfe_error)
|
193
|
+
|
195
194
|
remove_errors(
|
196
195
|
error.fei.parent_wfid,
|
197
196
|
error)
|
@@ -215,18 +214,12 @@ module OpenWFE
|
|
215
214
|
#
|
216
215
|
def ErrorJournal.reduce_error_list (errors)
|
217
216
|
|
218
|
-
h
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
#
|
223
|
-
# last errors do override previous errors for the
|
224
|
-
# same fei
|
225
|
-
end
|
226
|
-
|
227
|
-
h.values.sort do |error_a, error_b|
|
217
|
+
errors.inject({}) { |h, e|
|
218
|
+
h[e.fei] = e; h
|
219
|
+
# last errors do override previous errors for the same fei
|
220
|
+
}.values.sort { |error_a, error_b|
|
228
221
|
error_a.date <=> error_b.date
|
229
|
-
|
222
|
+
}
|
230
223
|
end
|
231
224
|
end
|
232
225
|
|
@@ -252,8 +245,8 @@ module OpenWFE
|
|
252
245
|
#
|
253
246
|
def get_error_log (wfid)
|
254
247
|
|
255
|
-
wfid = extract_wfid
|
256
|
-
@per_processes[wfid]
|
248
|
+
wfid = extract_wfid(wfid, true)
|
249
|
+
@per_processes[wfid] || []
|
257
250
|
end
|
258
251
|
|
259
252
|
#
|
@@ -261,7 +254,7 @@ module OpenWFE
|
|
261
254
|
#
|
262
255
|
def remove_error_log (wfid)
|
263
256
|
|
264
|
-
wfid = extract_wfid
|
257
|
+
wfid = extract_wfid(wfid, true)
|
265
258
|
@per_processes.delete(wfid)
|
266
259
|
end
|
267
260
|
|
@@ -274,10 +267,10 @@ module OpenWFE
|
|
274
267
|
|
275
268
|
errors = Array(errors)
|
276
269
|
|
277
|
-
log = get_error_log
|
270
|
+
log = get_error_log(wfid)
|
278
271
|
|
279
272
|
errors.each do |e|
|
280
|
-
log.delete
|
273
|
+
log.delete(e)
|
281
274
|
end
|
282
275
|
end
|
283
276
|
|
@@ -298,165 +291,4 @@ module OpenWFE
|
|
298
291
|
# not that unreadable after all...
|
299
292
|
end
|
300
293
|
end
|
301
|
-
|
302
|
-
#
|
303
|
-
# A Journal that only keep track of error in process execution.
|
304
|
-
#
|
305
|
-
class YamlErrorJournal < ErrorJournal
|
306
|
-
|
307
|
-
attr_reader :workdir
|
308
|
-
|
309
|
-
def initialize (service_name, application_context)
|
310
|
-
|
311
|
-
require 'openwfe/storage/yamlcustom'
|
312
|
-
# making sure this file has been required at this point
|
313
|
-
# this yamlcustom thing prevents the whole OpenWFE ecosystem
|
314
|
-
# to get serialized :)
|
315
|
-
|
316
|
-
super
|
317
|
-
|
318
|
-
@workdir = get_work_directory + "/ejournal"
|
319
|
-
#@workdir = File.expand_path @workdir
|
320
|
-
|
321
|
-
FileUtils.makedirs(@workdir) unless File.exist?(@workdir)
|
322
|
-
end
|
323
|
-
|
324
|
-
#
|
325
|
-
# Returns a list (older first) of the errors for a process
|
326
|
-
# instance identified by its fei or wfid.
|
327
|
-
#
|
328
|
-
# Will return an empty list if there a no errors for the process
|
329
|
-
# instances.
|
330
|
-
#
|
331
|
-
def get_error_log (wfid)
|
332
|
-
|
333
|
-
path = get_path wfid
|
334
|
-
|
335
|
-
return [] unless File.exist?(path)
|
336
|
-
|
337
|
-
read_error_log_from path
|
338
|
-
end
|
339
|
-
|
340
|
-
#
|
341
|
-
# Copies the error log of a process instance to a give path (and
|
342
|
-
# filename).
|
343
|
-
#
|
344
|
-
# Could be useful when one has to perform replay operations and wants
|
345
|
-
# to keep a copy of the original error[s].
|
346
|
-
#
|
347
|
-
def copy_error_log_to (wfid, path)
|
348
|
-
|
349
|
-
original_path = get_path wfid
|
350
|
-
FileUtils.copy_file original_path, path
|
351
|
-
end
|
352
|
-
|
353
|
-
#
|
354
|
-
# Reads an error log from a specific file (possibly as copied over
|
355
|
-
# via copy_error_log_to()).
|
356
|
-
#
|
357
|
-
def read_error_log_from (path)
|
358
|
-
|
359
|
-
raise "no error log file at #{path}" unless File.exist?(path)
|
360
|
-
|
361
|
-
File.open(path) do |f|
|
362
|
-
s = YAML.load_stream f
|
363
|
-
s.documents
|
364
|
-
end
|
365
|
-
end
|
366
|
-
|
367
|
-
#
|
368
|
-
# Removes the error log of a specific process instance.
|
369
|
-
# Could be a good idea after a succesful replay operation.
|
370
|
-
#
|
371
|
-
# 'wfid' may be either a workflow instance id (String) either
|
372
|
-
# a FlowExpressionId instance.
|
373
|
-
#
|
374
|
-
def remove_error_log (wfid)
|
375
|
-
|
376
|
-
path = get_path wfid
|
377
|
-
|
378
|
-
File.delete(path) if File.exist?(path)
|
379
|
-
end
|
380
|
-
|
381
|
-
#
|
382
|
-
# Removes a list of errors from this error journal.
|
383
|
-
#
|
384
|
-
def remove_errors (wfid, errors)
|
385
|
-
|
386
|
-
errors = Array(errors)
|
387
|
-
|
388
|
-
# load all errors
|
389
|
-
|
390
|
-
log = get_error_log wfid
|
391
|
-
|
392
|
-
# remove the given errors
|
393
|
-
|
394
|
-
errors.each do |e|
|
395
|
-
log.delete e
|
396
|
-
end
|
397
|
-
|
398
|
-
# rewrite error file
|
399
|
-
|
400
|
-
path = get_path wfid
|
401
|
-
|
402
|
-
if log.size > 0
|
403
|
-
|
404
|
-
File.open(path, "w") do |f|
|
405
|
-
log.each do |e|
|
406
|
-
f.puts e.to_yaml
|
407
|
-
end
|
408
|
-
end
|
409
|
-
else
|
410
|
-
|
411
|
-
File.delete path
|
412
|
-
end
|
413
|
-
end
|
414
|
-
|
415
|
-
#
|
416
|
-
# Reads all the error logs currently stored.
|
417
|
-
# Returns a hash wfid --> error list.
|
418
|
-
#
|
419
|
-
def get_error_logs
|
420
|
-
|
421
|
-
result = {}
|
422
|
-
|
423
|
-
Find.find(@workdir) do |path|
|
424
|
-
|
425
|
-
next unless path.match(/\.ejournal$/)
|
426
|
-
|
427
|
-
log = read_error_log_from path
|
428
|
-
result[log.first.fei.wfid] = log
|
429
|
-
end
|
430
|
-
|
431
|
-
result
|
432
|
-
end
|
433
|
-
|
434
|
-
protected
|
435
|
-
|
436
|
-
#
|
437
|
-
# logs the error as a yaml string in an error log file
|
438
|
-
# (there is one error log file per workflow instance).
|
439
|
-
#
|
440
|
-
def record_error (error)
|
441
|
-
|
442
|
-
path = get_path error.fei
|
443
|
-
|
444
|
-
dirpath = File.dirname path
|
445
|
-
|
446
|
-
FileUtils.mkdir_p(dirpath) unless File.exist?(dirpath)
|
447
|
-
|
448
|
-
File.open path, "a+" do |f|
|
449
|
-
f.puts error.to_yaml
|
450
|
-
end
|
451
|
-
end
|
452
|
-
|
453
|
-
#
|
454
|
-
# Returns the path to the error log file of a specific process
|
455
|
-
# instance.
|
456
|
-
#
|
457
|
-
def get_path (fei_or_wfid)
|
458
|
-
|
459
|
-
@workdir + "/" + extract_wfid(fei_or_wfid, true) + ".ejournal"
|
460
|
-
end
|
461
|
-
end
|
462
294
|
end
|