Happy new year
[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 {
57     m_p->configure(xmlnode);
58 }
59
60 void yf::Template::process(mp::Package &package) const
61 {
62     m_p->process(package);
63 }
64
65
66 // define Implementation stuff
67
68
69
70 yf::Template::Impl::Impl()
71 {
72     m_dummy = 1;
73 }
74
75 yf::Template::Impl::~Impl()
76
77 }
78
79 void yf::Template::Impl::configure(const xmlNode *xmlnode)
80 {
81 }
82
83 void yf::Template::Impl::process(mp::Package &package) const
84 {
85     // Z_GDU *gdu = package.request().get();
86     package.move();
87 }
88
89
90 static mp::filter::Base* filter_creator()
91 {
92     return new mp::filter::Template;
93 }
94
95 extern "C" {
96     struct metaproxy_1_filter_struct metaproxy_1_filter_template = {
97         0,
98         "template",
99         filter_creator
100     };
101 }
102
103
104 /*
105  * Local variables:
106  * c-basic-offset: 4
107  * c-file-style: "Stroustrup"
108  * indent-tabs-mode: nil
109  * End:
110  * vim: shiftwidth=4 tabstop=8 expandtab
111  */
112