X-Git-Url: http://sru.miketaylor.org.uk/?a=blobdiff_plain;f=src%2Frouter.hpp;h=0e58da1d83b5fea248a5a79a5e76510a2a610ad0;hb=b70b9ec78f0ab1c3ed3b432de986159129a0e4ed;hp=28279def628c3aab2e8dfdac3a7d18e8623db69a;hpb=5cc9145ea95e0a778bef7ad2a0ea9c1a4824bcc4;p=metaproxy-moved-to-github.git diff --git a/src/router.hpp b/src/router.hpp index 28279de..0e58da1 100644 --- a/src/router.hpp +++ b/src/router.hpp @@ -1,7 +1,7 @@ -/* $Id: router.hpp,v 1.6 2005-11-10 23:10:42 adam Exp $ - Copyright (c) 2005, Index Data. +/* $Id: router.hpp,v 1.13 2007-01-25 14:05:54 adam Exp $ + Copyright (c) 2005-2007, Index Data. -%LICENSE% + See the LICENSE file for details */ #ifndef ROUTER_HPP @@ -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