ServiceApplication.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 ,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 ServiceApplication_cxx_Version = 
  51.     "$Id: ServiceApplication.cxx,v 1.4 2001/05/24 11:01:38 icahoon Exp $";
  52. #include "ServiceApplication.hxx"
  53. #include "Config.hxx"
  54. #include "Daemon.hxx"
  55. #include "Random.hxx"
  56. #include "Thread.hxx"
  57. #include "ServiceManager.hxx"
  58. #include "SignalHandler.hxx"
  59. #include "SignalAction.hxx"
  60. #include "Fifo.h"
  61. #include "PollFifo.hxx"
  62. #include "VLog.hxx"
  63. #include <cassert>
  64. #include <csignal>
  65. using Vocal::Application;
  66. using Vocal::Services::ServiceApplication;
  67. using Vocal::Configuration::Config;
  68. using Vocal::Services::ServiceManager;
  69. using Vocal::Services::Event;
  70. using Vocal::Threads::Thread;
  71. using Vocal::Signals::SignalHandler;
  72. using Vocal::Signals::SignalSet;
  73. using Vocal::Signals::SignalAction;
  74. using Vocal::Logging::VLog;
  75. using Vocal::Random;
  76. using Vocal::ReturnCode;
  77. ServiceApplication::ServiceApplication()
  78.     : myConfig(0),
  79.      myTerminateSignals(0),
  80.      myTerminateAction(0),
  81.      myFifo(0),
  82.      myServiceMgr(0)
  83. {
  84. }
  85. ServiceApplication::~ServiceApplication()
  86. {
  87. }
  88. ReturnCode
  89. ServiceApplication::init(int argc, char ** argv, char **)
  90. {
  91.     myConfig = createConfig();
  92.     assert( myConfig != 0 );
  93.     
  94.     int     fatalError = 1;
  95.     
  96.     if ( myConfig->load(argc, argv) != SUCCESS )
  97.     {
  98.         return ( fatalError );
  99.     }
  100.     if ( myConfig->asDaemon() == true )
  101.     {
  102.         if ( Daemon() != SUCCESS )
  103.         {
  104.          cerr << "Cannot start as daemon." << endl;
  105.     return ( fatalError );
  106.         }
  107.         // Update the pid.
  108.         //
  109.         myConfig->pid();
  110.     }
  111.     Thread::init();
  112.     SignalHandler::init();
  113.     VLog::init(myConfig->logLevel(), logFile().c_str());
  114.     const string    fn("ServiceApplication::init");
  115.     VLog         log(fn);
  116.     // Report to both the log and cout, since both have proved useful.
  117.     //
  118.     VNOTICE(log) << "n" << *myConfig << VNOTICE_END(log);
  119.     cout << *myConfig << endl;
  120.     // Initialize random.
  121.     //
  122.     Random::init();
  123.     
  124.     // Set up signal handling.
  125.     //
  126.     const vector<int> &  termSignals = terminateSignals();
  127.     myTerminateSignals = new SignalSet(termSignals);
  128.     Thread::self()->signalHandler().block(*myTerminateSignals);
  129.     myTerminateAction = new SignalAction(*myTerminateSignals);
  130.     assert( myTerminateAction != 0 );
  131.     
  132.     Thread::self()->signalHandler().add(*myTerminateAction);
  133.     // Create the message fifo.
  134.     //
  135.     if ( myConfig->underDebugger() )
  136.     {
  137.      myFifo = new Fifo< Sptr<Event> >;
  138.     }
  139.     else
  140.     {
  141.      myFifo = new PollFifo< Sptr<Event> >;
  142.     }
  143.     // Create service manager
  144.     //
  145.     myServiceMgr = new ServiceManager(*myFifo, myTerminateAction);
  146.     // Give the use a chance to initialize.
  147.     //
  148.     userInit();    
  149.     // Double check userInit didn't do anything too strange.
  150.     //
  151.     assert( myConfig != 0 );
  152.     assert( myTerminateSignals != 0 );
  153.     assert( myTerminateAction != 0 );
  154.     assert( myFifo != 0 );
  155.     assert( myServiceMgr != 0 );
  156.     
  157.     // Report initialization complete.
  158.     //
  159.     VINFO(log) << fn << ": Program initialized." << VINFO_END(log);
  160.          
  161.     return ( 0 );
  162. }
  163. void          
  164. ServiceApplication::uninit()
  165. {
  166.     userUninit();
  167.     
  168.     delete myServiceMgr;        myServiceMgr = 0;
  169.     delete myFifo;              myFifo = 0;
  170.     delete myTerminateAction;   myTerminateAction = 0;
  171.     delete myTerminateSignals;  myTerminateSignals = 0;
  172.     delete myConfig;            myConfig = 0;
  173.     {
  174.         VLog log;
  175.      VINFO(log) << "ServiceApplication::uninit: Program uninitialized." 
  176.         << VINFO_END(log);
  177.     }
  178.     VLog::uninit();
  179.     SignalHandler::uninit();
  180.     Thread::uninit();
  181. }
  182. ReturnCode       
  183. ServiceApplication::run()
  184. {
  185.     const string    fn("ServiceApplication::run");
  186.     VLog         log(fn);
  187.     
  188.     ReturnCode     rc = SUCCESS;
  189.     
  190.     VINFO(log) << fn << ": Program start." << VINFO_END(log);
  191.     rc = myServiceMgr->start();
  192.     if ( rc == SUCCESS )
  193.     {
  194.         VINFO(log) << fn << ": Services started." << VINFO_END(log);
  195.         rc = myServiceMgr->run();
  196.         
  197.         if ( rc == SUCCESS )
  198.         {
  199.          myServiceMgr->stop();
  200.             VINFO(log) << fn << ": Services stopped." << VINFO_END(log);
  201.         }
  202.     }
  203.     
  204.     myServiceMgr->shutdown();
  205.     VINFO(log) << fn << ": Services shutdown." << VINFO_END(log);
  206.     VINFO(log) << fn << ": Program shutdown." << VINFO_END(log);
  207.     return ( rc );
  208. }
  209. Config *    
  210. ServiceApplication::createConfig() const
  211. {
  212.     return ( new Config );
  213. }
  214.         
  215.         
  216. const vector<int> & 
  217. ServiceApplication::terminateSignals() const
  218. {
  219.     static  vector<int>     signals;
  220.     if ( signals.size() == 0 )
  221.     {
  222.         signals.push_back(SIGHUP);
  223.         signals.push_back(SIGTERM);
  224.         signals.push_back(SIGINT);
  225.     }
  226.     return ( signals );
  227. }
  228. string
  229. ServiceApplication::logFile() const
  230. {
  231.     assert( myConfig != 0 );
  232.     string filename = myConfig->applicationName() + string(".log");
  233.     return ( filename );
  234. }
  235. void        
  236. ServiceApplication::userInit()
  237. {
  238. }
  239. void        
  240. ServiceApplication::userUninit()
  241. {
  242. }
  243. Config &                    
  244. ServiceApplication::config()
  245. {
  246.     return ( *myConfig );
  247. }
  248. const Config &                    
  249. ServiceApplication::config() const
  250. {
  251.     return ( *myConfig );
  252. }
  253. FifoBase< Sptr<Event> > &   
  254. ServiceApplication::fifo()
  255. {
  256.     return ( *myFifo );
  257. }
  258.         
  259.         
  260. ServiceManager &            
  261. ServiceApplication::serviceManager()
  262. {
  263.     return ( *myServiceMgr );
  264. }