Allow yaz_log time-stamp format to be set MP-430
[metaproxy-moved-to-github.git] / src / metaproxy_prog.cpp
1 /* This file is part of Metaproxy.
2    Copyright (C) 2005-2013 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 "config.hpp"
20
21 #include <yaz/log.h>
22 #include <yaz/options.h>
23 #include <yaz/daemon.h>
24
25 #include <yaz/sc.h>
26 #include <iostream>
27 #include <stdexcept>
28 #include <libxml/xinclude.h>
29
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"
35
36 #if HAVE_UNISTD_H
37 #include <unistd.h>
38 #endif
39 #include <signal.h>
40 #ifdef WIN32
41 #include <direct.h>
42 #include <io.h>
43 #include <process.h>
44 #endif
45
46 namespace mp = metaproxy_1;
47
48 mp::RouterFleXML *routerp = 0;
49
50 static void set_log_prefix(void)
51 {
52 #if HAVE_UNISTD_H
53     char str[80];
54
55     sprintf(str, "%lld", (long long) getpid());
56     yaz_log_init_prefix(str);
57 #endif
58 }
59
60 #if HAVE_UNISTD_H
61 static pid_t process_group = 0;
62
63 static void sig_usr1_handler(int s)
64 {
65     yaz_log(YLOG_LOG, "metaproxy received SIGUSR1");
66     routerp->stop();
67 }
68
69 static void sig_term_handler(int s)
70 {
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 */
74     _exit(0);
75 }
76 #endif
77
78 static void work_common(void *data)
79 {
80     set_log_prefix();
81 #if HAVE_UNISTD_H
82     process_group = getpgid(0); // save process group ID
83
84     signal(SIGTERM, sig_term_handler);
85     signal(SIGUSR1, sig_usr1_handler);
86 #endif
87     routerp = (mp::RouterFleXML*) data;
88     routerp->start();
89
90     mp::Package pack;
91     pack.router(*routerp).move();
92     yaz_log(YLOG_LOG, "metaproxy stop"); /* only for graceful stop */
93 #if HAVE_UNISTD_H
94     kill(-process_group, SIGTERM); /* kill all children processes as well */
95 #endif
96     _exit(0);
97 }
98
99 static void work_debug(void *data)
100 {
101     work_common(data);
102 }
103
104 static void work_normal(void *data)
105 {
106 #if HAVE_UNISTD_H
107     /* make the current working process group leader */
108     setpgid(0, 0);
109 #endif
110     work_common(data);
111 }
112
113 static int sc_main(
114     yaz_sc_t s,
115     int argc, char **argv)
116 {
117     bool test_config = false;
118     const char *fname = 0;
119     int ret;
120     char *arg;
121     unsigned mode = 0;
122     const char *pidfile = 0;
123     const char *uid = 0;
124
125     set_log_prefix();
126
127     while ((ret = options("c{config}:Dh{help}l:m:p:tu:V{version}w:X",
128                           argv, argc, &arg)) != -2)
129     {
130         switch (ret)
131         {
132         case 'c':
133             fname = arg;
134             break;
135         case 'D':
136             mode = YAZ_DAEMON_FORK|YAZ_DAEMON_KEEPALIVE;
137             break;
138         case 'h':
139             std::cerr << "metaproxy\n"
140                 " -h|--help     help\n"
141                 " -V|--version  version\n"
142                 " -c|--config f config filename\n"
143                 " -D            daemon and keepalive operation\n"
144                 " -l f          log file f\n"
145                 " -m logformat  log time format (strftime)\n"
146                 " -p f          pid file f\n"
147                 " -t            test configuration\n"
148                 " -u id         change uid to id\n"
149                 " -w dir        changes working directory to dir\n"
150                 " -X            debug mode (no fork/daemon mode)\n"
151 #ifdef WIN32
152                 " -install      install windows service\n"
153                 " -remove       remove windows service\n"
154 #endif
155
156                       << std::endl;
157             break;
158         case 'l':
159             yaz_log_init_file(arg);
160             break;
161         case 'm':
162             yaz_log_time_format(arg);
163             break;
164         case 'p':
165             pidfile = arg;
166             break;
167         case 't':
168             test_config = true;
169             break;
170         case 'u':
171             uid = arg;
172             break;
173         case 'V':
174             std::cout << VERSION;
175 #ifdef VERSION_SHA1
176             std::cout << " " VERSION_SHA1;
177 #endif
178             std::cout << "\n";
179             return 0;
180             break;
181         case 'w':
182             if (
183 #ifdef WIN32
184                 _chdir(arg)
185 #else
186                 chdir(arg)
187 #endif
188                 )
189             {
190                 std::cerr << "chdir " << arg << " failed" << std::endl;
191                 return 1;
192             }
193         case 'X':
194             mode = YAZ_DAEMON_DEBUG;
195             break;
196         case -1:
197             std::cerr << "bad option: " << arg << std::endl;
198             return 1;
199         }
200     }
201     if (!fname)
202     {
203         std::cerr << "No configuration given; use -h for help\n";
204         return 1;
205     }
206
207     yaz_log(YLOG_LOG, "metaproxy %s " VERSION
208 #ifdef VERSION_SHA1
209                 " " VERSION_SHA1
210 #endif
211         , test_config ? "test" : "start"
212             );
213
214     yaz_log_xml_errors(0, YLOG_LOG);
215     xmlDocPtr doc = xmlReadFile(fname,
216                                 NULL,
217                                 XML_PARSE_XINCLUDE + XML_PARSE_NOBLANKS
218                                 + XML_PARSE_NSCLEAN + XML_PARSE_NONET );
219
220     if (!doc)
221     {
222         yaz_log(YLOG_FATAL,"XML parsing failed");
223         return 1;
224     }
225     // and perform Xinclude then
226     int r = xmlXIncludeProcess(doc);
227     if (r == -1)
228     {
229         yaz_log(YLOG_FATAL, "XInclude processing failed");
230         return 1;
231     }
232     mp::wrbuf base_path;
233     const char *last_p = strrchr(fname,
234 #ifdef WIN32
235                                  '\\'
236 #else
237                                  '/'
238 #endif
239         );
240     if (last_p)
241         wrbuf_write(base_path, fname, last_p - fname);
242     else
243         wrbuf_puts(base_path, ".");
244     ret = 0;
245     try {
246         mp::FactoryStatic factory;
247         mp::RouterFleXML *router =
248             new mp::RouterFleXML(doc, factory, test_config, wrbuf_cstr(base_path));
249         if (!test_config)
250         {
251
252             yaz_sc_running(s);
253
254             yaz_daemon("metaproxy", mode, mode == YAZ_DAEMON_DEBUG ?
255                        work_debug : work_normal, router, pidfile, uid);
256         }
257     }
258     catch (std::logic_error &e) {
259         yaz_log(YLOG_FATAL,"std::logic error: %s" , e.what() );
260         ret = 1;
261     }
262     catch (std::runtime_error &e) {
263         yaz_log(YLOG_FATAL, "std::runtime error: %s" , e.what() );
264         ret = 1;
265     }
266     catch ( ... ) {
267         yaz_log(YLOG_FATAL, "Unknown Exception");
268         ret = 1;
269     }
270     xmlFreeDoc(doc);
271     if (test_config)
272         yaz_log(YLOG_LOG, "metaproxy test exit code %d", ret);
273     return ret;
274 }
275
276 static void sc_stop(yaz_sc_t s)
277 {
278     return;
279 }
280
281 int main(int argc, char **argv)
282 {
283     int ret;
284     yaz_sc_t s = yaz_sc_create("metaproxy", "metaproxy");
285
286     ret = yaz_sc_program(s, argc, argv, sc_main, sc_stop);
287
288     yaz_sc_destroy(&s);
289     exit(ret);
290 }
291
292 /*
293  * Local variables:
294  * c-basic-offset: 4
295  * c-file-style: "Stroustrup"
296  * indent-tabs-mode: nil
297  * End:
298  * vim: shiftwidth=4 tabstop=8 expandtab
299  */
300