X-Git-Url: http://git.indexdata.com/?p=yazproxy-moved-to-github.git;a=blobdiff_plain;f=src%2Fyaz-proxy-main.cpp;h=c7b11eff3e9aecebfe1beabb004a916d1ff76c84;hp=839f2e4ca0c8fb8caed5e97f3ac1952b0e80dd10;hb=ea4d2069a98496fb8bb2f904e5a694f2a345c887;hpb=645fcfb030d718ce708a396309fb8d69bd8d7afb diff --git a/src/yaz-proxy-main.cpp b/src/yaz-proxy-main.cpp index 839f2e4..c7b11ef 100644 --- a/src/yaz-proxy-main.cpp +++ b/src/yaz-proxy-main.cpp @@ -1,14 +1,14 @@ -/* $Id: yaz-proxy-main.cpp,v 1.3 2004-04-11 12:25:01 adam Exp $ - Copyright (c) 1998-2004, Index Data. +/* $Id: yaz-proxy-main.cpp,v 1.10 2005-01-17 18:44:39 adam Exp $ + Copyright (c) 1998-2005, Index Data. This file is part of the yaz-proxy. -Zebra is free software; you can redistribute it and/or modify it under +YAZ proxy 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 Software Foundation; either version 2, or (at your option) any later version. -Zebra is distributed in the hope that it will be useful, but WITHOUT ANY +YAZ proxy is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. @@ -19,20 +19,28 @@ Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -#ifdef WIN32 -#else #include +#if HAVE_UNISTD_H #include -#include #endif +#if HAVE_SYS_TYPES_H #include - -#include - -#if HAVE_GETRLIMIT +#endif +#if HAVE_SYS_TIME_H #include +#endif +#if HAVE_SYS_WAIT_H +#include +#endif +#if HAVE_SYS_RESOURCE_H #include #endif +#if HAVE_PWD_H +#include +#endif + +#include +#include #include #include @@ -41,6 +49,13 @@ Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA #include #include +#if HAVE_XSLT +#include +#include +#include +#include +#endif + void usage(char *prog) { fprintf (stderr, "%s: [-c config] [-l log] [-a log] [-v level] [-t target] " @@ -139,7 +154,7 @@ int args(Yaz_Proxy *proxy, int argc, char **argv) { if (proxy->server(addr)) { - yaz_log(LOG_FATAL|LOG_ERRNO, "listen %s", addr); + yaz_log(YLOG_FATAL|YLOG_ERRNO, "listen %s", addr); exit(1); } } @@ -175,7 +190,7 @@ static void proxy_xml_error_handler(void *ctx, const char *fmt, ...) #else vsnprintf(buf, sizeof(buf), fmt, ap); #endif - yaz_log(LOG_WARN, "%s: %s", (char*) ctx, buf); + yaz_log(YLOG_WARN, "%s: %s", (char*) ctx, buf); va_end (ap); } @@ -194,7 +209,7 @@ static void child_run(Yaz_SocketManager *m, int run) #endif #ifdef WIN32 #else - yaz_log(LOG_LOG, "0 proxy run=%d pid=%ld", run, (long) getpid()); + yaz_log(YLOG_LOG, "0 proxy run=%d pid=%ld", run, (long) getpid()); #endif if (no_limit_files) { @@ -203,12 +218,12 @@ static void child_run(Yaz_SocketManager *m, int run) 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); + yaz_log(YLOG_LOG, "0 setrlimit NOFILE cur=%ld max=%ld", + (long) limit_data.rlim_cur, (long) limit_data.rlim_max); if (setrlimit(RLIMIT_NOFILE, &limit_data)) - yaz_log(LOG_ERRNO|LOG_WARN, "setrlimit"); + yaz_log(YLOG_ERRNO|YLOG_WARN, "setrlimit"); #else - yaz_log(LOG_WARN, "setrlimit unavablable. Option -n ignored"); + yaz_log(YLOG_WARN, "setrlimit unavablable. Option -n ignored"); #endif } #ifdef WIN32 @@ -218,7 +233,7 @@ static void child_run(Yaz_SocketManager *m, int run) FILE *f = fopen(pid_fname, "w"); if (!f) { - yaz_log(LOG_ERRNO|LOG_FATAL, "Couldn't create %s", pid_fname); + yaz_log(YLOG_ERRNO|YLOG_FATAL, "Couldn't create %s", pid_fname); exit(0); } fprintf(f, "%ld", (long) getpid()); @@ -231,7 +246,7 @@ static void child_run(Yaz_SocketManager *m, int run) if (!(pw = getpwnam(uid))) { - yaz_log(LOG_FATAL, "%s: Unknown user", uid); + yaz_log(YLOG_FATAL, "%s: Unknown user", uid); exit(3); } if (log_file) @@ -241,7 +256,7 @@ static void child_run(Yaz_SocketManager *m, int run) } if (setuid(pw->pw_uid) < 0) { - yaz_log(LOG_FATAL|LOG_ERRNO, "setuid"); + yaz_log(YLOG_FATAL|YLOG_ERRNO, "setuid"); exit(4); } xfree(uid); @@ -250,8 +265,8 @@ static void child_run(Yaz_SocketManager *m, int run) #if HAVE_GETRLIMIT 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); + yaz_log(YLOG_LOG, "0 getrlimit NOFILE cur=%ld max=%ld", + (long) limit_data.rlim_cur, (long) limit_data.rlim_max); #endif while (m->processEvent() > 0) @@ -289,7 +304,7 @@ int main(int argc, char **argv) pid_t p = fork(); if (p == (pid_t) -1) { - yaz_log(LOG_FATAL|LOG_ERRNO, "fork"); + yaz_log(YLOG_FATAL|YLOG_ERRNO, "fork"); exit(1); } else if (p == 0) @@ -304,35 +319,35 @@ int main(int argc, char **argv) if (p1 != p) { - yaz_log(LOG_FATAL, "p1=%d != p=%d", p1, p); + yaz_log(YLOG_FATAL, "p1=%d != p=%d", p1, p); exit(1); } if (WIFSIGNALED(status)) { switch(WTERMSIG(status)) { case SIGILL: - yaz_log(LOG_WARN, "Received SIGILL from child %ld", (long) p); + yaz_log(YLOG_WARN, "Received SIGILL from child %ld", (long) p); cont = 1; break; case SIGABRT: - yaz_log(LOG_WARN, "Received SIGABRT from child %ld", (long) p); + yaz_log(YLOG_WARN, "Received SIGABRT from child %ld", (long) p); cont = 1; break ; case SIGSEGV: - yaz_log(LOG_WARN, "Received SIGSEGV from child %ld", (long) p); + yaz_log(YLOG_WARN, "Received SIGSEGV from child %ld", (long) p); cont = 1; break; case SIGBUS: - yaz_log(LOG_WARN, "Received SIGBUS from child %ld", (long) p); + yaz_log(YLOG_WARN, "Received SIGBUS from child %ld", (long) p); cont = 1; break; case SIGTERM: - yaz_log(LOG_LOG, "Received SIGTERM from child %ld", + yaz_log(YLOG_LOG, "Received SIGTERM from child %ld", (long) p); cont = 0; break; default: - yaz_log(LOG_WARN, "Received SIG %d from child %ld", + yaz_log(YLOG_WARN, "Received SIG %d from child %ld", WTERMSIG(status), (long) p); cont = 0; } @@ -341,7 +356,7 @@ int main(int argc, char **argv) cont = 0; else { - yaz_log(LOG_LOG, "Exit %d from child %ld", status, (long) p); + yaz_log(YLOG_LOG, "Exit %d from child %ld", status, (long) p); cont = 1; } if (cont)