OpPause.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 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 OpPause_cxx_version =
  51.     "$Id: OpPause.cxx,v 1.15 2001/05/15 20:26:08 bko Exp $";
  52. #include "OpPause.hxx"
  53. #include "RtspServer.hxx"
  54. #include "RtspSessionManager.hxx"
  55. #include "RtspPauseMsg.hxx"
  56. //TODO should we send 100 Trying, since pause wouldn't get 200 right away
  57. const Sptr<State>
  58. OpPause::process(const Sptr<StateEvent> event)
  59. {
  60.     Sptr<RtspMsg> origMsg = event->getRtspMsg();
  61.     Sptr<RtspPauseMsg> msg;
  62.     msg.dynamicCast(origMsg);
  63.     if( msg == 0 )
  64.     {
  65.         return NEXT_STATE;
  66.     }
  67.     cpLog( LOG_DEBUG, "Handling PAUSE" );
  68.     // get session object
  69.     Sptr<RtspSession> session = RtspSessionManager::instance().
  70.                                 getRtspSession( msg->getSessionId() );
  71.     assert( session != 0 );
  72.     cpLog( LOG_DEBUG, "Processing pause request for session %s",
  73.            session->sessionId().getData() );
  74.     // set pause point in session
  75.     Sptr<RtspRangeHdr> range = msg->getRange();
  76.     if( range == 0 )
  77.     {
  78.         session->myPausePoint = session->myCurrentNpt;
  79.     }
  80.     else
  81.     {
  82.         session->myPausePoint = range->getStartTime();
  83.     }
  84.     cpLog( LOG_DEBUG, "Setting pause point at %d", session->myPausePoint );
  85.     // save message so when pause point occurs, rtsp server can send response
  86.     session->pendingPause( msg );
  87.     return DONE_STATE;
  88. }
  89. void
  90. OpPause::processPendingEvent( Sptr<RtspPauseMsg> event )
  91. {
  92.     Sptr<RtspSession> session = RtspSessionManager::instance().
  93.                                 getRtspSession( event->getSessionId() );
  94.     assert( session != 0 );
  95.     cpLog( LOG_DEBUG, "Pausing session %s at %d",
  96.            session->sessionId().getData(), session->myPausePoint );
  97.     // clear pause msg
  98.     // pause point isn't reset to -1 because pause state can be auto set
  99.     session->pendingPause( 0 );
  100.     // build and send response
  101.     Sptr<RtspResponse> resp = new RtspResponse( event, RTSP_200_STATUS );
  102.     RtspServer::instance().sendResponse( resp );
  103.     // move into pause state
  104.     switch( session->sessionMode() )
  105.     {
  106.         case RTSP_SESSION_MODE_PLAY:
  107.         {
  108.             session->state( StateMachine::instance().findState( "StatePausePlay" ) );
  109.             //update statistic
  110.             if (RtspConfiguration::instance().logStatistics)
  111.             {
  112.                 session->myPerPlayReqData.myBytesSent =
  113.                     session->myPerPlayReqData.myPktsSent *
  114.                     session->fileHandler()->packetSize();
  115.                 session->myPerPlayReqData.myStreamWaitSent.stop();
  116.                 if (session->myPerPlayReqData.myPktsSent > 0)
  117.                 {
  118.                     session->myStatsMutex.lock();
  119.                     session->myStats.myPlayDataList.push_front(session->myPerPlayReqData);
  120.                     session->myStatsMutex.unlock();
  121.                     session->myPerPlayReqData.myPktsSent = 0;
  122.                 }
  123.             }
  124.             break;
  125.         }
  126.         case RTSP_SESSION_MODE_REC:
  127.         {
  128.             session->state( StateMachine::instance().findState( "StatePauseRecord" ) );
  129.             //update statistic
  130.             if (RtspConfiguration::instance().logStatistics)
  131.             {
  132.                 session->myPerRecordReqData.myBytesRecvd = 
  133.                     session->fileHandler()->packetSize() * 
  134.                     session->myPerRecordReqData.myPktsRecvd;
  135.                 session->myPerRecordReqData.myStreamWaitRecvd.stop();
  136.                 if (session->myPerRecordReqData.myPktsRecvd > 0)
  137.                 {
  138.                     session->myStatsMutex.lock();
  139.                     session->myStats.myRecordDataList.push_front(session->myPerRecordReqData);
  140.                     session->myStatsMutex.unlock();
  141.                     session->myPerRecordReqData.myPktsRecvd = 0;
  142.                 }
  143.             }
  144.             break;
  145.         }
  146.         default:
  147.             assert( 0 );
  148.     }
  149.     return;
  150. }
  151. /* Local Variables: */
  152. /* c-file-style: "stroustrup" */
  153. /* indent-tabs-mode: nil */
  154. /* c-file-offsets: ((access-label . -) (inclass . ++)) */
  155. /* c-basic-offset: 4 */
  156. /* End: */