Add path to configure method of filter.
[metaproxy-moved-to-github.git] / src / filter_template.cpp
1 /* This file is part of Metaproxy.
2    Copyright (C) 2005-2011 Index Data
3
4 Metaproxy is free software; you can redistribute it and/or modify it under
5 the terms of the GNU General Public License as published by the Free
6 Software Foundation; either version 2, or (at your option) any later
7 version.
8
9 Metaproxy is distributed in the hope that it will be useful, but WITHOUT ANY
10 WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12 for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
17 */
18
19 #include "config.hpp"
20 #include "filter_template.hpp"
21 #include <metaproxy/package.hpp>
22 #include <metaproxy/util.hpp>
23
24 #include <boost/thread/mutex.hpp>
25
26 #include <yaz/zgdu.h>
27
28 namespace mp = metaproxy_1;
29 namespace yf = mp::filter;
30
31 namespace metaproxy_1 {
32     namespace filter {
33         class Template::Impl {
34         public:
35             Impl();
36             ~Impl();
37             void process(metaproxy_1::Package & package) const;
38             void configure(const xmlNode * ptr);
39         private:
40             int m_dummy;
41         };
42     }
43 }
44
45 // define Pimpl wrapper forwarding to Impl
46  
47 yf::Template::Template() : m_p(new Impl)
48 {
49 }
50
51 yf::Template::~Template()
52 {  // must have a destructor because of boost::scoped_ptr
53 }
54
55 void yf::Template::configure(const xmlNode *xmlnode, bool test_only,
56                              const char *path)
57 {
58     m_p->configure(xmlnode);
59 }
60
61 void yf::Template::process(mp::Package &package) const
62 {
63     m_p->process(package);
64 }
65
66
67 // define Implementation stuff
68
69
70
71 yf::Template::Impl::Impl()
72 {
73     m_dummy = 1;
74 }
75
76 yf::Template::Impl::~Impl()
77
78 }
79
80 void yf::Template::Impl::configure(const xmlNode *xmlnode)
81 {
82 }
83
84 void yf::Template::Impl::process(mp::Package &package) const
85 {
86     // Z_GDU *gdu = package.request().get();
87     package.move();
88 }
89
90
91 static mp::filter::Base* filter_creator()
92 {
93     return new mp::filter::Template;
94 }
95
96 extern "C" {
97     struct metaproxy_1_filter_struct metaproxy_1_filter_template = {
98         0,
99         "template",
100         filter_creator
101     };
102 }
103
104
105 /*
106  * Local variables:
107  * c-basic-offset: 4
108  * c-file-style: "Stroustrup"
109  * indent-tabs-mode: nil
110  * End:
111  * vim: shiftwidth=4 tabstop=8 expandtab
112  */
113