b135553f71daa01708663343c3cd9a89d84077a2
[metaproxy-moved-to-github.git] / src / filter.hpp
1 /* $Id: filter.hpp,v 1.12 2006-01-09 13:43:59 adam Exp $
2    Copyright (c) 2005, Index Data.
3
4 %LICENSE%
5  */
6
7 #ifndef FILTER_HPP
8 #define FILTER_HPP
9
10 #include <string>
11 #include <stdexcept>
12 #include <libxml/tree.h>
13
14 namespace yp2 {
15
16     class Package;
17
18
19     namespace filter {
20         class Base {
21         public:
22             virtual ~Base(){};
23             
24             ///sends Package off to next Filter, returns altered Package
25             virtual void process(Package & package) const = 0;
26
27             virtual void configure(const xmlNode * ptr) { };
28         };
29
30         class FilterException : public std::runtime_error {
31         public:
32             FilterException(const std::string message)
33                 : std::runtime_error("FilterException: " + message){
34             };
35         };
36         
37     }
38 }
39
40 struct yp2_filter_struct {
41     int ver;
42     const char *type;
43     yp2::filter::Base* (*creator)();
44 };
45
46 #endif
47 /*
48  * Local variables:
49  * c-basic-offset: 4
50  * indent-tabs-mode: nil
51  * c-file-style: "stroustrup"
52  * End:
53  * vim: shiftwidth=4 tabstop=8 expandtab
54  */