fdca85a512446071e38f81ff9c91a731247b837d
[metaproxy-moved-to-github.git] / src / filter_session_shared.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_SESSION_SHARED_HPP
20 #define FILTER_SESSION_SHARED_HPP
21
22 #include <boost/scoped_ptr.hpp>
23 #include <list>
24 #include <map>
25
26 #include <metaproxy/filter.hpp>
27
28 namespace metaproxy_1 {
29     namespace filter {
30         class SessionShared : public Base {
31             class Rep;
32             class InitKey;
33             class BackendSet;
34             class FrontendSet;
35             class Worker;
36
37             struct Frontend;
38             class BackendClass;
39             class BackendInstance;
40             typedef boost::shared_ptr<Frontend> FrontendPtr;
41             typedef boost::shared_ptr<BackendClass> BackendClassPtr;
42             typedef boost::shared_ptr<BackendInstance> BackendInstancePtr;
43             typedef boost::shared_ptr<BackendSet> BackendSetPtr;
44             typedef boost::shared_ptr<FrontendSet> FrontendSetPtr;
45             typedef std::list<std::string> Databases;
46
47             typedef std::list<BackendInstancePtr> BackendInstanceList;
48             typedef std::map<InitKey, BackendClassPtr> BackendClassMap;
49             typedef std::list<BackendSetPtr> BackendSetList;
50             typedef std::map<std::string, FrontendSetPtr> FrontendSets;
51         public:
52             ~SessionShared();
53             SessionShared();
54             void process(metaproxy_1::Package & package) const;
55             void configure(const xmlNode * ptr, bool test_only);
56             void start() const;
57         private:
58             boost::scoped_ptr<Rep> m_p;
59         };
60     }
61 }
62
63 extern "C" {
64     extern struct metaproxy_1_filter_struct metaproxy_1_filter_session_shared;
65 }
66
67 #endif
68 /*
69  * Local variables:
70  * c-basic-offset: 4
71  * c-file-style: "Stroustrup"
72  * indent-tabs-mode: nil
73  * End:
74  * vim: shiftwidth=4 tabstop=8 expandtab
75  */
76