tPthreadSignals.cxx
上传用户:sy_wanhua
上传日期:2013-07-25
资源大小:3048k
文件大小:6k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

C/C++

  1. /* ====================================================================
  2.  * The Vovida Software License, Version 1.0 
  3.  * 
  4.  * Copyright (c) 2000 Vovida Networks, Inc.  All rights reserved.
  5.  * 
  6.  * Redistribution and use in source and binary forms, with or without
  7.  * modification, are permitted provided that the following conditions
  8.  * are met:
  9.  * 
  10.  * 1. Redistributions of source code must retain the above copyright
  11.  *    notice, this list of conditions and the following disclaimer.
  12.  * 
  13.  * 2. Redistributions in binary form must reproduce the above copyright
  14.  *    notice, this list of conditions and the following disclaimer in
  15.  *    the documentation and/or other materials provided with the
  16.  *    distribution.
  17.  * 
  18.  * 3. The names "VOCAL", "Vovida Open Communication Application Library",
  19.  *    and "Vovida Open Communication Application Library (VOCAL)" must
  20.  *    not be used to endorse or promote products derived from this
  21.  *    software without prior written permission. For written
  22.  *    permission, please contact vocal@vovida.org.
  23.  *
  24.  * 4. Products derived from this software may not be called "VOCAL", nor
  25.  *    may "VOCAL" appear in their name, without prior written
  26.  *    permission of Vovida Networks, Inc.
  27.  * 
  28.  * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED
  29.  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  30.  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND
  31.  * NON-INFRINGEMENT ARE DISCLAIMED.  IN NO EVENT SHALL VOVIDA
  32.  * NETWORKS, INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT DAMAGES
  33.  * IN EXCESS OF $1,000, NOR FOR ANY INDIRECT, INCIDENTAL, SPECIAL,
  34.  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  35.  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  36.  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
  37.  * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  38.  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
  39.  * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
  40.  * DAMAGE.
  41.  * 
  42.  * ====================================================================
  43.  * 
  44.  * This software consists of voluntary contributions made by Vovida
  45.  * Networks, Inc. and many individuals on behalf of Vovida Networks,
  46.  * Inc.  For more information on Vovida Networks, Inc., please see
  47.  * <http://www.vovida.org/>.
  48.  *
  49.  */
  50. static const char* const tPthreadSignals_cxx_Version = 
  51.     "$Id$";
  52. #include <cassert>
  53. #include <cerrno>
  54. #include <string>
  55. #include <iostream>
  56. #include <unistd.h>
  57. #include <signal.h>
  58. #include <pthread.h>
  59. #include <sys/poll.h>
  60. #include <values.h>
  61. #include <sys/time.h>
  62. #include "Application.hxx"
  63. #include "Thread.hxx"
  64. #include "VCondition.h"
  65. #include "VMutex.h"
  66. using namespace Vocal;
  67. using namespace Vocal::Threads;
  68. extern "C"
  69. {
  70. void handle_sig(int sig, siginfo_t *, void *)
  71. {
  72.     static  int     count = 0;
  73.     cout << "Interrupt: thread = " << Thread::selfId() 
  74.       << ", signal = " << sig << endl;
  75.     if ( count++ > 30 )
  76.     {
  77.      exit(1);
  78.     }
  79. }
  80. }
  81. class ThreadSignalTester : public Runnable
  82. {
  83.     public:
  84.      ThreadSignalTester() {}
  85.      ~ThreadSignalTester() {}
  86.      ReturnCode   run();
  87. };
  88. class tSignal : public Application
  89. {
  90.     public:
  91.      tSignal();
  92. ~tSignal();
  93.      ReturnCode       run();
  94. };
  95. tSignal::tSignal() {}
  96. tSignal::~tSignal() {}
  97. ReturnCode  
  98. ThreadSignalTester::run()
  99.     cout << "pid: " << getpid() << endl;
  100.     ReturnCode     rc = SUCCESS;
  101.     sigset_t      hup_mask;
  102.     rc = sigaddset(&hup_mask, SIGHUP);
  103.     assert( rc == 0 );
  104.     rc = pthread_sigmask(SIG_BLOCK, &hup_mask, 0);
  105.     assert( rc == 0 );
  106.     VMutex     mutex;
  107.     VCondition     condition;
  108.     
  109.     while ( 1 )
  110.     {
  111.      rc = pthread_sigmask(SIG_UNBLOCK, &hup_mask, 0);
  112.      assert( rc == 0 );
  113.      rc = poll(0, 0, -1);
  114.      assert( rc == -1 && errno == EINTR );
  115. /*
  116.     NOTE: pthread_cond_timedwait does not come back return
  117.        when a signal is raised. despite what the man page
  118.   says. 
  119.      int relativeTime = 5000; // MAXINT;
  120. // Relative time is specified, so create the absolute time 
  121. // of expiration.
  122. //    
  123. timeval  expiresTV;
  124. int      rc = gettimeofday(&expiresTV, 0);
  125. assert( rc == 0 );
  126. expiresTV.tv_sec += (relativeTime / 1000);
  127. expiresTV.tv_usec += ((relativeTime % 1000) * 1000);
  128. timespec expiresTS;
  129. expiresTS.tv_sec = expiresTV.tv_sec + ( expiresTV.tv_usec / 1000000 );
  130. expiresTS.tv_nsec = (expiresTV.tv_usec % 1000000 ) * 1000;
  131.      vcondition_t *   myId = condition.getId();
  132. rc = pthread_cond_timedwait(myId, mutex.getId(), &expiresTS);
  133.      cout << "pthread_cond_timedwait returned: rc = " << rc 
  134.      << ", " << strerror(rc) << endl;
  135.      
  136.      assert( rc == ETIMEDOUT || rc == EINTR );
  137. */
  138.      rc = pthread_sigmask(SIG_BLOCK, &hup_mask, 0);
  139.      assert( rc == 0 );
  140.     }
  141.     return ( rc );
  142. }
  143. Application * Application::create()
  144. {
  145.     return ( new tSignal );
  146. }
  147. ReturnCode
  148. tSignal::run()
  149. {
  150.     cout << "pid: " << getpid() << endl;
  151.     
  152.     ThreadSignalTester      signalTester1;
  153.     Thread             signalTesterThread1(signalTester1, "signalTester");
  154.     ThreadSignalTester      signalTester2;
  155.     Thread             signalTesterThread2(signalTester2, "signalTester");
  156.     int rc;
  157.     
  158.     sigset_t      hup_mask;
  159.     rc = sigaddset(&hup_mask, SIGHUP);
  160.     assert( rc == 0 );
  161.     rc = pthread_sigmask(SIG_UNBLOCK, &hup_mask, 0);
  162.     assert( rc == 0 );
  163.     
  164.     sigset_t      sa_mask;
  165.     rc = sigemptyset(&sa_mask);
  166.     assert( rc == 0 );
  167.     
  168.     struct sigaction sa;
  169.     
  170.     sa.sa_handler   = 0;
  171.     sa.sa_sigaction = handle_sig;
  172.     sa.sa_mask      = sa_mask;
  173.     sa.sa_flags     = SA_SIGINFO;
  174.     
  175.     rc = sigaction(SIGHUP, &sa, 0);
  176.     assert( rc == 0 );
  177.     
  178.     raise(SIGHUP);
  179.     
  180.     while ( 1 )
  181.     {
  182.      poll(0, 0, -1);
  183.     }
  184.     return ( signalTesterThread1.join() || signalTesterThread2.join() );
  185. }
  186. int main(int argc, char ** argv, char ** arge)
  187. {
  188.     return ( Application::main(argc, argv, arge) );
  189. }
  190.