e654a24ed3a8b5a9c4184afb64b181aa6ac4f76b
[metaproxy-moved-to-github.git] / src / filter_template.cpp
1 /* This file is part of Metaproxy.
2    Copyright (C) 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, bool test_only,
39                            const char *path);
40         private:
41             int m_dummy;
42         };
43     }
44 }
45
46 // define Pimpl wrapper forwarding to Impl
47
48 yf::Template::Template() : m_p(new Impl)
49 {
50 }
51
52 yf::Template::~Template()
53 {  // must have a destructor because of boost::scoped_ptr
54 }
55
56 void yf::Template::configure(const xmlNode *xmlnode, bool test_only,
57                              const char *path)
58 {
59     m_p->configure(xmlnode, test_only, path);
60 }
61
62 void yf::Template::process(mp::Package &package) const
63 {
64     m_p->process(package);
65 }
66
67
68 // define Implementation stuff
69
70
71
72 yf::Template::Impl::Impl()
73 {
74     m_dummy = 1;
75 }
76
77 yf::Template::Impl::~Impl()
78 {
79 }
80
81 void yf::Template::Impl::configure(const xmlNode *xmlnode, bool test_only,
82                                    const char *path)
83 {
84 }
85
86 void yf::Template::Impl::process(mp::Package &package) const
87 {
88     // Z_GDU *gdu = package.request().get();
89     package.move();
90 }
91
92
93 static mp::filter::Base* filter_creator()
94 {
95     return new mp::filter::Template;
96 }
97
98 extern "C" {
99     struct metaproxy_1_filter_struct metaproxy_1_filter_template = {
100         0,
101         "template",
102         filter_creator
103     };
104 }
105
106
107 /*
108  * Local variables:
109  * c-basic-offset: 4
110  * c-file-style: "Stroustrup"
111  * indent-tabs-mode: nil
112  * End:
113  * vim: shiftwidth=4 tabstop=8 expandtab
114  */
115