Fix clang warning: class Map instead of struct Map
[metaproxy-moved-to-github.git] / src / filter_multi.hpp
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 #ifndef FILTER_MULTI_HPP
20 #define FILTER_MULTI_HPP
21
22 #include <stdexcept>
23 #include <list>
24 #include <map>
25 #include <boost/scoped_ptr.hpp>
26 #include <boost/shared_ptr.hpp>
27
28 #include <metaproxy/filter.hpp>
29
30 namespace metaproxy_1 {
31     namespace filter {
32         class Multi : public Base {
33             class Rep;
34             struct Frontend;
35             class Map;
36             struct FrontendSet;
37             struct Backend;
38             struct BackendSet;
39             struct ScanTermInfo;
40             typedef std::list<ScanTermInfo> ScanTermInfoList;
41             typedef boost::shared_ptr<Backend> BackendPtr;
42             typedef boost::shared_ptr<Frontend> FrontendPtr;
43             typedef boost::shared_ptr<Package> PackagePtr;
44             typedef std::map<std::string,FrontendSet>::iterator Sets_it;
45         public:
46             ~Multi();
47             Multi();
48             void process(metaproxy_1::Package & package) const;
49             void configure(const xmlNode * ptr, bool test_only,
50                            const char *path);
51             void add_map_host2hosts(std::string host,
52                                     std::list<std::string> hosts,
53                                     std::string route);
54         private:
55             boost::scoped_ptr<Rep> m_p;
56         };
57     }
58 }
59
60 extern "C" {
61     extern struct metaproxy_1_filter_struct metaproxy_1_filter_multi;
62 }
63
64 #endif
65 /*
66  * Local variables:
67  * c-basic-offset: 4
68  * c-file-style: "Stroustrup"
69  * indent-tabs-mode: nil
70  * End:
71  * vim: shiftwidth=4 tabstop=8 expandtab
72  */
73