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

流媒体/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 vthread_linux_cxx_Version =
  51.     "$Id: vthread-linux.cxx,v 1.5 2001/06/29 05:36:29 bko Exp $";
  52. #ifndef __vxworks
  53. #include <cassert>
  54. #include "VThread.hxx"
  55. #include "cpLog.h"
  56. /*********************************************************************
  57.  
  58. VThread for Linux
  59.  
  60. *********************************************************************/
  61. VThread::VThread()
  62.     : myId(VTHREAD_ID_INVALID)
  63. {
  64. }
  65. VThread::~VThread()
  66. {
  67.     if ( myId != VTHREAD_ID_INVALID )
  68.     {
  69.         // warn user but don't kill thread
  70.         cpLog( LOG_WARNING, "active VThread:%d going out of scope", myId );
  71. assert(0); // this is probably a design error
  72.     }
  73.     myId = VTHREAD_ID_INVALID;
  74.     pthread_attr_destroy(&myAttributes);
  75. }
  76. int
  77. VThread::spawn( void *( *startFunc )( void * ),
  78.                 void *startArgs /*Default Arguments*/,
  79.                 unsigned long flags /*Default Arguments*/,
  80.                 unsigned long priority /*Default Arguments*/,
  81.                 unsigned long stack_size /* Default Arguments*/
  82.               ) throw (VThreadException&)
  83. {
  84.     if ( myId != VTHREAD_ID_INVALID )
  85.     {
  86.         // return without spawning another thread
  87.         cpLog( LOG_ERR, "VThread:%d is already active", myId );
  88.         return -1;  // type of vthread_t is not int necessarily
  89.     }
  90.     struct sched_param priorityParams;
  91.     int retVal = 0;
  92.     retVal = pthread_attr_init(&myAttributes);
  93.     assert (retVal == 0);
  94.     // extract scheduling preference from flags and set scheduling
  95.     // policy accordingly
  96.     switch ( flags & VTHREAD_SCHED_MASK )
  97.     {
  98.         case VTHREAD_SCHED_FIFO:
  99.         {
  100. #if !defined(WIN32)
  101.             retVal = pthread_attr_setinheritsched( &myAttributes,
  102.    PTHREAD_EXPLICIT_SCHED );
  103.     assert ( retVal == 0 );
  104.             retVal = pthread_attr_setschedpolicy( &myAttributes,
  105.                                                   SCHED_FIFO );
  106.             if ( retVal )
  107.             {
  108.                 throw VThreadExceptionInvalidAttributes(
  109.                     "cannot set schedule as VTHREAD_SCHED_FIFO",
  110.                     __FILE__,
  111.                     __LINE__,
  112.                     retVal );
  113.             }
  114. #else
  115.     cpLog(LOG_ERR, "priorities not implemented");
  116.     assert(0);
  117. #endif
  118.         }
  119.         break;
  120.         case VTHREAD_SCHED_RR:
  121.         {
  122. #if !defined(WIN32)
  123.             retVal = pthread_attr_setinheritsched( &myAttributes,
  124.    PTHREAD_EXPLICIT_SCHED );
  125.     assert (retVal == 0 );
  126.             retVal = pthread_attr_setschedpolicy( &myAttributes,
  127.                                                   SCHED_RR );
  128.             if ( retVal )
  129.             {
  130.                 throw VThreadExceptionInvalidAttributes(
  131.                     "cannot set schedule as VTHREAD_SCHED_RR",
  132.                     __FILE__,
  133.                     __LINE__,
  134.                     retVal );
  135.             }
  136. #else
  137.     cpLog(LOG_ERR, "priorities not implemented");
  138.     assert(0);
  139. #endif
  140.         }
  141.         break;
  142.         case VTHREAD_SCHED_DEFAULT:
  143.         default:
  144.         {
  145.             // PTHREAD_INHERIT_SCHED is not supported by Solaris
  146.             // and is not required for Linux so it has been removed
  147.             // inherit scheduling policy of parent as default
  148.             //assert( pthread_attr_setinheritsched( &myAttributes,
  149.             //                                      PTHREAD_INHERIT_SCHED )
  150.             //    == 0 );
  151.         }
  152.         break;
  153.     }
  154.     // if anything expect default, set scheduling priority explicitly;
  155.     // note that by default the priority of the parent thread is inherited
  156.     if ( priority != VTHREAD_PRIORITY_DEFAULT )
  157.     {
  158.         // probably should improve to use relative values
  159.         priorityParams.sched_priority = priority;
  160.         retVal = pthread_attr_setschedparam( &myAttributes,
  161.                                              &priorityParams );
  162.         if ( retVal )
  163.         {
  164.             throw VThreadExceptionInvalidPriority(
  165.                 "cannot set priority",
  166.                 __FILE__,
  167.                 __LINE__,
  168.                 retVal );
  169.         }
  170.     }
  171.     // spawn the thread
  172.     return ( pthread_create( &myId, &myAttributes, startFunc, startArgs ) );
  173. }
  174. int
  175. VThread::join( void **status /*Default Arguments*/)
  176. {
  177.     int retVal = pthread_join( myId, status );
  178.     myId = VTHREAD_ID_INVALID;
  179.     return retVal;
  180. }
  181. int
  182. VThread::getPriority() const
  183. {
  184.     struct sched_param priorityParams;
  185.     assert( pthread_attr_getschedparam( &myAttributes,
  186.                                         &priorityParams ) == 0 );
  187.     return priorityParams.sched_priority;
  188. }
  189. int
  190. VThread::setPriority( int priority ) throw (VThreadExceptionInvalidPriority&)
  191. {
  192.     struct sched_param priorityParams;
  193.     int policy;
  194.     int retVal;
  195.     retVal = pthread_attr_setschedparam( &myAttributes, &priorityParams );
  196.     if ( retVal )
  197.     {
  198.         throw VThreadExceptionInvalidPriority(
  199.             "cannot set priority",
  200.             __FILE__,
  201.             __LINE__,
  202.             retVal );
  203.     }
  204. #ifndef WIN32
  205.     retVal = pthread_attr_getschedpolicy( &myAttributes, &policy );
  206.     if ( retVal )
  207.     {
  208.         throw VThreadExceptionInvalidPriority(
  209.             "cannot set policy",
  210.             __FILE__,
  211.             __LINE__,
  212.             retVal );
  213.     }
  214. #endif
  215.     return ( pthread_setschedparam( myId, policy, &priorityParams ) );
  216. }
  217. const vthread_t*
  218. VThread::getId() const
  219. {
  220.     return &myId;
  221. }
  222. const vthread_attr_t*
  223. VThread::getAttributes() const
  224. {
  225.     return &myAttributes;
  226. }
  227. void
  228. VThread::exit()
  229. {
  230.     if ( myId != VTHREAD_ID_INVALID )
  231.     {
  232.         pthread_cancel( myId );
  233.         myId = VTHREAD_ID_INVALID;
  234.     }
  235. }
  236. const vthread_t
  237. VThread::selfId()
  238. {
  239.     return pthread_self();
  240. }
  241. #endif
  242. // not __vxworks