Version 1.0.23. Bump copyright year.
[metaproxy-moved-to-github.git] / src / filter_multi.hpp
1 /* This file is part of Metaproxy.
2    Copyright (C) 2005-2010 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 "filter.hpp"
29
30 namespace metaproxy_1 {
31     namespace filter {
32         class Multi : public Base {
33             class Rep;
34             struct Frontend;
35             struct 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             void add_map_host2hosts(std::string host,
51                                     std::list<std::string> hosts,
52                                     std::string route);
53         private:
54             boost::scoped_ptr<Rep> m_p;
55         };
56     }
57 }
58
59 extern "C" {
60     extern struct metaproxy_1_filter_struct metaproxy_1_filter_multi;
61 }
62
63 #endif
64 /*
65  * Local variables:
66  * c-basic-offset: 4
67  * c-file-style: "Stroustrup"
68  * indent-tabs-mode: nil
69  * End:
70  * vim: shiftwidth=4 tabstop=8 expandtab
71  */
72