X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=PPI%2FRoute.hh;h=307d3418972fd950d7376276070687c791b8072a;hb=821f1bf89a0e3ef83469c56e4a9a21c39b956cb4;hp=e3eee1cf3275e79bae12cb73d6afec17fc575ab6;hpb=f539f4271d470794a773a92bacd8ba086c9bc1cd;p=senf.git diff --git a/PPI/Route.hh b/PPI/Route.hh index e3eee1c..307d341 100644 --- a/PPI/Route.hh +++ b/PPI/Route.hh @@ -34,6 +34,11 @@ namespace senf { namespace ppi { + /** \brief Routing base class + + Routing information is defined within each module to define the control flow. RouteBase is + the generic base class for all routing entries. + */ class RouteBase { public: @@ -46,11 +51,17 @@ namespace ppi { module::Module * module_; }; + /** \brief Forwarding route base class + + All routes which may forward control information are based on + ForwardingRoute. ForwardingRoute provides methods to control and query the throttling + behavior. + */ class ForwardingRoute : public RouteBase { public: - bool autoThrottling(); + bool autoThrottling() const; ///< Query current autoThrottling state void autoThrottling(bool state); ///< Change automatic throttle notification forwarding /**< By default, throttle notifications are automatically forwarded from active to passive connectors. This may @@ -65,12 +76,20 @@ namespace ppi { comes in. Respective for unthrottle notifications. \param[in] state New throttle forwarding state */ + + bool throttled() const; ///< \c true, if the route is throttled + /**< This member checks only the automatic throttling + state. If autoThrottling() is \c false, this member + will always return \c false. */ protected: ForwardingRoute(module::Module & module); // Called to register this route with the connectors forwarding information base - void registerRoute(connector::ActiveConnector & connector); + template void registerRoute(T & ob); + + template void notifyThrottle(T & ob); + template void notifyUnthrottle(T & ob); private: // called to forward a throttling notification along the route @@ -80,6 +99,7 @@ namespace ppi { // Implemented in the derived classes to forward throttling notifications virtual void v_notifyThrottle() = 0; virtual void v_notifyUnthrottle() = 0; + virtual bool v_throttled() const = 0; bool autoThrottling_; @@ -98,12 +118,17 @@ namespace ppi { Route instances are created by Module::route statements. The Route class provides an interface to manipulate the flow processing. + + The concrete interface provided depends on the type of route. If the route is a forwarding + route, it will be based on ForwardingRoute otherwise it will be based directly on + RouteBase. */ template class Route : public detail::RouteImplementation { private: + typedef detail::RouteImplementation Base; typedef detail::RouteImplementation Implementation; Route(module::Module & module, Source & source, Target & target); @@ -115,7 +140,7 @@ namespace ppi { ///////////////////////////////hh.e//////////////////////////////////////// #include "Route.cci" -//#include "Route.ct" +#include "Route.ct" #include "Route.cti" #endif