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

流媒体/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 "VOCA;L", "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 Condition_cxx_Version =
  51.     "$Id: Condition.cxx,v 1.1 2001/03/23 13:43:10 icahoon Exp $";
  52. #include "Condition.hxx"
  53. #include "Mutex.hxx"
  54. #include "TimeVal.hxx"
  55. #include "VocalCommon.hxx"
  56. #include <cassert>
  57. using Vocal::Threads::Condition;
  58. using Vocal::Threads::Mutex;
  59. using Vocal::TimeAndDate::TimeVal;
  60. using Vocal::ReturnCode;
  61. using Vocal::SUCCESS;
  62. Condition::Condition()
  63. {
  64.     ReturnCode  rc = vcond_init(&myId);
  65.     assert( rc == SUCCESS );
  66. }
  67. Condition::~Condition ()
  68. {
  69.     ReturnCode  rc = vcond_destroy(&myId);
  70.     assert( rc == SUCCESS );
  71. }
  72. int
  73. Condition::wait (Mutex* mutex, int relativeTimeInMs)
  74. {
  75.     int utime = relativeTimeInMs < 1
  76.                     ? relativeTimeInMs
  77.                     : relativeTimeInMs * 1000;
  78.     
  79.     return ( uwait(mutex, utime) );
  80. }
  81. int
  82. Condition::uwait (Mutex* mutex, int relativeTimeInUs)
  83. {
  84.     // SunOS 5.X (according to the man page for pthread_cond_timedwait)
  85.     // can have a maximum value for the seconds portion of the abstime
  86.     // of the current time + 100,000,000. The nsec can have a maximum
  87.     // value of 1,000,000,000. You get EINVAL otherwise.
  88.     //
  89.     // Note that the relative time is in milliseconds, meaning
  90.     // that even if we use MAXINT (assuming 32 bit ints), then
  91.     // we get a number well below MAXINT (by a couple orders of
  92.     // magnitude) for the seconds portion. The slightly challenging
  93.     // part is making sure the nsec is less than 1,000,000,000.
  94.     //
  95.     if ( relativeTimeInUs < 0 )
  96.     {
  97.         return ( vcond_wait(&myId, mutex->getId()) );
  98.     }
  99.     // Relative time is specified, so create the absolute time of expiration.
  100.     //
  101.     TimeVal expiresTV;
  102.     expiresTV.now();
  103.     
  104.     timeval     relativeTime;
  105.     relativeTime.tv_sec = 0;
  106.     relativeTime.tv_usec = relativeTimeInUs;
  107.     expiresTV += relativeTime;
  108.     timespec expiresTS;
  109.     expiresTS.tv_sec = expiresTV.tv_sec;
  110.     expiresTS.tv_nsec = expiresTV.tv_usec * 1000;
  111.     assert( expiresTV.tv_usec < 1000000000L );
  112.     return ( vcond_timedwait(&myId, mutex->getId(), &expiresTS) );
  113. }
  114. int
  115. Condition::signal ()
  116. {
  117.     return ( vcond_signal(&myId) );
  118. }
  119. int
  120. Condition::broadcast()
  121. {
  122.     return ( vcond_broadcast(&myId) );
  123. }
  124. const vcondition_t*
  125. Condition::getId () const
  126. {
  127.     return ( &myId );
  128. }
  129. void vusleep(unsigned long usec)
  130. {
  131.     Mutex      mutex;
  132.     Condition  cond;
  133.     
  134.     mutex.lock();
  135.     cond.uwait(&mutex, usec);
  136.     mutex.unlock();
  137. }