Updated footer comment
[metaproxy-moved-to-github.git] / src / factory_static.cpp
1 /* This file is part of Metaproxy.
2    Copyright (C) 2005-2008 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 <iostream>
20 #include <stdexcept>
21
22 #include "factory_static.hpp"
23
24 #include "config.hpp"
25 #include "filter.hpp"
26 #include "package.hpp"
27
28 #include "factory_filter.hpp"
29
30 #include "filter_auth_simple.hpp"
31 #include "filter_backend_test.hpp"
32 #include "filter_bounce.hpp"
33 #include "filter_cql_to_rpn.hpp"
34 #include "filter_frontend_net.hpp"
35 #include "filter_http_file.hpp"
36 #include "filter_load_balance.hpp"
37 #include "filter_log.hpp"
38 #include "filter_multi.hpp"
39 #include "filter_query_rewrite.hpp"
40 #include "filter_record_transform.hpp"
41 #include "filter_session_shared.hpp"
42 #include "filter_sru_to_z3950.hpp"
43 #include "filter_template.hpp"
44 #include "filter_virt_db.hpp"
45 #include "filter_z3950_client.hpp"
46 #include "filter_zeerex_explain.hpp"
47
48 namespace mp = metaproxy_1;
49
50 mp::FactoryStatic::FactoryStatic()
51 {
52     struct metaproxy_1_filter_struct *buildins[] = {
53         &metaproxy_1_filter_auth_simple,
54         &metaproxy_1_filter_backend_test,
55         &metaproxy_1_filter_bounce,
56         &metaproxy_1_filter_cql_to_rpn,
57         &metaproxy_1_filter_frontend_net,        
58         &metaproxy_1_filter_http_file,
59         &metaproxy_1_filter_load_balance,
60         &metaproxy_1_filter_log,
61         &metaproxy_1_filter_multi,
62         &metaproxy_1_filter_query_rewrite,
63         &metaproxy_1_filter_record_transform,
64         &metaproxy_1_filter_session_shared,
65         &metaproxy_1_filter_sru_to_z3950,
66         &metaproxy_1_filter_template,
67         &metaproxy_1_filter_virt_db,
68         &metaproxy_1_filter_z3950_client,
69         &metaproxy_1_filter_zeerex_explain,
70         0
71     };
72     int i;
73
74     for (i = 0; buildins[i]; i++)
75         add_creator(buildins[i]->type, buildins[i]->creator);
76 }
77
78
79 /*
80  * Local variables:
81  * c-basic-offset: 4
82  * c-file-style: "Stroustrup"
83  * indent-tabs-mode: nil
84  * End:
85  * vim: shiftwidth=4 tabstop=8 expandtab
86  */
87