RtspSessionManager.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 281421,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 RtspSessionManager_cxx_version =
  51.     "$Id: RtspSessionManager.cxx,v 1.18 2001/05/15 20:26:08 bko Exp $";
  52. #include "RtspSessionManager.hxx"
  53. #include "RtspRtpProcessor.hxx"
  54. // singelton object definitionn
  55. RtspSessionManager* RtspSessionManager::myInstance = 0;
  56. RtspSessionManager::RtspSessionManager()
  57.     : myMaxSessions( 1 ),
  58.       mySessionIdList( 6000 )
  59. {
  60. #if defined (_linux_)    
  61.     // register destroy function to delete singelton
  62.     if( atexit( RtspSessionManager::destroy ) < 0 )
  63.     {
  64.         cpLog( LOG_ALERT, "Failed to register with atexit()" );
  65.     };
  66. #endif
  67. }
  68. RtspSessionManager&
  69. RtspSessionManager::instance()
  70. {
  71.     if( myInstance == 0 )
  72.     {
  73.         myInstance = new RtspSessionManager();
  74.     }
  75.     return *myInstance;
  76. }
  77. RtspSessionManager::~RtspSessionManager()
  78. {
  79. }
  80. void
  81. RtspSessionManager::destroy()
  82. {
  83.     delete RtspSessionManager::myInstance;
  84.     RtspSessionManager::myInstance = 0;
  85. }
  86. bool
  87. RtspSessionManager::maxSessions( const int max )
  88. {
  89.     bool result = true;
  90.     if( max <= 0 )
  91.     {
  92.         cpLog( LOG_ERR, "Max session invalid: %d, using default value", max );
  93.         assert( ! ( myMaxSessions <= 0 ) );
  94.         result = false;
  95.     }
  96.     else
  97.     {
  98.         myMaxSessions = max;
  99.     }
  100.     cpLog( LOG_DEBUG, "Maximum number of sesions: %d", myMaxSessions );
  101.     return result;
  102. }
  103. Data
  104. RtspSessionManager::addRtspSession( Sptr<RtspSession> session )
  105. {
  106.     Data id( "" );
  107.     if( myMaxSessions == 0 )
  108.     {
  109.         cpLog (LOG_ERR, "Can't add anymore sessions" );
  110.         return id;
  111.     }
  112.     if( session->sessionMode() == RTSP_SESSION_MODE_PLAY)
  113.     {
  114.         if( RtspRtpProcessor::instance().playThreadLoaded() )
  115.         {
  116.             cpLog( LOG_ERR, "Play thread overloaded!!!!!!!!!!!!!!!!!!!!!" );
  117.             return id;
  118.         }
  119.     }
  120.     else if( session->sessionMode() == RTSP_SESSION_MODE_REC )
  121.     {
  122.         if( RtspRtpProcessor::instance().recordThreadLoaded() )
  123.         {
  124.             cpLog( LOG_ERR, "Record thread overloaded!!!!!!!!!!!!!!!!!!!" );
  125.             return id;
  126.         }
  127.     }
  128.     else
  129.     {
  130.         cpLog( LOG_DEBUG, "Unknown session state" );
  131.         return id;
  132.     }
  133.     id = findNewSessionId();
  134.     cpLog( LOG_DEBUG, "Adding %s to myRtspSessionMap, %d total",
  135.            id.getData(), myRtspSessionMap.size() + 1 );
  136.     session->sessionId( id );
  137.     myRtspSessionMapMutex.lock();
  138.     myRtspSessionMap[ id ] = session;
  139.     myMaxSessions--;
  140.     myRtspSessionMapMutex.unlock();
  141.     return id;
  142. }
  143. bool
  144. RtspSessionManager::delRtspSession( const Data& sessionId )
  145. {
  146.     Data result = sessionId ;
  147.     myRtspSessionMapMutex.lock();
  148.     if( myRtspSessionMap.find( sessionId ) == myRtspSessionMap.end() )
  149.     {
  150.         result = false;
  151.     }
  152.     else
  153.     {
  154.         myRtspSessionMap.erase( sessionId );
  155.         myMaxSessions++;
  156.         cpLog( LOG_DEBUG, "Deleting %s from myRtspSessionMap, %d remaining",
  157.                sessionId.getData(), myRtspSessionMap.size() );
  158.     }
  159.     myRtspSessionMapMutex.unlock();
  160.     return true;
  161. }
  162. Sptr<RtspSession>
  163. RtspSessionManager::getRtspSession( const Data& sessionId )
  164. {
  165.     Sptr<RtspSession> session = 0;
  166.     myRtspSessionMapMutex.lock();
  167.     RtspSessionMap::iterator itr = myRtspSessionMap.find( sessionId );
  168.     if( itr == myRtspSessionMap.end() )
  169.     {
  170.         cpLog( LOG_DEBUG, "Session %s not found", sessionId.getData() );
  171.     }
  172.     else
  173.     {
  174.         session = itr->second;
  175.     }
  176.     myRtspSessionMapMutex.unlock();
  177.     return session;
  178. }
  179. Sptr<RtspSession>
  180. RtspSessionManager::getRtspSession()
  181. {
  182.     Sptr<RtspSession> session = 0;
  183.     myRtspSessionMapMutex.lock();
  184.     RtspSessionMap::iterator itr = myRtspSessionMap.begin();
  185.     if( itr == myRtspSessionMap.end() )
  186.     {
  187.         cpLog( LOG_DEBUG, "No sessions in session manager" );
  188.     }
  189.     else
  190.     {
  191.         session = itr->second;
  192.     }
  193.     myRtspSessionMapMutex.unlock();
  194.     return session;
  195. }
  196. Data
  197. RtspSessionManager::findNewSessionId()
  198. {
  199. #ifdef NONRANDOM_SESSIONID
  200.     Data result( mySessionIdList++ );
  201.     return result;
  202. #else
  203.     Data result;
  204.     while(1)
  205.     {
  206.         result = randomGen.get();
  207.         if( myRtspSessionMap.find( result ) == myRtspSessionMap.end() )
  208.         {
  209.             break;
  210.         }
  211.     }
  212.     return result;
  213. #endif
  214. }
  215. /* Local Variables: */
  216. /* c-file-style: "stroustrup" */
  217. /* indent-tabs-mode: nil */
  218. /* c-file-offsets: ((access-label . -) (inclass . ++)) */
  219. /* c-basic-offset: 4 */
  220. /* End: */