X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Frouter.hpp;h=d59b741eeef105cb8c136e4be5bab58e9a907bd4;hb=79100c2ae2dac4bdde4f4d46b69e147562b4ec6c;hp=28279def628c3aab2e8dfdac3a7d18e8623db69a;hpb=5cc9145ea95e0a778bef7ad2a0ea9c1a4824bcc4;p=metaproxy-moved-to-github.git diff --git a/src/router.hpp b/src/router.hpp index 28279de..d59b741 100644 --- a/src/router.hpp +++ b/src/router.hpp @@ -1,5 +1,5 @@ -/* $Id: router.hpp,v 1.6 2005-11-10 23:10:42 adam Exp $ - Copyright (c) 2005, Index Data. +/* $Id: router.hpp,v 1.11 2006-03-16 10:40:59 adam Exp $ + Copyright (c) 2005-2006, Index Data. %LICENSE% */ @@ -11,36 +11,32 @@ #include #include -namespace yp2 +namespace metaproxy_1 { namespace filter { class Base; } - class Package; + class RoutePos; class RouterException : public std::runtime_error { public: RouterException(const std::string message) : std::runtime_error("RouterException: " + message){}; }; - - + class Router : boost::noncopyable { public: Router(){}; virtual ~Router(){}; - /// determines next Filter to use from current Filter and Package - virtual const filter::Base *move(const filter::Base *filter, - const Package *package) const = 0; - - /// re-read configuration of routing tables - //virtual void configure(){}; + virtual RoutePos *createpos() const = 0; + }; - /// add routing rule expressed as Filter to Router - //virtual Router & rule(const filter::Base &filter){ - // return *this; - //} + class RoutePos : boost::noncopyable { + public: + virtual const filter::Base *move(const char *route) = 0; + virtual RoutePos *clone() = 0; + virtual ~RoutePos() {}; }; } #endif