X-Git-Url: http://jsfdemo.indexdata.com/?a=blobdiff_plain;f=src%2Frouter.hpp;h=34a4a35fc20ce3aaf2fb80aa8d16d21673f88e2b;hb=098f68aa472b0827a0dfdfda38a338cde577ef98;hp=28279def628c3aab2e8dfdac3a7d18e8623db69a;hpb=5cc9145ea95e0a778bef7ad2a0ea9c1a4824bcc4;p=metaproxy-moved-to-github.git diff --git a/src/router.hpp b/src/router.hpp index 28279de..34a4a35 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.12 2006-06-10 14:29:12 adam Exp $ + Copyright (c) 2005-2006, 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