OpPlay.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 OpPlay_cxx_version =
  51.     "$Id: OpPlay.cxx,v 1.35 2001/05/15 20:26:08 bko Exp $";
  52. #include "OpPlay.hxx"
  53. #include "RtspServer.hxx"
  54. #include "RtspSessionManager.hxx"
  55. #include "RtspRtpProcessor.hxx"
  56. #include "RtspPlayMsg.hxx"
  57. #include "RtspRtpInfoHdr.hxx"
  58. //check sessionId matches file in fileHandler
  59. const Sptr<State>
  60. OpPlay::process( const Sptr<StateEvent> event )
  61. {
  62.     Sptr<RtspMsg> origMsg = event->getRtspMsg();
  63.     Sptr<RtspPlayMsg> msg;
  64.     msg.dynamicCast(origMsg);
  65.     if( msg == 0 )
  66.     {
  67.         return NEXT_STATE;
  68.     }
  69.     cpLog( LOG_DEBUG, "Handling PLAY" );
  70.     Sptr<RtspSession> session = RtspSessionManager::instance().
  71.                                 getRtspSession( msg->getSessionId() );
  72.     assert( session != 0 );
  73.     // play reqested file
  74.     cpLog( LOG_DEBUG, "Playing file: %s", session->fileHandler()->filename().getData() );
  75.     if( session->state() != StateMachine::instance().findState( "StatePlaying", true ) )
  76.     {
  77.         processPendingEvent( msg );
  78.     }
  79.     else
  80.     {
  81.         // 200 reponse will come when RtspRtpProcessor handles play request
  82.         cpLog( LOG_DEBUG, "Adding Play request into pending play fifo" );
  83.         session->addPendingEvent( msg );
  84.     }
  85.     return DONE_STATE;
  86. }
  87. void
  88. OpPlay::processPendingEvent( Sptr<RtspPlayMsg> event )
  89. {
  90.     Sptr<RtspSession> session = RtspSessionManager::instance().
  91.                                 getRtspSession( event->getSessionId() );
  92.     assert( session != 0 );
  93.     cpLog( LOG_DEBUG, "Processing play request for session %s",
  94.            session->sessionId().getData() );
  95.     long startTime;
  96.     long endTime;
  97.     // process range header
  98.     Sptr<RtspRangeHdr> range = event->getRange();
  99.     if( range == 0 )
  100.     {
  101.         // default range from beginning to end
  102.         startTime = 0;
  103.         endTime = session->fileHandler()->length();
  104.     }
  105.     else
  106.     {
  107.         // range found
  108.         startTime = event->getRange()->getStartTime();
  109.         endTime = event->getRange()->getEndTime();
  110.         // this is same as no range header
  111.         if( startTime != -1 && endTime != -1 )
  112.         {
  113.             if( startTime < 0 )
  114.             {
  115.                 startTime = 0;
  116.             }
  117.             if( endTime < 0 )
  118.             {
  119.                 endTime = session->fileHandler()->length();
  120.             }
  121.         }
  122.     }
  123. #ifdef INFINITE_READ
  124.     endTime = -1;
  125. #endif
  126.     // adjust new start and end times
  127.     if( session->state() == StateMachine::instance().findState( "StatePausePlay", true )  &&
  128.         range == 0  &&  session->myPausePoint != -1 )
  129.     {   
  130.         session->myPausePoint = -1;
  131.         session->myPacketTotal = ( session->myPacketTotal == -1 ) ? -1 :
  132.                                    session->myPacketTotal - session->myPacketCounter;
  133.         session->myPacketCounter = 0;
  134.         cpLog( LOG_DEBUG, "Unpausing at npt %d", session->myCurrentNpt );
  135.     }
  136.     else
  137.     {
  138.         session->myPausePoint = -1;
  139.         session->myCurrentNpt = startTime;
  140.         session->fileHandler()->seek( startTime );
  141.         session->myPacketTotal = ( endTime == -1 ) ?  -1 :
  142.                                  ( endTime - startTime ) / session->myPacketIntervalMs;
  143.         session->myPacketCounter = 0;
  144.         if( endTime != -1 )
  145.             cpLog( LOG_DEBUG, "Playing new npt interval %d - %d", startTime, endTime );
  146.         else
  147.             cpLog( LOG_DEBUG, "Playing new npt interval %d - <unknown>", startTime ); 
  148.     }
  149.     cpLog( LOG_DEBUG, "Playing %d %dbyte packets at %dms intervals",
  150.            session->myPacketTotal, session->fileHandler()->packetSize(),
  151.            session->myPacketIntervalMs );
  152.     // build and send response
  153.     Sptr<RtspResponse> resp = new RtspResponse( event, RTSP_200_STATUS );
  154.     Data filenameUrl( session->fileHandler()->filenameUrl() );
  155.     Sptr<RtspRtpInfoHdr> rtspInfo = new RtspRtpInfoHdr( filenameUrl );
  156.     rtspInfo->mySeq = session->rtpSession()->getPrevSequence();
  157.     rtspInfo->myRtptime = session->rtpSession()->getPrevRtpTime();
  158.     resp->appendRtpInfoHdr( rtspInfo );
  159.     session->rtpSession()->setMarkerOnce();
  160.     RtspServer::instance().sendResponse( resp );
  161.     // add statistic data
  162.     if (RtspConfiguration::instance().logStatistics)
  163.     {
  164.         session->myPerPlayReqData.myPktsSent = 0;
  165.         session->myPerPlayReqData.myBytesSent = 0;
  166.         session->myPerPlayReqData.myStreamWaitSent.start();
  167.     }
  168.     // move into playing state
  169.     session->state( StateMachine::instance().findState( "StatePlaying" ) );
  170.     // add session into rtp processor
  171.     RtspRtpProcessor::instance().addInitalEvent( session );
  172.     return;
  173. }
  174. /* Local Variables: */
  175. /* c-file-style: "stroustrup" */
  176. /* indent-tabs-mode: nil */
  177. /* c-file-offsets: ((access-label . -) (inclass . ++)) */
  178. /* c-basic-offset: 4 */
  179. /* End: */