X-Git-Url: http://jsfdemo.indexdata.com/?a=blobdiff_plain;f=src%2Fmetaproxy_prog.cpp;h=c1f612306c5335d61d4f8135b21c9133012c067e;hb=235ec6eb8e28884ca223a5d451aa83b18909acd9;hp=0aa04f4faf97fd1cbe6e763dd324b80ec28955e5;hpb=b0c61b7f8b17d876c88347a96c246c47493140da;p=metaproxy-moved-to-github.git diff --git a/src/metaproxy_prog.cpp b/src/metaproxy_prog.cpp index 0aa04f4..c1f6123 100644 --- a/src/metaproxy_prog.cpp +++ b/src/metaproxy_prog.cpp @@ -27,14 +27,15 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA #include #include -#include "filter.hpp" -#include "package.hpp" +#include +#include #include "router_flexml.hpp" #include "factory_static.hpp" #if HAVE_UNISTD_H #include #endif +#include #ifdef WIN32 #include #include @@ -43,12 +44,32 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA namespace mp = metaproxy_1; +mp::RouterFleXML *routerp = 0; + +#if HAVE_UNISTD_H +static pid_t process_group = 0; + +static void sig_term_handler(int s) +{ + kill(-process_group, SIGTERM); /* kill all children processes as well */ + exit(0); +} +#endif + static void handler(void *data) { - mp::RouterFleXML *routerp = (mp::RouterFleXML*) data; + routerp = (mp::RouterFleXML*) data; + +#if HAVE_UNISTD_H + /* make the current working process group leader */ + setpgid(0, 0); + process_group = getpgid(0); // save process group ID + + signal(SIGTERM, sig_term_handler); +#endif mp::Package pack; - pack.router(*routerp).move(); + pack.router(*routerp).move(); /* should never exit */ } static int sc_main( @@ -150,12 +171,25 @@ static int sc_main( yaz_log(YLOG_FATAL, "XInclude processing failed"); return 1; } + WRBUF base_path = wrbuf_alloc(); + const char *last_p = strrchr(fname, +#ifdef WIN32 + '\\' +#else + '/' +#endif + ); + if (last_p) + wrbuf_write(base_path, fname, last_p - fname); + mp::FactoryStatic factory; - mp::RouterFleXML router(doc, factory, false); + mp::RouterFleXML *router = + new mp::RouterFleXML(doc, factory, false, wrbuf_cstr(base_path)); + wrbuf_destroy(base_path); yaz_sc_running(s); - yaz_daemon("metaproxy", mode, handler, &router, pidfile, uid); + yaz_daemon("metaproxy", mode, handler, router, pidfile, uid); } catch (std::logic_error &e) { yaz_log (YLOG_FATAL,"std::logic error: %s" , e.what() );