// 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 #ifdef BOOST_MPL_LIMIT_METAFUNCTION_ARITY #undef BOOST_MPL_LIMIT_METAFUNCTION_ARITY #endif #ifdef BOOST_PROTO_MAX_ARITY #undef BOOST_PROTO_MAX_ARITY #endif #ifndef BOOST_MPL_CFG_NO_PREPROCESSED_HEADERS #define BOOST_MPL_CFG_NO_PREPROCESSED_HEADERS #endif #ifdef BOOST_MSVC #define BOOST_MPL_LIMIT_METAFUNCTION_ARITY 7 #define BOOST_PROTO_MAX_ARITY 7 #else #define BOOST_MPL_LIMIT_METAFUNCTION_ARITY 6 #define BOOST_PROTO_MAX_ARITY 6 #endif #include #include #include #include #include #include #include #include #include #include #include #include #include #if BOOST_VERSION >= 104000 #include #endif #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include namespace proto = boost::proto; BOOST_MPL_HAS_XXX_TRAIT_DEF(tag_type) BOOST_MPL_HAS_XXX_TRAIT_DEF(action_name) namespace boost { namespace msm { namespace front { namespace euml { template struct get_iterator { typedef typename T::iterator type; }; template struct get_reverse_iterator { typedef typename T::reverse_iterator type; }; template struct get_reference { typedef typename T::reference type; }; template struct get_size_type { typedef typename T::size_type type; }; template struct get_value_type { typedef typename T::value_type type; }; template struct get_first_type { typedef typename T::first_type type; }; template struct get_second_type { typedef typename T::second_type type; }; template struct get_action_tag_type { typedef typename ::boost::mpl::has_key< typename T::tag_type,action_tag>::type type; }; template struct get_state_action_tag_type { typedef typename ::boost::mpl::has_key< typename T::tag_type,state_action_tag>::type type; }; template struct get_result_type { typedef typename T::template transition_action_result::type type; }; template struct get_result_type2 { typedef typename T::template state_action_result::type type; }; template struct get_sequence { typedef typename SEQ::sequence type; }; template struct get_attributes_type { typedef typename T::attributes_type type; }; template struct get_euml_tag_type { typedef typename T::euml_tag_type type; }; template struct get_fct { typedef typename T::template In::type type; }; template struct get_action_name { typedef typename T::action_name type; }; template struct get_event_name { typedef typename T::event_name type; }; // grammar forbidding address of for terminals struct terminal_grammar : proto::not_ > {}; // Forward-declare an expression wrapper template struct euml_terminal; struct sm_domain : proto::domain< proto::generator, terminal_grammar > {}; template struct euml_terminal : proto::extends, sm_domain> { typedef proto::extends, sm_domain> base_type; // Needs a constructor euml_terminal(Expr const &e = Expr()) : base_type(e) {} // Unhide Proto's overloaded assignment operator using base_type::operator=; }; template struct euml_event: proto::extends::type, EVT, sm_domain> { typedef event_tag euml_tag_type; typedef EVT event_name; using proto::extends::type, EVT, sm_domain>::operator=; template struct In { typedef EVT type; }; }; template struct euml_state: proto::extends::type, STATE, sm_domain> { typedef state_tag euml_tag_type; using proto::extends::type, STATE, sm_domain>::operator=; template struct In { typedef STATE type; }; }; template struct euml_action: proto::extends::type, ACTION, sm_domain> { typedef action_tag euml_tag_type; typedef ACTION action_name; using proto::extends::type, ACTION, sm_domain>::operator=; template struct In { typedef ACTION type; }; }; template struct euml_flag: proto::extends::type, FLAG, sm_domain> { typedef flag_tag euml_tag_type; using proto::extends::type, FLAG, sm_domain>::operator=; template struct In { typedef FLAG type; }; }; template struct euml_config: proto::extends::type, CONFIG, sm_domain> { typedef config_tag euml_tag_type; using proto::extends::type, CONFIG, sm_domain>::operator=; template struct In { typedef CONFIG type; }; }; struct No_Exception : euml_config { typedef int no_exception_thrown; No_Exception(){} }; struct No_Msg_Queue : euml_config { typedef int no_message_queue; No_Msg_Queue(){} }; struct Deferred_Events : euml_config { typedef int activate_deferred_events; Deferred_Events(){} }; No_Exception const no_exception; No_Msg_Queue const no_msg_queue; Deferred_Events const deferred_events; struct invalid_type{}; struct make_invalid_type { typedef invalid_type type; }; template struct make_vector_one_row { typedef boost::mpl::vector type; }; template T make_T(T t) {return t;} struct make_vector_no_row { typedef boost::mpl::vector0<> type; }; struct NoAction : euml_action { NoAction(){} // return value if used inside a state action (entry/exit) template struct state_action_result { typedef bool type; }; // return value if used inside a transition (action/guard) template struct transition_action_result { typedef bool type; }; // this functor can be used in both modes, state action and transition action typedef ::boost::mpl::set tag_type; template bool operator()(Event const&,FSM&,STATE& ) { // does nothing return true; } template bool operator()(EVT const& evt ,FSM& ,SourceState& ,TargetState&)const { // does nothing return true; } }; NoAction const no_action; template struct GetSource_ : euml_action > { template struct transition_action_result { typedef typename ::boost::fusion::result_of::at_key::type type; }; typedef ::boost::mpl::set tag_type; template typename transition_action_result::type operator()(EVT const& ,FSM& ,SourceState& src,TargetState&)const { return src.get_attribute(Index()); } }; template<> struct GetSource_ : euml_action > { template struct transition_action_result { typedef SourceState& type; }; typedef ::boost::mpl::set tag_type; template typename transition_action_result::type operator()(EVT const& , FSM&,SourceState& src,TargetState& )const { return src; } }; struct get_source_tag {}; struct GetSource_Helper: proto::extends< proto::terminal::type, GetSource_Helper, sm_domain> { GetSource_Helper(){} template struct In { typedef GetSource_ type; }; }; GetSource_Helper const source_; template struct GetTarget_ : euml_action > { template struct transition_action_result { typedef typename ::boost::fusion::result_of::at_key::type type; }; typedef ::boost::mpl::set tag_type; template typename transition_action_result::type operator()(EVT const& ,FSM& ,SourceState& ,TargetState& tgt)const { return tgt.get_attribute(Index()); } }; template<> struct GetTarget_ : euml_action > { template struct transition_action_result { typedef TargetState& type; }; typedef ::boost::mpl::set tag_type; template typename transition_action_result::type operator()(EVT const& , FSM&,SourceState& ,TargetState& tgt)const { return tgt; } }; struct get_target_tag {}; struct GetTarget_Helper: proto::extends< proto::terminal::type, GetTarget_Helper, sm_domain> { GetTarget_Helper(){} template struct In { typedef GetTarget_ type; }; }; GetTarget_Helper const target_; template struct GetState_ : euml_action > { template struct state_action_result { typedef typename ::boost::fusion::result_of::at_key::type type; }; typedef ::boost::mpl::set tag_type; template typename state_action_result::type operator()(Event const&,FSM& ,STATE& state ) { return state.get_attribute(Index()); } }; template<> struct GetState_ : euml_action > { using euml_action::operator=; template struct state_action_result { typedef STATE& type; }; typedef ::boost::mpl::set tag_type; template typename state_action_result::type operator()(Event const&,FSM& ,STATE& state ) { return state; } }; struct get_state_tag {}; struct GetState_Helper: proto::extends< proto::terminal::type, GetState_Helper, sm_domain> { GetState_Helper(){} template struct In { typedef GetState_ type; }; }; GetState_Helper const state_; template struct GetEvent_ : euml_action > { template struct state_action_result { typedef typename ::boost::add_const< typename ::boost::fusion::result_of::at_key::type>::type type; }; template struct transition_action_result { typedef typename ::boost::add_const< typename ::boost::fusion::result_of::at_key::type>::type type; }; typedef ::boost::mpl::set tag_type; template typename state_action_result::type operator()(Event const& evt,FSM& ,STATE& ) { return evt.get_attribute(Index()); } template typename transition_action_result::type operator()(EVT const& evt ,FSM& ,SourceState& ,TargetState&)const { return evt.get_attribute(Index()); } }; template <> struct GetEvent_ : euml_action > { template struct state_action_result { typedef Event const& type; }; template struct transition_action_result { typedef EVT const& type; }; typedef ::boost::mpl::set tag_type; template typename state_action_result::type operator()(Event const& evt,FSM& ,STATE& ) { return evt; } template typename transition_action_result::type operator()(EVT const& evt ,FSM& ,SourceState& ,TargetState&)const { return evt; } }; struct get_event_tag {}; struct GetEvent_Helper: proto::extends< proto::terminal::type, GetEvent_Helper, sm_domain> { GetEvent_Helper(){} template struct In { typedef GetEvent_ type; }; }; GetEvent_Helper const event_; template struct GetFsm_ : euml_action > { template struct state_action_result { typedef typename ::boost::fusion::result_of::at_key::type type; }; template struct transition_action_result { typedef typename ::boost::fusion::result_of::at_key::type type; }; typedef ::boost::mpl::set tag_type; template typename state_action_result::type operator()(Event const&,FSM& fsm,STATE& ) { return fsm.get_attribute(Index()); } template typename transition_action_result::type operator()(EVT const& ,FSM& fsm,SourceState& ,TargetState&)const { return fsm.get_attribute(Index()); } }; template<> struct GetFsm_ : euml_action > { using euml_action::operator=; template struct state_action_result { typedef FSM& type; }; template struct transition_action_result { typedef FSM& type; }; typedef ::boost::mpl::set tag_type; template typename state_action_result::type operator()(Event const&,FSM& fsm,STATE& ) { return fsm; } template typename transition_action_result::type operator()(EVT const& evt ,FSM& fsm,SourceState& ,TargetState&)const { return fsm; } }; struct get_fsm_tag {}; struct GetFsm_Helper: proto::extends< proto::terminal::type, GetFsm_Helper, sm_domain> { GetFsm_Helper(){} template struct In { typedef GetFsm_ type; }; }; GetFsm_Helper const fsm_; template struct SubState_ : euml_action > { template struct state_action_result { typedef StateName& type; }; template struct transition_action_result { typedef StateName& type; }; typedef ::boost::mpl::set tag_type; template StateName& operator()(EVT const& evt,FSM& fsm,SourceState& src,TargetState& tgt)const { return (Param1()(evt,fsm,src,tgt)).template get_state(); } template StateName& operator()(Event const& evt,FSM& fsm,STATE& state)const { return (Param1()(evt,fsm,state)).template get_state(); } }; template struct SubState_ : euml_action > { template struct state_action_result { typedef StateName& type; }; template struct transition_action_result { typedef StateName& type; }; typedef ::boost::mpl::set tag_type; template StateName& operator()(EVT const&,FSM& fsm,SourceState& ,TargetState& )const { return fsm.template get_state(); } template StateName& operator()(Event const& ,FSM& fsm,STATE& )const { return fsm.template get_state(); } }; struct substate_tag {}; struct SubState_Helper: proto::extends< proto::terminal::type, SubState_Helper, sm_domain> { SubState_Helper(){} using proto::extends< proto::terminal::type, SubState_Helper, sm_domain>::operator=; template struct In { typedef SubState_ type; }; }; SubState_Helper const substate_; template struct GetAttribute_ : euml_action > { using euml_action >::operator=; template struct state_action_result { typedef typename ::boost::fusion::result_of::at_key< typename get_attributes_type< typename ::boost::remove_reference< typename get_result_type2::type>::type>::type, Index >::type type; }; template struct transition_action_result { typedef typename ::boost::fusion::result_of::at_key< typename get_attributes_type< typename ::boost::remove_reference< typename get_result_type::type>::type>::type, Index >::type type; }; typedef ::boost::mpl::set tag_type; template typename ::boost::enable_if< typename ::boost::mpl::has_key< typename Target::tag_type,action_tag>::type, typename transition_action_result::type >::type operator()(EVT const& evt, FSM& fsm,SourceState& src,TargetState& tgt)const { return (Target()(evt,fsm,src,tgt)).get_attribute(Index()); } template typename ::boost::enable_if< typename ::boost::mpl::has_key< typename Target::tag_type,state_action_tag>::type, typename state_action_result::type >::type operator()(Event const& evt,FSM& fsm,STATE& state )const { return (Target()(evt,fsm,state)).get_attribute(Index()); } }; struct get_attribute_tag { }; struct GetAttribute_Helper: proto::extends< proto::terminal::type, GetAttribute_Helper, sm_domain> { GetAttribute_Helper(){} template struct In { typedef GetAttribute_ type; }; }; GetAttribute_Helper const attribute_; template struct Source_ : euml_action > { using euml_action >::operator=; template struct transition_action_result { typedef typename ::boost::fusion::result_of::at_key::type type; }; typedef ::boost::mpl::set tag_type; template typename transition_action_result::type operator()(EVT const& , FSM&,SourceState& src,TargetState& )const { return src.get_attribute(Index()); } }; template struct Target_ : euml_action > { using euml_action >::operator=; template struct transition_action_result { typedef typename ::boost::fusion::result_of::at_key::type type; }; typedef ::boost::mpl::set tag_type; template typename transition_action_result::type operator()(EVT const& ,FSM& ,SourceState& ,TargetState& tgt)const { return tgt.get_attribute(Index()); } }; template struct State_ : euml_action > { using euml_action >::operator=; template struct state_action_result { typedef typename ::boost::fusion::result_of::at_key::type type; }; typedef ::boost::mpl::set tag_type; template typename state_action_result::type operator()(Event const&,FSM& ,STATE& state ) { return state.get_attribute(Index()); } }; template struct Event_ : euml_action > { using euml_action >::operator=; template struct state_action_result { typedef typename ::boost::add_const< typename ::boost::fusion::result_of::at_key::type>::type type; }; template struct transition_action_result { typedef typename ::boost::add_const< typename ::boost::fusion::result_of::at_key::type>::type type; }; typedef ::boost::mpl::set tag_type; template typename state_action_result::type operator()(Event const& evt,FSM& ,STATE& ) { return evt.get_attribute(Index()); } template typename transition_action_result::type operator()(EVT const& evt ,FSM& ,SourceState& ,TargetState&)const { return evt.get_attribute(Index()); } }; template struct State_Attribute_ : euml_action > { using euml_action >::operator=; template struct state_action_result { typedef typename ::boost::fusion::result_of::at_key::type type; }; typedef ::boost::mpl::set tag_type; template typename state_action_result::type operator()(Event const&,FSM& fsm,STATE& ) { return fsm.template get_state().get_attribute(Index()); } }; template struct Fsm_ : euml_action > { using euml_action >::operator=; template struct state_action_result { typedef typename ::boost::fusion::result_of::at_key::type type; }; template struct transition_action_result { typedef typename ::boost::fusion::result_of::at_key::type type; }; typedef ::boost::mpl::set tag_type; template typename state_action_result::type operator()(Event const&,FSM& fsm,STATE& ) { return fsm.get_attribute(Index()); } template typename transition_action_result::type operator()(EVT const& evt ,FSM& fsm,SourceState& ,TargetState&)const { return fsm.get_attribute(Index()); } }; struct True_ : euml::euml_action { using euml_action::operator=; True_(){} template struct state_action_result { typedef bool type; }; template struct transition_action_result { typedef bool type; }; typedef ::boost::mpl::set tag_type; template bool operator()(EVT const& evt,FSM&,SourceState& ,TargetState& ) { return true; } template bool operator()(Event const&,FSM&,STATE& ) { return true; } }; True_ const true_; struct False_ : euml::euml_action { using euml_action::operator=; False_(){} template struct state_action_result { typedef bool type; }; template struct transition_action_result { typedef bool type; }; typedef ::boost::mpl::set tag_type; template bool operator()(EVT const& evt,FSM&,SourceState& ,TargetState& ) { return false; } template bool operator()(Event const&,FSM&,STATE& ) { return false; } }; False_ const false_; template struct Int_ : euml_action > { using euml_action >::operator=; typedef ::boost::mpl::int_ value_type; enum {value = Val}; template struct state_action_result { typedef int type; }; template struct transition_action_result { typedef int type; }; typedef ::boost::mpl::set tag_type; template int operator()(EVT const& , FSM& ,SourceState& ,TargetState& ) { return Val; } template int operator()(Event const& ,FSM& ,STATE& ) { return Val; } }; template struct Char_ : euml_action > { using euml_action >::operator=; template struct state_action_result { typedef char type; }; template struct transition_action_result { typedef char type; }; typedef ::boost::mpl::set tag_type; template char operator()(EVT const& , FSM& ,SourceState& ,TargetState& ) { return Val; } template char operator()(Event const& ,FSM& ,STATE& ) { return Val; } }; template struct Size_t_ : euml_action > { using euml_action >::operator=; template struct state_action_result { typedef size_t type; }; template struct transition_action_result { typedef size_t type; }; typedef ::boost::mpl::set tag_type; template size_t operator()(EVT const& , FSM& ,SourceState& ,TargetState& ) { return Val; } template size_t operator()(Event const& ,FSM& ,STATE& ) { return Val; } }; #if BOOST_VERSION >= 104000 template struct String_ : euml_action > { using euml_action >::operator=; template struct state_action_result { typedef char const* type; }; template struct transition_action_result { typedef char const* type; }; typedef ::boost::mpl::set tag_type; template char const* operator()(EVT const& , FSM& ,SourceState& ,TargetState& ) { return ::boost::mpl::c_str::value; } template char const* operator()(Event const& ,FSM& ,STATE& ) { return ::boost::mpl::c_str::value; } }; #endif template struct Predicate_ : euml_action > { using euml_action >::operator=; template struct state_action_result { typedef T type; }; template struct transition_action_result { typedef T type; }; typedef ::boost::mpl::set tag_type; template T operator()(EVT const& , FSM& ,SourceState& ,TargetState& ) { return T(); } template T operator()(Event const& ,FSM& ,STATE& ) { return T(); } }; template struct Process_ : euml_action > { template struct state_action_result { typedef void type; }; template struct transition_action_result { typedef void type; }; typedef ::boost::mpl::set tag_type; template 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 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 struct Process_ : euml_action > { template struct state_action_result { typedef void type; }; template struct transition_action_result { typedef void type; }; typedef ::boost::mpl::set tag_type; template void operator()(EVT const&,FSM& fsm,SourceState& ,TargetState& )const { fsm.process_event(ToProcessEvt()); } template void operator()(Event const& ,FSM& fsm,STATE& )const { fsm.process_event(ToProcessEvt()); } }; template struct Process_ : euml_action > { template struct state_action_result { typedef void type; }; template struct transition_action_result { typedef void type; }; typedef ::boost::mpl::set tag_type; template void operator()(EVT const& evt,FSM& fsm,SourceState& src,TargetState& tgt)const { (Param1()(evt,fsm,src,tgt)).process_event(ToProcessEvt()); } template void operator()(Event const& evt,FSM& fsm,STATE& state)const { (Param1()(evt,fsm,state)).process_event(ToProcessEvt()); } }; template struct Process_ : euml_action > { template struct state_action_result { typedef void type; }; template struct transition_action_result { typedef void type; }; typedef ::boost::mpl::set tag_type; template 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 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 struct Process_ : euml_action > { template struct state_action_result { typedef void type; }; template struct transition_action_result { typedef void type; }; typedef ::boost::mpl::set tag_type; template 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 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()); } }; struct process_tag {}; struct Process_Helper: proto::extends< proto::terminal::type, Process_Helper, sm_domain> { Process_Helper(){} using proto::extends< proto::terminal::type, Process_Helper, sm_domain>::operator=; template struct In { typedef Process_ type; }; }; Process_Helper const process_; template struct Process2_ : euml_action > { template struct state_action_result { typedef void type; }; template struct transition_action_result { typedef void type; }; typedef ::boost::mpl::set tag_type; template 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 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 struct Process2_ : euml_action > { template struct state_action_result { typedef void type; }; template struct transition_action_result { typedef void type; }; typedef ::boost::mpl::set tag_type; template void operator()(EVT const& evt,FSM& fsm,SourceState& src,TargetState& tgt)const { fsm.process_event(ToProcessEvt(Value()(evt,fsm,src,tgt))); } template void operator()(Event const& evt,FSM& fsm,STATE& state)const { fsm.process_event(ToProcessEvt(Value()(evt,fsm,state))); } }; template struct Process2_ : euml_action > { template struct state_action_result { typedef void type; }; template struct transition_action_result { typedef void type; }; typedef ::boost::mpl::set tag_type; template 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 void operator()(Event const& evt,FSM& fsm,STATE& state)const { (Param1()(evt,fsm,state)).process_event(ToProcessEvt(Value()(evt,fsm,state))); } }; template struct Process2_ : euml_action > { template struct state_action_result { typedef void type; }; template struct transition_action_result { typedef void type; }; typedef ::boost::mpl::set tag_type; template 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 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::type, Process2_Helper, sm_domain> { Process2_Helper(){} using proto::extends< proto::terminal::type, Process2_Helper, sm_domain>::operator=; template struct In { typedef Process2_ type; }; }; Process2_Helper const process2_; template struct Get_Flag_ : euml_action > {}; template struct Get_Flag_ ::type >::type> : euml_action > { template struct state_action_result { typedef bool type; }; template struct transition_action_result { typedef bool type; }; typedef ::boost::mpl::set tag_type; template bool operator()(EVT const&,FSM& fsm,SourceState& ,TargetState& )const { return fsm.template is_flag_active(); } template bool operator()(Event const& ,FSM& fsm,STATE& )const { return fsm.template is_flag_active(); } }; template struct Get_Flag_ ::type >::type> : euml_action > { template struct state_action_result { typedef bool type; }; template struct transition_action_result { typedef bool type; }; typedef ::boost::mpl::set tag_type; template bool operator()(EVT const& evt,FSM& fsm,SourceState& src,TargetState& tgt)const { return (Param1()(evt,fsm,src,tgt)).template is_flag_active(); } template bool operator()(Event const& evt,FSM& fsm,STATE& state)const { return (Param1()(evt,fsm,state)).template is_flag_active(); } }; struct get_flag_tag { }; struct Get_Flag_Helper: proto::extends< proto::terminal::type, Get_Flag_Helper, sm_domain> { Get_Flag_Helper(){} template struct In { typedef Get_Flag_ type; }; }; Get_Flag_Helper const is_flag_; // deferring an event struct DeferEvent_ : euml_action< DeferEvent_ > { typedef ::boost::mpl::set tag_type; template void operator()(EVT const& evt,FSM& fsm,SourceState& ,TargetState& ) const { fsm.defer_event(evt); } }; struct defer_event_tag {}; struct Defer_Helper : proto::extends< proto::terminal::type, Defer_Helper, sm_domain> { Defer_Helper(){} using proto::extends< proto::terminal::type, Defer_Helper, sm_domain>::operator=; template struct In { typedef DeferEvent_ type; }; }; Defer_Helper const defer_; struct explicit_tag {}; struct Explicit_Helper : proto::extends< proto::terminal::type, Explicit_Helper, sm_domain> { Explicit_Helper(){} using proto::extends< proto::terminal::type, Explicit_Helper, sm_domain>::operator=; template struct In { typedef typename Arg1::template direct type; }; }; Explicit_Helper const explicit_; struct entry_pt_tag {}; struct Entry_Pt_Helper : proto::extends< proto::terminal::type, Entry_Pt_Helper, sm_domain> { Entry_Pt_Helper(){} using proto::extends< proto::terminal::type, Entry_Pt_Helper, sm_domain>::operator=; template struct In { typedef typename Arg1::template entry_pt type; }; }; Entry_Pt_Helper const entry_pt_; struct exit_pt_tag {}; struct Exit_Pt_Helper : proto::extends< proto::terminal::type, Exit_Pt_Helper, sm_domain> { Exit_Pt_Helper(){} using proto::extends< proto::terminal::type, Exit_Pt_Helper, sm_domain>::operator=; template struct In { typedef typename Arg1::template exit_pt type; }; }; Exit_Pt_Helper const exit_pt_; #ifdef BOOST_MSVC #define BOOST_MSM_EUML_FUNCTION(functor,function,function_name,result_trans,result_state) \ template \ struct functor : euml_action > {}; \ template \ struct functor::type>::type> \ : euml_action > { \ template struct state_action_result { \ typedef result_state type;} ; \ template \ struct transition_action_result { typedef result_trans type;}; \ typedef ::boost::mpl::set tag_type; \ template \ typename transition_action_result::type \ operator()(EVT const& , FSM& ,SourceState& ,TargetState& )const { \ return function ();} \ template \ typename state_action_result::type \ operator()(Event const& ,FSM& ,STATE& )const { \ return function ();} }; \ template \ struct functor::type,typename ::boost::mpl::not_< \ typename ::boost::is_same::type>::type>::type >::type> \ : euml_action > { \ template struct state_action_result { \ typedef result_state type;} ; \ template \ struct transition_action_result { typedef result_trans type;}; \ typedef ::boost::mpl::set tag_type; \ template \ typename ::boost::enable_if::type, \ typename transition_action_result::type >::type \ operator()(EVT const& evt, FSM& fsm,SourceState& src,TargetState& tgt)const { \ return function (Param1()(evt,fsm,src,tgt));} \ template \ typename ::boost::enable_if::type, \ typename state_action_result::type >::type \ operator()(Event const& evt,FSM& fsm,STATE& state )const { \ return function (Param1()(evt,fsm,state));} }; \ template \ struct functor::type,typename ::boost::mpl::not_< \ typename ::boost::is_same::type>::type>::type >::type> \ : euml_action > { \ template struct state_action_result { \ typedef result_state type;} ; \ template \ struct transition_action_result { typedef result_trans type;}; \ typedef ::boost::mpl::set tag_type; \ template \ typename ::boost::enable_if::type, \ typename transition_action_result::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 \ typename ::boost::enable_if::type, \ typename state_action_result::type >::type \ operator()(Event const& evt,FSM& fsm,STATE& state )const { \ return function (Param1()(evt,fsm,state),Param2()(evt,fsm,state));} }; \ template \ struct functor::type,typename ::boost::mpl::not_< \ typename ::boost::is_same::type>::type>::type >::type> \ : euml_action > { \ template struct state_action_result { \ typedef result_state type;} ; \ template \ struct transition_action_result { typedef result_trans type;}; \ typedef ::boost::mpl::set tag_type; \ template \ typename ::boost::enable_if::type, \ typename transition_action_result::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 \ typename ::boost::enable_if::type, \ typename state_action_result::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 \ struct functor::type,typename ::boost::mpl::not_< \ typename ::boost::is_same::type>::type>::type >::type> \ : euml_action > { \ template struct state_action_result { \ typedef result_state type;} ; \ template \ struct transition_action_result { typedef result_trans type;}; \ typedef ::boost::mpl::set tag_type; \ template \ typename ::boost::enable_if::type, \ typename transition_action_result::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 \ typename ::boost::enable_if::type, \ typename state_action_result::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 \ struct functor::type,typename ::boost::mpl::not_< \ typename ::boost::is_same::type>::type>::type >::type> \ : euml_action > { \ template struct state_action_result { \ typedef result_state type;} ; \ template \ struct transition_action_result { typedef result_trans type;}; \ typedef ::boost::mpl::set tag_type; \ template \ typename ::boost::enable_if::type, \ typename transition_action_result::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 \ typename ::boost::enable_if::type, \ typename state_action_result::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 \ struct functor::type>::type> \ : euml_action > { \ template struct state_action_result { \ typedef result_state type;} ; \ template \ struct transition_action_result { typedef result_trans type;}; \ typedef ::boost::mpl::set tag_type; \ template \ typename ::boost::enable_if::type, \ typename transition_action_result::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 \ typename ::boost::enable_if::type, \ typename state_action_result::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 , sm_domain> { functor ## Helper(){} \ template \ struct In {typedef functor type;}; }; \ functor ## Helper const function_name ; #define BOOST_MSM_EUML_METHOD(functor,function,function_name,result_trans,result_state) \ template \ struct functor : euml_action > {}; \ template \ struct functor::type>::type> \ : euml_action > { \ template struct state_action_result { \ typedef result_state type;} ; \ template \ struct transition_action_result { typedef result_trans type;}; \ typedef ::boost::mpl::set tag_type; \ template \ typename ::boost::enable_if::type, \ typename transition_action_result::type >::type \ operator()(EVT const& evt, FSM& fsm,SourceState& src,TargetState& tgt)const { \ return (Param1()(evt,fsm,src,tgt)).function();} \ template \ typename ::boost::enable_if::type, \ typename state_action_result::type >::type \ operator()(Event const& evt,FSM& fsm,STATE& state )const { \ return (Param1()(evt,fsm,state)).function();} }; \ template \ struct functor::type,typename ::boost::mpl::not_< \ typename ::boost::is_same::type>::type>::type >::type> \ : euml_action > { \ template struct state_action_result { \ typedef result_state type;} ; \ template \ struct transition_action_result { typedef result_trans type;}; \ typedef ::boost::mpl::set tag_type; \ template \ typename ::boost::enable_if::type, \ typename transition_action_result::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 \ typename ::boost::enable_if::type, \ typename state_action_result::type >::type \ operator()(Event const& evt,FSM& fsm,STATE& state )const { \ return (Param1()(evt,fsm,state)).function(Param2()(evt,fsm,state));} }; \ template \ struct functor::type,typename ::boost::mpl::not_< \ typename ::boost::is_same::type>::type>::type >::type> \ : euml_action > { \ template struct state_action_result { \ typedef result_state type;} ; \ template \ struct transition_action_result { typedef result_trans type;}; \ typedef ::boost::mpl::set tag_type; \ template \ typename ::boost::enable_if::type, \ typename transition_action_result::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 \ typename ::boost::enable_if::type, \ typename state_action_result::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 \ struct functor::type,typename ::boost::mpl::not_< \ typename ::boost::is_same::type>::type>::type >::type> \ : euml_action > { \ template struct state_action_result { \ typedef result_state type;} ; \ template \ struct transition_action_result { typedef result_trans type;}; \ typedef ::boost::mpl::set tag_type; \ template \ typename ::boost::enable_if::type, \ typename transition_action_result::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 \ typename ::boost::enable_if::type, \ typename state_action_result::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 \ struct functor::type,typename ::boost::mpl::not_< \ typename ::boost::is_same::type>::type>::type >::type> \ : euml_action > { \ template struct state_action_result { \ typedef result_state type;} ; \ template \ struct transition_action_result { typedef result_trans type;}; \ typedef ::boost::mpl::set tag_type; \ template \ typename ::boost::enable_if::type, \ typename transition_action_result::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 \ typename ::boost::enable_if::type, \ typename state_action_result::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 \ struct functor::type>::type> \ : euml_action > { \ template struct state_action_result { \ typedef result_state type;} ; \ template \ struct transition_action_result { typedef result_trans type;}; \ typedef ::boost::mpl::set tag_type; \ template \ typename ::boost::enable_if::type, \ typename transition_action_result::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 \ typename ::boost::enable_if::type, \ typename state_action_result::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 , sm_domain> { functor ## Helper(){} \ template \ struct In {typedef functor type;}; }; \ functor ## Helper const function_name ; #else #define BOOST_MSM_EUML_FUNCTION(functor,function,function_name,result_trans,result_state) \ template \ struct functor : euml_action > {}; \ template \ struct functor::type,typename ::boost::mpl::not_< \ typename ::boost::is_same::type>::type>::type >::type> \ : euml_action > { \ template struct state_action_result { \ typedef result_state type;} ; \ template \ struct transition_action_result { typedef result_trans type;}; \ typedef ::boost::mpl::set tag_type; \ template \ typename ::boost::enable_if::type, \ typename transition_action_result::type >::type \ operator()(EVT const& evt, FSM& fsm,SourceState& src,TargetState& tgt)const { \ return function (Param1()(evt,fsm,src,tgt));} \ template \ typename ::boost::enable_if::type, \ typename state_action_result::type >::type \ operator()(Event const& evt,FSM& fsm,STATE& state )const { \ return function (Param1()(evt,fsm,state));} }; \ template \ struct functor::type,typename ::boost::mpl::not_< \ typename ::boost::is_same::type>::type>::type >::type> \ : euml_action > { \ template struct state_action_result { \ typedef result_state type;} ; \ template \ struct transition_action_result { typedef result_trans type;}; \ typedef ::boost::mpl::set tag_type; \ template \ typename ::boost::enable_if::type, \ typename transition_action_result::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 \ typename ::boost::enable_if::type, \ typename state_action_result::type >::type \ operator()(Event const& evt,FSM& fsm,STATE& state )const { \ return function (Param1()(evt,fsm,state),Param2()(evt,fsm,state));} }; \ template \ struct functor::type,typename ::boost::mpl::not_< \ typename ::boost::is_same::type>::type>::type >::type> \ : euml_action > { \ template struct state_action_result { \ typedef result_state type;} ; \ template \ struct transition_action_result { typedef result_trans type;}; \ typedef ::boost::mpl::set tag_type; \ template \ typename ::boost::enable_if::type, \ typename transition_action_result::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 \ typename ::boost::enable_if::type, \ typename state_action_result::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 \ struct functor::type,typename ::boost::mpl::not_< \ typename ::boost::is_same::type>::type>::type >::type> \ : euml_action > { \ template struct state_action_result { \ typedef result_state type;} ; \ template \ struct transition_action_result { typedef result_trans type;}; \ typedef ::boost::mpl::set tag_type; \ template \ typename ::boost::enable_if::type, \ typename transition_action_result::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 \ typename ::boost::enable_if::type, \ typename state_action_result::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 \ struct functor::type>::type> \ : euml_action > { \ template struct state_action_result { \ typedef result_state type;} ; \ template \ struct transition_action_result { typedef result_trans type;}; \ typedef ::boost::mpl::set tag_type; \ template \ typename ::boost::enable_if::type, \ typename transition_action_result::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 \ typename ::boost::enable_if::type, \ typename state_action_result::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 , sm_domain> { functor ## Helper(){} \ template \ struct In {typedef functor type;}; }; \ functor ## Helper const function_name ; #define BOOST_MSM_EUML_METHOD(functor,function,function_name,result_trans,result_state) \ template \ struct functor : euml_action > {}; \ template \ struct functor::type>::type> \ : euml_action > { \ template struct state_action_result { \ typedef result_state type;} ; \ template \ struct transition_action_result { typedef result_trans type;}; \ typedef ::boost::mpl::set tag_type; \ template \ typename ::boost::enable_if::type, \ typename transition_action_result::type >::type \ operator()(EVT const& evt, FSM& fsm,SourceState& src,TargetState& tgt)const { \ return (Param1()(evt,fsm,src,tgt)).function();} \ template \ typename ::boost::enable_if::type, \ typename state_action_result::type >::type \ operator()(Event const& evt,FSM& fsm,STATE& state )const { \ return (Param1()(evt,fsm,state)).function();} }; \ template \ struct functor::type,typename ::boost::mpl::not_< \ typename ::boost::is_same::type>::type>::type >::type> \ : euml_action > { \ template struct state_action_result { \ typedef result_state type;} ; \ template \ struct transition_action_result { typedef result_trans type;}; \ typedef ::boost::mpl::set tag_type; \ template \ typename ::boost::enable_if::type, \ typename transition_action_result::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 \ typename ::boost::enable_if::type, \ typename state_action_result::type >::type \ operator()(Event const& evt,FSM& fsm,STATE& state )const { \ return (Param1()(evt,fsm,state)).function(Param2()(evt,fsm,state));} }; \ template \ struct functor::type,typename ::boost::mpl::not_< \ typename ::boost::is_same::type>::type>::type >::type> \ : euml_action > { \ template struct state_action_result { \ typedef result_state type;} ; \ template \ struct transition_action_result { typedef result_trans type;}; \ typedef ::boost::mpl::set tag_type; \ template \ typename ::boost::enable_if::type, \ typename transition_action_result::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 \ typename ::boost::enable_if::type, \ typename state_action_result::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 \ struct functor::type,typename ::boost::mpl::not_< \ typename ::boost::is_same::type>::type>::type >::type> \ : euml_action > { \ template struct state_action_result { \ typedef result_state type;} ; \ template \ struct transition_action_result { typedef result_trans type;}; \ typedef ::boost::mpl::set tag_type; \ template \ typename ::boost::enable_if::type, \ typename transition_action_result::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 \ typename ::boost::enable_if::type, \ typename state_action_result::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 \ struct functor::type>::type> \ : euml_action > { \ template struct state_action_result { \ typedef result_state type;} ; \ template \ struct transition_action_result { typedef result_trans type;}; \ typedef ::boost::mpl::set tag_type; \ template \ typename ::boost::enable_if::type, \ typename transition_action_result::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 \ typename ::boost::enable_if::type, \ typename state_action_result::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 , sm_domain> { functor ## Helper(){} \ template \ struct In {typedef functor type;}; }; \ functor ## Helper const function_name ; #endif #define RESULT_TYPE2_PARAM1 typename get_result_type2::type #define RESULT_TYPE_PARAM1 typename get_result_type::type #define RESULT_TYPE2_PARAM2 typename get_result_type2::type #define RESULT_TYPE_PARAM2 typename get_result_type::type #define RESULT_TYPE2_PARAM3 typename get_result_type2::type #define RESULT_TYPE_PARAM3 typename get_result_type::type #define RESULT_TYPE2_PARAM4 typename get_result_type2::type #define RESULT_TYPE_PARAM4 typename get_result_type::type #define RESULT_TYPE2_PARAM5 typename get_result_type2::type #define RESULT_TYPE_PARAM5 typename get_result_type::type #define RESULT_TYPE2_PARAM6 typename get_result_type2::type #define RESULT_TYPE_PARAM6 typename get_result_type::type #define RESULT_TYPE2_DIFF_TYPE_ITER_TRAITS_PARAM1 typename std::iterator_traits::type>::difference_type #define RESULT_TYPE_DIFF_TYPE_ITER_TRAITS_PARAM1 typename std::iterator_traits::type>::difference_type #define RESULT_TYPE2_REMOVE_REF_PARAM1 typename ::boost::remove_reference::type>::type #define RESULT_TYPE_REMOVE_REF_PARAM1 typename ::boost::remove_reference::type>::type #define RESULT_TYPE2_PAIR_REMOVE_REF_PARAM1 std::pair #define RESULT_TYPE_PAIR_REMOVE_REF_PARAM1 std::pair #define RESULT_TYPE2_GET_REF_REMOVE_REF_PARAM1 typename get_reference::type>::type>::type #define RESULT_TYPE_GET_REF_REMOVE_REF_PARAM1 typename get_reference::type>::type>::type #define RESULT_TYPE2_GET_ITERATOR_REMOVE_REF_PARAM1 typename get_iterator::type>::type>::type #define RESULT_TYPE_GET_ITERATOR_REMOVE_REF_PARAM1 typename get_iterator::type>::type>::type #define RESULT_TYPE2_GET_REV_ITERATOR_REMOVE_REF_PARAM1 typename get_reverse_iterator::type>::type>::type #define RESULT_TYPE_GET_REV_ITERATOR_REMOVE_REF_PARAM1 typename get_reverse_iterator::type>::type>::type #define RESULT_TYPE2_GET_SIZE_TYPE_REMOVE_REF_PARAM1 typename get_size_type::type>::type>::type #define RESULT_TYPE_GET_SIZE_TYPE_REMOVE_REF_PARAM1 typename get_size_type::type>::type>::type #define BOOST_MSM_EUML_ACTION(instance_name) \ struct instance_name ## _impl; \ struct instance_name ## _helper : msm::front::euml::euml_action \ { \ instance_name ## _helper(){} \ typedef instance_name ## _impl action_name; \ }; \ instance_name ## _helper instance_name; \ struct instance_name ## _impl : instance_name ## _helper #define BOOST_MSM_EUML_EVENT(instance_name) \ struct instance_name ## _helper : msm::front::euml::euml_event{ \ instance_name ## _helper(){} \ instance_name ## _helper const& operator()(){return *this;} }; \ instance_name ## _helper instance_name; #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::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::type>::type>::type())=arg ## n; #define MSM_EUML_EVENT_HELPER_CONSTRUCTORS(z, n, mytuple) \ template \ 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 \ 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::type,size_helper,::boost::mpl::false_>::type,void >::type* dummyval=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_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, ~ ));} #define BOOST_MSM_EUML_EVENT_WITH_ATTRIBUTES(instance_name, attributes_name) \ struct instance_name ## _helper : \ msm::front::euml::euml_event , public attributes_name \ { \ template struct size_helper \ { \ typedef typename ::boost::mpl::less_equal< \ typename ::boost::fusion::result_of::size::type, \ ::boost::mpl::int_ >::type type; \ }; \ BOOST_PP_CAT(instance_name,_helper()) : attributes_name(){} \ typedef attributes_name::attributes_type attribute_map; \ typedef ::boost::fusion::result_of::as_vector::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) \ }; \ instance_name ## _helper const instance_name; #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 : msm::front::euml::euml_flag{}; \ instance_name ## _helper 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 expr) instance_name; #define BOOST_MSM_EUML_DECLARE_INTERRUPT_STATE(expr,instance_name) \ struct instance_name ## tag{}; \ typedef BOOST_TYPEOF(build_interrupt_state expr) instance_name; #define BOOST_MSM_EUML_DECLARE_TERMINATE_STATE(expr,instance_name) \ struct instance_name ## tag{}; \ typedef BOOST_TYPEOF(build_terminate_state 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 expr) instance_name; #define BOOST_MSM_EUML_DECLARE_ENTRY_STATE(region,expr,instance_name) \ struct instance_name ## tag{}; \ typedef BOOST_TYPEOF(build_entry_state expr) instance_name; #define BOOST_MSM_EUML_DECLARE_EXIT_STATE(expr,instance_name) \ struct instance_name ## tag{}; \ typedef BOOST_TYPEOF(build_exit_state expr) instance_name; #define BOOST_MSM_EUML_DECLARE_STATE_MACHINE(expr,instance_name) \ struct instance_name ## tag{}; \ typedef BOOST_TYPEOF(build_sm expr) instance_name; #define BOOST_MSM_EUML_DECLARE_TRANSITION_TABLE(expr,instance_name) \ 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 expr) instance_name ## _helper; \ instance_name ## _helper const instance_name; #define BOOST_MSM_EUML_INTERRUPT_STATE(expr,instance_name) \ struct instance_name ## tag{}; \ typedef BOOST_TYPEOF(build_interrupt_state expr) instance_name ## _helper; \ instance_name ## _helper const instance_name; #define BOOST_MSM_EUML_TERMINATE_STATE(expr,instance_name) \ struct instance_name ## tag{}; \ typedef BOOST_TYPEOF(build_terminate_state expr) instance_name ## _helper; \ instance_name ## _helper const instance_name; #define BOOST_MSM_EUML_EXPLICIT_ENTRY_STATE(region,expr,instance_name) \ struct instance_name ## tag{}; \ typedef BOOST_TYPEOF(build_explicit_entry_state expr) instance_name ## _helper; \ instance_name ## _helper const instance_name; #define BOOST_MSM_EUML_ENTRY_STATE(region,expr,instance_name) \ struct instance_name ## tag{}; \ typedef BOOST_TYPEOF(build_entry_state expr) instance_name ## _helper; \ instance_name ## _helper const instance_name; #define BOOST_MSM_EUML_EXIT_STATE(expr,instance_name) \ struct instance_name ## tag{}; \ typedef BOOST_TYPEOF(build_exit_state expr) instance_name ## _helper; \ instance_name ## _helper const 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(){}}; \ instance_name ## _helper const 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(){}}; \ instance_name ## _helper const 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(){}} ; \ instance_name ## _helper const 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(){}} ; \ instance_name ## _helper const instance_name; #endif }}}} // boost::msm::front::euml #endif // BOOST_MSM_FRONT_EUML_COMMON_H