tFifoCancel.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 tFifoCancel_cxx_Version = 
  51.     "$Id: tFifoCancel.cxx,v 1.9 2001/05/13 10:34:15 icahoon Exp $";
  52. #include "Application.hxx"
  53. #include "Fifo.h"
  54. #include "Sptr.hxx"
  55. #include "Event.hxx"
  56. #include "Thread.hxx"
  57. #include "SignalHandler.hxx"
  58. #include "VLog.hxx"
  59. #include <cstdio>
  60. using namespace Vocal;
  61. using namespace Vocal::Threads;
  62. using namespace Vocal::Logging;
  63. using Vocal::Signals::SignalHandler;
  64. using Vocal::Services::Event;
  65. class TestApplication : public Application
  66. {
  67.     public:
  68.      ReturnCode   run();
  69. };
  70. Application * Application::create()
  71. {
  72.     return ( new TestApplication );
  73. }
  74. int main(int argc, char ** argv, char ** arge)
  75. {
  76.     return ( Application::main(argc, argv, arge) );
  77. }
  78. class TimerEvent : public Event
  79. {
  80.     public:
  81.      TimerEvent(int msec, FifoBase< Sptr<Event> > & fifo)
  82.     : msec_(msec),
  83.      fifo_(fifo),
  84. id_(0)
  85. {
  86. }
  87.      virtual ~TimerEvent() 
  88. {
  89. }
  90.      void start(Sptr<Event> event)
  91. {
  92.     id_ = fifo_.addDelayMs(event, msec_);
  93. }
  94.      FifoEventId  id()
  95. {
  96.     return ( id_ );
  97. }
  98.      virtual const char* const name() const 
  99.     return ( "TimerEvent" ); 
  100. }
  101.     private:
  102.      int                 msec_;
  103. FifoBase< Sptr<Event> > & fifo_;
  104. FifoEventId            id_;
  105. };
  106. class CancelTimerEvent : public Event
  107. {
  108.     public:
  109.      CancelTimerEvent(
  110.     FifoEventId id1, 
  111.     FifoEventId id2, 
  112.     FifoBase< Sptr<Event> > & fifo
  113. )
  114.     : id1_(id1),
  115.      id2_(id2),
  116.      fifo_(fifo)
  117. {
  118. }
  119.      virtual ~CancelTimerEvent() 
  120. {
  121. }
  122.      void start(Sptr<Event> event)
  123. {
  124.     fifo_.add(event);
  125. }
  126.      virtual const char* const name() const 
  127.     return ( "CancelTimerEvent" ); 
  128. }
  129.      void process()
  130. {
  131.     cout << "Cancelling id = " << id1_ << endl;
  132.     fifo_.cancel(id1_);
  133.     cout << "Cancelling id = " << id2_ << endl;
  134.     fifo_.cancel(id2_);
  135. }
  136.     private:
  137. FifoEventId            id1_;
  138. FifoEventId            id2_;
  139. FifoBase< Sptr<Event> > & fifo_;
  140. };
  141. class TimerStart : public Runnable
  142. {
  143.     private:
  144.      FifoBase< Sptr<Event> >  &   fifo_;
  145.     public:
  146.      TimerStart(FifoBase< Sptr<Event> > & fifo) : fifo_(fifo) {}
  147. ~TimerStart() {}
  148. ReturnCode  run()
  149. {
  150.     
  151.     int     twentySec = 20 * 1000;
  152.     int     tenSec   = 10 * 1000;
  153.     int     zeroSec   = 0;
  154.     Sptr<TimerEvent> zeroSecTimer
  155.      = new TimerEvent(zeroSec, fifo_);
  156.     Sptr<TimerEvent> tenSecTimer
  157.      = new TimerEvent(tenSec, fifo_);
  158.     Sptr<TimerEvent> twentySecTimer 
  159.      = new TimerEvent(twentySec, fifo_);
  160.     
  161.          zeroSecTimer->start(zeroSecTimer);
  162.          tenSecTimer->start(tenSecTimer);
  163.     twentySecTimer->start(twentySecTimer);
  164.          Sptr<CancelTimerEvent> cancelTimer 
  165.      = new CancelTimerEvent(
  166.      zeroSecTimer->id(), 
  167. tenSecTimer->id(),
  168.      fifo_);
  169.          cancelTimer->start(cancelTimer);
  170.     cout << "Created zero second timerEvent, id = " 
  171.      << zeroSecTimer->id() << endl;
  172.     cout << "Created ten second timerEvent, id = "  
  173.      << tenSecTimer->id() << endl;
  174.     cout << "Created twenty second timerEvent, id = " 
  175.      << twentySecTimer->id() << endl;
  176.     
  177.     return ( SUCCESS );
  178. }
  179. };
  180. ReturnCode
  181. TestApplication::run()
  182. {
  183.     Thread::init();
  184.     SignalHandler::init();
  185.     VLog::init(LOG_DEBUG);
  186.     
  187.     VLog::on(LOG_INFO);
  188.     
  189.     Fifo< Sptr<Event> >     fifo;
  190.     TimerStart      timerStart(fifo);
  191.     Thread       * timerStartThread = new Thread(timerStart);
  192.     for ( int i = 0; i < 25; i++ )
  193.     {
  194.      sleep(1);
  195. fprintf(stdout, ".");
  196. fflush(stdout);
  197.     }
  198.     fprintf(stdout, "n");
  199.     
  200.     for ( int i = 0; i < 2; i++ )
  201.     {
  202.      Sptr<Event> event = fifo.getNext();
  203. cout << "event = " << *event << endl;
  204.      Sptr<CancelTimerEvent> cancelTimerEvent;
  205. if ( cancelTimerEvent.dynamicCast(event) != 0 )
  206. {
  207.     cout << "Processing cancel." << endl;
  208.     cancelTimerEvent->process();
  209. }
  210.     }    
  211.     timerStartThread->join();
  212.     delete timerStartThread;
  213.     VLog::uninit();
  214.     SignalHandler::uninit();
  215.     Thread::uninit();
  216.     return ( 0 );
  217. }