X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Ffilter_frontend_net.cpp;h=a1e1c0161b270993c785eb86f621261ad6f916e7;hb=54830ce98edada799c4a6fd2968331e955068ba2;hp=ae2e9c6106f90f219165b6fd67d420003fb6ce89;hpb=8dcf822edbbe7fa3dd1912255dd5a9d8f3ad8865;p=metaproxy-moved-to-github.git diff --git a/src/filter_frontend_net.cpp b/src/filter_frontend_net.cpp index ae2e9c6..a1e1c01 100644 --- a/src/filter_frontend_net.cpp +++ b/src/filter_frontend_net.cpp @@ -1,5 +1,5 @@ /* This file is part of Metaproxy. - Copyright (C) 2005-2013 Index Data + Copyright (C) Index Data Metaproxy is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free @@ -34,6 +34,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA #include #include #include "gduutil.hpp" +#include #include @@ -67,7 +68,7 @@ namespace metaproxy_1 { double m_duration_max; double m_duration_min; double m_duration_total; - bool m_stop; + int m_stop_signo; public: Rep(); ~Rep(); @@ -527,7 +528,7 @@ yf::FrontendNet::Rep::Rep() m_duration_max = 0.0; m_duration_min = 0.0; m_duration_total = 0.0; - m_stop = false; + m_stop_signo = 0; } yf::FrontendNet::Rep::~Rep() @@ -546,9 +547,9 @@ yf::FrontendNet::~FrontendNet() { } -void yf::FrontendNet::stop() const +void yf::FrontendNet::stop(int signo) const { - m_p->m_stop = true; + m_p->m_stop_signo = signo; } bool yf::FrontendNet::My_Timer_Thread::timeout() @@ -592,9 +593,15 @@ void yf::FrontendNet::process(mp::Package &package) const } while (m_p->mySocketManager.processEvent() > 0) { - if (m_p->m_stop) + if (m_p->m_stop_signo == SIGTERM) { - m_p->m_stop = false; + yaz_log(YLOG_LOG, "metaproxy received SIGTERM"); + break; /* stop right away */ + } + if (m_p->m_stop_signo == SIGUSR1) + { /* just stop listeners and cont till all sessions are done*/ + yaz_log(YLOG_LOG, "metaproxy received SIGUSR1"); + m_p->m_stop_signo = 0; if (m_p->az) { size_t i;