VThreadTest.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 VThreadTest_cxx_Version =
  51.     "$Id: VThreadTest.cxx,v 1.16 2001/06/29 03:42:30 bko Exp $";
  52. #include <signal.h>
  53. #include <sys/types.h>
  54. #include <typeinfo>
  55. #include <unistd.h>
  56. #include <stdio.h>
  57. #include <cassert>
  58. #include "VTime.hxx"
  59. #include "VThread.hxx"
  60. #include "VMutex.h"
  61. #include "VCondition.h"
  62. #include "cpLog.h"
  63. #include "VThreadException.hxx"
  64. #include <iostream>
  65. VMutex *theMutex;
  66. VCondition *theCondition;
  67. /// displays 'name' strlen( name ) times
  68. void *
  69. display( void* name )
  70. {
  71.     static int first = 1;
  72.     int length = strlen( ( char* ) name );
  73.     cerr << "see if this works" << endl;
  74.     theMutex->lock();
  75.     if ( first )
  76.     {
  77.         first = 0;
  78.         assert( theCondition->wait( theMutex ) == 0 );
  79.         while ( length-- > 0 )
  80.         {
  81.             cpLog( LOG_ERR, "%sn", ( char* ) name );
  82.             sleep( 1 );
  83.         }
  84.     }
  85.     else
  86.     {
  87.         while ( length-- > 0 )
  88.         {
  89.             cpLog( LOG_DEBUG, "%sn", ( char* ) name );
  90.             sleep( 1 );
  91.         }
  92.         assert( theCondition->signal() == 0 );
  93.     }
  94.     theMutex->unlock();
  95.     return name;
  96. }
  97. void*
  98. startThreads( void* name )
  99. {
  100.     // setup logfile
  101.     cpLogSetLabel( "VThreadTest" );
  102.     cpLogSetPriority( LOG_DEBUG );
  103.     VThread* thread1;
  104.     thread1 = new VThread();
  105.     VThread thread2;
  106.     char arg1[] = "first";
  107.     char arg2[] = "second";
  108.     theMutex = new VMutex;
  109.     theCondition = new VCondition;
  110.     // make sure cpLog() functionality is present
  111.     cpLog( LOG_DEBUG, "Is cpLog() working???" );
  112.     try
  113.     {
  114.         thread1->spawn( display, ( void* ) arg1 );
  115.         // this should result in a cpLog warning
  116.         //thread1->spawn( display, ( void* ) arg1 );
  117.     }
  118.     catch ( VThreadExceptionInvalidAttributes& ex )
  119.     {
  120.         cpLog( LOG_DEBUG, "handle VThreadExceptionInvalidAttributes" );
  121.     }
  122.     try
  123.     {
  124.         // for linux this should throw an exception which gets caught
  125.         //thread2.spawn(display, ( void * ) arg2, 0, 175 );
  126.         thread2.spawn(display, ( void * ) arg2 );
  127.     }
  128.     catch ( VThreadExceptionInvalidAttributes& ex )
  129.     {
  130.         cpLog( LOG_DEBUG, "handle VThreadExceptionInvalidAttributes" );
  131.     }
  132.     catch ( VThreadExceptionInvalidPriority& ex )
  133.     {
  134.         cpLog( LOG_DEBUG, "handle VThreadExceptionInvalidPriority" );
  135.         thread2.spawn( display, ( void * ) arg2 );
  136.     }
  137.     printf( "thread1 priority: %dn", thread1->getPriority() );
  138.     printf( "thread2 priority: %dn", thread2.getPriority() );
  139. #ifdef __vxworks
  140.     // include this if you want to change the order of execution
  141.     //thread2.setPriority( 75 );
  142.     //printf("thread2 new priority: %dn", thread2.getPriority() );
  143. #endif // __vxworks
  144.     //sleep(10);
  145.     //thread1->exit();
  146.     //thread2.exit();
  147.     thread1->join();
  148.     printf("joined with thread1n" );
  149.     thread2.join();
  150.     printf("joined with thread2n" );
  151.     delete theMutex; theMutex = 0;
  152.     delete theCondition; theCondition = 0;
  153.     delete thread1; thread1 = 0;
  154.     return 0;
  155. } // end main()
  156. int
  157. main( int argc, char* argv[] )
  158. {
  159.     VThread* mainThread;
  160.     mainThread = new VThread();
  161.     try
  162.     {
  163.         mainThread->spawn( startThreads );
  164.     }
  165.     catch ( VThreadExceptionInvalidAttributes& ex )
  166.     {
  167.         cpLog( LOG_DEBUG, "handle VThreadExceptionInvalidAttributes" );
  168.     }
  169.     mainThread->join();
  170.     delete mainThread; mainThread = 0;
  171.     return 0;
  172. } // end main()