mediaServer.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 mediaServer_cxx_Version =
  51.     "$Id: mediaServer.cxx,v 1.17 2001/06/05 01:19:44 kle Exp $";
  52. #include <signal.h>
  53. #include "Daemon.hxx"
  54. #include "VException.hxx"
  55. #include "CommandLine.hxx"
  56. #include "RtspCommandLine.hxx"
  57. #include "RtspConfiguration.hxx"
  58. #include "RtspServer.hxx"
  59. #include "RtspSessionManager.hxx"
  60. #include "RtspFileManager.hxx"
  61. #include "RtspRtpProcessor.hxx"
  62. #include "TickCount.hxx"
  63. #include "cpLog.h"
  64. #include <string>
  65. #include <stdio.h>
  66. using namespace std;
  67. using Vocal::Statistics::TickCount;
  68. using Vocal::Statistics::Duration;
  69. /**
  70.  * Handler for signal SIGABRT
  71.  * @param signo the SIGABRT number
  72.  * @return void
  73.  */
  74. void
  75. signalHandler( int signo )
  76. {
  77.     if ( signo == SIGABRT )
  78.     {
  79.         cpLog( LOG_DEBUG, "Signal received" );
  80.     }
  81. }
  82. /**
  83.  * MediaServer entry function; receives command line parameters,
  84.  * calls parser, sets provisioning up, creates and runs rtsp
  85.  * media server instance
  86.  * @param argc the number of command line arguments
  87.  * @param argv pointer to the list of command line arguments
  88.  * @return 1 on abort of program
  89.  */
  90. int
  91. main( const int argc, const char* argv[] )
  92. {
  93.     // setup SIGABRT handler, for the tcp connection
  94.     if( signal( SIGABRT, signalHandler ) == SIG_ERR )
  95.     {
  96.         return 1;
  97.     }
  98.     // parse command line parameters
  99.     RtspCommandLine cIn( (const int)argc, (const char**) argv );
  100.     // run as a daemon
  101.     if( cIn.getBool( "Daemon" ) )
  102.     {
  103.         cpLog( LOG_ALERT, "Running as daemon" );
  104.         Daemon();
  105.     }
  106.     // setup cpLog
  107.     cpLogSetLabel( "MediaServer" );
  108.     cpLogSetPriority( cIn.getInt( "LogLevel" ) );
  109.     // read configuration file
  110.     const string cfgStr = cIn.getString( "CfgFile" );
  111.     FILE *cfgFile = fopen( cfgStr.c_str(), "r" );
  112.     if( !cfgFile )
  113.     {
  114.         cpLog( LOG_ERR, "Fail to open configuration file: %s",
  115.                cfgStr.c_str() );
  116.         exit( 1 );
  117.     }
  118.     fclose( cfgFile );
  119.     RtspConfiguration& cfgIn = RtspConfiguration::instance( cfgStr );
  120.     if( cpLogGetPriority() >= LOG_ALERT )
  121.     {
  122.         cfgIn.show();
  123.     }
  124.     // read rtsp port
  125.     int rtspPort = cfgIn.rtspPort;
  126.     if( !rtspPort )
  127.     {
  128.         cpLog( LOG_ERR, "Fail to read rtsp port from cfg file" );
  129.         return 1;
  130.     }
  131.     string filename = RtspConfiguration::instance().statisticsLogFile;
  132.     if (filename.length() == 0)
  133.         RtspConfiguration::instance().logStatistics = false;
  134.     if (RtspConfiguration::instance().logStatistics)
  135.     {
  136.         TickCount::calibrate();
  137.         assert(TickCount::ticksPerSec != 0);
  138.     
  139.         // open statistics file
  140.         string filename = RtspConfiguration::instance().statisticsLogFile;
  141.         FILE* statsFile = fopen( filename.c_str(), "w" );
  142.         if ( !statsFile )
  143.         {
  144.             cpLog( LOG_ERR, "Fail to open rtsp statistic log file to write" );
  145.         }
  146.     
  147.         fprintf( statsFile, "RTSP server statisticsn" );
  148.         fprintf( statsFile, "----------------------n" );
  149.     
  150.         fflush( statsFile );
  151.         fclose( statsFile );
  152.     }
  153.     // create and run rtsp server instance, run() will block until shutdown
  154.     RtspServer::instance( rtspPort );
  155.     RtspServer::instance().run();
  156.     // deallocate all singeltons
  157.     RtspServer::instance().destroy();
  158.     RtspSessionManager::instance().destroy();
  159.     RtspRtpProcessor::instance().destroy();
  160.     RtspFileManager::instance().destroy();
  161.     RtspConfiguration::instance().destroy();
  162.     RtspConfiguration::instance().destroy();
  163.     StateMachine::instance().destroy();
  164.     // print completion message
  165.     char datebuf[32];
  166.     struct timeval tv;
  167.     assert( gettimeofday( &tv, 0 ) == 0 );
  168.     const time_t timeInSeconds = (time_t)tv.tv_sec;
  169.     strftime( datebuf, 32, "%H:%M:%S - %m/%d/%Y", localtime(&timeInSeconds) ); 
  170.     cpLog( LOG_ALERT, "Server shutdown at %s", datebuf );
  171.     return 0;
  172. }
  173. /* Local Variables: */
  174. /* c-file-style: "stroustrup" */
  175. /* indent-tabs-mode: nil */
  176. /* c-file-offsets: ((access-label . -) (inclass . ++)) */
  177. /* c-basic-offset: 4 */
  178. /* End: */