X-Git-Url: http://lists.indexdata.com/cgi-bin?a=blobdiff_plain;f=src%2Ffilter.hpp;h=fdaafe2bb5baad1043053c774bc6549799968b70;hb=9c4d6a0006e8c99412865e3f3b924345ae782a77;hp=4632a3be262c8f1a310bc2a6b32ef8e017fb446b;hpb=7969e482bd427717e116917116e52958432a9c16;p=metaproxy-moved-to-github.git diff --git a/src/filter.hpp b/src/filter.hpp index 4632a3b..fdaafe2 100644 --- a/src/filter.hpp +++ b/src/filter.hpp @@ -1,59 +1,54 @@ +/* $Id: filter.hpp,v 1.18 2006-09-29 09:48:35 marc Exp $ + Copyright (c) 2005-2006, Index Data. + + See the LICENSE file for details + */ #ifndef FILTER_HPP #define FILTER_HPP +#include #include +#include +#include "xmlutil.hpp" -namespace yp2 { +namespace metaproxy_1 { class Package; - - class Filter { - public: - virtual ~Filter(){}; - - ///sends Package off to next Filter, returns altered Package - virtual Package & process(Package & package) const { - return package; - }; - virtual void configure(){}; - - /// get function - right val in assignment - std::string name() const { - return m_name; - } - - /// set function - left val in assignment - std::string & name() { - return m_name; - } - - /// set function - can be chained - Filter & name(const std::string & name){ - m_name = name; - return *this; - } - - private: - std::string m_name; - }; - - - class FilterException : public std::runtime_error { - public: - FilterException(const std::string message) - : std::runtime_error("FilterException: " + message){ + + namespace filter { + class Base { + public: + virtual ~Base(){}; + + ///sends Package off to next Filter, returns altered Package + virtual void process(Package & package) const = 0; + + /// configuration during filter load + virtual void configure(const xmlNode * ptr); }; - }; - + class FilterException : public std::runtime_error { + public: + FilterException(const std::string message) + : std::runtime_error("FilterException: " + message){ + }; + }; + } } +struct metaproxy_1_filter_struct { + int ver; + const char *type; + metaproxy_1::filter::Base* (*creator)(); +}; + #endif /* * Local variables: * c-basic-offset: 4 * indent-tabs-mode: nil + * c-file-style: "stroustrup" * End: * vim: shiftwidth=4 tabstop=8 expandtab */