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 <metaproxy/util.hpp>
33 #include "router_flexml.hpp"
34 #include "factory_static.hpp"
46 namespace mp = metaproxy_1;
48 mp::RouterFleXML *routerp = 0;
50 static void set_log_prefix(void)
55 sprintf(str, "%lld", (long long) getpid());
56 yaz_log_init_prefix(str);
61 static pid_t process_group = 0;
63 static void sig_usr1_handler(int s)
65 yaz_log(YLOG_LOG, "metaproxy received SIGUSR1");
69 static void sig_term_handler(int s)
71 yaz_log(YLOG_LOG, "metaproxy received SIGTERM");
72 yaz_log(YLOG_LOG, "metaproxy stop");
73 kill(-process_group, SIGTERM); /* kill all children processes as well */
78 static void work_common(void *data)
82 process_group = getpgid(0); // save process group ID
84 signal(SIGTERM, sig_term_handler);
85 signal(SIGUSR1, sig_usr1_handler);
87 routerp = (mp::RouterFleXML*) data;
91 pack.router(*routerp).move();
92 yaz_log(YLOG_LOG, "metaproxy stop"); /* only for graceful stop */
94 kill(-process_group, SIGTERM); /* kill all children processes as well */
99 static void work_debug(void *data)
104 static void work_normal(void *data)
107 /* make the current working process group leader */
115 int argc, char **argv)
117 bool test_config = false;
118 const char *fname = 0;
122 const char *pidfile = 0;
127 while ((ret = options("c{config}:Dh{help}l:p:tu:V{version}w:X",
128 argv, argc, &arg)) != -2)
136 mode = YAZ_DAEMON_FORK|YAZ_DAEMON_KEEPALIVE;
139 std::cerr << "metaproxy\n"
141 " -V|--version version\n"
142 " -c|--config f config filename\n"
143 " -D daemon and keepalive operation\n"
146 " -t test configuration\n"
147 " -u id change uid to id\n"
148 " -w dir changes working directory to dir\n"
149 " -X debug mode (no fork/daemon mode)\n"
151 " -install install windows service\n"
152 " -remove remove windows service\n"
158 yaz_log_init_file(arg);
170 std::cout << VERSION;
172 std::cout << " " VERSION_SHA1;
186 std::cerr << "chdir " << arg << " failed" << std::endl;
190 mode = YAZ_DAEMON_DEBUG;
193 std::cerr << "bad option: " << arg << std::endl;
199 std::cerr << "No configuration given; use -h for help\n";
203 yaz_log(YLOG_LOG, "metaproxy %s " VERSION
207 , test_config ? "test" : "start"
210 yaz_log_xml_errors(0, YLOG_LOG);
211 xmlDocPtr doc = xmlReadFile(fname,
213 XML_PARSE_XINCLUDE + XML_PARSE_NOBLANKS
214 + XML_PARSE_NSCLEAN + XML_PARSE_NONET );
218 yaz_log(YLOG_FATAL,"XML parsing failed");
221 // and perform Xinclude then
222 int r = xmlXIncludeProcess(doc);
225 yaz_log(YLOG_FATAL, "XInclude processing failed");
229 const char *last_p = strrchr(fname,
237 wrbuf_write(base_path, fname, last_p - fname);
239 wrbuf_puts(base_path, ".");
242 mp::FactoryStatic factory;
243 mp::RouterFleXML *router =
244 new mp::RouterFleXML(doc, factory, test_config, wrbuf_cstr(base_path));
250 yaz_daemon("metaproxy", mode, mode == YAZ_DAEMON_DEBUG ?
251 work_debug : work_normal, router, pidfile, uid);
254 catch (std::logic_error &e) {
255 yaz_log(YLOG_FATAL,"std::logic error: %s" , e.what() );
258 catch (std::runtime_error &e) {
259 yaz_log(YLOG_FATAL, "std::runtime error: %s" , e.what() );
263 yaz_log(YLOG_FATAL, "Unknown Exception");
268 yaz_log(YLOG_LOG, "metaproxy test exit code %d", ret);
272 static void sc_stop(yaz_sc_t s)
277 int main(int argc, char **argv)
280 yaz_sc_t s = yaz_sc_create("metaproxy", "metaproxy");
282 ret = yaz_sc_program(s, argc, argv, sc_main, sc_stop);
291 * c-file-style: "Stroustrup"
292 * indent-tabs-mode: nil
294 * vim: shiftwidth=4 tabstop=8 expandtab