tFifoTimer.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 "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 tFifoTimer_cxx_Version = 
  51.     "$Id$";
  52.     
  53. #include "Application.hxx"
  54. #include "Fifo.h"
  55. #include "PollFifo.hxx"
  56. #include "Sptr.hxx"
  57. #include "Event.hxx"
  58. #include "Thread.hxx"
  59. #include "SignalHandler.hxx"
  60. #include "VLog.hxx"
  61. using Vocal::Application;
  62. using Vocal::Runnable;
  63. using Vocal::ReturnCode;
  64. using Vocal::SUCCESS;
  65. using Vocal::Services::Event;
  66. using Vocal::Threads::Thread;
  67. using Vocal::Process::SignalHandler;
  68. using Vocal::Logging::VLog;
  69. class TestApplication : public Application
  70. {
  71.     public:
  72.      ReturnCode   run();
  73. };
  74. Application * Application::create()
  75. {
  76.     return ( new TestApplication );
  77. }
  78. int main(int argc, char ** argv, char ** arge)
  79. {
  80.     return ( Application::main(argc, argv, arge) );
  81. }
  82. class TimerEvent : public Event
  83. {
  84.     public:
  85.      TimerEvent(int msec, FifoBase< Sptr<Event> > & fifo)
  86.     : msec_(msec),
  87.      fifo_(fifo),
  88. id_(0)
  89. {
  90. }
  91.      virtual ~TimerEvent() 
  92. {
  93. }
  94.      void start(Sptr<Event> event)
  95. {
  96.     id_ = fifo_.addDelayMs(event, msec_);
  97. }
  98.      FifoEventId  id()
  99. {
  100.     return ( id_ );
  101. }
  102.      virtual const char* const name() const 
  103.     return ( "TimerEvent" ); 
  104. }
  105.     private:
  106.      int                 msec_;
  107. FifoBase< Sptr<Event> > & fifo_;
  108. FifoEventId            id_;
  109. };
  110. class TimerStart : public Runnable
  111. {
  112.     private:
  113.      FifoBase< Sptr<Event> >  &   fifo_;
  114.     public:
  115.      TimerStart(FifoBase< Sptr<Event> > & fifo) : fifo_(fifo) {}
  116. ~TimerStart() {}
  117. ReturnCode  run()
  118. {
  119.     
  120.     int     twentySec = 20 * 1000;
  121.     int     tenSec   = 10 * 1000;
  122.     Sptr<TimerEvent> tenSecTimer= new TimerEvent(tenSec, fifo_);
  123.     Sptr<TimerEvent> twentySecTimer = new TimerEvent(twentySec, fifo_);
  124.          tenSecTimer->start(tenSecTimer);
  125.     twentySecTimer->start(twentySecTimer);
  126.     
  127.     return ( SUCCESS );
  128. }
  129. };
  130. ReturnCode
  131. TestApplication::run()
  132. {
  133.     Thread::init();
  134.     SignalHandler::init();
  135.     VLog::init(LOG_DEBUG);
  136.     
  137.     VLog::on(LOG_INFO);
  138.     VLog::on(LOG_DEBUG);
  139.     
  140.     VLog               log;
  141.     {
  142. Fifo< Sptr<Event> >     fifo;
  143. TimerStart      timerStart(fifo);
  144. Thread       * timerStartThread = new Thread(timerStart);
  145. for ( int i = 0; i < 2; i++ )
  146. {
  147.          Sptr<Event> event = fifo.getNext();
  148.     VDEBUG(log) << "event = " << *event << VDEBUG_END(log);
  149. }    
  150. timerStartThread->join();
  151. delete timerStartThread;
  152.     }
  153.     {
  154. PollFifo< Sptr<Event> >     fifo;
  155. TimerStart      timerStart(fifo);
  156. Thread       * timerStartThread = new Thread(timerStart);
  157. for ( int i = 0; i < 2; i++ )
  158. {
  159.          int msgAvailable = 0;
  160.          while ( !msgAvailable )
  161.     {
  162. msgAvailable = fifo.block();
  163. fifo.processProtocols(msgAvailable);
  164.     }
  165.          Sptr<Event> event = fifo.getNext();
  166.     VDEBUG(log) << "event = " << *event << VDEBUG_END(log);
  167. }    
  168. timerStartThread->join();
  169. delete timerStartThread;
  170.     }
  171.     VLog::uninit();
  172.     SignalHandler::uninit();
  173.     Thread::uninit();
  174.     return ( 0 );
  175. }