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