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

流媒体/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 tFifoTest_cxx_Version = 
  51.   "$Id: tFifoTest.cxx,v 1.7 2001/04/10 02:12:51 icahoon Exp $";
  52. #include "Application.hxx"
  53. #include "Runnable.hxx"
  54. #include "Thread.hxx"
  55. #include "Fifo.h"
  56. #include <unistd.h>
  57. #include <iostream>
  58. #include <iomanip>
  59. #include <pthread.h>
  60. #include <cassert>
  61. using namespace Vocal;
  62. using namespace Vocal::Threads;
  63. static u_int32_t NUM_ITERATIONS = 1000;
  64. static int MAX_TIMER_ERRORS = 10;
  65. class FifoAdd : public Runnable
  66. {
  67.     private:
  68.     
  69.      Fifo<TimeVal> &   fifo_;
  70.      u_int32_t        uAddDelay_;
  71. milliseconds_t     timerDelay_;
  72. u_int32_t        numIterations_;
  73.     public:
  74.      FifoAdd(
  75.     Fifo<TimeVal>    &   fifo, 
  76.     u_int32_t           uAddDelay, 
  77.     milliseconds_t       timerDelay,
  78.     u_int32_t          numIterations = NUM_ITERATIONS
  79. )
  80.     :  fifo_(fifo), uAddDelay_(uAddDelay), timerDelay_(timerDelay),
  81.      numIterations_(numIterations)
  82. {
  83.      }
  84. ~FifoAdd()
  85. {
  86.      }
  87.      ReturnCode       run();
  88. };
  89. ReturnCode
  90. FifoAdd::run()
  91. {
  92.     TimeVal     timeNow;
  93.     
  94.     u_int32_t count = 0;
  95.     
  96.     while ( count++ < numIterations_ ) 
  97.     {
  98.      if ( uAddDelay_ > 0 )
  99. {
  100.     usleep(uAddDelay_);
  101. }
  102. fifo_.addDelayMs(timeNow.now(), timerDelay_);
  103.     }
  104.     return ( SUCCESS );    
  105. }
  106. class FifoRemove : public Runnable
  107. {
  108.     private:
  109.     
  110.      Fifo<TimeVal> &   fifo_;
  111. milliseconds_t     timerDelay_;
  112. u_int32_t        numIterations_;
  113.     public:
  114.      FifoRemove(
  115.     Fifo<TimeVal>    &   fifo, 
  116.     milliseconds_t     timerDelay,
  117.     u_int32_t          numIterations = NUM_ITERATIONS
  118. )
  119.     :  fifo_(fifo), timerDelay_(timerDelay), 
  120.      numIterations_(numIterations)
  121. {
  122.      }
  123. ~FifoRemove()
  124. {
  125.      }
  126.      ReturnCode       run();
  127. };
  128. ReturnCode
  129. FifoRemove::run()
  130. {
  131.     TimeVal  timeNow, timeThen, timeDiff;
  132.     int      numErrors = 0;
  133.     u_int32_t count = 0;
  134.     
  135.     while ( count++ < numIterations_ ) 
  136.     {
  137.      timeThen = fifo_.getNext();
  138. timeNow.now();
  139. timeDiff = timeNow - timeThen;
  140. milliseconds_t msDiff = timeDiff.milliseconds() - timerDelay_;
  141. if ( msDiff < 0 || msDiff > 30 )
  142. {
  143.     cout << "count: " << count << ", error: msDiff = " << msDiff << endl;
  144.     
  145.     if ( ++numErrors >= MAX_TIMER_ERRORS )
  146.     {
  147.      exit(1);
  148.     }
  149. }
  150.         
  151.         if ( count % 1000 == 0 && numErrors > 0 )
  152.         {
  153.     cout << "count: " << count << ", error discounted" << endl;
  154.             numErrors--;
  155.         }
  156.     }
  157.     return ( SUCCESS );
  158. }
  159. class TestApplication : public Application
  160. {
  161.     public:
  162.      ReturnCode   init(int argc, char ** argv, char ** arge);
  163.      ReturnCode   run();
  164.     private:
  165.      u_int32_t        uAddDelay_;
  166. milliseconds_t     timerDelay_;
  167.      u_int32_t        numIterations_;
  168. };
  169. Application * Application::create()
  170. {
  171.     return ( new TestApplication );
  172. }
  173. int main(int argc, char ** argv, char ** arge)
  174. {
  175.     return ( Application::main(argc, argv, arge) );
  176. }
  177. ReturnCode  
  178. TestApplication::init(int argc, char ** argv, char ** arge)
  179. {
  180.     if ( argc > 2 )
  181.     {
  182.         uAddDelay_ = atoi(argv[1]);
  183.         timerDelay_ = atoi(argv[2]);
  184.         if ( argc > 3 )
  185.         {
  186.          numIterations_ = atoi(argv[3]);
  187.     if ( numIterations_ == 0 )
  188.     {
  189.         numIterations_ = NUM_ITERATIONS;
  190.     }
  191.         }
  192.         else
  193.         {
  194.             numIterations_ = NUM_ITERATIONS;
  195.         }
  196.     }
  197.     else
  198.     {
  199.         uAddDelay_ = 1000;
  200.         timerDelay_ = 20;
  201.         numIterations_ = NUM_ITERATIONS;
  202.     }
  203.     
  204.     cout << argv[0] << " initalized:"
  205.       << "ntuAddDelay:     " << uAddDelay_ 
  206.       << "ntmTimerDelay:   " << timerDelay_ 
  207.  << "ntnumIterations: " << numIterations_ << endl;
  208.  
  209.     return ( SUCCESS );
  210. }
  211. ReturnCode TestApplication::run()
  212. {
  213.     Fifo<TimeVal>    fifo;
  214.     TimeVal             refTime, delay;
  215.     
  216.     refTime.now();
  217.     cout << "refTime: " << refTime << endl;
  218.     
  219.     milliseconds_t delta = 1000;
  220.     
  221.     for ( int i = 0; i < 20; i++ )
  222.     {
  223.         delay = refTime + (delta * i);
  224.         cout << "delay: " << delay << endl;
  225.         
  226.         fifo.addUntil(delay, delay);
  227.     }
  228.     size_t  size = fifo.size();
  229.             
  230.     for ( size_t i = 0; i < size; i++ )
  231.     {
  232.         TimeVal     rightNow;
  233.         
  234.         TimeVal     msg = fifo.getNext();
  235.         
  236.         cout << "Now: " << rightNow.now() << " Expiry: " << msg 
  237.              << " : " << setw(2) << fifo.size() 
  238.              << " (" << setw(2) << fifo.sizeAvailable()
  239.              << "," << setw(2) << fifo.sizePending() << ")" << endl;
  240.     }
  241.     
  242.     assert( fifo.size() == 0 );
  243.     FifoAdd       fifoAdd(fifo, uAddDelay_, timerDelay_, numIterations_);
  244.     FifoRemove      fifoRemove(fifo, timerDelay_, numIterations_);
  245.     Thread        fifoRemoveThread(fifoRemove);
  246.     Thread        fifoAddThread(fifoAdd);
  247.     fifoAddThread.join();
  248.     fifoRemoveThread.join();
  249.     return ( SUCCESS );
  250. }