tRWMutex.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 RWMutexTest_cxx_Version = 
  51.     "$Id: tRWMutex.cxx,v 1.2 2001/03/09 08:30:41 icahoon Exp $";
  52. #include "Application.hxx"
  53. #include "Runnable.hxx"
  54. #include "VRWLock.hxx"
  55. #include "VCondition.h"
  56. #include "Thread.hxx"
  57. #include "SignalHandler.hxx"
  58. #include "VLog.hxx"
  59. using Vocal::Process::Runnable;
  60. using Vocal::Process::Application;
  61. using Vocal::Process::Thread;
  62. using Vocal::Process::SignalHandler;
  63. using Vocal::Logging::VLog;
  64. using Vocal::ReturnCode;
  65. using Vocal::SUCCESS;
  66. class DataReader : public Runnable
  67. {
  68.     public:
  69.     
  70.         DataReader(VRWLock & lock, int & data, int & readcount)
  71.             :   myLock(lock), myData(data), myReadCount(readcount)
  72.         {
  73.         }
  74.         
  75.         ReturnCode  run();
  76.     
  77.     private:
  78.     
  79.         VRWLock &   myLock;
  80.         int     &   myData;
  81.         int     &   myReadCount;
  82. };
  83. ReturnCode
  84. DataReader::run()
  85. {
  86.     while ( true )
  87.     {
  88.         myLock.ReadLock();
  89.         myReadCount++;
  90.         cout << Thread::selfId() << ": read locked" << endl;
  91.         if ( myData != 0 )
  92.         {
  93.             assert( 0 );
  94.         }
  95.         
  96.         
  97.         while ( myReadCount != 4 )
  98.         {
  99.             vusleep(1000000);
  100.         }
  101.         
  102.         if ( myReadCount == 4 )
  103.         {
  104.             vusleep(1000000);
  105.         }
  106.         myReadCount--;
  107.         
  108.         cout << Thread::selfId() << ": read unlocked" << endl;
  109.         myLock.Unlock();
  110.     }
  111.     return ( SUCCESS );
  112. }
  113. class DataWriter : public Runnable
  114. {
  115.     public:
  116.     
  117.         DataWriter(VRWLock & lock, int & data)
  118.             :   myLock(lock), myData(data)
  119.         {
  120.         }
  121.         ReturnCode  run();
  122.         
  123.     private:
  124.     
  125.         VRWLock &   myLock;
  126.         int     &   myData;
  127. };
  128. ReturnCode
  129. DataWriter::run()
  130. {
  131.     while ( true )
  132.     {
  133.         myLock.WriteLock();
  134.         cout << Thread::selfId() << ": write locked" << endl;
  135.         for ( int i = 0; i < 5; i++ )
  136.         {
  137.             myData = ((myData + 1) % 5);
  138.             vusleep(200000);    
  139.             assert( myData == ((i+1)%5) );
  140.             
  141.             cout << myData << endl;
  142.         }
  143.         cout << Thread::selfId() << ": write unlocked" << endl;
  144.         myLock.Unlock();    
  145.         
  146.         vusleep(1500000);
  147.     }
  148.     return ( SUCCESS );
  149. }
  150. class RWMutexTest : public Application
  151. {
  152.     public:
  153.     
  154.         RWMutexTest();
  155.                      
  156.         virtual ~RWMutexTest() {}
  157.         
  158.         ReturnCode  init(int, char **, char **);
  159.         void        uninit();
  160.         
  161.         ReturnCode  run();
  162.     private:
  163.     
  164.         VRWLock         myLock;
  165.         int             myData;
  166.         int             myReadCount;
  167.         
  168.         DataReader      r1, r2, r3, r4;
  169.         DataWriter      w1, w2;
  170.         
  171.         Thread      * read1, * read2, *read3, *read4,
  172.                     * write1, * write2;
  173. };
  174. RWMutexTest::RWMutexTest()
  175.     :   myLock(),
  176.         myData(0),
  177.         myReadCount(0),
  178.         r1(myLock, myData, myReadCount),
  179.         r2(myLock, myData, myReadCount),
  180.         r3(myLock, myData, myReadCount),
  181.         r4(myLock, myData, myReadCount),
  182.         w1(myLock, myData),
  183.         w2(myLock, myData),
  184.         read1(0),
  185.         read2(0),
  186.         read3(0),
  187.         read4(0),
  188.         write1(0),
  189.         write2(0)
  190. {
  191. }
  192. ReturnCode
  193. RWMutexTest::init(int, char **, char **)
  194. {
  195.     Thread::init();
  196.     SignalHandler::init();
  197.     VLog::init(LOG_DEBUG);
  198.     
  199.     read1 = new Thread(r1);
  200.     read2 = new Thread(r2);
  201.     read3 = new Thread(r3);
  202.     read4 = new Thread(r4);
  203.     write1 = new Thread(w1);
  204.     write2 = new Thread(w2);
  205.     
  206.     return ( SUCCESS );
  207. }
  208. ReturnCode
  209. RWMutexTest::run()
  210. {
  211.     return ( SUCCESS );
  212. }
  213. void
  214. RWMutexTest::uninit()
  215. {
  216.     write2->join();
  217.     write1->join();
  218.     read4->join();
  219.     read3->join();
  220.     read2->join();
  221.     read1->join();
  222. }
  223. Application *     
  224. Application::create()
  225. {
  226.     return ( new RWMutexTest );
  227. }
  228. int main(int argc, char ** argv, char ** arge)
  229. {
  230.     return ( Application::main(argc, argv, arge) );
  231. }