X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Feventl.c;h=bda6cd0bbd535496a84223b695bc8381e030441b;hb=384d5cac78251cf68841040384ca0fa8912178c7;hp=3da49de0e0593ae0c6237388b66193805a577ce9;hpb=d0fc1a702b50978db129c169c8c309af42f0746b;p=pazpar2-moved-to-github.git diff --git a/src/eventl.c b/src/eventl.c index 3da49de..bda6cd0 100644 --- a/src/eventl.c +++ b/src/eventl.c @@ -1,7 +1,5 @@ -/* $Id: eventl.c,v 1.7 2007-07-09 19:30:35 adam Exp $ - Copyright (c) 2006-2007, Index Data. - -This file is part of Pazpar2. +/* This file is part of Pazpar2. + Copyright (C) 2006-2010 Index Data Pazpar2 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 @@ -14,15 +12,15 @@ FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License -along with Pazpar2; see the file LICENSE. If not, write to the -Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA -02111-1307, USA. - */ +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +*/ /* * Based on ParaZ - a simple tool for harvesting performance data for * parallel operations using Z39.50. - * Copyright (c) 2000-2004 Index Data ApS + * Copyright (C) 2006-2010 Index Data ApS * See LICENSE file for details. */ @@ -30,19 +28,22 @@ Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA * Based on revision YAZ' server/eventl.c 1.29. */ -#include -#include - #if HAVE_CONFIG_H -#include +#include #endif +#include +#include + #ifdef WIN32 #include #else #include #endif +#if HAVE_SYS_TIME_H #include +#endif + #include #include #include @@ -64,6 +65,8 @@ IOCHAN iochan_create(int fd, IOC_CALLBACK cb, int flags) new_iochan->fd = fd; new_iochan->flags = flags; new_iochan->fun = cb; + new_iochan->socketfun = NULL; + new_iochan->maskfun = NULL; new_iochan->force_event = 0; new_iochan->last_event = new_iochan->max_idle = 0; new_iochan->next = NULL; @@ -84,11 +87,15 @@ int event_loop(IOCHAN *iochans) FD_ZERO(&out); FD_ZERO(&except); timeout = &to; /* hang on select */ - to.tv_sec = 30; + to.tv_sec = 15; to.tv_usec = 0; max = 0; for (p = *iochans; p; p = p->next) { + if (p->maskfun) + p->flags = (*p->maskfun)(p); + if (p->socketfun) + p->fd = (*p->socketfun)(p); if (p->fd < 0) continue; if (p->force_event) @@ -104,12 +111,16 @@ int event_loop(IOCHAN *iochans) if (p->max_idle && p->max_idle < to.tv_sec) to.tv_sec = p->max_idle; } - if ((res = select(max + 1, &in, &out, &except, timeout)) < 0) + res = select(max + 1, &in, &out, &except, timeout); + if (res < 0) { if (errno == EINTR) continue; else - abort(); + { + yaz_log(YLOG_ERRNO|YLOG_WARN, "select"); + return 0; + } } for (p = *iochans; p; p = p->next) { @@ -129,12 +140,14 @@ int event_loop(IOCHAN *iochans) force_event == EVENT_INPUT)) { p->last_event = now; + yaz_log(YLOG_DEBUG, "Eventl input event"); (*p->fun)(p, EVENT_INPUT); } if (!p->destroyed && (FD_ISSET(p->fd, &out) || force_event == EVENT_OUTPUT)) { p->last_event = now; + yaz_log(YLOG_DEBUG, "Eventl output event"); (*p->fun)(p, EVENT_OUTPUT); } if (!p->destroyed && (FD_ISSET(p->fd, &except) || @@ -176,7 +189,9 @@ int event_loop(IOCHAN *iochans) /* * Local variables: * c-basic-offset: 4 + * c-file-style: "Stroustrup" * indent-tabs-mode: nil * End: * vim: shiftwidth=4 tabstop=8 expandtab */ +