OpTeardown.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 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 OpTeardown_cxx_version =
  51.     "$Id: OpTeardown.cxx,v 1.27 2001/06/12 22:39:51 kle Exp $";
  52. #include "OpTeardown.hxx"
  53. #include "RtspServer.hxx"
  54. #include "RtspSessionManager.hxx"
  55. #include "RtspRtpProcessor.hxx"
  56. #include "RtspTeardownMsg.hxx"
  57. const Sptr<State>
  58. OpTeardown::process( const Sptr<StateEvent> event )
  59. {
  60.     Sptr<RtspMsg> origMsg = event->getRtspMsg();
  61.     Sptr<RtspTeardownMsg> msg;
  62.     msg.dynamicCast(origMsg);
  63.     if( msg == 0 ) 
  64.     {
  65.         return NEXT_STATE;
  66.     }
  67.     cpLog( LOG_DEBUG, "Handling TEARDOWN" );
  68.     Sptr<RtspSession> session = RtspSessionManager::instance().
  69.                                 getRtspSession( msg->getSessionId() );
  70.     // teardown session
  71.     process2( session );
  72. #ifndef NO_200_FOR_TEARDOWN
  73.     // build and send response
  74.     Sptr<RtspResponse> resp = new RtspResponse( msg, RTSP_200_STATUS );
  75.     resp->appendConnectionCloseHdr();
  76.     RtspServer::instance().sendResponse( resp );
  77. #endif
  78.     return DONE_STATE;
  79. }
  80. void
  81. OpTeardown::process2( Sptr<RtspSession> session )
  82. {
  83.     // notify RtspRtpProcessor to stop processing events for this session
  84.     if( session->sessionMode() != RTSP_SESSION_MODE_UNKNOWN )
  85.     {
  86.         cpLog( LOG_DEBUG, "Stopping rtp processor for session %s",
  87.                session->sessionId().getData() );
  88.         session->state( StateMachine::instance().findState( "StateInit" ) );
  89.         RtspRtpProcessor::instance().delEvent( session );
  90.     }
  91.     cpLog( LOG_ERR, "packetCounter = %d", session->myPacketCounter );
  92.     if( session->sessionMode() == RTSP_SESSION_MODE_REC )
  93.     {
  94.         if (RtspConfiguration::instance().logStatistics)
  95.         {
  96.             session->myPerRecordReqData.myBytesRecvd =
  97.                     session->fileHandler()->packetSize() * 
  98.                     session->myPerRecordReqData.myPktsRecvd;
  99.             session->myPerRecordReqData.myStreamWaitRecvd.stop();
  100.             if (session->myPerRecordReqData.myPktsRecvd > 0)
  101.             {
  102.                 session->myStatsMutex.lock();
  103.                 session->myStats.myRecordDataList.push_front(session->myPerRecordReqData);
  104.                 session->myStatsMutex.unlock();
  105.                 session->myPerRecordReqData.myPktsRecvd = 0;
  106.             }
  107.     
  108.             RtspServer::instance().myStatsMutex.lock();
  109.             RtspServer::instance().myStats.myTotalActRecSessions--;
  110.             RtspServer::instance().myStats.myTotalFinRecSessions++;
  111.     
  112.             RtspServer::instance().myStats.myTotalRecReqProcessed +=
  113.                 session->myStats.totalRecRequests();
  114.             RtspServer::instance().myStats.myTotalRecThroughput += 
  115.                 session->myStats.totalRecThroughput();
  116.             RtspServer::instance().myStats.myTotalRecRoughThroughput += 
  117.                 session->myStats.totalRecRoughThroughput();
  118.             RtspServer::instance().myStats.myTotalRecPSW +=
  119.                 session->myStats.totalRecPSW();
  120.     
  121.             unsigned int a = session->myStats.totalPktsRecvd();
  122.             unsigned int b = session->myStats.totalBytesRecvd();
  123.     
  124.             minMaxPktsBytes(a, b);
  125.             RtspServer::instance().myStatsMutex.unlock();
  126.         }
  127.         cpLog( LOG_ERR, "Udp received pkts: %d",
  128.                session->rtpSession()->getRtpRecv()->getUdpStack()->getPacketsReceived() );
  129.     }
  130.     if( session->sessionMode() == RTSP_SESSION_MODE_PLAY )
  131.     {
  132.         if (RtspConfiguration::instance().logStatistics)
  133.         {
  134.             session->myPerPlayReqData.myBytesSent =
  135.                 session->myPerPlayReqData.myPktsSent *
  136.                 session->fileHandler()->packetSize();
  137.             session->myPerPlayReqData.myStreamWaitSent.stop();
  138.             if (session->myPerPlayReqData.myPktsSent > 0)
  139.             {
  140.                 session->myStatsMutex.lock();
  141.                 session->myStats.myPlayDataList.push_front(session->myPerPlayReqData);
  142.                 session->myStatsMutex.unlock();
  143.                 session->myPerPlayReqData.myPktsSent = 0;
  144.             }
  145.     
  146.             RtspServer::instance().myStatsMutex.lock();
  147.             RtspServer::instance().myStats.myTotalActPlySessions--;
  148.             RtspServer::instance().myStats.myTotalFinPlySessions++;
  149.     
  150.             RtspServer::instance().myStats.myTotalPlyReqProcessed +=
  151.                 session->myStats.totalPlyRequests();
  152.             RtspServer::instance().myStats.myTotalPlyThroughput += 
  153.                 session->myStats.totalPlyThroughput();
  154.     
  155.             unsigned int a = session->myStats.totalPktsSent();
  156.             unsigned int b = session->myStats.totalBytesSent();
  157.     
  158.             minMaxPktsBytes(a, b);
  159.             RtspServer::instance().myStatsMutex.unlock();
  160.         }
  161.     }
  162.     // deallocate resources
  163.     session->deleteRtpStack();
  164.     RtspRtpProcessor::instance().deallocateRtpPort( session->transport().
  165.                                                     myServerPortA );
  166.     if (RtspConfiguration::instance().logStatistics)
  167.     {
  168.         session->myStats.report(session->sessionId().getData());
  169.         if( !RtspServer::instance().myStats.report() )
  170.         {
  171.             RtspConfiguration::instance().logStatistics = false;
  172.         }
  173.     }
  174.     session->fileHandler()->closeAudioFile();
  175.     RtspSessionManager::instance().delRtspSession( session->sessionId() );
  176. }
  177. void
  178. OpTeardown::minMaxPktsBytes(unsigned int a, unsigned int b)
  179. {
  180.     if ( a < RtspServer::instance().myStats.myMinPktsStreamedPerSession )
  181.         RtspServer::instance().myStats.myMinPktsStreamedPerSession = a;
  182.     if ( a > RtspServer::instance().myStats.myMaxPktsStreamedPerSession )
  183.         RtspServer::instance().myStats.myMaxPktsStreamedPerSession = a;
  184.     if ( b < RtspServer::instance().myStats.myMinBytesStreamedPerSession )
  185.         RtspServer::instance().myStats.myMinBytesStreamedPerSession = b;
  186.     if ( b > RtspServer::instance().myStats.myMaxBytesStreamedPerSession )
  187.         RtspServer::instance().myStats.myMaxBytesStreamedPerSession = b;
  188. }
  189. /* Local Variables: */
  190. /* c-file-style: "stroustrup" */
  191. /* indent-tabs-mode: nil */
  192. /* c-file-offsets: ((access-label . -) (inclass . ++)) */
  193. /* c-basic-offset: 4 */
  194. /* End: */