123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715 |
- // Copyright 2008 Christophe Henry
- // henry UNDERSCORE christophe AT hotmail DOT com
- // This is an extended version of the state machine available in the boost::mpl library
- // Distributed under the same license as the original.
- // Copyright for the original version:
- // Copyright 2005 David Abrahams and Aleksey Gurtovoy. Distributed
- // under the Boost Software License, Version 1.0. (See accompanying
- // file LICENSE_1_0.txt or copy at
- // http://www.boost.org/LICENSE_1_0.txt)
- #ifndef BOOST_MSM_FRONT_EUML_COMMON_H
- #define BOOST_MSM_FRONT_EUML_COMMON_H
- #include <boost/config.hpp>
- #include <boost/msm/proto_config.hpp>
- #include <iterator>
- #include <utility>
- #include <boost/proto/core.hpp>
- #include <boost/proto/transform.hpp>
- #include <boost/utility/enable_if.hpp>
- #include <boost/type_traits/is_same.hpp>
- #include <boost/type_traits/remove_reference.hpp>
- #include <boost/type_traits/add_const.hpp>
- #include <boost/mpl/vector.hpp>
- #include <boost/mpl/set.hpp>
- #include <boost/mpl/has_key.hpp>
- #include <boost/mpl/int.hpp>
- #include <boost/mpl/less_equal.hpp>
- #if BOOST_VERSION >= 104000
- #include <boost/mpl/string.hpp>
- #endif
- #include <boost/fusion/container/vector.hpp>
- #include <boost/fusion/container/set.hpp>
- #include <boost/fusion/include/at_c.hpp>
- #include <boost/fusion/include/make_map.hpp>
- #include <boost/fusion/include/pair.hpp>
- #include <boost/fusion/include/as_vector.hpp>
- #include <boost/fusion/include/pair.hpp>
- #include <boost/fusion/include/is_sequence.hpp>
- #include <boost/type_traits/remove_reference.hpp>
- #include <boost/preprocessor/repetition/enum_params.hpp>
- #include <boost/preprocessor/arithmetic/sub.hpp>
- #include <boost/preprocessor/punctuation/comma_if.hpp>
- #include <boost/preprocessor/control/expr_if.hpp>
- #include <boost/preprocessor/punctuation/comma.hpp>
- #include <boost/preprocessor/arithmetic/add.hpp>
- #include <boost/preprocessor/cat.hpp>
- #include <boost/preprocessor/comparison/less.hpp>
- #include <boost/preprocessor/arithmetic/dec.hpp>
- #include <boost/preprocessor/repetition/repeat_from_to.hpp>
- #include <boost/preprocessor/cat.hpp>
- #include <boost/msm/msm_grammar.hpp>
- #include <boost/msm/active_state_switching_policies.hpp>
- #include <boost/msm/event_traits.hpp>
- #include <boost/msm/front/functor_row.hpp>
- namespace proto = boost::proto;
- BOOST_MPL_HAS_XXX_TRAIT_DEF(tag_type)
- BOOST_MPL_HAS_XXX_TRAIT_DEF(action_name)
- BOOST_MPL_HAS_XXX_TRAIT_DEF(not_intern_euml_state)
- namespace boost { namespace msm { namespace front { namespace euml
- {
- template <class T>
- struct get_iterator
- {
- typedef typename T::iterator type;
- };
- template <class T>
- struct get_reverse_iterator
- {
- typedef typename T::reverse_iterator type;
- };
- template <class T>
- struct get_reference
- {
- typedef typename T::reference type;
- };
- template <class T>
- struct get_size_type
- {
- typedef typename T::size_type type;
- };
- template <class T>
- struct get_value_type
- {
- typedef typename T::value_type type;
- };
- template <class T>
- struct get_first_type
- {
- typedef typename T::first_type type;
- };
- template <class T>
- struct get_second_type
- {
- typedef typename T::second_type type;
- };
- template <class T>
- struct get_action_tag_type
- {
- typedef typename ::boost::mpl::has_key<
- typename T::tag_type,action_tag>::type type;
- };
- template <class T>
- struct get_state_action_tag_type
- {
- typedef typename ::boost::mpl::has_key<
- typename T::tag_type,state_action_tag>::type type;
- };
- template <class T,class EVT,class FSM,class SourceState,class TargetState>
- struct get_result_type
- {
- typedef typename T::template transition_action_result<EVT,FSM,SourceState,TargetState>::type type;
- };
- template <class T,class Event,class FSM,class STATE>
- struct get_result_type2
- {
- typedef typename T::template state_action_result<Event,FSM,STATE>::type type;
- };
- template<class SEQ>
- struct get_sequence
- {
- typedef typename SEQ::sequence type;
- };
- template <class T>
- struct get_attributes_type
- {
- typedef typename T::attributes_type type;
- };
- template <class T>
- struct get_euml_tag_type
- {
- typedef typename T::euml_tag_type type;
- };
- template <class T,class Arg1=void,class Arg2=void,class Arg3=void,class Arg4=void,class Arg5=void
- #ifdef BOOST_MSVC
- ,class Arg6=void
- #endif
- >
- struct get_fct
- {
- typedef typename T::template In<Arg1,Arg2,Arg3,Arg4,Arg5
- #ifdef BOOST_MSVC
- ,Arg6
- #endif
- >::type type;
- };
- // used to differentiate between different types of euml_state's
- template <class T,class Enable=void>
- struct get_state_name
- {
- typedef T type;
- };
- template <class T>
- struct get_state_name<T,typename ::boost::enable_if<has_not_intern_euml_state<T> >::type>
- {
- typedef typename T::In::type type;
- };
- template <class T>
- struct get_action_name
- {
- typedef typename T::action_name type;
- };
- template <class T>
- struct get_event_name
- {
- typedef typename T::event_name type;
- };
- template <class EVT>
- struct euml_event: proto::extends<typename proto::terminal<event_tag>::type, EVT, boost::msm::sm_domain>
- {
- typedef event_tag euml_tag_type;
- typedef EVT event_name;
- using proto::extends<typename proto::terminal<event_tag>::type, EVT, boost::msm::sm_domain>::operator=;
- template <class Arg1,class Arg2,class Arg3,class Arg4,class Arg5
- #ifdef BOOST_MSVC
- ,class Arg6
- #endif
- >
- struct In
- {
- typedef EVT type;
- };
- };
- template <class STATE>
- struct euml_state_intern: proto::extends<typename proto::terminal< boost::msm::state_tag>::type, STATE, boost::msm::state_domain>
- {
- typedef state_tag euml_tag_type;
- using proto::extends<typename proto::terminal<state_tag>::type, STATE, boost::msm::state_domain>::operator=;
- template <class Arg1,class Arg2,class Arg3,class Arg4,class Arg5
- #ifdef BOOST_MSVC
- ,class Arg6
- #endif
- >
- struct In
- {
- typedef STATE type;
- };
- };
- template <class STATE>
- struct euml_state: proto::extends<typename proto::terminal< boost::msm::state_tag>::type, STATE, boost::msm::state_domain>
- {
- typedef state_tag euml_tag_type;
- typedef int not_intern_euml_state;
- using proto::extends<typename proto::terminal<state_tag>::type, STATE, boost::msm::state_domain>::operator=;
- struct In
- {
- typedef STATE type;
- };
- };
- template <class ACTION>
- struct euml_action: proto::extends<typename proto::terminal<action_tag>::type, ACTION, boost::msm::sm_domain>
- {
- typedef action_tag euml_tag_type;
- typedef ACTION action_name;
- using proto::extends<typename proto::terminal<action_tag>::type, ACTION, boost::msm::sm_domain>::operator=;
- template <class Arg1,class Arg2,class Arg3,class Arg4,class Arg5
- #ifdef BOOST_MSVC
- ,class Arg6
- #endif
- >
- struct In
- {
- typedef ACTION type;
- };
- };
- template <class FLAG>
- struct euml_flag: proto::extends<typename proto::terminal<flag_tag>::type, FLAG, boost::msm::sm_domain>
- {
- typedef flag_tag euml_tag_type;
- using proto::extends<typename proto::terminal<flag_tag>::type, FLAG, boost::msm::sm_domain>::operator=;
- template <class Arg1,class Arg2,class Arg3,class Arg4,class Arg5
- #ifdef BOOST_MSVC
- ,class Arg6
- #endif
- >
- struct In
- {
- typedef FLAG type;
- };
- };
- template <class CONFIG>
- struct euml_config: proto::extends<typename proto::terminal<config_tag>::type, CONFIG, boost::msm::sm_domain>
- {
- typedef config_tag euml_tag_type;
- using proto::extends<typename proto::terminal<config_tag>::type, CONFIG, boost::msm::sm_domain>::operator=;
- template <class Arg1,class Arg2,class Arg3,class Arg4,class Arg5
- #ifdef BOOST_MSVC
- ,class Arg6
- #endif
- >
- struct In
- {
- typedef CONFIG type;
- };
- };
- struct No_Exception : euml_config<No_Exception>
- {
- typedef int no_exception_thrown;
- No_Exception(){}
- };
- struct No_Msg_Queue : euml_config<No_Msg_Queue>
- {
- typedef int no_message_queue;
- No_Msg_Queue(){}
- };
- struct Deferred_Events : euml_config<Deferred_Events>
- {
- typedef int activate_deferred_events;
- Deferred_Events(){}
- };
- No_Exception const no_exception=No_Exception();
- No_Msg_Queue const no_msg_queue=No_Msg_Queue();
- Deferred_Events const deferred_events=Deferred_Events();
- struct ActiveStateSwitchBeforeTransition : euml_config<ActiveStateSwitchBeforeTransition>
- {
- typedef boost::msm::active_state_switch_before_transition active_state_switch_policy;
- ActiveStateSwitchBeforeTransition(){}
- };
- ActiveStateSwitchBeforeTransition const switch_active_before_transition = ActiveStateSwitchBeforeTransition();
- struct ActiveStateSwitchAfterExit : euml_config<ActiveStateSwitchAfterExit>
- {
- typedef boost::msm::active_state_switch_after_exit active_state_switch_policy;
- ActiveStateSwitchAfterExit(){}
- };
- ActiveStateSwitchAfterExit const switch_active_after_exit = ActiveStateSwitchAfterExit();
- struct ActiveStateSwitchAfterAction : euml_config<ActiveStateSwitchAfterAction>
- {
- typedef boost::msm::active_state_switch_after_transition_action active_state_switch_policy;
- ActiveStateSwitchAfterAction(){}
- };
- ActiveStateSwitchAfterAction const switch_active_after_action = ActiveStateSwitchAfterAction();
- struct invalid_type{};
- struct make_invalid_type
- {
- typedef invalid_type type;
- };
- template <class ROW>
- struct make_vector_one_row
- {
- typedef boost::fusion::vector<ROW> type;
- };
- template <class T>
- T make_T(T t) {return t;}
- struct make_vector_no_row
- {
- typedef boost::fusion::vector<> type;
- };
- struct NoAction : euml_action<NoAction>
- {
- NoAction(){}
- // return value if used inside a state action (entry/exit)
- template <class Event,class FSM,class STATE >
- struct state_action_result
- {
- typedef bool type;
- };
- // return value if used inside a transition (action/guard)
- template <class EVT,class FSM,class SourceState,class TargetState>
- struct transition_action_result
- {
- typedef bool type;
- };
- // this functor can be used in both modes, state action and transition action
- typedef ::boost::fusion::set<state_action_tag,action_tag> tag_type;
- template <class Event,class FSM,class STATE>
- bool operator()(Event const&,FSM&,STATE& )
- {
- // does nothing
- return true;
- }
- template <class EVT,class FSM,class SourceState,class TargetState>
- bool operator()(EVT const& ,FSM& ,SourceState& ,TargetState&)const
- {
- // does nothing
- return true;
- }
- };
- NoAction const no_action = NoAction();
- struct fsm_artefact_tag {};
- template <class Index=void>
- struct GetSource_ : euml_action<GetSource_<Index> >
- {
- template <class EVT,class FSM,class SourceState,class TargetState>
- struct transition_action_result
- {
- typedef typename ::boost::fusion::result_of::at_key<typename SourceState::attributes_type,
- Index >::type type;
- };
- typedef ::boost::fusion::set<action_tag> tag_type;
- template <class EVT,class FSM,class SourceState,class TargetState>
- typename transition_action_result<EVT,FSM,SourceState,TargetState>::type
- operator()(EVT const& ,FSM& ,SourceState& src,TargetState&)const
- {
- return src.get_attribute(Index());
- }
- };
- template<>
- struct GetSource_<void> : euml_action<GetSource_<void> >
- {
- template <class EVT,class FSM,class SourceState,class TargetState>
- struct transition_action_result
- {
- typedef SourceState& type;
- };
- typedef ::boost::fusion::set<action_tag> tag_type;
- template <class EVT,class FSM,class SourceState,class TargetState>
- typename transition_action_result<EVT,FSM,SourceState,TargetState>::type
- operator()(EVT const& , FSM&,SourceState& src,TargetState& )const
- {
- return src;
- }
- };
- struct GetSource_Helper: proto::extends< proto::terminal<fsm_artefact_tag>::type, GetSource_Helper, boost::msm::sm_domain>
- {
- GetSource_Helper(){}
- template <class Arg1,class Arg2,class Arg3,class Arg4,class Arg5
- #ifdef BOOST_MSVC
- ,class Arg6
- #endif
- >
- struct In
- {
- typedef GetSource_<Arg1> type;
- };
- };
- GetSource_Helper const source_ = GetSource_Helper();
- template <class Index=void>
- struct GetTarget_ : euml_action<GetTarget_<Index> >
- {
- template <class EVT,class FSM,class SourceState,class TargetState>
- struct transition_action_result
- {
- typedef typename ::boost::fusion::result_of::at_key<typename TargetState::attributes_type,
- Index >::type type;
- };
- typedef ::boost::fusion::set<action_tag> tag_type;
- template <class EVT,class FSM,class SourceState,class TargetState>
- typename transition_action_result<EVT,FSM,SourceState,TargetState>::type
- operator()(EVT const& ,FSM& ,SourceState& ,TargetState& tgt)const
- {
- return tgt.get_attribute(Index());
- }
- };
- template<>
- struct GetTarget_<void> : euml_action<GetTarget_<void> >
- {
- template <class EVT,class FSM,class SourceState,class TargetState>
- struct transition_action_result
- {
- typedef TargetState& type;
- };
- typedef ::boost::fusion::set<action_tag> tag_type;
- template <class EVT,class FSM,class SourceState,class TargetState>
- typename transition_action_result<EVT,FSM,SourceState,TargetState>::type
- operator()(EVT const& , FSM&,SourceState& ,TargetState& tgt)const
- {
- return tgt;
- }
- };
- struct GetTarget_Helper: proto::extends< proto::terminal<fsm_artefact_tag>::type, GetTarget_Helper, boost::msm::sm_domain>
- {
- GetTarget_Helper(){}
- template <class Arg1,class Arg2,class Arg3,class Arg4,class Arg5
- #ifdef BOOST_MSVC
- ,class Arg6
- #endif
- >
- struct In
- {
- typedef GetTarget_<Arg1> type;
- };
- };
- GetTarget_Helper const target_ = GetTarget_Helper();
- template <class Index=void>
- struct GetState_ : euml_action<GetState_<Index> >
- {
- template <class Event,class FSM,class STATE >
- struct state_action_result
- {
- typedef typename ::boost::fusion::result_of::at_key<typename STATE::attributes_type,
- Index >::type type;
- };
- typedef ::boost::fusion::set<state_action_tag> tag_type;
- template <class Event,class FSM,class STATE>
- typename state_action_result<Event,FSM,STATE>::type
- operator()(Event const&,FSM& ,STATE& state )
- {
- return state.get_attribute(Index());
- }
- };
- template<>
- struct GetState_<void> : euml_action<GetState_<void> >
- {
- using euml_action<GetState_ >::operator=;
- template <class Event,class FSM,class STATE >
- struct state_action_result
- {
- typedef STATE& type;
- };
- typedef ::boost::fusion::set<state_action_tag> tag_type;
- template <class Event,class FSM,class STATE>
- typename state_action_result<Event,FSM,STATE>::type
- operator()(Event const&,FSM& ,STATE& state )
- {
- return state;
- }
- };
- struct GetState_Helper: proto::extends< proto::terminal<fsm_artefact_tag>::type, GetState_Helper, boost::msm::sm_domain>
- {
- GetState_Helper(){}
- template <class Arg1,class Arg2,class Arg3,class Arg4,class Arg5
- #ifdef BOOST_MSVC
- ,class Arg6
- #endif
- >
- struct In
- {
- typedef GetState_<Arg1> type;
- };
- };
- GetState_Helper const state_ = GetState_Helper();
- template <class Index=void>
- struct GetEvent_ : euml_action<GetEvent_<Index> >
- {
- template <class Event,class FSM,class STATE >
- struct state_action_result
- {
- typedef typename ::boost::add_const<
- typename ::boost::fusion::result_of::at_key<typename Event::attributes_type,
- Index >::type>::type type;
- };
- template <class EVT,class FSM,class SourceState,class TargetState>
- struct transition_action_result
- {
- typedef typename ::boost::add_const<
- typename ::boost::fusion::result_of::at_key<typename EVT::attributes_type,
- Index >::type>::type type;
- };
- typedef ::boost::fusion::set<state_action_tag,action_tag> tag_type;
- template <class Event,class FSM,class STATE>
- typename state_action_result<Event,FSM,STATE>::type
- operator()(Event const& evt,FSM& ,STATE& )
- {
- return evt.get_attribute(Index());
- }
- template <class EVT,class FSM,class SourceState,class TargetState>
- typename transition_action_result<EVT,FSM,SourceState,TargetState>::type
- operator()(EVT const& evt ,FSM& ,SourceState& ,TargetState&)const
- {
- return evt.get_attribute(Index());
- }
- };
- template <>
- struct GetEvent_<void> : euml_action<GetEvent_<void> >
- {
- template <class Event,class FSM,class STATE >
- struct state_action_result
- {
- typedef Event const& type;
- };
- template <class EVT,class FSM,class SourceState,class TargetState>
- struct transition_action_result
- {
- typedef EVT const& type;
- };
- typedef ::boost::fusion::set<state_action_tag,action_tag> tag_type;
- template <class Event,class FSM,class STATE>
- typename state_action_result<Event,FSM,STATE>::type
- operator()(Event const& evt,FSM& ,STATE& )
- {
- return evt;
- }
- template <class EVT,class FSM,class SourceState,class TargetState>
- typename transition_action_result<EVT,FSM,SourceState,TargetState>::type
- operator()(EVT const& evt ,FSM& ,SourceState& ,TargetState&)const
- {
- return evt;
- }
- };
- struct GetEvent_Helper: proto::extends< proto::terminal<fsm_artefact_tag>::type, GetEvent_Helper, boost::msm::sm_domain>
- {
- GetEvent_Helper(){}
- template <class Arg1,class Arg2,class Arg3,class Arg4,class Arg5
- #ifdef BOOST_MSVC
- ,class Arg6
- #endif
- >
- struct In
- {
- typedef GetEvent_<Arg1> type;
- };
- };
- GetEvent_Helper const event_ = GetEvent_Helper();
- template <class Index=void>
- struct GetFsm_ : euml_action<GetFsm_<Index> >
- {
- template <class Event,class FSM,class STATE >
- struct state_action_result
- {
- typedef typename ::boost::fusion::result_of::at_key<typename FSM::attributes_type,
- Index >::type type;
- };
- template <class EVT,class FSM,class SourceState,class TargetState>
- struct transition_action_result
- {
- typedef typename ::boost::fusion::result_of::at_key<typename FSM::attributes_type,
- Index >::type type;
- };
- typedef ::boost::fusion::set<state_action_tag,action_tag> tag_type;
- template <class Event,class FSM,class STATE>
- typename state_action_result<Event,FSM,STATE>::type
- operator()(Event const&,FSM& fsm,STATE& )
- {
- return fsm.get_attribute(Index());
- }
- template <class EVT,class FSM,class SourceState,class TargetState>
- typename transition_action_result<EVT,FSM,SourceState,TargetState>::type
- operator()(EVT const& ,FSM& fsm,SourceState& ,TargetState&)const
- {
- return fsm.get_attribute(Index());
- }
- };
- template<>
- struct GetFsm_<void> : euml_action<GetFsm_<void> >
- {
- using euml_action<GetFsm_>::operator=;
- template <class Event,class FSM,class STATE >
- struct state_action_result
- {
- typedef FSM& type;
- };
- template <class EVT,class FSM,class SourceState,class TargetState>
- struct transition_action_result
- {
- typedef FSM& type;
- };
- typedef ::boost::fusion::set<state_action_tag,action_tag> tag_type;
- template <class Event,class FSM,class STATE>
- typename state_action_result<Event,FSM,STATE>::type
- operator()(Event const&,FSM& fsm,STATE& )
- {
- return fsm;
- }
- template <class EVT,class FSM,class SourceState,class TargetState>
- typename transition_action_result<EVT,FSM,SourceState,TargetState>::type
- operator()(EVT const& ,FSM& fsm,SourceState& ,TargetState&)const
- {
- return fsm;
- }
- };
- struct GetFsm_Helper: proto::extends< proto::terminal<fsm_artefact_tag>::type, GetFsm_Helper, boost::msm::sm_domain>
- {
- GetFsm_Helper(){}
- template <class Arg1,class Arg2,class Arg3,class Arg4,class Arg5
- #ifdef BOOST_MSVC
- ,class Arg6
- #endif
- >
- struct In
- {
- typedef GetFsm_<Arg1> type;
- };
- };
- GetFsm_Helper const fsm_ = GetFsm_Helper();
- template <class StateName,class Param1>
- struct SubState_ : euml_action<SubState_<StateName, Param1> >
- {
- template <class Event,class FSM,class STATE >
- struct state_action_result
- {
- typedef StateName& type;
- };
- template <class EVT,class FSM,class SourceState,class TargetState>
- struct transition_action_result
- {
- typedef StateName& type;
- };
- typedef ::boost::fusion::set<state_action_tag,action_tag> tag_type;
- template <class EVT,class FSM,class SourceState,class TargetState>
- StateName& operator()(EVT const& evt,FSM& fsm,SourceState& src,TargetState& tgt)const
- {
- return (Param1()(evt,fsm,src,tgt)).template get_state<StateName&>();
- }
- template <class Event,class FSM,class STATE>
- StateName& operator()(Event const& evt,FSM& fsm,STATE& state)const
- {
- return (Param1()(evt,fsm,state)).template get_state<StateName&>();
- }
- };
- template <class StateName>
- struct SubState_ <StateName,void>
- : euml_action<SubState_<StateName, void > >
- {
- template <class Event,class FSM,class STATE >
- struct state_action_result
- {
- typedef StateName& type;
- };
- template <class EVT,class FSM,class SourceState,class TargetState>
- struct transition_action_result
- {
- typedef StateName& type;
- };
- typedef ::boost::fusion::set<state_action_tag,action_tag> tag_type;
- template <class EVT,class FSM,class SourceState,class TargetState>
- StateName& operator()(EVT const&,FSM& fsm,SourceState& ,TargetState& )const
- {
- return fsm.template get_state<StateName&>();
- }
- template <class Event,class FSM,class STATE>
- StateName& operator()(Event const& ,FSM& fsm,STATE& )const
- {
- return fsm.template get_state<StateName&>();
- }
- };
- struct SubState_Helper: proto::extends< proto::terminal<fsm_artefact_tag>::type, SubState_Helper, boost::msm::sm_domain>
- {
- SubState_Helper(){}
- using proto::extends< proto::terminal<fsm_artefact_tag>::type, SubState_Helper, boost::msm::sm_domain>::operator=;
- template <class Arg1,class Arg2,class Arg3,class Arg4,class Arg5
- #ifdef BOOST_MSVC
- ,class Arg6
- #endif
- >
- struct In
- {
- typedef SubState_<Arg1,Arg2> type;
- };
- };
- SubState_Helper const substate_ = SubState_Helper();
- template <class Target,class Index>
- struct GetAttribute_ : euml_action<GetAttribute_<Target, Index> >
- {
- using euml_action<GetAttribute_<Target,Index> >::operator=;
- template <class Event,class FSM,class STATE >
- struct state_action_result
- {
- typedef typename
- ::boost::fusion::result_of::at_key<
- typename get_attributes_type<
- typename ::boost::remove_reference<
- typename get_result_type2<Target,Event,FSM,STATE>::type>::type>::type,
- Index >::type type;
- };
- template <class EVT,class FSM,class SourceState,class TargetState>
- struct transition_action_result
- {
- typedef typename
- ::boost::fusion::result_of::at_key<
- typename get_attributes_type<
- typename ::boost::remove_reference<
- typename get_result_type<Target,EVT,FSM,SourceState,TargetState>::type>::type>::type,
- Index >::type type;
- };
- typedef ::boost::fusion::set<state_action_tag,action_tag> tag_type;
- template <class EVT,class FSM,class SourceState,class TargetState>
- typename ::boost::enable_if<
- typename ::boost::mpl::has_key<
- typename Target::tag_type,action_tag>::type,
- typename transition_action_result<EVT,FSM,SourceState,TargetState>::type >::type
- operator()(EVT const& evt, FSM& fsm,SourceState& src,TargetState& tgt)const
- {
- return (Target()(evt,fsm,src,tgt)).get_attribute(Index());
- }
- template <class Event,class FSM,class STATE>
- typename ::boost::enable_if<
- typename ::boost::mpl::has_key<
- typename Target::tag_type,state_action_tag>::type,
- typename state_action_result<Event,FSM,STATE>::type >::type
- operator()(Event const& evt,FSM& fsm,STATE& state )const
- {
- return (Target()(evt,fsm,state)).get_attribute(Index());
- }
- };
- struct GetAttribute_Helper: proto::extends< proto::terminal<fsm_artefact_tag>::type, GetAttribute_Helper, boost::msm::sm_domain>
- {
- GetAttribute_Helper(){}
- template <class Arg1,class Arg2,class Arg3,class Arg4,class Arg5
- #ifdef BOOST_MSVC
- ,class Arg6
- #endif
- >
- struct In
- {
- typedef GetAttribute_<Arg1,Arg2> type;
- };
- };
- GetAttribute_Helper const attribute_ = GetAttribute_Helper();
- template <class Index>
- struct Source_ : euml_action<Source_<Index> >
- {
- using euml_action<Source_<Index> >::operator=;
- template <class EVT,class FSM,class SourceState,class TargetState>
- struct transition_action_result
- {
- typedef typename
- ::boost::fusion::result_of::at_key<typename SourceState::attributes_type,
- Index >::type type;
- };
- typedef ::boost::fusion::set<action_tag> tag_type;
- template <class EVT,class FSM,class SourceState,class TargetState>
- typename transition_action_result<EVT,FSM,SourceState,TargetState>::type
- operator()(EVT const& , FSM&,SourceState& src,TargetState& )const
- {
- return src.get_attribute(Index());
- }
- };
- template <class Index>
- struct Target_ : euml_action<Target_<Index> >
- {
- using euml_action<Target_<Index> >::operator=;
- template <class EVT,class FSM,class SourceState,class TargetState>
- struct transition_action_result
- {
- typedef typename
- ::boost::fusion::result_of::at_key<typename TargetState::attributes_type,
- Index >::type type;
- };
- typedef ::boost::fusion::set<action_tag> tag_type;
- template <class EVT,class FSM,class SourceState,class TargetState>
- typename transition_action_result<EVT,FSM,SourceState,TargetState>::type
- operator()(EVT const& ,FSM& ,SourceState& ,TargetState& tgt)const
- {
- return tgt.get_attribute(Index());
- }
- };
- template <class Index>
- struct State_ : euml_action<State_<Index> >
- {
- using euml_action<State_<Index> >::operator=;
- template <class Event,class FSM,class STATE >
- struct state_action_result
- {
- typedef typename
- ::boost::fusion::result_of::at_key<typename STATE::attributes_type,
- Index >::type type;
- };
- typedef ::boost::fusion::set<state_action_tag> tag_type;
- template <class Event,class FSM,class STATE>
- typename state_action_result<Event,FSM,STATE>::type
- operator()(Event const&,FSM& ,STATE& state )
- {
- return state.get_attribute(Index());
- }
- };
- template <class Index>
- struct Event_ : euml_action<Event_<Index> >
- {
- using euml_action<Event_<Index> >::operator=;
- template <class Event,class FSM,class STATE >
- struct state_action_result
- {
- typedef typename ::boost::add_const<
- typename ::boost::fusion::result_of::at_key<typename Event::attributes_type,
- Index >::type>::type type;
- };
- template <class EVT,class FSM,class SourceState,class TargetState>
- struct transition_action_result
- {
- typedef typename ::boost::add_const<
- typename ::boost::fusion::result_of::at_key<typename EVT::attributes_type,
- Index >::type>::type type;
- };
- typedef ::boost::fusion::set<state_action_tag,action_tag> tag_type;
- template <class Event,class FSM,class STATE>
- typename state_action_result<Event,FSM,STATE>::type
- operator()(Event const& evt,FSM& ,STATE& )
- {
- return evt.get_attribute(Index());
- }
- template <class EVT,class FSM,class SourceState,class TargetState>
- typename transition_action_result<EVT,FSM,SourceState,TargetState>::type
- operator()(EVT const& evt ,FSM& ,SourceState& ,TargetState&)const
- {
- return evt.get_attribute(Index());
- }
- };
- template <class StateType,class Index>
- struct State_Attribute_ : euml_action<State_Attribute_<StateType,Index> >
- {
- using euml_action<State_Attribute_<StateType,Index> >::operator=;
- template <class Event,class FSM,class STATE >
- struct state_action_result
- {
- typedef typename
- ::boost::fusion::result_of::at_key<typename StateType::attributes_type,
- Index >::type type;
- };
- typedef ::boost::fusion::set<state_action_tag> tag_type;
- template <class Event,class FSM,class STATE>
- typename state_action_result<Event,FSM,STATE>::type
- operator()(Event const&,FSM& fsm,STATE& )
- {
- return fsm.template get_state<StateType&>().get_attribute(Index());
- }
- };
- template <class Index>
- struct Fsm_ : euml_action<Fsm_<Index> >
- {
- using euml_action<Fsm_<Index> >::operator=;
- template <class Event,class FSM,class STATE >
- struct state_action_result
- {
- typedef typename
- ::boost::fusion::result_of::at_key<typename FSM::attributes_type,
- Index >::type type;
- };
- template <class EVT,class FSM,class SourceState,class TargetState>
- struct transition_action_result
- {
- typedef typename
- ::boost::fusion::result_of::at_key<typename FSM::attributes_type,
- Index >::type type;
- };
- typedef ::boost::fusion::set<state_action_tag,action_tag> tag_type;
- template <class Event,class FSM,class STATE>
- typename state_action_result<Event,FSM,STATE>::type
- operator()(Event const&,FSM& fsm,STATE& )
- {
- return fsm.get_attribute(Index());
- }
- template <class EVT,class FSM,class SourceState,class TargetState>
- typename transition_action_result<EVT,FSM,SourceState,TargetState>::type
- operator()(EVT const& ,FSM& fsm,SourceState& ,TargetState&)const
- {
- return fsm.get_attribute(Index());
- }
- };
- struct True_ : euml::euml_action<True_>
- {
- using euml_action<True_>::operator=;
- True_(){}
- template <class Event,class FSM,class STATE >
- struct state_action_result
- {
- typedef bool type;
- };
- template <class EVT,class FSM,class SourceState,class TargetState>
- struct transition_action_result
- {
- typedef bool type;
- };
- typedef ::boost::fusion::set<state_action_tag,action_tag> tag_type;
- template <class EVT,class FSM,class SourceState,class TargetState>
- bool operator()(EVT const&,FSM&,SourceState& ,TargetState& )
- {
- return true;
- }
- template <class Event,class FSM,class STATE>
- bool operator()(Event const&,FSM&,STATE& )
- {
- return true;
- }
- };
- True_ const true_ = True_();
- struct False_ : euml::euml_action<False_>
- {
- using euml_action<False_>::operator=;
- False_(){}
- template <class Event,class FSM,class STATE >
- struct state_action_result
- {
- typedef bool type;
- };
- template <class EVT,class FSM,class SourceState,class TargetState>
- struct transition_action_result
- {
- typedef bool type;
- };
- typedef ::boost::fusion::set<state_action_tag,action_tag> tag_type;
- template <class EVT,class FSM,class SourceState,class TargetState>
- bool operator()(EVT const&,FSM&,SourceState& ,TargetState& )
- {
- return false;
- }
- template <class Event,class FSM,class STATE>
- bool operator()(Event const&,FSM&,STATE& )
- {
- return false;
- }
- };
- False_ const false_ = False_();
- template <int Val>
- struct Int_ : euml_action<Int_<Val> >
- {
- using euml_action<Int_<Val> >::operator=;
- typedef ::boost::mpl::int_<Val> value_type;
- enum {value = Val};
- template <class Event,class FSM,class STATE >
- struct state_action_result
- {
- typedef int type;
- };
- template <class EVT,class FSM,class SourceState,class TargetState>
- struct transition_action_result
- {
- typedef int type;
- };
- typedef ::boost::fusion::set<state_action_tag,action_tag> tag_type;
- template <class EVT,class FSM,class SourceState,class TargetState>
- int operator()(EVT const& , FSM& ,SourceState& ,TargetState& )
- {
- return Val;
- }
- template <class Event,class FSM,class STATE>
- int operator()(Event const& ,FSM& ,STATE& )
- {
- return Val;
- }
- };
- template <char Val>
- struct Char_ : euml_action<Char_<Val> >
- {
- using euml_action<Char_<Val> >::operator=;
- template <class Event,class FSM,class STATE >
- struct state_action_result
- {
- typedef char type;
- };
- template <class EVT,class FSM,class SourceState,class TargetState>
- struct transition_action_result
- {
- typedef char type;
- };
- typedef ::boost::fusion::set<state_action_tag,action_tag> tag_type;
- template <class EVT,class FSM,class SourceState,class TargetState>
- char operator()(EVT const& , FSM& ,SourceState& ,TargetState& )
- {
- return Val;
- }
- template <class Event,class FSM,class STATE>
- char operator()(Event const& ,FSM& ,STATE& )
- {
- return Val;
- }
- };
- template <size_t Val>
- struct Size_t_ : euml_action<Size_t_<Val> >
- {
- using euml_action<Size_t_<Val> >::operator=;
- template <class Event,class FSM,class STATE >
- struct state_action_result
- {
- typedef size_t type;
- };
- template <class EVT,class FSM,class SourceState,class TargetState>
- struct transition_action_result
- {
- typedef size_t type;
- };
- typedef ::boost::fusion::set<state_action_tag,action_tag> tag_type;
- template <class EVT,class FSM,class SourceState,class TargetState>
- size_t operator()(EVT const& , FSM& ,SourceState& ,TargetState& )
- {
- return Val;
- }
- template <class Event,class FSM,class STATE>
- size_t operator()(Event const& ,FSM& ,STATE& )
- {
- return Val;
- }
- };
- #if BOOST_VERSION >= 104000
- template <class T>
- struct String_ : euml_action<String_<T> >
- {
- using euml_action<String_<T> >::operator=;
- template <class Event,class FSM,class STATE >
- struct state_action_result
- {
- typedef char const* type;
- };
- template <class EVT,class FSM,class SourceState,class TargetState>
- struct transition_action_result
- {
- typedef char const* type;
- };
- typedef ::boost::fusion::set<state_action_tag,action_tag> tag_type;
- template <class EVT,class FSM,class SourceState,class TargetState>
- char const* operator()(EVT const& , FSM& ,SourceState& ,TargetState& )
- {
- return ::boost::mpl::c_str<T>::value;
- }
- template <class Event,class FSM,class STATE>
- char const* operator()(Event const& ,FSM& ,STATE& )
- {
- return ::boost::mpl::c_str<T>::value;
- }
- };
- #endif
- template <class T>
- struct Predicate_ : euml_action<Predicate_<T> >
- {
- using euml_action<Predicate_<T> >::operator=;
- template <class Event,class FSM,class STATE >
- struct state_action_result
- {
- typedef T type;
- };
- template <class EVT,class FSM,class SourceState,class TargetState>
- struct transition_action_result
- {
- typedef T type;
- };
- typedef ::boost::fusion::set<state_action_tag,action_tag> tag_type;
- template <class EVT,class FSM,class SourceState,class TargetState>
- T operator()(EVT const& , FSM& ,SourceState& ,TargetState& )
- {
- return T();
- }
- template <class Event,class FSM,class STATE>
- T operator()(Event const& ,FSM& ,STATE& )
- {
- return T();
- }
- };
- template <class ToProcessEvt,class Param1, class Param2, class Param3, class Param4>
- struct Process_ : euml_action<Process_<ToProcessEvt, Param1, Param2, Param3, Param4> >
- {
- template <class Event,class FSM,class STATE >
- struct state_action_result
- {
- typedef void type;
- };
- template <class EVT,class FSM,class SourceState,class TargetState>
- struct transition_action_result
- {
- typedef void type;
- };
- typedef ::boost::fusion::set<state_action_tag,action_tag> tag_type;
- template <class EVT,class FSM,class SourceState,class TargetState>
- void operator()(EVT const& evt,FSM& fsm,SourceState& src,TargetState& tgt)const
- {
- (Param1()(evt,fsm,src,tgt)).process_event(ToProcessEvt());
- (Param2()(evt,fsm,src,tgt)).process_event(ToProcessEvt());
- (Param3()(evt,fsm,src,tgt)).process_event(ToProcessEvt());
- (Param4()(evt,fsm,src,tgt)).process_event(ToProcessEvt());
- }
- template <class Event,class FSM,class STATE>
- void operator()(Event const& evt,FSM& fsm,STATE& state)const
- {
- (Param1()(evt,fsm,state)).process_event(ToProcessEvt());
- (Param2()(evt,fsm,state)).process_event(ToProcessEvt());
- (Param3()(evt,fsm,state)).process_event(ToProcessEvt());
- (Param4()(evt,fsm,state)).process_event(ToProcessEvt());
- }
- };
- template <class ToProcessEvt>
- struct Process_ <ToProcessEvt,void,void,void,void>
- : euml_action<Process_<ToProcessEvt, void, void, void, void > >
- {
- template <class Event,class FSM,class STATE >
- struct state_action_result
- {
- typedef void type;
- };
- template <class EVT,class FSM,class SourceState,class TargetState>
- struct transition_action_result
- {
- typedef void type;
- };
- typedef ::boost::fusion::set<state_action_tag,action_tag> tag_type;
- template <class EVT,class FSM,class SourceState,class TargetState>
- void operator()(EVT const&,FSM& fsm,SourceState& ,TargetState& )const
- {
- fsm.process_event(ToProcessEvt());
- }
- template <class Event,class FSM,class STATE>
- void operator()(Event const& ,FSM& fsm,STATE& )const
- {
- fsm.process_event(ToProcessEvt());
- }
- };
- template <class ToProcessEvt,class Param1>
- struct Process_ <ToProcessEvt,Param1,void,void,void>
- : euml_action<Process_<ToProcessEvt, Param1, void, void, void> >
- {
- template <class Event,class FSM,class STATE >
- struct state_action_result
- {
- typedef void type;
- };
- template <class EVT,class FSM,class SourceState,class TargetState>
- struct transition_action_result
- {
- typedef void type;
- };
- typedef ::boost::fusion::set<state_action_tag,action_tag> tag_type;
- template <class EVT,class FSM,class SourceState,class TargetState>
- void operator()(EVT const& evt,FSM& fsm,SourceState& src,TargetState& tgt)const
- {
- (Param1()(evt,fsm,src,tgt)).process_event(ToProcessEvt());
- }
- template <class Event,class FSM,class STATE>
- void operator()(Event const& evt,FSM& fsm,STATE& state)const
- {
- (Param1()(evt,fsm,state)).process_event(ToProcessEvt());
- }
- };
- template <class ToProcessEvt,class Param1, class Param2>
- struct Process_ <ToProcessEvt,Param1,Param2,void,void>
- : euml_action<Process_<ToProcessEvt, Param1, Param2, void, void> >
- {
- template <class Event,class FSM,class STATE >
- struct state_action_result
- {
- typedef void type;
- };
- template <class EVT,class FSM,class SourceState,class TargetState>
- struct transition_action_result
- {
- typedef void type;
- };
- typedef ::boost::fusion::set<state_action_tag,action_tag> tag_type;
- template <class EVT,class FSM,class SourceState,class TargetState>
- void operator()(EVT const& evt,FSM& fsm,SourceState& src,TargetState& tgt)const
- {
- (Param1()(evt,fsm,src,tgt)).process_event(ToProcessEvt());
- (Param2()(evt,fsm,src,tgt)).process_event(ToProcessEvt());
- }
- template <class Event,class FSM,class STATE>
- void operator()(Event const& evt,FSM& fsm,STATE& state)const
- {
- (Param1()(evt,fsm,state)).process_event(ToProcessEvt());
- (Param2()(evt,fsm,state)).process_event(ToProcessEvt());
- }
- };
- template <class ToProcessEvt,class Param1, class Param2, class Param3>
- struct Process_ <ToProcessEvt,Param1,Param2,Param3,void>
- : euml_action<Process_<ToProcessEvt, Param1, Param2, Param3, void> >
- {
- template <class Event,class FSM,class STATE >
- struct state_action_result
- {
- typedef void type;
- };
- template <class EVT,class FSM,class SourceState,class TargetState>
- struct transition_action_result
- {
- typedef void type;
- };
- typedef ::boost::fusion::set<state_action_tag,action_tag> tag_type;
- template <class EVT,class FSM,class SourceState,class TargetState>
- void operator()(EVT const& evt,FSM& fsm,SourceState& src,TargetState& tgt)const
- {
- (Param1()(evt,fsm,src,tgt)).process_event(ToProcessEvt());
- (Param2()(evt,fsm,src,tgt)).process_event(ToProcessEvt());
- (Param3()(evt,fsm,src,tgt)).process_event(ToProcessEvt());
- }
- template <class Event,class FSM,class STATE>
- void operator()(Event const& evt,FSM& fsm,STATE& state)const
- {
- (Param1()(evt,fsm,state)).process_event(ToProcessEvt());
- (Param2()(evt,fsm,state)).process_event(ToProcessEvt());
- (Param3()(evt,fsm,state)).process_event(ToProcessEvt());
- }
- };
- //version for process_(event_)
- template <>
- struct Process_ <GetEvent_<void>,void,void,void,void>
- : euml_action<Process_<GetEvent_<void>, void, void, void, void > >
- {
- template <class Event,class FSM,class STATE >
- struct state_action_result
- {
- typedef void type;
- };
- template <class EVT,class FSM,class SourceState,class TargetState>
- struct transition_action_result
- {
- typedef void type;
- };
- typedef ::boost::fusion::set<state_action_tag,action_tag> tag_type;
- template <class EVT,class FSM,class SourceState,class TargetState>
- void operator()(EVT const& evt,FSM& fsm,SourceState& ,TargetState& )const
- {
- fsm.process_event(evt);
- }
- template <class Event,class FSM,class STATE>
- void operator()(Event const& evt,FSM& fsm,STATE& )const
- {
- fsm.process_event(evt);
- }
- };
- struct process_tag {};
- struct Process_Helper: proto::extends< proto::terminal<process_tag>::type, Process_Helper, boost::msm::sm_domain>
- {
- Process_Helper(){}
- using proto::extends< proto::terminal<process_tag>::type, Process_Helper, boost::msm::sm_domain>::operator=;
- template <class Arg1,class Arg2,class Arg3,class Arg4,class Arg5
- #ifdef BOOST_MSVC
- ,class Arg6
- #endif
- >
- struct In
- {
- typedef Process_<Arg1,Arg2,Arg3,Arg4,Arg5> type;
- };
- };
- Process_Helper const process_ = Process_Helper();
- template <class Param1, class Param2, class Param3, class Param4>
- struct Reprocess_ : euml_action<Reprocess_<Param1, Param2, Param3, Param4> >
- {
- template <class Event,class FSM,class STATE >
- struct state_action_result
- {
- typedef void type;
- };
- template <class EVT,class FSM,class SourceState,class TargetState>
- struct transition_action_result
- {
- typedef void type;
- };
- typedef ::boost::fusion::set<state_action_tag,action_tag> tag_type;
- template <class EVT,class FSM,class SourceState,class TargetState>
- void operator()(EVT const& evt,FSM& fsm,SourceState& src,TargetState& tgt)const
- {
- (Param1()(evt,fsm,src,tgt)).process_event(evt);
- (Param2()(evt,fsm,src,tgt)).process_event(evt);
- (Param3()(evt,fsm,src,tgt)).process_event(evt);
- (Param4()(evt,fsm,src,tgt)).process_event(evt);
- }
- template <class Event,class FSM,class STATE>
- void operator()(Event const& evt,FSM& fsm,STATE& state)const
- {
- (Param1()(evt,fsm,state)).process_event(evt);
- (Param2()(evt,fsm,state)).process_event(evt);
- (Param3()(evt,fsm,state)).process_event(evt);
- (Param4()(evt,fsm,state)).process_event(evt);
- }
- };
- template <>
- struct Reprocess_ <void,void,void,void>
- : euml_action<Reprocess_<void, void, void, void > >
- {
- template <class Event,class FSM,class STATE >
- struct state_action_result
- {
- typedef void type;
- };
- template <class EVT,class FSM,class SourceState,class TargetState>
- struct transition_action_result
- {
- typedef void type;
- };
- typedef ::boost::fusion::set<state_action_tag,action_tag> tag_type;
- template <class EVT,class FSM,class SourceState,class TargetState>
- void operator()(EVT const& evt,FSM& fsm,SourceState& ,TargetState& )const
- {
- fsm.process_event(evt);
- }
- template <class Event,class FSM,class STATE>
- void operator()(Event const& evt,FSM& fsm,STATE& )const
- {
- fsm.process_event(evt);
- }
- };
- template <class Param1>
- struct Reprocess_ <Param1,void,void,void>
- : euml_action<Reprocess_<Param1, void, void, void> >
- {
- template <class Event,class FSM,class STATE >
- struct state_action_result
- {
- typedef void type;
- };
- template <class EVT,class FSM,class SourceState,class TargetState>
- struct transition_action_result
- {
- typedef void type;
- };
- typedef ::boost::fusion::set<state_action_tag,action_tag> tag_type;
- template <class EVT,class FSM,class SourceState,class TargetState>
- void operator()(EVT const& evt,FSM& fsm,SourceState& src,TargetState& tgt)const
- {
- (Param1()(evt,fsm,src,tgt)).process_event(evt);
- }
- template <class Event,class FSM,class STATE>
- void operator()(Event const& evt,FSM& fsm,STATE& state)const
- {
- (Param1()(evt,fsm,state)).process_event(evt);
- }
- };
- template <class Param1, class Param2>
- struct Reprocess_ <Param1,Param2,void,void>
- : euml_action<Reprocess_<Param1, Param2, void, void> >
- {
- template <class Event,class FSM,class STATE >
- struct state_action_result
- {
- typedef void type;
- };
- template <class EVT,class FSM,class SourceState,class TargetState>
- struct transition_action_result
- {
- typedef void type;
- };
- typedef ::boost::fusion::set<state_action_tag,action_tag> tag_type;
- template <class EVT,class FSM,class SourceState,class TargetState>
- void operator()(EVT const& evt,FSM& fsm,SourceState& src,TargetState& tgt)const
- {
- (Param1()(evt,fsm,src,tgt)).process_event(evt);
- (Param2()(evt,fsm,src,tgt)).process_event(evt);
- }
- template <class Event,class FSM,class STATE>
- void operator()(Event const& evt,FSM& fsm,STATE& state)const
- {
- (Param1()(evt,fsm,state)).process_event(evt);
- (Param2()(evt,fsm,state)).process_event(evt);
- }
- };
- template <class Param1, class Param2, class Param3>
- struct Reprocess_ <Param1,Param2,Param3,void>
- : euml_action<Reprocess_<Param1, Param2, Param3, void> >
- {
- template <class Event,class FSM,class STATE >
- struct state_action_result
- {
- typedef void type;
- };
- template <class EVT,class FSM,class SourceState,class TargetState>
- struct transition_action_result
- {
- typedef void type;
- };
- typedef ::boost::fusion::set<state_action_tag,action_tag> tag_type;
- template <class EVT,class FSM,class SourceState,class TargetState>
- void operator()(EVT const& evt,FSM& fsm,SourceState& src,TargetState& tgt)const
- {
- (Param1()(evt,fsm,src,tgt)).process_event(evt);
- (Param2()(evt,fsm,src,tgt)).process_event(evt);
- (Param3()(evt,fsm,src,tgt)).process_event(evt);
- }
- template <class Event,class FSM,class STATE>
- void operator()(Event const& evt,FSM& fsm,STATE& state)const
- {
- (Param1()(evt,fsm,state)).process_event(evt);
- (Param2()(evt,fsm,state)).process_event(evt);
- (Param3()(evt,fsm,state)).process_event(evt);
- }
- };
- struct reprocess_tag {};
- struct Reprocess_Helper: proto::extends< proto::terminal<reprocess_tag>::type, Reprocess_Helper, boost::msm::sm_domain>
- {
- Reprocess_Helper(){}
- using proto::extends< proto::terminal<reprocess_tag>::type, Reprocess_Helper, boost::msm::sm_domain>::operator=;
- template <class Arg1,class Arg2,class Arg3,class Arg4,class Arg5
- #ifdef BOOST_MSVC
- ,class Arg6
- #endif
- >
- struct In
- {
- typedef Reprocess_<Arg1,Arg2,Arg3,Arg4> type;
- };
- };
- Reprocess_Helper const reprocess_ = Reprocess_Helper();
- template <class ToProcessEvt,class Value,class Param1, class Param2, class Param3>
- struct Process2_ : euml_action<Process2_<ToProcessEvt,Value, Param1, Param2, Param3> >
- {
- template <class Event,class FSM,class STATE >
- struct state_action_result
- {
- typedef void type;
- };
- template <class EVT,class FSM,class SourceState,class TargetState>
- struct transition_action_result
- {
- typedef void type;
- };
- typedef ::boost::fusion::set<state_action_tag,action_tag> tag_type;
- template <class EVT,class FSM,class SourceState,class TargetState>
- void operator()(EVT const& evt,FSM& fsm,SourceState& src,TargetState& tgt)const
- {
- (Param1()(evt,fsm,src,tgt)).process_event(ToProcessEvt(Value()(evt,fsm,src,tgt)));
- (Param2()(evt,fsm,src,tgt)).process_event(ToProcessEvt(Value()(evt,fsm,src,tgt)));
- (Param3()(evt,fsm,src,tgt)).process_event(ToProcessEvt(Value()(evt,fsm,src,tgt)));
- }
- template <class Event,class FSM,class STATE>
- void operator()(Event const& evt,FSM& fsm,STATE& state)const
- {
- (Param1()(evt,fsm,state)).process_event(ToProcessEvt(Value()(evt,fsm,state)));
- (Param2()(evt,fsm,state)).process_event(ToProcessEvt(Value()(evt,fsm,state)));
- (Param3()(evt,fsm,state)).process_event(ToProcessEvt(Value()(evt,fsm,state)));
- }
- };
- template <class ToProcessEvt,class Value>
- struct Process2_ <ToProcessEvt,Value,void,void,void>
- : euml_action<Process2_<ToProcessEvt,Value, void, void, void > >
- {
- template <class Event,class FSM,class STATE >
- struct state_action_result
- {
- typedef void type;
- };
- template <class EVT,class FSM,class SourceState,class TargetState>
- struct transition_action_result
- {
- typedef void type;
- };
- typedef ::boost::fusion::set<state_action_tag,action_tag> tag_type;
- template <class EVT,class FSM,class SourceState,class TargetState>
- void operator()(EVT const& evt,FSM& fsm,SourceState& src,TargetState& tgt)const
- {
- fsm.process_event(ToProcessEvt(Value()(evt,fsm,src,tgt)));
- }
- template <class Event,class FSM,class STATE>
- void operator()(Event const& evt,FSM& fsm,STATE& state)const
- {
- fsm.process_event(ToProcessEvt(Value()(evt,fsm,state)));
- }
- };
- template <class ToProcessEvt,class Value,class Param1>
- struct Process2_ <ToProcessEvt,Value,Param1,void,void>
- : euml_action<Process2_<ToProcessEvt,Value, Param1, void, void> >
- {
- template <class Event,class FSM,class STATE >
- struct state_action_result
- {
- typedef void type;
- };
- template <class EVT,class FSM,class SourceState,class TargetState>
- struct transition_action_result
- {
- typedef void type;
- };
- typedef ::boost::fusion::set<state_action_tag,action_tag> tag_type;
- template <class EVT,class FSM,class SourceState,class TargetState>
- void operator()(EVT const& evt,FSM& fsm,SourceState& src,TargetState& tgt)const
- {
- (Param1()(evt,fsm,src,tgt)).process_event(ToProcessEvt(Value()(evt,fsm,src,tgt)));
- }
- template <class Event,class FSM,class STATE>
- void operator()(Event const& evt,FSM& fsm,STATE& state)const
- {
- (Param1()(evt,fsm,state)).process_event(ToProcessEvt(Value()(evt,fsm,state)));
- }
- };
- template <class ToProcessEvt,class Value,class Param1, class Param2>
- struct Process2_ <ToProcessEvt,Value,Param1,Param2,void>
- : euml_action<Process2_<ToProcessEvt,Value, Param1, Param2, void> >
- {
- template <class Event,class FSM,class STATE >
- struct state_action_result
- {
- typedef void type;
- };
- template <class EVT,class FSM,class SourceState,class TargetState>
- struct transition_action_result
- {
- typedef void type;
- };
- typedef ::boost::fusion::set<state_action_tag,action_tag> tag_type;
- template <class EVT,class FSM,class SourceState,class TargetState>
- void operator()(EVT const& evt,FSM& fsm,SourceState& src,TargetState& tgt)const
- {
- (Param1()(evt,fsm,src,tgt)).process_event(ToProcessEvt(Value()(evt,fsm,src,tgt)));
- (Param2()(evt,fsm,src,tgt)).process_event(ToProcessEvt(Value()(evt,fsm,src,tgt)));
- }
- template <class Event,class FSM,class STATE>
- void operator()(Event const& evt,FSM& fsm,STATE& state)const
- {
- (Param1()(evt,fsm,state)).process_event(ToProcessEvt(Value()(evt,fsm,state)));
- (Param2()(evt,fsm,state)).process_event(ToProcessEvt(Value()(evt,fsm,state)));
- }
- };
- struct process2_tag {};
- struct Process2_Helper : proto::extends< proto::terminal<process2_tag>::type, Process2_Helper, boost::msm::sm_domain>
- {
- Process2_Helper(){}
- using proto::extends< proto::terminal<process2_tag>::type, Process2_Helper, boost::msm::sm_domain>::operator=;
- template <class Arg1,class Arg2,class Arg3,class Arg4,class Arg5
- #ifdef BOOST_MSVC
- ,class Arg6
- #endif
- >
- struct In
- {
- typedef Process2_<Arg1,Arg2,Arg3,Arg4,Arg5> type;
- };
- };
- Process2_Helper const process2_ = Process2_Helper();
- template <class Flag,class Param1=void, class Enable=void >
- struct Get_Flag_ : euml_action<Get_Flag_<Flag,Param1,Enable> > {};
- template <class Flag,class Param1>
- struct Get_Flag_ <Flag,Param1
- , typename ::boost::enable_if<typename ::boost::is_same<Param1,void>::type >::type>
- : euml_action<Get_Flag_<Flag, Param1> >
- {
- template <class Event,class FSM,class STATE >
- struct state_action_result
- {
- typedef bool type;
- };
- template <class EVT,class FSM,class SourceState,class TargetState>
- struct transition_action_result
- {
- typedef bool type;
- };
- typedef ::boost::fusion::set<state_action_tag,action_tag> tag_type;
- template <class EVT,class FSM,class SourceState,class TargetState>
- bool operator()(EVT const&,FSM& fsm,SourceState& ,TargetState& )const
- {
- return fsm.template is_flag_active<Flag>();
- }
- template <class Event,class FSM,class STATE>
- bool operator()(Event const& ,FSM& fsm,STATE& )const
- {
- return fsm.template is_flag_active<Flag>();
- }
- };
- template <class Flag,class Param1>
- struct Get_Flag_ <Flag,Param1
- , typename ::boost::disable_if<
- typename ::boost::is_same<Param1,void>::type
- >::type>
- : euml_action<Get_Flag_<Flag, Param1> >
- {
- template <class Event,class FSM,class STATE >
- struct state_action_result
- {
- typedef bool type;
- };
- template <class EVT,class FSM,class SourceState,class TargetState>
- struct transition_action_result
- {
- typedef bool type;
- };
- typedef ::boost::fusion::set<state_action_tag,action_tag> tag_type;
- template <class EVT,class FSM,class SourceState,class TargetState>
- bool operator()(EVT const& evt,FSM& fsm,SourceState& src,TargetState& tgt)const
- {
- return (Param1()(evt,fsm,src,tgt)).template is_flag_active<Flag>();
- }
- template <class Event,class FSM,class STATE>
- bool operator()(Event const& evt,FSM& fsm,STATE& state)const
- {
- return (Param1()(evt,fsm,state)).template is_flag_active<Flag>();
- }
- };
- struct Get_Flag_Helper: proto::extends< proto::terminal<fsm_artefact_tag>::type, Get_Flag_Helper, boost::msm::sm_domain>
- {
- Get_Flag_Helper(){}
- template <class Arg1,class Arg2,class Arg3,class Arg4,class Arg5
- #ifdef BOOST_MSVC
- ,class Arg6
- #endif
- >
- struct In
- {
- typedef Get_Flag_<Arg1,Arg2> type;
- };
- };
- Get_Flag_Helper const is_flag_ = Get_Flag_Helper();
- // deferring an event
- struct DeferEvent_ : euml_action< DeferEvent_ >
- {
- typedef ::boost::fusion::set<action_tag> tag_type;
- // mark as deferring to avoid stack overflows in certain conditions
- typedef int deferring_action;
- template <class EVT,class FSM,class SourceState,class TargetState>
- void operator()(EVT const& evt,FSM& fsm,SourceState& ,TargetState& ) const
- {
- fsm.defer_event(evt);
- }
- };
- struct Defer_Helper : proto::extends< proto::terminal<fsm_artefact_tag>::type, Defer_Helper, boost::msm::sm_domain>
- {
- Defer_Helper(){}
- using proto::extends< proto::terminal<fsm_artefact_tag>::type, Defer_Helper, boost::msm::sm_domain>::operator=;
- template <class Arg1,class Arg2,class Arg3,class Arg4,class Arg5
- #ifdef BOOST_MSVC
- ,class Arg6
- #endif
- >
- struct In
- {
- typedef DeferEvent_ type;
- };
- };
- Defer_Helper const defer_ = Defer_Helper();
- struct explicit_tag {};
- struct Explicit_Helper : proto::extends< proto::terminal<explicit_tag>::type, Explicit_Helper, boost::msm::sm_domain>
- {
- Explicit_Helper(){}
- using proto::extends< proto::terminal<explicit_tag>::type, Explicit_Helper, boost::msm::sm_domain>::operator=;
- template <class Arg1,class Arg2,class Arg3,class Arg4,class Arg5
- #ifdef BOOST_MSVC
- ,class Arg6
- #endif
- >
- struct In
- {
- typedef typename Arg1::template direct<Arg2> type;
- };
- };
- Explicit_Helper const explicit_ = Explicit_Helper();
- struct entry_pt_tag {};
- struct Entry_Pt_Helper : proto::extends< proto::terminal<entry_pt_tag>::type, Entry_Pt_Helper, boost::msm::sm_domain>
- {
- Entry_Pt_Helper(){}
- using proto::extends< proto::terminal<entry_pt_tag>::type, Entry_Pt_Helper, boost::msm::sm_domain>::operator=;
- template <class Arg1,class Arg2,class Arg3,class Arg4,class Arg5
- #ifdef BOOST_MSVC
- ,class Arg6
- #endif
- >
- struct In
- {
- typedef typename Arg1::template entry_pt<Arg2> type;
- };
- };
- Entry_Pt_Helper const entry_pt_ = Entry_Pt_Helper();
- struct exit_pt_tag {};
- struct Exit_Pt_Helper : proto::extends< proto::terminal<exit_pt_tag>::type, Exit_Pt_Helper, boost::msm::sm_domain>
- {
- Exit_Pt_Helper(){}
- using proto::extends< proto::terminal<exit_pt_tag>::type, Exit_Pt_Helper, boost::msm::sm_domain>::operator=;
- template <class Arg1,class Arg2,class Arg3,class Arg4,class Arg5
- #ifdef BOOST_MSVC
- ,class Arg6
- #endif
- >
- struct In
- {
- typedef typename Arg1::template exit_pt<Arg2> type;
- };
- };
- Exit_Pt_Helper const exit_pt_ = Exit_Pt_Helper();
- #ifdef BOOST_MSVC
- #define BOOST_MSM_EUML_FUNCTION(functor,function,function_name,result_trans,result_state) \
- template <class Param1=void , class Param2=void , class Param3=void , class Param4=void, \
- class Param5=void,class Param6=void,class Enable=void > \
- struct functor : euml_action<functor<Param1,Param2,Param3,Param4,Param5,Param6,Enable> > {}; \
- template <class Param1, class Param2, class Param3, class Param4, class Param5, class Param6> \
- struct functor<Param1,Param2,Param3,Param4,Param5,Param6, \
- typename ::boost::enable_if<typename ::boost::is_same<Param1,void>::type>::type> \
- : euml_action<functor<Param1,Param2,Param3,Param4,Param5,Param6> > { \
- template <class Event,class FSM,class STATE > struct state_action_result { \
- typedef result_state type;} ; \
- template <class EVT,class FSM,class SourceState,class TargetState> \
- struct transition_action_result { typedef result_trans type;}; \
- typedef ::boost::fusion::set<boost::msm::front::state_action_tag,boost::msm::front::action_tag> tag_type; \
- template <class EVT,class FSM,class SourceState,class TargetState> \
- typename transition_action_result<EVT,FSM,SourceState,TargetState>::type \
- operator()(EVT const& , FSM& ,SourceState& ,TargetState& )const { \
- return function ();} \
- template <class Event,class FSM,class STATE> \
- typename state_action_result<Event,FSM,STATE>::type \
- operator()(Event const& ,FSM& ,STATE& )const { \
- return function ();} }; \
- template <class Param1, class Param2, class Param3, class Param4, class Param5,class Param6> \
- struct functor<Param1,Param2,Param3,Param4,Param5,Param6, \
- typename ::boost::disable_if<typename ::boost::mpl::or_< \
- typename ::boost::is_same<Param1,void>::type,typename ::boost::mpl::not_< \
- typename ::boost::is_same<Param2,void>::type>::type>::type >::type> \
- : euml_action<functor<Param1,Param2,Param3,Param4,Param5,Param6> > { \
- template <class Event,class FSM,class STATE > struct state_action_result { \
- typedef result_state type;} ; \
- template <class EVT,class FSM,class SourceState,class TargetState> \
- struct transition_action_result { typedef result_trans type;}; \
- typedef ::boost::fusion::set<boost::msm::front::state_action_tag,boost::msm::front::action_tag> tag_type; \
- template <class EVT,class FSM,class SourceState,class TargetState> \
- typename ::boost::enable_if<typename ::boost::mpl::has_key< \
- typename Param1::tag_type,boost::msm::front::action_tag>::type, \
- typename transition_action_result<EVT,FSM,SourceState,TargetState>::type >::type \
- operator()(EVT const& evt, FSM& fsm,SourceState& src,TargetState& tgt)const { \
- return function (Param1()(evt,fsm,src,tgt));} \
- template <class Event,class FSM,class STATE> \
- typename ::boost::enable_if<typename ::boost::mpl::has_key< \
- typename Param1::tag_type,boost::msm::front::state_action_tag>::type, \
- typename state_action_result<Event,FSM,STATE>::type >::type \
- operator()(Event const& evt,FSM& fsm,STATE& state )const { \
- return function (Param1()(evt,fsm,state));} }; \
- template <class Param1, class Param2, class Param3, class Param4, class Param5,class Param6> \
- struct functor<Param1,Param2,Param3,Param4,Param5,Param6, \
- typename ::boost::disable_if<typename ::boost::mpl::or_< \
- typename ::boost::is_same<Param2,void>::type,typename ::boost::mpl::not_< \
- typename ::boost::is_same<Param3,void>::type>::type>::type >::type> \
- : euml_action<functor<Param1,Param2,Param3,Param4,Param5,Param6> > { \
- template <class Event,class FSM,class STATE > struct state_action_result { \
- typedef result_state type;} ; \
- template <class EVT,class FSM,class SourceState,class TargetState> \
- struct transition_action_result { typedef result_trans type;}; \
- typedef ::boost::fusion::set<boost::msm::front::state_action_tag,boost::msm::front::action_tag> tag_type; \
- template <class EVT,class FSM,class SourceState,class TargetState> \
- typename ::boost::enable_if<typename ::boost::mpl::has_key< \
- typename Param1::tag_type,boost::msm::front::action_tag>::type, \
- typename transition_action_result<EVT,FSM,SourceState,TargetState>::type >::type \
- operator()(EVT const& evt, FSM& fsm,SourceState& src,TargetState& tgt)const { \
- return function (Param1()(evt,fsm,src,tgt),Param2()(evt,fsm,src,tgt));} \
- template <class Event,class FSM,class STATE> \
- typename ::boost::enable_if<typename ::boost::mpl::has_key< \
- typename Param1::tag_type,boost::msm::front::state_action_tag>::type, \
- typename state_action_result<Event,FSM,STATE>::type >::type \
- operator()(Event const& evt,FSM& fsm,STATE& state )const { \
- return function (Param1()(evt,fsm,state),Param2()(evt,fsm,state));} }; \
- template <class Param1, class Param2, class Param3, class Param4, class Param5,class Param6> \
- struct functor<Param1,Param2,Param3,Param4,Param5,Param6, \
- typename ::boost::disable_if<typename ::boost::mpl::or_< \
- typename ::boost::is_same<Param3,void>::type,typename ::boost::mpl::not_< \
- typename ::boost::is_same<Param4,void>::type>::type>::type >::type> \
- : euml_action<functor<Param1,Param2,Param3,Param4,Param5,Param6> > { \
- template <class Event,class FSM,class STATE > struct state_action_result { \
- typedef result_state type;} ; \
- template <class EVT,class FSM,class SourceState,class TargetState> \
- struct transition_action_result { typedef result_trans type;}; \
- typedef ::boost::fusion::set<boost::msm::front::state_action_tag,boost::msm::front::action_tag> tag_type; \
- template <class EVT,class FSM,class SourceState,class TargetState> \
- typename ::boost::enable_if<typename ::boost::mpl::has_key< \
- typename Param1::tag_type,boost::msm::front::action_tag>::type, \
- typename transition_action_result<EVT,FSM,SourceState,TargetState>::type >::type \
- operator()(EVT const& evt, FSM& fsm,SourceState& src,TargetState& tgt)const { \
- return function (Param1()(evt,fsm,src,tgt),Param2()(evt,fsm,src,tgt),Param3()(evt,fsm,src,tgt));} \
- template <class Event,class FSM,class STATE> \
- typename ::boost::enable_if<typename ::boost::mpl::has_key< \
- typename Param1::tag_type,boost::msm::front::state_action_tag>::type, \
- typename state_action_result<Event,FSM,STATE>::type >::type \
- operator()(Event const& evt,FSM& fsm,STATE& state )const { \
- return function (Param1()(evt,fsm,state),Param2()(evt,fsm,state),Param3()(evt,fsm,state));} }; \
- template <class Param1, class Param2, class Param3, class Param4, class Param5,class Param6> \
- struct functor<Param1,Param2,Param3,Param4,Param5,Param6, \
- typename ::boost::disable_if<typename ::boost::mpl::or_< \
- typename ::boost::is_same<Param4,void>::type,typename ::boost::mpl::not_< \
- typename ::boost::is_same<Param5,void>::type>::type>::type >::type> \
- : euml_action<functor<Param1,Param2,Param3,Param4,Param5,Param6> > { \
- template <class Event,class FSM,class STATE > struct state_action_result { \
- typedef result_state type;} ; \
- template <class EVT,class FSM,class SourceState,class TargetState> \
- struct transition_action_result { typedef result_trans type;}; \
- typedef ::boost::fusion::set<boost::msm::front::state_action_tag,boost::msm::front::action_tag> tag_type; \
- template <class EVT,class FSM,class SourceState,class TargetState> \
- typename ::boost::enable_if<typename ::boost::mpl::has_key< \
- typename Param1::tag_type,boost::msm::front::action_tag>::type, \
- typename transition_action_result<EVT,FSM,SourceState,TargetState>::type >::type \
- operator()(EVT const& evt, FSM& fsm,SourceState& src,TargetState& tgt)const { \
- return function (Param1()(evt,fsm,src,tgt),Param2()(evt,fsm,src,tgt),Param3()(evt,fsm,src,tgt) \
- ,Param4()(evt,fsm,src,tgt));} \
- template <class Event,class FSM,class STATE> \
- typename ::boost::enable_if<typename ::boost::mpl::has_key< \
- typename Param1::tag_type,boost::msm::front::state_action_tag>::type, \
- typename state_action_result<Event,FSM,STATE>::type >::type \
- operator()(Event const& evt,FSM& fsm,STATE& state )const { \
- return function (Param1()(evt,fsm,state),Param2()(evt,fsm,state),Param3()(evt,fsm,state) \
- ,Param4()(evt,fsm,state));} }; \
- template <class Param1, class Param2, class Param3, class Param4, class Param5,class Param6> \
- struct functor<Param1,Param2,Param3,Param4,Param5,Param6, \
- typename ::boost::disable_if<typename ::boost::mpl::or_< \
- typename ::boost::is_same<Param5,void>::type,typename ::boost::mpl::not_< \
- typename ::boost::is_same<Param6,void>::type>::type>::type >::type> \
- : euml_action<functor<Param1,Param2,Param3,Param4,Param5,Param6> > { \
- template <class Event,class FSM,class STATE > struct state_action_result { \
- typedef result_state type;} ; \
- template <class EVT,class FSM,class SourceState,class TargetState> \
- struct transition_action_result { typedef result_trans type;}; \
- typedef ::boost::fusion::set<boost::msm::front::state_action_tag,boost::msm::front::action_tag> tag_type; \
- template <class EVT,class FSM,class SourceState,class TargetState> \
- typename ::boost::enable_if<typename ::boost::mpl::has_key< \
- typename Param1::tag_type,boost::msm::front::action_tag>::type, \
- typename transition_action_result<EVT,FSM,SourceState,TargetState>::type >::type \
- operator()(EVT const& evt, FSM& fsm,SourceState& src,TargetState& tgt)const { \
- return function (Param1()(evt,fsm,src,tgt),Param2()(evt,fsm,src,tgt),Param3()(evt,fsm,src,tgt) \
- ,Param4()(evt,fsm,src,tgt),Param5()(evt,fsm,src,tgt));} \
- template <class Event,class FSM,class STATE> \
- typename ::boost::enable_if<typename ::boost::mpl::has_key< \
- typename Param1::tag_type,boost::msm::front::state_action_tag>::type, \
- typename state_action_result<Event,FSM,STATE>::type >::type \
- operator()(Event const& evt,FSM& fsm,STATE& state )const { \
- return function (Param1()(evt,fsm,state),Param2()(evt,fsm,state),Param3()(evt,fsm,state) \
- ,Param4()(evt,fsm,state),Param5()(evt,fsm,state));} }; \
- template <class Param1, class Param2, class Param3, class Param4, class Param5,class Param6> \
- struct functor<Param1,Param2,Param3,Param4,Param5,Param6, \
- typename ::boost::disable_if<typename ::boost::is_same<Param6,void>::type>::type> \
- : euml_action<functor<Param1,Param2,Param3,Param4,Param5,Param6> > { \
- template <class Event,class FSM,class STATE > struct state_action_result { \
- typedef result_state type;} ; \
- template <class EVT,class FSM,class SourceState,class TargetState> \
- struct transition_action_result { typedef result_trans type;}; \
- typedef ::boost::fusion::set<boost::msm::front::state_action_tag,boost::msm::front::action_tag> tag_type; \
- template <class EVT,class FSM,class SourceState,class TargetState> \
- typename ::boost::enable_if<typename ::boost::mpl::has_key< \
- typename Param1::tag_type,boost::msm::front::action_tag>::type, \
- typename transition_action_result<EVT,FSM,SourceState,TargetState>::type >::type \
- operator()(EVT const& evt, FSM& fsm,SourceState& src,TargetState& tgt)const { \
- return function (Param1()(evt,fsm,src,tgt),Param2()(evt,fsm,src,tgt),Param3()(evt,fsm,src,tgt) \
- ,Param4()(evt,fsm,src,tgt),Param5()(evt,fsm,src,tgt),Param6()(evt,fsm,src,tgt));} \
- template <class Event,class FSM,class STATE> \
- typename ::boost::enable_if<typename ::boost::mpl::has_key< \
- typename Param1::tag_type,boost::msm::front::state_action_tag>::type, \
- typename state_action_result<Event,FSM,STATE>::type >::type \
- operator()(Event const& evt,FSM& fsm,STATE& state )const { \
- return function (Param1()(evt,fsm,state),Param2()(evt,fsm,state),Param3()(evt,fsm,state) \
- ,Param4()(evt,fsm,state),Param5()(evt,fsm,state),Param6()(evt,fsm,state));} }; \
- struct function_name ## tag{}; \
- struct functor ## Helper : proto::extends< proto::terminal< function_name ## tag >::type, \
- functor ## Helper , boost::msm::sm_domain> { functor ## Helper(){} \
- template <class Arg1,class Arg2,class Arg3,class Arg4,class Arg5,class Arg6> \
- struct In {typedef functor <Arg1,Arg2,Arg3,Arg4,Arg5,Arg6> type;}; }; \
- functor ## Helper const function_name = functor ## Helper ();
- #define BOOST_MSM_EUML_METHOD(functor,function,function_name,result_trans,result_state) \
- template <class Param1=void , class Param2=void , class Param3=void , class Param4=void, \
- class Param5=void,class Param6=void,class Enable=void > \
- struct functor : euml_action<functor<Param1,Param2,Param3,Param4,Param5,Param6,Enable> > {}; \
- template <class Param1, class Param2, class Param3, class Param4, class Param5, class Param6> \
- struct functor<Param1,Param2,Param3,Param4,Param5,Param6, \
- typename ::boost::enable_if<typename ::boost::is_same<Param2,void>::type>::type> \
- : euml_action<functor<Param1,Param2,Param3,Param4,Param5,Param6> > { \
- template <class Event,class FSM,class STATE > struct state_action_result { \
- typedef result_state type;} ; \
- template <class EVT,class FSM,class SourceState,class TargetState> \
- struct transition_action_result { typedef result_trans type;}; \
- typedef ::boost::fusion::set<boost::msm::front::state_action_tag,boost::msm::front::action_tag> tag_type; \
- template <class EVT,class FSM,class SourceState,class TargetState> \
- typename ::boost::enable_if<typename ::boost::mpl::has_key< \
- typename Param1::tag_type,boost::msm::front::action_tag>::type, \
- typename transition_action_result<EVT,FSM,SourceState,TargetState>::type >::type \
- operator()(EVT const& evt, FSM& fsm,SourceState& src,TargetState& tgt)const { \
- return (Param1()(evt,fsm,src,tgt)).function();} \
- template <class Event,class FSM,class STATE> \
- typename ::boost::enable_if<typename ::boost::mpl::has_key< \
- typename Param1::tag_type,boost::msm::front::state_action_tag>::type, \
- typename state_action_result<Event,FSM,STATE>::type >::type \
- operator()(Event const& evt,FSM& fsm,STATE& state )const { \
- return (Param1()(evt,fsm,state)).function();} }; \
- template <class Param1, class Param2, class Param3, class Param4, class Param5,class Param6> \
- struct functor<Param1,Param2,Param3,Param4,Param5,Param6, \
- typename ::boost::disable_if<typename ::boost::mpl::or_< \
- typename ::boost::is_same<Param2,void>::type,typename ::boost::mpl::not_< \
- typename ::boost::is_same<Param3,void>::type>::type>::type >::type> \
- : euml_action<functor<Param1,Param2,Param3,Param4,Param5,Param6> > { \
- template <class Event,class FSM,class STATE > struct state_action_result { \
- typedef result_state type;} ; \
- template <class EVT,class FSM,class SourceState,class TargetState> \
- struct transition_action_result { typedef result_trans type;}; \
- typedef ::boost::fusion::set<boost::msm::front::state_action_tag,boost::msm::front::action_tag> tag_type; \
- template <class EVT,class FSM,class SourceState,class TargetState> \
- typename ::boost::enable_if<typename ::boost::mpl::has_key< \
- typename Param1::tag_type,boost::msm::front::action_tag>::type, \
- typename transition_action_result<EVT,FSM,SourceState,TargetState>::type >::type \
- operator()(EVT const& evt, FSM& fsm,SourceState& src,TargetState& tgt)const { \
- return (Param1()(evt,fsm,src,tgt)).function(Param2()(evt,fsm,src,tgt));} \
- template <class Event,class FSM,class STATE> \
- typename ::boost::enable_if<typename ::boost::mpl::has_key< \
- typename Param1::tag_type,boost::msm::front::state_action_tag>::type, \
- typename state_action_result<Event,FSM,STATE>::type >::type \
- operator()(Event const& evt,FSM& fsm,STATE& state )const { \
- return (Param1()(evt,fsm,state)).function(Param2()(evt,fsm,state));} }; \
- template <class Param1, class Param2, class Param3, class Param4, class Param5,class Param6> \
- struct functor<Param1,Param2,Param3,Param4,Param5,Param6, \
- typename ::boost::disable_if<typename ::boost::mpl::or_< \
- typename ::boost::is_same<Param3,void>::type,typename ::boost::mpl::not_< \
- typename ::boost::is_same<Param4,void>::type>::type>::type >::type> \
- : euml_action<functor<Param1,Param2,Param3,Param4,Param5,Param6> > { \
- template <class Event,class FSM,class STATE > struct state_action_result { \
- typedef result_state type;} ; \
- template <class EVT,class FSM,class SourceState,class TargetState> \
- struct transition_action_result { typedef result_trans type;}; \
- typedef ::boost::fusion::set<boost::msm::front::state_action_tag,boost::msm::front::action_tag> tag_type; \
- template <class EVT,class FSM,class SourceState,class TargetState> \
- typename ::boost::enable_if<typename ::boost::mpl::has_key< \
- typename Param1::tag_type,boost::msm::front::action_tag>::type, \
- typename transition_action_result<EVT,FSM,SourceState,TargetState>::type >::type \
- operator()(EVT const& evt, FSM& fsm,SourceState& src,TargetState& tgt)const { \
- return (Param1()(evt,fsm,src,tgt)).function(Param2()(evt,fsm,src,tgt),Param3()(evt,fsm,src,tgt));} \
- template <class Event,class FSM,class STATE> \
- typename ::boost::enable_if<typename ::boost::mpl::has_key< \
- typename Param1::tag_type,boost::msm::front::state_action_tag>::type, \
- typename state_action_result<Event,FSM,STATE>::type >::type \
- operator()(Event const& evt,FSM& fsm,STATE& state )const { \
- return (Param1()(evt,fsm,state)).function(Param2()(evt,fsm,state),Param3()(evt,fsm,state));} }; \
- template <class Param1, class Param2, class Param3, class Param4, class Param5,class Param6> \
- struct functor<Param1,Param2,Param3,Param4,Param5,Param6, \
- typename ::boost::disable_if<typename ::boost::mpl::or_< \
- typename ::boost::is_same<Param4,void>::type,typename ::boost::mpl::not_< \
- typename ::boost::is_same<Param5,void>::type>::type>::type >::type> \
- : euml_action<functor<Param1,Param2,Param3,Param4,Param5,Param6> > { \
- template <class Event,class FSM,class STATE > struct state_action_result { \
- typedef result_state type;} ; \
- template <class EVT,class FSM,class SourceState,class TargetState> \
- struct transition_action_result { typedef result_trans type;}; \
- typedef ::boost::fusion::set<boost::msm::front::state_action_tag,boost::msm::front::action_tag> tag_type; \
- template <class EVT,class FSM,class SourceState,class TargetState> \
- typename ::boost::enable_if<typename ::boost::mpl::has_key< \
- typename Param1::tag_type,boost::msm::front::action_tag>::type, \
- typename transition_action_result<EVT,FSM,SourceState,TargetState>::type >::type \
- operator()(EVT const& evt, FSM& fsm,SourceState& src,TargetState& tgt)const { \
- return (Param1()(evt,fsm,src,tgt)).function(Param2()(evt,fsm,src,tgt),Param3()(evt,fsm,src,tgt) \
- ,Param4()(evt,fsm,src,tgt));} \
- template <class Event,class FSM,class STATE> \
- typename ::boost::enable_if<typename ::boost::mpl::has_key< \
- typename Param1::tag_type,boost::msm::front::state_action_tag>::type, \
- typename state_action_result<Event,FSM,STATE>::type >::type \
- operator()(Event const& evt,FSM& fsm,STATE& state )const { \
- return (Param1()(evt,fsm,state)).function(Param2()(evt,fsm,state),Param3()(evt,fsm,state) \
- ,Param4()(evt,fsm,state));} }; \
- template <class Param1, class Param2, class Param3, class Param4, class Param5,class Param6> \
- struct functor<Param1,Param2,Param3,Param4,Param5,Param6, \
- typename ::boost::disable_if<typename ::boost::mpl::or_< \
- typename ::boost::is_same<Param5,void>::type,typename ::boost::mpl::not_< \
- typename ::boost::is_same<Param6,void>::type>::type>::type >::type> \
- : euml_action<functor<Param1,Param2,Param3,Param4,Param5,Param6> > { \
- template <class Event,class FSM,class STATE > struct state_action_result { \
- typedef result_state type;} ; \
- template <class EVT,class FSM,class SourceState,class TargetState> \
- struct transition_action_result { typedef result_trans type;}; \
- typedef ::boost::fusion::set<boost::msm::front::state_action_tag,boost::msm::front::action_tag> tag_type; \
- template <class EVT,class FSM,class SourceState,class TargetState> \
- typename ::boost::enable_if<typename ::boost::mpl::has_key< \
- typename Param1::tag_type,boost::msm::front::action_tag>::type, \
- typename transition_action_result<EVT,FSM,SourceState,TargetState>::type >::type \
- operator()(EVT const& evt, FSM& fsm,SourceState& src,TargetState& tgt)const { \
- return (Param1()(evt,fsm,src,tgt)).function(Param2()(evt,fsm,src,tgt),Param3()(evt,fsm,src,tgt) \
- ,Param4()(evt,fsm,src,tgt),Param5()(evt,fsm,src,tgt));} \
- template <class Event,class FSM,class STATE> \
- typename ::boost::enable_if<typename ::boost::mpl::has_key< \
- typename Param1::tag_type,boost::msm::front::state_action_tag>::type, \
- typename state_action_result<Event,FSM,STATE>::type >::type \
- operator()(Event const& evt,FSM& fsm,STATE& state )const { \
- return (Param1()(evt,fsm,state)).function(Param2()(evt,fsm,state),Param3()(evt,fsm,state) \
- ,Param4()(evt,fsm,state),Param5()(evt,fsm,state));} }; \
- template <class Param1, class Param2, class Param3, class Param4, class Param5,class Param6> \
- struct functor<Param1,Param2,Param3,Param4,Param5,Param6, \
- typename ::boost::disable_if<typename ::boost::is_same<Param6,void>::type>::type> \
- : euml_action<functor<Param1,Param2,Param3,Param4,Param5,Param6> > { \
- template <class Event,class FSM,class STATE > struct state_action_result { \
- typedef result_state type;} ; \
- template <class EVT,class FSM,class SourceState,class TargetState> \
- struct transition_action_result { typedef result_trans type;}; \
- typedef ::boost::fusion::set<boost::msm::front::state_action_tag,boost::msm::front::action_tag> tag_type; \
- template <class EVT,class FSM,class SourceState,class TargetState> \
- typename ::boost::enable_if<typename ::boost::mpl::has_key< \
- typename Param1::tag_type,boost::msm::front::action_tag>::type, \
- typename transition_action_result<EVT,FSM,SourceState,TargetState>::type >::type \
- operator()(EVT const& evt, FSM& fsm,SourceState& src,TargetState& tgt)const { \
- return (Param1()(evt,fsm,src,tgt)).function(Param2()(evt,fsm,src,tgt),Param3()(evt,fsm,src,tgt) \
- ,Param4()(evt,fsm,src,tgt),Param5()(evt,fsm,src,tgt),Param6()(evt,fsm,src,tgt));} \
- template <class Event,class FSM,class STATE> \
- typename ::boost::enable_if<typename ::boost::mpl::has_key< \
- typename Param1::tag_type,boost::msm::front::state_action_tag>::type, \
- typename state_action_result<Event,FSM,STATE>::type >::type \
- operator()(Event const& evt,FSM& fsm,STATE& state )const { \
- return (Param1()(evt,fsm,state)).function(Param2()(evt,fsm,state),Param3()(evt,fsm,state) \
- ,Param4()(evt,fsm,state),Param5()(evt,fsm,state),Param6()(evt,fsm,state));} }; \
- struct function_name ## tag{}; \
- struct functor ## Helper : proto::extends< proto::terminal< function_name ## tag >::type, \
- functor ## Helper , boost::msm::sm_domain> { functor ## Helper(){} \
- template <class Arg1,class Arg2,class Arg3,class Arg4,class Arg5,class Arg6> \
- struct In {typedef functor <Arg1,Arg2,Arg3,Arg4,Arg5,Arg6> type;}; }; \
- functor ## Helper const function_name = functor ## Helper ();
- #else
- #define BOOST_MSM_EUML_FUNCTION(functor,function,function_name,result_trans,result_state) \
- template <class Param1=void , class Param2=void , class Param3=void , class Param4=void, \
- class Param5=void,class Enable=void > \
- struct functor : euml_action<functor<Param1,Param2,Param3,Param4,Param5,Enable> > {}; \
- template <class Param1, class Param2, class Param3, class Param4, class Param5> \
- struct functor<Param1,Param2,Param3,Param4,Param5, \
- typename ::boost::disable_if<typename ::boost::mpl::or_< \
- typename ::boost::is_same<Param1,void>::type,typename ::boost::mpl::not_< \
- typename ::boost::is_same<Param2,void>::type>::type>::type >::type> \
- : euml_action<functor<Param1,Param2,Param3,Param4,Param5> > { \
- template <class Event,class FSM,class STATE > struct state_action_result { \
- typedef result_state type;} ; \
- template <class EVT,class FSM,class SourceState,class TargetState> \
- struct transition_action_result { typedef result_trans type;}; \
- typedef ::boost::fusion::set<boost::msm::front::state_action_tag,boost::msm::front::action_tag> tag_type; \
- template <class EVT,class FSM,class SourceState,class TargetState> \
- typename ::boost::enable_if<typename ::boost::mpl::has_key< \
- typename Param1::tag_type,boost::msm::front::action_tag>::type, \
- typename transition_action_result<EVT,FSM,SourceState,TargetState>::type >::type \
- operator()(EVT const& evt, FSM& fsm,SourceState& src,TargetState& tgt)const { \
- return function (Param1()(evt,fsm,src,tgt));} \
- template <class Event,class FSM,class STATE> \
- typename ::boost::enable_if<typename ::boost::mpl::has_key< \
- typename Param1::tag_type,boost::msm::front::state_action_tag>::type, \
- typename state_action_result<Event,FSM,STATE>::type >::type \
- operator()(Event const& evt,FSM& fsm,STATE& state )const { \
- return function (Param1()(evt,fsm,state));} }; \
- template <class Param1, class Param2, class Param3, class Param4, class Param5> \
- struct functor<Param1,Param2,Param3,Param4,Param5, \
- typename ::boost::disable_if<typename ::boost::mpl::or_< \
- typename ::boost::is_same<Param2,void>::type,typename ::boost::mpl::not_< \
- typename ::boost::is_same<Param3,void>::type>::type>::type >::type> \
- : euml_action<functor<Param1,Param2,Param3,Param4,Param5> > { \
- template <class Event,class FSM,class STATE > struct state_action_result { \
- typedef result_state type;} ; \
- template <class EVT,class FSM,class SourceState,class TargetState> \
- struct transition_action_result { typedef result_trans type;}; \
- typedef ::boost::fusion::set<boost::msm::front::state_action_tag,boost::msm::front::action_tag> tag_type; \
- template <class EVT,class FSM,class SourceState,class TargetState> \
- typename ::boost::enable_if<typename ::boost::mpl::has_key< \
- typename Param1::tag_type,boost::msm::front::action_tag>::type, \
- typename transition_action_result<EVT,FSM,SourceState,TargetState>::type >::type \
- operator()(EVT const& evt, FSM& fsm,SourceState& src,TargetState& tgt)const { \
- return function (Param1()(evt,fsm,src,tgt),Param2()(evt,fsm,src,tgt));} \
- template <class Event,class FSM,class STATE> \
- typename ::boost::enable_if<typename ::boost::mpl::has_key< \
- typename Param1::tag_type,boost::msm::front::state_action_tag>::type, \
- typename state_action_result<Event,FSM,STATE>::type >::type \
- operator()(Event const& evt,FSM& fsm,STATE& state )const { \
- return function (Param1()(evt,fsm,state),Param2()(evt,fsm,state));} }; \
- template <class Param1, class Param2, class Param3, class Param4, class Param5> \
- struct functor<Param1,Param2,Param3,Param4,Param5, \
- typename ::boost::disable_if<typename ::boost::mpl::or_< \
- typename ::boost::is_same<Param3,void>::type,typename ::boost::mpl::not_< \
- typename ::boost::is_same<Param4,void>::type>::type>::type >::type> \
- : euml_action<functor<Param1,Param2,Param3,Param4,Param5> > { \
- template <class Event,class FSM,class STATE > struct state_action_result { \
- typedef result_state type;} ; \
- template <class EVT,class FSM,class SourceState,class TargetState> \
- struct transition_action_result { typedef result_trans type;}; \
- typedef ::boost::fusion::set<boost::msm::front::state_action_tag,boost::msm::front::action_tag> tag_type; \
- template <class EVT,class FSM,class SourceState,class TargetState> \
- typename ::boost::enable_if<typename ::boost::mpl::has_key< \
- typename Param1::tag_type,boost::msm::front::action_tag>::type, \
- typename transition_action_result<EVT,FSM,SourceState,TargetState>::type >::type \
- operator()(EVT const& evt, FSM& fsm,SourceState& src,TargetState& tgt)const { \
- return function (Param1()(evt,fsm,src,tgt),Param2()(evt,fsm,src,tgt),Param3()(evt,fsm,src,tgt));} \
- template <class Event,class FSM,class STATE> \
- typename ::boost::enable_if<typename ::boost::mpl::has_key< \
- typename Param1::tag_type,boost::msm::front::state_action_tag>::type, \
- typename state_action_result<Event,FSM,STATE>::type >::type \
- operator()(Event const& evt,FSM& fsm,STATE& state )const { \
- return function (Param1()(evt,fsm,state),Param2()(evt,fsm,state),Param3()(evt,fsm,state));} }; \
- template <class Param1, class Param2, class Param3, class Param4, class Param5> \
- struct functor<Param1,Param2,Param3,Param4,Param5, \
- typename ::boost::disable_if<typename ::boost::mpl::or_< \
- typename ::boost::is_same<Param4,void>::type,typename ::boost::mpl::not_< \
- typename ::boost::is_same<Param5,void>::type>::type>::type >::type> \
- : euml_action<functor<Param1,Param2,Param3,Param4,Param5> > { \
- template <class Event,class FSM,class STATE > struct state_action_result { \
- typedef result_state type;} ; \
- template <class EVT,class FSM,class SourceState,class TargetState> \
- struct transition_action_result { typedef result_trans type;}; \
- typedef ::boost::fusion::set<boost::msm::front::state_action_tag,boost::msm::front::action_tag> tag_type; \
- template <class EVT,class FSM,class SourceState,class TargetState> \
- typename ::boost::enable_if<typename ::boost::mpl::has_key< \
- typename Param1::tag_type,boost::msm::front::action_tag>::type, \
- typename transition_action_result<EVT,FSM,SourceState,TargetState>::type >::type \
- operator()(EVT const& evt, FSM& fsm,SourceState& src,TargetState& tgt)const { \
- return function (Param1()(evt,fsm,src,tgt),Param2()(evt,fsm,src,tgt),Param3()(evt,fsm,src,tgt) \
- ,Param4()(evt,fsm,src,tgt));} \
- template <class Event,class FSM,class STATE> \
- typename ::boost::enable_if<typename ::boost::mpl::has_key< \
- typename Param1::tag_type,boost::msm::front::state_action_tag>::type, \
- typename state_action_result<Event,FSM,STATE>::type >::type \
- operator()(Event const& evt,FSM& fsm,STATE& state )const { \
- return function (Param1()(evt,fsm,state),Param2()(evt,fsm,state),Param3()(evt,fsm,state) \
- ,Param4()(evt,fsm,state));} }; \
- template <class Param1, class Param2, class Param3, class Param4, class Param5> \
- struct functor<Param1,Param2,Param3,Param4,Param5, \
- typename ::boost::disable_if<typename ::boost::is_same<Param5,void>::type>::type> \
- : euml_action<functor<Param1,Param2,Param3,Param4,Param5> > { \
- template <class Event,class FSM,class STATE > struct state_action_result { \
- typedef result_state type;} ; \
- template <class EVT,class FSM,class SourceState,class TargetState> \
- struct transition_action_result { typedef result_trans type;}; \
- typedef ::boost::fusion::set<boost::msm::front::state_action_tag,boost::msm::front::action_tag> tag_type; \
- template <class EVT,class FSM,class SourceState,class TargetState> \
- typename ::boost::enable_if<typename ::boost::mpl::has_key< \
- typename Param1::tag_type,boost::msm::front::action_tag>::type, \
- typename transition_action_result<EVT,FSM,SourceState,TargetState>::type >::type \
- operator()(EVT const& evt, FSM& fsm,SourceState& src,TargetState& tgt)const { \
- return function (Param1()(evt,fsm,src,tgt),Param2()(evt,fsm,src,tgt),Param3()(evt,fsm,src,tgt) \
- ,Param4()(evt,fsm,src,tgt),Param5()(evt,fsm,src,tgt));} \
- template <class Event,class FSM,class STATE> \
- typename ::boost::enable_if<typename ::boost::mpl::has_key< \
- typename Param1::tag_type,boost::msm::front::state_action_tag>::type, \
- typename state_action_result<Event,FSM,STATE>::type >::type \
- operator()(Event const& evt,FSM& fsm,STATE& state )const { \
- return function (Param1()(evt,fsm,state),Param2()(evt,fsm,state),Param3()(evt,fsm,state) \
- ,Param4()(evt,fsm,state),Param5()(evt,fsm,state));} }; \
- struct function_name ## tag{}; \
- struct functor ## Helper : proto::extends< proto::terminal< function_name ## tag >::type, \
- functor ## Helper , boost::msm::sm_domain> { functor ## Helper(){} \
- template <class Arg1,class Arg2,class Arg3,class Arg4,class Arg5> \
- struct In {typedef functor <Arg1,Arg2,Arg3,Arg4,Arg5> type;}; }; \
- functor ## Helper const function_name = functor ## Helper ();
- #define BOOST_MSM_EUML_METHOD(functor,function,function_name,result_trans,result_state) \
- template <class Param1=void , class Param2=void , class Param3=void , class Param4=void, \
- class Param5=void,class Enable=void > \
- struct functor : euml_action<functor<Param1,Param2,Param3,Param4,Param5,Enable> > {}; \
- template <class Param1, class Param2, class Param3, class Param4, class Param5> \
- struct functor<Param1,Param2,Param3,Param4,Param5, \
- typename ::boost::enable_if<typename ::boost::is_same<Param2,void>::type>::type> \
- : euml_action<functor<Param1,Param2,Param3,Param4,Param5> > { \
- template <class Event,class FSM,class STATE > struct state_action_result { \
- typedef result_state type;} ; \
- template <class EVT,class FSM,class SourceState,class TargetState> \
- struct transition_action_result { typedef result_trans type;}; \
- typedef ::boost::fusion::set<boost::msm::front::state_action_tag,boost::msm::front::action_tag> tag_type; \
- template <class EVT,class FSM,class SourceState,class TargetState> \
- typename ::boost::enable_if<typename ::boost::mpl::has_key< \
- typename Param1::tag_type,boost::msm::front::action_tag>::type, \
- typename transition_action_result<EVT,FSM,SourceState,TargetState>::type >::type \
- operator()(EVT const& evt, FSM& fsm,SourceState& src,TargetState& tgt)const { \
- return (Param1()(evt,fsm,src,tgt)).function();} \
- template <class Event,class FSM,class STATE> \
- typename ::boost::enable_if<typename ::boost::mpl::has_key< \
- typename Param1::tag_type,boost::msm::front::state_action_tag>::type, \
- typename state_action_result<Event,FSM,STATE>::type >::type \
- operator()(Event const& evt,FSM& fsm,STATE& state )const { \
- return (Param1()(evt,fsm,state)).function();} }; \
- template <class Param1, class Param2, class Param3, class Param4, class Param5> \
- struct functor<Param1,Param2,Param3,Param4,Param5, \
- typename ::boost::disable_if<typename ::boost::mpl::or_< \
- typename ::boost::is_same<Param2,void>::type,typename ::boost::mpl::not_< \
- typename ::boost::is_same<Param3,void>::type>::type>::type >::type> \
- : euml_action<functor<Param1,Param2,Param3,Param4,Param5> > { \
- template <class Event,class FSM,class STATE > struct state_action_result { \
- typedef result_state type;} ; \
- template <class EVT,class FSM,class SourceState,class TargetState> \
- struct transition_action_result { typedef result_trans type;}; \
- typedef ::boost::fusion::set<boost::msm::front::state_action_tag,boost::msm::front::action_tag> tag_type; \
- template <class EVT,class FSM,class SourceState,class TargetState> \
- typename ::boost::enable_if<typename ::boost::mpl::has_key< \
- typename Param1::tag_type,boost::msm::front::action_tag>::type, \
- typename transition_action_result<EVT,FSM,SourceState,TargetState>::type >::type \
- operator()(EVT const& evt, FSM& fsm,SourceState& src,TargetState& tgt)const { \
- return (Param1()(evt,fsm,src,tgt)).function(Param2()(evt,fsm,src,tgt));} \
- template <class Event,class FSM,class STATE> \
- typename ::boost::enable_if<typename ::boost::mpl::has_key< \
- typename Param1::tag_type,boost::msm::front::state_action_tag>::type, \
- typename state_action_result<Event,FSM,STATE>::type >::type \
- operator()(Event const& evt,FSM& fsm,STATE& state )const { \
- return (Param1()(evt,fsm,state)).function(Param2()(evt,fsm,state));} }; \
- template <class Param1, class Param2, class Param3, class Param4, class Param5> \
- struct functor<Param1,Param2,Param3,Param4,Param5, \
- typename ::boost::disable_if<typename ::boost::mpl::or_< \
- typename ::boost::is_same<Param3,void>::type,typename ::boost::mpl::not_< \
- typename ::boost::is_same<Param4,void>::type>::type>::type >::type> \
- : euml_action<functor<Param1,Param2,Param3,Param4,Param5> > { \
- template <class Event,class FSM,class STATE > struct state_action_result { \
- typedef result_state type;} ; \
- template <class EVT,class FSM,class SourceState,class TargetState> \
- struct transition_action_result { typedef result_trans type;}; \
- typedef ::boost::fusion::set<boost::msm::front::state_action_tag,boost::msm::front::action_tag> tag_type; \
- template <class EVT,class FSM,class SourceState,class TargetState> \
- typename ::boost::enable_if<typename ::boost::mpl::has_key< \
- typename Param1::tag_type,boost::msm::front::action_tag>::type, \
- typename transition_action_result<EVT,FSM,SourceState,TargetState>::type >::type \
- operator()(EVT const& evt, FSM& fsm,SourceState& src,TargetState& tgt)const { \
- return (Param1()(evt,fsm,src,tgt)).function(Param2()(evt,fsm,src,tgt),Param3()(evt,fsm,src,tgt));} \
- template <class Event,class FSM,class STATE> \
- typename ::boost::enable_if<typename ::boost::mpl::has_key< \
- typename Param1::tag_type,boost::msm::front::state_action_tag>::type, \
- typename state_action_result<Event,FSM,STATE>::type >::type \
- operator()(Event const& evt,FSM& fsm,STATE& state )const { \
- return (Param1()(evt,fsm,state)).function(Param2()(evt,fsm,state),Param3()(evt,fsm,state));} }; \
- template <class Param1, class Param2, class Param3, class Param4, class Param5> \
- struct functor<Param1,Param2,Param3,Param4,Param5, \
- typename ::boost::disable_if<typename ::boost::mpl::or_< \
- typename ::boost::is_same<Param4,void>::type,typename ::boost::mpl::not_< \
- typename ::boost::is_same<Param5,void>::type>::type>::type >::type> \
- : euml_action<functor<Param1,Param2,Param3,Param4,Param5> > { \
- template <class Event,class FSM,class STATE > struct state_action_result { \
- typedef result_state type;} ; \
- template <class EVT,class FSM,class SourceState,class TargetState> \
- struct transition_action_result { typedef result_trans type;}; \
- typedef ::boost::fusion::set<boost::msm::front::state_action_tag,boost::msm::front::action_tag> tag_type; \
- template <class EVT,class FSM,class SourceState,class TargetState> \
- typename ::boost::enable_if<typename ::boost::mpl::has_key< \
- typename Param1::tag_type,boost::msm::front::action_tag>::type, \
- typename transition_action_result<EVT,FSM,SourceState,TargetState>::type >::type \
- operator()(EVT const& evt, FSM& fsm,SourceState& src,TargetState& tgt)const { \
- return (Param1()(evt,fsm,src,tgt)).function(Param2()(evt,fsm,src,tgt),Param3()(evt,fsm,src,tgt) \
- ,Param4()(evt,fsm,src,tgt));} \
- template <class Event,class FSM,class STATE> \
- typename ::boost::enable_if<typename ::boost::mpl::has_key< \
- typename Param1::tag_type,boost::msm::front::state_action_tag>::type, \
- typename state_action_result<Event,FSM,STATE>::type >::type \
- operator()(Event const& evt,FSM& fsm,STATE& state )const { \
- return (Param1()(evt,fsm,state)).function(Param2()(evt,fsm,state),Param3()(evt,fsm,state) \
- ,Param4()(evt,fsm,state));} }; \
- template <class Param1, class Param2, class Param3, class Param4, class Param5> \
- struct functor<Param1,Param2,Param3,Param4,Param5, \
- typename ::boost::disable_if<typename ::boost::is_same<Param5,void>::type>::type> \
- : euml_action<functor<Param1,Param2,Param3,Param4,Param5> > { \
- template <class Event,class FSM,class STATE > struct state_action_result { \
- typedef result_state type;} ; \
- template <class EVT,class FSM,class SourceState,class TargetState> \
- struct transition_action_result { typedef result_trans type;}; \
- typedef ::boost::fusion::set<boost::msm::front::state_action_tag,boost::msm::front::action_tag> tag_type; \
- template <class EVT,class FSM,class SourceState,class TargetState> \
- typename ::boost::enable_if<typename ::boost::mpl::has_key< \
- typename Param1::tag_type,boost::msm::front::action_tag>::type, \
- typename transition_action_result<EVT,FSM,SourceState,TargetState>::type >::type \
- operator()(EVT const& evt, FSM& fsm,SourceState& src,TargetState& tgt)const { \
- return (Param1()(evt,fsm,src,tgt)).function(Param2()(evt,fsm,src,tgt),Param3()(evt,fsm,src,tgt) \
- ,Param4()(evt,fsm,src,tgt),Param5()(evt,fsm,src,tgt));} \
- template <class Event,class FSM,class STATE> \
- typename ::boost::enable_if<typename ::boost::mpl::has_key< \
- typename Param1::tag_type,boost::msm::front::state_action_tag>::type, \
- typename state_action_result<Event,FSM,STATE>::type >::type \
- operator()(Event const& evt,FSM& fsm,STATE& state )const { \
- return (Param1()(evt,fsm,state)).function(Param2()(evt,fsm,state),Param3()(evt,fsm,state) \
- ,Param4()(evt,fsm,state),Param5()(evt,fsm,state));} }; \
- struct function_name ## tag{}; \
- struct functor ## Helper : proto::extends< proto::terminal< function_name ## tag >::type, \
- functor ## Helper , boost::msm::sm_domain> { functor ## Helper(){} \
- template <class Arg1,class Arg2,class Arg3,class Arg4,class Arg5> \
- struct In {typedef functor <Arg1,Arg2,Arg3,Arg4,Arg5> type;}; }; \
- functor ## Helper const function_name = functor ## Helper ();
- #endif
- #define RESULT_TYPE2_PARAM1 typename get_result_type2<Param1,Event,FSM,STATE>::type
- #define RESULT_TYPE_PARAM1 typename get_result_type<Param1,EVT,FSM,SourceState,TargetState>::type
- #define RESULT_TYPE2_PARAM2 typename get_result_type2<Param2,Event,FSM,STATE>::type
- #define RESULT_TYPE_PARAM2 typename get_result_type<Param2,EVT,FSM,SourceState,TargetState>::type
- #define RESULT_TYPE2_PARAM3 typename get_result_type2<Param3,Event,FSM,STATE>::type
- #define RESULT_TYPE_PARAM3 typename get_result_type<Param3,EVT,FSM,SourceState,TargetState>::type
- #define RESULT_TYPE2_PARAM4 typename get_result_type2<Param4,Event,FSM,STATE>::type
- #define RESULT_TYPE_PARAM4 typename get_result_type<Param4,EVT,FSM,SourceState,TargetState>::type
- #define RESULT_TYPE2_PARAM5 typename get_result_type2<Param5,Event,FSM,STATE>::type
- #define RESULT_TYPE_PARAM5 typename get_result_type<Param5,EVT,FSM,SourceState,TargetState>::type
- #define RESULT_TYPE2_PARAM6 typename get_result_type2<Param6,Event,FSM,STATE>::type
- #define RESULT_TYPE_PARAM6 typename get_result_type<Param6,EVT,FSM,SourceState,TargetState>::type
- #define RESULT_TYPE2_DIFF_TYPE_ITER_TRAITS_PARAM1 typename std::iterator_traits<typename get_result_type2<Param1,Event,FSM,STATE>::type>::difference_type
- #define RESULT_TYPE_DIFF_TYPE_ITER_TRAITS_PARAM1 typename std::iterator_traits<typename get_result_type<Param1,EVT,FSM,SourceState,TargetState>::type>::difference_type
- #define RESULT_TYPE2_REMOVE_REF_PARAM1 typename ::boost::remove_reference<typename get_result_type2<Param1,Event,FSM,STATE>::type>::type
- #define RESULT_TYPE_REMOVE_REF_PARAM1 typename ::boost::remove_reference<typename get_result_type<Param1,EVT,FSM,SourceState,TargetState>::type>::type
- #define RESULT_TYPE2_PAIR_REMOVE_REF_PARAM1 std::pair<RESULT_TYPE2_REMOVE_REF_PARAM1,RESULT_TYPE2_REMOVE_REF_PARAM1>
- #define RESULT_TYPE_PAIR_REMOVE_REF_PARAM1 std::pair<RESULT_TYPE_REMOVE_REF_PARAM1,RESULT_TYPE_REMOVE_REF_PARAM1>
- #define RESULT_TYPE2_GET_REF_REMOVE_REF_PARAM1 typename get_reference<typename ::boost::remove_reference<typename get_result_type2<Param1,Event,FSM,STATE>::type>::type>::type
- #define RESULT_TYPE_GET_REF_REMOVE_REF_PARAM1 typename get_reference<typename ::boost::remove_reference<typename get_result_type<Param1,EVT,FSM,SourceState,TargetState>::type>::type>::type
- #define RESULT_TYPE2_GET_ITERATOR_REMOVE_REF_PARAM1 typename get_iterator<typename ::boost::remove_reference<typename get_result_type2<Param1,Event,FSM,STATE>::type>::type>::type
- #define RESULT_TYPE_GET_ITERATOR_REMOVE_REF_PARAM1 typename get_iterator<typename ::boost::remove_reference<typename get_result_type<Param1,EVT,FSM,SourceState,TargetState>::type>::type>::type
- #define RESULT_TYPE2_GET_REV_ITERATOR_REMOVE_REF_PARAM1 typename get_reverse_iterator<typename ::boost::remove_reference<typename get_result_type2<Param1,Event,FSM,STATE>::type>::type>::type
- #define RESULT_TYPE_GET_REV_ITERATOR_REMOVE_REF_PARAM1 typename get_reverse_iterator<typename ::boost::remove_reference<typename get_result_type<Param1,EVT,FSM,SourceState,TargetState>::type>::type>::type
- #define RESULT_TYPE2_GET_SIZE_TYPE_REMOVE_REF_PARAM1 typename get_size_type<typename ::boost::remove_reference<typename get_result_type2<Param1,Event,FSM,STATE>::type>::type>::type
- #define RESULT_TYPE_GET_SIZE_TYPE_REMOVE_REF_PARAM1 typename get_size_type<typename ::boost::remove_reference<typename get_result_type<Param1,EVT,FSM,SourceState,TargetState>::type>::type>::type
- #define BOOST_MSM_EUML_ACTION(instance_name) \
- struct instance_name ## _impl; \
- struct instance_name ## _helper : boost::msm::front::euml::euml_action<instance_name ## _impl> \
- { \
- instance_name ## _helper(){} \
- typedef instance_name ## _impl action_name; \
- }; \
- static instance_name ## _helper instance_name; \
- struct instance_name ## _impl : instance_name ## _helper
- #define BOOST_MSM_EUML_DECLARE_ACTION(instance_name) \
- struct instance_name ; \
- struct instance_name ## _helper : boost::msm::front::euml::euml_action<instance_name > \
- { \
- instance_name ## _helper(){} \
- typedef instance_name action_name; \
- }; \
- struct instance_name : instance_name ## _helper
- #define BOOST_MSM_EUML_EVENT(instance_name) \
- struct instance_name ## _helper : boost::msm::front::euml::euml_event<instance_name ## _helper>{ \
- instance_name ## _helper(){} \
- instance_name ## _helper const& operator()() const {return *this;} }; \
- static instance_name ## _helper instance_name;
- // an event matching any event
- struct kleene_ : boost::msm::front::euml::euml_event<kleene_>, public boost::any
- {
- kleene_() : boost::any(){}
- template<typename ValueType>
- kleene_(const ValueType & v) : boost::any(v){}
- };
- static kleene_ kleene;
- #define BOOST_MSM_EUML_DECLARE_EVENT(instance_name) \
- struct instance_name : boost::msm::front::euml::euml_event<instance_name >{ \
- instance_name(){} \
- instance_name const& operator()() const {return *this;} };
- #define MSM_EUML_CONCAT(param1,param2) param1
- #define MSM_EUML_EVENT_INSTANCE_HELPER_EXECUTE1(z, n, unused) ARG ## n arg ## n
- #define MSM_EUML_EVENT_INSTANCE_HELPER_EXECUTE2(z, n, unused) arg ## n
- #define MSM_EUML_EVENT_INSTANCE_HELPER_ATTRIBUTE_MAP_ENTRY(z, n, unused) \
- typename boost::fusion::result_of::first< \
- typename ::boost::remove_reference< \
- typename boost::fusion::result_of::at_c<T, BOOST_PP_CAT( , n)>::type>::type>::type \
- #define MSM_EUML_EVENT_HELPER_GET_ATTRIBUTE(z, n, unused) \
- get_attribute( \
- typename boost::fusion::result_of::first< \
- typename ::boost::remove_reference< \
- typename boost::fusion::result_of::at_c<T, n>::type>::type>::type())=arg ## n;
- #define MSM_EUML_EVENT_HELPER_CONSTRUCTORS(z, n, mytuple) \
- template <BOOST_PP_ENUM_PARAMS(n, class ARG)> \
- BOOST_PP_CAT(BOOST_PP_TUPLE_ELEM(2, 0, mytuple) , _helper)(BOOST_PP_ENUM(n, MSM_EUML_EVENT_INSTANCE_HELPER_EXECUTE1, ~ )): \
- BOOST_PP_TUPLE_ELEM(2, 1, mytuple)(){ \
- init(BOOST_PP_ENUM(n, MSM_EUML_EVENT_INSTANCE_HELPER_EXECUTE2, ~ ),attribute_vec());}
- #define MSM_EUML_EVENT_INSTANCE_HELPER_ATTRIBUTE_MAP(z, n, unused) \
- template <BOOST_PP_ENUM_PARAMS(n, class ARG),class T> \
- void init(BOOST_PP_ENUM(n, MSM_EUML_EVENT_INSTANCE_HELPER_EXECUTE1, ~ ), \
- T,typename ::boost::enable_if< typename boost::mpl::eval_if< typename ::boost::fusion::traits::is_sequence<T>::type,size_helper<T,n>,::boost::mpl::false_>::type,void >::type* =0) \
- { \
- BOOST_PP_REPEAT_FROM_TO(0,n , \
- MSM_EUML_EVENT_HELPER_GET_ATTRIBUTE, ~) \
- }
- #define MSM_EUML_EVENT_INSTANCE_HELPER_OPERATOR_IMPL(z, n, instance) \
- template <BOOST_PP_ENUM_PARAMS(n, class ARG)> \
- BOOST_PP_CAT(instance,_helper) operator() \
- (BOOST_PP_ENUM(n, MSM_EUML_EVENT_INSTANCE_HELPER_EXECUTE1, ~ ))const{ \
- return BOOST_PP_CAT(instance,_helper) (BOOST_PP_ENUM(n, MSM_EUML_EVENT_INSTANCE_HELPER_EXECUTE2, ~ ));}
-
- #if defined(FUSION_MAX_MAP_SIZE)
- #define BOOST_MSM_EUML_EVENT_WITH_ATTRIBUTES(instance_name, attributes_name) \
- struct instance_name ## _helper : \
- boost::msm::front::euml::euml_event<instance_name ## _helper> , public attributes_name \
- { \
- template <class T,int checked_size> struct size_helper \
- { \
- typedef typename ::boost::mpl::less_equal< \
- typename ::boost::fusion::result_of::size<T>::type, \
- ::boost::mpl::int_<checked_size> >::type type; \
- }; \
- BOOST_PP_CAT(instance_name,_helper()) : attributes_name(){} \
- typedef attributes_name::attributes_type attribute_map; \
- typedef ::boost::fusion::result_of::as_vector<attribute_map>::type attribute_vec; \
- BOOST_PP_REPEAT_FROM_TO(1,BOOST_PP_ADD(FUSION_MAX_MAP_SIZE ,1), \
- MSM_EUML_EVENT_HELPER_CONSTRUCTORS, (instance_name,attributes_name)) \
- BOOST_PP_REPEAT_FROM_TO(1,BOOST_PP_ADD(FUSION_MAX_MAP_SIZE ,1), \
- MSM_EUML_EVENT_INSTANCE_HELPER_ATTRIBUTE_MAP, ~) \
- BOOST_PP_CAT(instance_name,_helper) operator()(){ \
- return BOOST_PP_CAT(instance_name,_helper)();} \
- BOOST_PP_REPEAT_FROM_TO(1,BOOST_PP_ADD(FUSION_MAX_MAP_SIZE ,1), \
- MSM_EUML_EVENT_INSTANCE_HELPER_OPERATOR_IMPL, instance_name) \
- }; \
- static instance_name ## _helper instance_name;
- #else
- #define BOOST_MSM_EUML_EVENT_WITH_ATTRIBUTES(instance_name, attributes_name) \
- struct instance_name ## _helper : \
- boost::msm::front::euml::euml_event<instance_name ## _helper> , public attributes_name \
- { \
- template <class T,int checked_size> struct size_helper \
- { \
- typedef typename ::boost::mpl::less_equal< \
- typename ::boost::fusion::result_of::size<T>::type, \
- ::boost::mpl::int_<checked_size> >::type type; \
- }; \
- BOOST_PP_CAT(instance_name,_helper()) : attributes_name(){} \
- typedef attributes_name::attributes_type attribute_map; \
- typedef ::boost::fusion::result_of::as_vector<attribute_map>::type attribute_vec; \
- BOOST_PP_REPEAT_FROM_TO(1,BOOST_PP_ADD(10 ,1), \
- MSM_EUML_EVENT_HELPER_CONSTRUCTORS, (instance_name,attributes_name)) \
- BOOST_PP_REPEAT_FROM_TO(1,BOOST_PP_ADD(10 ,1), \
- MSM_EUML_EVENT_INSTANCE_HELPER_ATTRIBUTE_MAP, ~) \
- BOOST_PP_CAT(instance_name,_helper) operator()(){ \
- return BOOST_PP_CAT(instance_name,_helper)();} \
- BOOST_PP_REPEAT_FROM_TO(1,BOOST_PP_ADD(10 ,1), \
- MSM_EUML_EVENT_INSTANCE_HELPER_OPERATOR_IMPL, instance_name) \
- }; \
- static instance_name ## _helper instance_name;
- #endif
- #define BOOST_MSM_EUML_EVENT_NAME(instance_name) instance_name ## _helper
- #define BOOST_MSM_EUML_FLAG_NAME(instance_name) instance_name ## _helper
- #define BOOST_MSM_EUML_FLAG(instance_name) \
- struct instance_name ## _helper : boost::msm::front::euml::euml_flag<instance_name ## _helper>{}; \
- static instance_name ## _helper instance_name;
- #define BOOST_MSM_EUML_DECLARE_FLAG(instance_name) \
- struct instance_name : boost::msm::front::euml::euml_flag<instance_name >{};
- #define BOOST_MSM_EUML_STATE_NAME(instance_name) instance_name ## _helper
- #define BOOST_MSM_EUML_BUILD_STT_HELPER build_stt(
- #define BOOST_MSM_EUML_BUILD_INTERNAL_STT_HELPER build_internal_stt(
- #define BOOST_MSM_EUML_BUILD_STT_HELPER2(expr) expr)
- #define BOOST_MSM_EUML_ENTRY_STATE_HELPER(expr) ,expr
- #define BOOST_MSM_EUML_ATTRIBUTES(expr,instance_name) \
- typedef BOOST_TYPEOF(build_attributes expr) instance_name;
- // following macros declare a state type but do not create an instance
- #define BOOST_MSM_EUML_DECLARE_STATE(expr,instance_name) \
- struct instance_name ## tag{}; \
- typedef BOOST_TYPEOF(build_state<instance_name ## tag> expr) instance_name;
- #define BOOST_MSM_EUML_DECLARE_INTERRUPT_STATE(expr,instance_name) \
- struct instance_name ## tag{}; \
- typedef BOOST_TYPEOF(build_interrupt_state<instance_name ## tag> expr) instance_name;
- #define BOOST_MSM_EUML_DECLARE_TERMINATE_STATE(expr,instance_name) \
- struct instance_name ## tag{}; \
- typedef BOOST_TYPEOF(build_terminate_state<instance_name ## tag> expr) instance_name;
- #define BOOST_MSM_EUML_DECLARE_EXPLICIT_ENTRY_STATE(region,expr,instance_name) \
- struct instance_name ## tag{}; \
- typedef BOOST_TYPEOF(build_explicit_entry_state<instance_name ## tag BOOST_MSM_EUML_ENTRY_STATE_HELPER(region) > expr) instance_name;
- #define BOOST_MSM_EUML_DECLARE_ENTRY_STATE(region,expr,instance_name) \
- struct instance_name ## tag{}; \
- typedef BOOST_TYPEOF(build_entry_state<instance_name ## tag BOOST_MSM_EUML_ENTRY_STATE_HELPER(region) > expr) instance_name;
- #define BOOST_MSM_EUML_DECLARE_EXIT_STATE(expr,instance_name) \
- struct instance_name ## tag{}; \
- typedef BOOST_TYPEOF(build_exit_state<instance_name ## tag> expr) instance_name;
- #define BOOST_MSM_EUML_DECLARE_STATE_MACHINE(expr,instance_name) \
- struct instance_name ## tag{}; \
- typedef BOOST_TYPEOF(build_sm<instance_name ## tag> expr) instance_name;
- #define BOOST_MSM_EUML_DECLARE_TRANSITION_TABLE(expr,instance_name) \
- typedef int using_declared_table; \
- typedef BOOST_TYPEOF(BOOST_MSM_EUML_BUILD_STT_HELPER BOOST_MSM_EUML_BUILD_STT_HELPER2(expr)) instance_name;
- #define BOOST_MSM_EUML_DECLARE_INTERNAL_TRANSITION_TABLE(expr) \
- typedef BOOST_TYPEOF( \
- BOOST_MSM_EUML_BUILD_INTERNAL_STT_HELPER BOOST_MSM_EUML_BUILD_STT_HELPER2(expr)) internal_transition_table;
- // following macros declare a state type and create an instance
- #define BOOST_MSM_EUML_STATE(expr,instance_name) \
- struct instance_name ## tag{}; \
- typedef BOOST_TYPEOF(build_state<instance_name ## tag> expr) instance_name ## _helper; \
- static instance_name ## _helper instance_name;
- #define BOOST_MSM_EUML_INTERRUPT_STATE(expr,instance_name) \
- struct instance_name ## tag{}; \
- typedef BOOST_TYPEOF(build_interrupt_state<instance_name ## tag> expr) instance_name ## _helper; \
- static instance_name ## _helper instance_name;
- #define BOOST_MSM_EUML_TERMINATE_STATE(expr,instance_name) \
- struct instance_name ## tag{}; \
- typedef BOOST_TYPEOF(build_terminate_state<instance_name ## tag> expr) instance_name ## _helper; \
- static instance_name ## _helper instance_name;
- #define BOOST_MSM_EUML_EXPLICIT_ENTRY_STATE(region,expr,instance_name) \
- struct instance_name ## tag{}; \
- typedef BOOST_TYPEOF(build_explicit_entry_state<instance_name ## tag BOOST_MSM_EUML_ENTRY_STATE_HELPER(region) > expr) instance_name ## _helper; \
- static instance_name ## _helper instance_name;
- #define BOOST_MSM_EUML_ENTRY_STATE(region,expr,instance_name) \
- struct instance_name ## tag{}; \
- typedef BOOST_TYPEOF(build_entry_state<instance_name ## tag BOOST_MSM_EUML_ENTRY_STATE_HELPER(region) > expr) instance_name ## _helper; \
- static instance_name ## _helper instance_name;
- #define BOOST_MSM_EUML_EXIT_STATE(expr,instance_name) \
- struct instance_name ## tag{}; \
- typedef BOOST_TYPEOF(build_exit_state<instance_name ## tag> expr) instance_name ## _helper; \
- static instance_name ## _helper instance_name;
- #ifndef BOOST_MSVC
- #define BOOST_MSM_EUML_TRANSITION_TABLE(expr,instance_name) \
- typedef BOOST_TYPEOF(BOOST_MSM_EUML_BUILD_STT_HELPER BOOST_MSM_EUML_BUILD_STT_HELPER2(expr)) instance_name ## _def; \
- struct instance_name ## _helper : public instance_name ## _def{instance_name ## _helper(){}}; \
- static instance_name ## _helper instance_name;
- #define BOOST_MSM_EUML_INTERNAL_TRANSITION_TABLE(expr,instance_name) \
- typedef BOOST_TYPEOF(BOOST_MSM_EUML_BUILD_INTERNAL_STT_HELPER BOOST_MSM_EUML_BUILD_STT_HELPER2(expr)) instance_name ## _def; \
- struct instance_name ## _helper : public instance_name ## _def{instance_name ## _helper(){}}; \
- static instance_name ## _helper instance_name;
- #else
- #define BOOST_MSM_EUML_TRANSITION_TABLE(expr,instance_name) \
- struct instance_name ## _helper : \
- public BOOST_TYPEOF(BOOST_MSM_EUML_BUILD_STT_HELPER BOOST_MSM_EUML_BUILD_STT_HELPER2(expr)) \
- {instance_name ## _helper(){}} ; \
- static instance_name ## _helper instance_name;
- #define BOOST_MSM_EUML_INTERNAL_TRANSITION_TABLE(expr,instance_name) \
- struct instance_name ## _helper : \
- public BOOST_TYPEOF(BOOST_MSM_EUML_BUILD_INTERNAL_STT_HELPER BOOST_MSM_EUML_BUILD_STT_HELPER2(expr)) \
- {instance_name ## _helper(){}} ; \
- static instance_name ## _helper instance_name;
- #endif
- }}}} // boost::msm::front::euml
- namespace boost { namespace msm{
- template<>
- struct is_kleene_event< boost::msm::front::euml::kleene_ >
- {
- typedef ::boost::mpl::true_ type;
- };
- }}
- #endif // BOOST_MSM_FRONT_EUML_COMMON_H
|