1 /* This file is part of Metaproxy.
2 Copyright (C) 2005-2012 Index Data
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
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
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
22 #include <yaz/options.h>
23 #include <yaz/daemon.h>
28 #include <libxml/xinclude.h>
30 #include <metaproxy/filter.hpp>
31 #include <metaproxy/package.hpp>
32 #include "router_flexml.hpp"
33 #include "factory_static.hpp"
45 namespace mp = metaproxy_1;
47 mp::RouterFleXML *routerp = 0;
50 static pid_t process_group = 0;
52 static void sig_term_handler(int s)
54 kill(-process_group, SIGTERM); /* kill all children processes as well */
59 static void handler_debug(void *data)
62 process_group = getpgid(0); // save process group ID
64 signal(SIGTERM, sig_term_handler);
66 routerp = (mp::RouterFleXML*) data;
70 pack.router(*routerp).move(); /* should never exit */
73 static void handler_normal(void *data)
76 /* make the current working process group leader */
84 int argc, char **argv)
86 bool test_config = false;
87 const char *fname = 0;
91 const char *pidfile = 0;
94 while ((ret = options("c{config}:Dh{help}l:p:tu:V{version}w:X",
95 argv, argc, &arg)) != -2)
103 mode = YAZ_DAEMON_FORK|YAZ_DAEMON_KEEPALIVE;
106 std::cerr << "metaproxy\n"
108 " -V|--version version\n"
109 " -c|--config f config filename\n"
110 " -D daemon and keepalive operation\n"
113 " -t test configuration\n"
114 " -u id change uid to id\n"
115 " -w dir changes working directory to dir\n"
116 " -X debug mode (no fork/daemon mode)\n"
118 " -install install windows service\n"
119 " -remove remove windows service\n"
125 yaz_log_init_file(arg);
137 std::cout << VERSION;
139 std::cout << " " VERSION_SHA1;
153 std::cerr << "chdir " << arg << " failed" << std::endl;
157 mode = YAZ_DAEMON_DEBUG;
160 std::cerr << "bad option: " << arg << std::endl;
166 std::cerr << "No configuration given; use -h for help\n";
170 yaz_log(YLOG_LOG, "Metaproxy start " VERSION
176 xmlDocPtr doc = xmlReadFile(fname,
178 XML_PARSE_XINCLUDE + XML_PARSE_NOBLANKS
179 + XML_PARSE_NSCLEAN + XML_PARSE_NONET );
183 yaz_log (YLOG_FATAL,"XML parsing failed");
186 // and perform Xinclude then
187 int r = xmlXIncludeProcess(doc);
190 yaz_log(YLOG_FATAL, "XInclude processing failed");
193 WRBUF base_path = wrbuf_alloc();
194 const char *last_p = strrchr(fname,
202 wrbuf_write(base_path, fname, last_p - fname);
204 wrbuf_puts(base_path, ".");
207 mp::FactoryStatic factory;
208 mp::RouterFleXML *router =
209 new mp::RouterFleXML(doc, factory, test_config, wrbuf_cstr(base_path));
215 yaz_daemon("metaproxy", mode, mode == YAZ_DAEMON_DEBUG ?
216 handler_debug : handler_normal, router, pidfile, uid);
219 catch (std::logic_error &e) {
220 yaz_log (YLOG_FATAL,"std::logic error: %s" , e.what() );
223 catch (std::runtime_error &e) {
224 yaz_log(YLOG_FATAL, "std::runtime error: %s" , e.what() );
228 yaz_log(YLOG_FATAL, "Unknown Exception");
231 wrbuf_destroy(base_path);
236 static void sc_stop(yaz_sc_t s)
241 int main(int argc, char **argv)
244 yaz_sc_t s = yaz_sc_create("metaproxy", "metaproxy");
246 ret = yaz_sc_program(s, argc, argv, sc_main, sc_stop);
257 * c-file-style: "Stroustrup"
258 * indent-tabs-mode: nil
260 * vim: shiftwidth=4 tabstop=8 expandtab