X-Git-Url: http://sru.miketaylor.org.uk/?a=blobdiff_plain;f=src%2Fmetaproxy_prog.cpp;h=5a50f44bf5974c8a6590b2390c5866f518d766ad;hb=73f37c91c144b070020df2f27472c09b62367acf;hp=a6fc78d6d91767bfb3cad23cc66977c82b90c733;hpb=02763589daff902e98af1cf6570bcf3e8cbcc6f1;p=metaproxy-moved-to-github.git diff --git a/src/metaproxy_prog.cpp b/src/metaproxy_prog.cpp index a6fc78d..5a50f44 100644 --- a/src/metaproxy_prog.cpp +++ b/src/metaproxy_prog.cpp @@ -69,7 +69,7 @@ static void work_common(void *data) { #if HAVE_UNISTD_H process_group = getpgid(0); // save process group ID - + signal(SIGTERM, sig_term_handler); signal(SIGUSR1, sig_usr1_handler); #endif @@ -78,7 +78,8 @@ static void work_common(void *data) mp::Package pack; pack.router(*routerp).move(); - yaz_log(YLOG_LOG, "metaproxy stop"); + yaz_log(YLOG_LOG, "metaproxy stop"); /* only for graceful stop */ + yaz_daemon_stop(); _exit(0); } @@ -86,7 +87,7 @@ static void work_debug(void *data) { work_common(data); } - + static void work_normal(void *data) { #if HAVE_UNISTD_H @@ -107,8 +108,8 @@ static int sc_main( unsigned mode = 0; const char *pidfile = 0; const char *uid = 0; - - while ((ret = options("c{config}:Dh{help}l:p:tu:V{version}w:X", + + while ((ret = options("c{config}:Dh{help}l:p:tu:V{version}w:X", argv, argc, &arg)) != -2) { switch (ret) @@ -135,7 +136,7 @@ static int sc_main( " -install install windows service\n" " -remove remove windows service\n" #endif - + << std::endl; break; case 'l': @@ -165,7 +166,7 @@ static int sc_main( #else chdir(arg) #endif - ) + ) { std::cerr << "chdir " << arg << " failed" << std::endl; return 1; @@ -183,21 +184,23 @@ static int sc_main( std::cerr << "No configuration given; use -h for help\n"; return 1; } - - yaz_log(YLOG_LOG, "metaproxy start " VERSION + + if (!test_config) + yaz_log(YLOG_LOG, "metaproxy start " VERSION #ifdef VERSION_SHA1 - " " VERSION_SHA1 + " " VERSION_SHA1 #endif - ); - + ); + + yaz_log_xml_errors(0, YLOG_LOG); xmlDocPtr doc = xmlReadFile(fname, - NULL, + NULL, XML_PARSE_XINCLUDE + XML_PARSE_NOBLANKS + XML_PARSE_NSCLEAN + XML_PARSE_NONET ); - + if (!doc) { - yaz_log (YLOG_FATAL,"XML parsing failed"); + yaz_log(YLOG_FATAL,"XML parsing failed"); return 1; } // and perform Xinclude then @@ -226,15 +229,15 @@ static int sc_main( new mp::RouterFleXML(doc, factory, test_config, wrbuf_cstr(base_path)); if (!test_config) { - + yaz_sc_running(s); - + yaz_daemon("metaproxy", mode, mode == YAZ_DAEMON_DEBUG ? work_debug : work_normal, router, pidfile, uid); } } catch (std::logic_error &e) { - yaz_log (YLOG_FATAL,"std::logic error: %s" , e.what() ); + yaz_log(YLOG_FATAL,"std::logic error: %s" , e.what() ); ret = 1; } catch (std::runtime_error &e) { @@ -265,8 +268,6 @@ int main(int argc, char **argv) exit(ret); } - - /* * Local variables: * c-basic-offset: 4