X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fyaz-proxy-main.cpp;h=ae041d1a6a78ace66a5fa80f0b9390e3653f1885;hb=779c379c70bf479073cc4968f6bf5ad35ffe6eec;hp=8c7c32e62f16c326fd76e6ba0a624d12b136d39f;hpb=f721e0174521168b48ca8a64fc7cdc98e3f7c962;p=yazpp-moved-to-github.git diff --git a/src/yaz-proxy-main.cpp b/src/yaz-proxy-main.cpp index 8c7c32e..ae041d1 100644 --- a/src/yaz-proxy-main.cpp +++ b/src/yaz-proxy-main.cpp @@ -2,7 +2,7 @@ * Copyright (c) 1998-2004, Index Data. * See the file LICENSE for details. * - * $Id: yaz-proxy-main.cpp,v 1.33 2004-02-12 17:17:31 adam Exp $ + * $Id: yaz-proxy-main.cpp,v 1.35 2004-03-17 10:49:58 adam Exp $ */ #include @@ -34,6 +34,7 @@ static char *pid_fname = 0; static char *uid = 0; static char *log_file = 0; static int debug = 0; +static int no_limit_files = 0; int args(Yaz_Proxy *proxy, int argc, char **argv) { @@ -42,7 +43,7 @@ int args(Yaz_Proxy *proxy, int argc, char **argv) char *prog = argv[0]; int ret; - while ((ret = options("o:a:t:v:c:u:i:m:l:T:p:U:X", + while ((ret = options("o:a:t:v:c:u:i:m:l:T:p:U:n:X", argv, argc, &arg)) != -2) { int err; @@ -97,6 +98,9 @@ int args(Yaz_Proxy *proxy, int argc, char **argv) case 'T': proxy->set_target_idletime(atoi(arg)); break; + case 'n': + no_limit_files = atoi(arg); + break; case 'X': debug = 1; break; @@ -147,7 +151,7 @@ static void proxy_xml_error_handler(void *ctx, const char *fmt, ...) vsnprintf(buf, sizeof(buf), fmt, ap); - yaz_log(LOG_WARN, "%s", buf); + yaz_log(LOG_WARN, "%s: %s", (char*) ctx, buf); va_end (ap); } @@ -158,9 +162,26 @@ static void child_run(Yaz_SocketManager *m, int run) signal(SIGHUP, sighup_handler); #if HAVE_XSLT - xmlSetGenericErrorFunc(0, proxy_xml_error_handler); + xmlSetGenericErrorFunc((void *) "XML", proxy_xml_error_handler); + xsltSetGenericErrorFunc((void *) "XSLT", proxy_xml_error_handler); #endif yaz_log(LOG_LOG, "0 proxy run=%d pid=%ld", run, (long) getpid()); + + if (no_limit_files) + { +#if HAVE_SETRLIMIT + struct rlimit limit_data; + limit_data.rlim_cur = no_limit_files; + limit_data.rlim_max = no_limit_files; + + yaz_log(LOG_LOG, "0 setrlimit NOFILE cur=%d max=%d", + limit_data.rlim_cur, limit_data.rlim_max); + if (setrlimit(RLIMIT_NOFILE, &limit_data)) + yaz_log(LOG_ERRNO|LOG_WARN, "setrlimit"); +#else + yaz_log(LOG_WARN, "setrlimit unavablable. Option -n ignored"); +#endif + } if (pid_fname) { FILE *f = fopen(pid_fname, "w"); @@ -195,12 +216,12 @@ static void child_run(Yaz_SocketManager *m, int run) xfree(uid); } #if HAVE_GETRLIMIT - struct rlimit limit_data; - getrlimit(RLIMIT_NOFILE, &limit_data); - yaz_log(LOG_LOG, "0 get limit NOFILE cur=%d max=%d", - limit_data.rlim_cur, limit_data.rlim_max); + struct rlimit limit_data; + getrlimit(RLIMIT_NOFILE, &limit_data); + yaz_log(LOG_LOG, "0 getrlimit NOFILE cur=%d max=%d", + limit_data.rlim_cur, limit_data.rlim_max); #endif - + while (m->processEvent() > 0) ;