TimerContainer.cc
上传用户: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 TimerContainer_cc_Version =
  51.     "$Id: TimerContainer.cc,v 1.14 2001/04/13 18:53:03 icahoon Exp $";
  52. #include "VMissingDataException.hxx"
  53. #include "TimeVal.hxx"
  54. using namespace Vocal;
  55. using TimeAndDate::TimerContainer;
  56. using TimeAndDate::TimerEntry;
  57. using TimeAndDate::milliseconds_t;
  58. using TimeAndDate::TimerEntryId;
  59. template < class Msg >
  60. TimerContainer < Msg > ::TimerContainer()
  61. {
  62. }
  63. template < class Msg >
  64. TimerContainer < Msg > ::~TimerContainer()
  65. {
  66. }
  67. template < class Msg >
  68. TimerEntryId
  69. TimerContainer < Msg > ::add(
  70.     Sptr < Msg > msg,
  71.     milliseconds_t when,
  72.     bool relative
  73. )
  74. {
  75.     TimerEntry < Msg > newTimerEntry(msg, when, relative);
  76.     postAdd(newTimerEntry);
  77.     
  78.     return ( newTimerEntry.getId() );
  79. }
  80. template < class Msg >
  81. TimerEntryId
  82. TimerContainer < Msg > ::add(
  83.     Sptr < Msg > msg,
  84.     const TimeVal & when,
  85.     bool relative
  86. )
  87. {
  88.     TimerEntry < Msg > newTimerEntry(msg, when, relative);
  89.     postAdd(newTimerEntry);
  90.     return ( newTimerEntry.getId() );
  91. }
  92. template < class Msg >
  93. bool
  94. TimerContainer < Msg > ::cancel(TimerEntryId msg_id)
  95. {
  96.     typename list < TimerEntry < Msg > > ::iterator it;
  97.     for ( it = timerList_.begin(); it != timerList_.end(); it++ )
  98.     {
  99.         if ( (*it).getId() == msg_id )
  100.         {
  101.             timerList_.erase(it);
  102.             return ( true );
  103.         }
  104.     }
  105.     return ( false );
  106. }
  107. template < class Msg >
  108. int
  109. TimerContainer < Msg > ::getTimeout()
  110. {
  111.     int timeout = timerList_.size() > 0
  112.                   ? timerList_.front().getTimeout()
  113.                   : -1;
  114.     // Nothing in the list, so return infinite timeout (-1).
  115.     //
  116.     return ( timeout );
  117. }
  118. template < class Msg >
  119. TimerEntryId
  120. TimerContainer < Msg > ::getFirstTimerEntryId()
  121. {
  122.     TimerEntryId id = timerList_.size() > 0
  123.                       ? timerList_.front().getId()
  124.                       : 0;
  125.     return ( id );
  126. }
  127. template < class Msg >
  128. bool
  129. TimerContainer < Msg > ::messageAvailable()
  130. {
  131.     bool msgAvailable = ( timerList_.size() > 0 && timerList_.front().hasExpired() );
  132.     return ( msgAvailable );
  133. }
  134. template < class Msg >
  135. Sptr < Msg >
  136. TimerContainer < Msg > ::getMessage()
  137. throw ( VMissingDataException )
  138. {
  139.     if ( !messageAvailable() )
  140.     {
  141.         throw VMissingDataException("TimerContainer::getMessage: no message available.",
  142.                                     __FILE__, __LINE__);
  143.     }
  144.     Sptr < Msg > msg = timerList_.front().getMessage();
  145.     timerList_.pop_front();
  146.     return ( msg );
  147. }
  148. template < class Msg >
  149. ostream &
  150. TimerContainer < Msg > ::writeTo(ostream & out) const
  151. {
  152.     out << "timer container (size: " << timerList_.size() << ") = { ";
  153.     bool first = true;
  154.     typename list < TimerEntry < Msg > > ::const_iterator it;
  155.     for ( it = timerList_.begin(); it != timerList_.end(); it++ )
  156.     {
  157.         if ( first )
  158.         {
  159.             out << " (";
  160.             first = false;
  161.         }
  162.         else
  163.         {
  164.             out << ", (";
  165.         }
  166.         out << *it << " )";
  167.     }
  168.     return ( out << " }" );
  169. }
  170. template < class Msg >
  171. unsigned int
  172. TimerContainer < Msg > ::size() const
  173. {
  174.     return ( timerList_.size() );
  175. }
  176. template < class Msg >
  177. void    
  178. TimerContainer < Msg > ::postAdd(const TimerEntry<Msg> & newTimerEntry)
  179. {
  180.     typename list < TimerEntry < Msg > > ::reverse_iterator rit;
  181.     for ( rit = timerList_.rbegin(); rit != timerList_.rend(); rit++ )
  182.     {
  183.         if ( newTimerEntry >= *rit )
  184.         {
  185.             timerList_.insert(rit.base(), newTimerEntry);
  186.             break;
  187.         }
  188.     }
  189.     if ( rit == timerList_.rend() )
  190.     {
  191.         timerList_.push_front(newTimerEntry);
  192.     }
  193. }