Timeout.c++
上传用户:weiyuanprp
上传日期:2020-05-20
资源大小:1169k
文件大小:3k
源码类别:

传真(Fax)编程

开发平台:

C/C++

  1. /* $Id: Timeout.c++,v 1.2 2006/11/30 03:12:40 faxguy Exp $ */
  2. /*
  3.  * Copyright (c) 1990-1996 Sam Leffler
  4.  * Copyright (c) 1991-1996 Silicon Graphics, Inc.
  5.  * HylaFAX is a trademark of Silicon Graphics
  6.  *
  7.  * Permission to use, copy, modify, distribute, and sell this software and 
  8.  * its documentation for any purpose is hereby granted without fee, provided
  9.  * that (i) the above copyright notices and this permission notice appear in
  10.  * all copies of the software and related documentation, and (ii) the names of
  11.  * Sam Leffler and Silicon Graphics may not be used in any advertising or
  12.  * publicity relating to the software without the specific, prior written
  13.  * permission of Sam Leffler and Silicon Graphics.
  14.  * 
  15.  * THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, 
  16.  * EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY 
  17.  * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.  
  18.  * 
  19.  * IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
  20.  * ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
  21.  * OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  22.  * WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF 
  23.  * LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE 
  24.  * OF THIS SOFTWARE.
  25.  */
  26. #include <unistd.h>
  27. #include <signal.h>
  28. #include <sys/time.h>
  29. #include "Timeout.h"
  30. bool Timeout::timerExpired = false;
  31. Timeout::Timeout() {}
  32. Timeout::~Timeout() {}
  33. void Timeout::traceTimer(const char* ...) {}
  34. void
  35. Timeout::sigAlarm(int)
  36. {
  37.     Timeout::timerExpired = true;
  38. }
  39. #ifndef SA_INTERRUPT
  40. #define SA_INTERRUPT 0
  41. #endif
  42. void
  43. Timeout::startTimeout(long ms)
  44. {
  45.     timerExpired = false;
  46. #ifdef SA_NOCLDSTOP /* POSIX */
  47.     static struct sigaction sa;
  48.     sa.sa_handler = fxSIGACTIONHANDLER(Timeout::sigAlarm);
  49.     sa.sa_flags = SA_INTERRUPT;
  50.     sigaction(SIGALRM, &sa, (struct sigaction*) 0);
  51. #else
  52. #ifdef SV_INTERRUPT /* BSD-style */
  53.     static struct sigvec sv;
  54.     sv.sv_handler = fxSIGVECHANDLER(Timeout::sigAlarm);
  55.     sv.sv_flags = SV_INTERRUPT;
  56.     sigvec(SIGALRM, &sv, (struct sigvec*) 0);
  57. #else /* System V-style */
  58.     signal(SIGALRM, fxSIGHANDLER(sigAlarm));
  59. #endif
  60. #endif
  61. #ifdef ITIMER_REAL
  62.     itimerval itv;
  63.     itv.it_value.tv_sec = ms / 1000;
  64.     itv.it_value.tv_usec = (ms % 1000) * 1000;
  65.     timerclear(&itv.it_interval);
  66.     (void) setitimer(ITIMER_REAL, &itv, (itimerval*) 0);
  67.     traceTimer("START %ld.%02ld second timeout",
  68. itv.it_value.tv_sec, itv.it_value.tv_usec / 10000);
  69. #else
  70.     long secs = howmany(ms, 1000);
  71.     (void) alarm(secs);
  72.     traceTimer("START %ld second timeout", secs);
  73. #endif
  74. }
  75. void
  76. Timeout::stopTimeout()
  77. {
  78. #ifdef ITIMER_REAL
  79.     static itimerval itv = { { 0, 0 }, { 0, 0 } };
  80.     (void) setitimer(ITIMER_REAL, &itv, (itimerval*) 0);
  81. #else
  82.     (void) alarm(0);
  83. #endif
  84.     traceTimer("STOP timeout%s", timerExpired ? ", timer expired" : "");
  85. }