PollFifoService.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 $1,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 PollFifoService_cxx_Version = 
  51.     "$Id: PollFifoService.cxx,v 1.2 2001/04/03 07:51:11 icahoon Exp $";
  52. #include "PollFifoService.hxx"
  53. #include "Protocol.hxx"
  54. #include "SystemException.hxx"
  55. #include "ProtocolException.hxx"
  56. #include "VLog.hxx"
  57. #include <cassert>
  58. using Vocal::Services::PollFifoService;
  59. using Vocal::Services::Event;
  60. using Vocal::Transport::Protocol;
  61. using Vocal::Transport::ProtocolException;
  62. using Vocal::Logging::VLog;
  63. using Vocal::SystemException;
  64. PollFifoService::PollFifoService(
  65.     FifoBase< Sptr<Event> >  &   serviceMgrFifo,
  66.     const char            *   name
  67. )
  68.     : Service(serviceMgrFifo, (name ? name : "PollFifoService"))
  69. {
  70. }
  71. PollFifoService::~PollFifoService()
  72. {
  73. }
  74. FifoBase< Sptr<Event> > &   
  75. PollFifoService::getFifo()
  76. {
  77.     return ( myFifo );
  78. }
  79. const FifoBase< Sptr<Event> > &   
  80. PollFifoService::getFifo() const
  81. {
  82.     return ( myFifo );
  83. }
  84. void          
  85. PollFifoService::registerProtocol(Protocol & protocol)
  86. {
  87.     const string    fn("PollFifoService::registerProtocol");
  88.     VLog         log(fn);
  89.     
  90.     myFifo.registerProtocol(protocol);
  91. }
  92. void          
  93. PollFifoService::updateProtocol(Protocol & protocol)
  94. {
  95.     const string    fn("PollFifoService::updateProtocol");
  96.     VLog         log(fn);
  97.     
  98.     myFifo.updateProtocol(protocol);
  99. }
  100. void          
  101. PollFifoService::unregisterProtocol(Protocol & protocol)
  102. {
  103.     const string    fn("Service::unregisterProtocol");
  104.     VLog         log(fn);
  105.     
  106.     myFifo.unregisterProtocol(protocol);
  107. }
  108. bool
  109. PollFifoService::onVException(VException & exception)
  110. {
  111.     // See if we have a transport exception.
  112.     //
  113.     SystemException  *   systemException 
  114.      = dynamic_cast<SystemException *>(&exception);
  115.     if ( systemException != 0 )
  116.     {
  117.      return ( onSystemException(*systemException) );
  118.     }
  119.     // See if we have a protocol exception.
  120.     //
  121.     ProtocolException  *   protocolException 
  122.      = dynamic_cast<ProtocolException *>(&exception);
  123.     if ( protocolException != 0 )
  124.     {
  125.      return ( onProtocolException(*protocolException) );
  126.     }
  127.     // Do the default behavior.
  128.     //    
  129.     return ( Service::onVException(exception) );
  130. }
  131. bool     
  132. PollFifoService::onSystemException(SystemException & systemException)
  133. {
  134.     const string    fn("PollFifoService::onSystemException");
  135.     VLog         log(fn);
  136.     
  137.     VDEBUG(log) << fn << ": shutting down." << VDEBUG_END(log);
  138.     
  139.     hardShutdown(systemException.getError());
  140.     
  141.     return ( true );
  142. }
  143. bool     
  144. PollFifoService::onProtocolException(ProtocolException & protocolException)
  145. {
  146.     const string    fn("PollFifoService::onProtocolException");
  147.     VLog         log(fn);
  148.     
  149.     VDEBUG(log) << fn << ": ignoring." << VDEBUG_END(log);
  150.     return ( false );
  151. }
  152. bool     
  153. PollFifoService::processMessages(int numberFdsActive)
  154. {
  155.     const string    fn("PollFifoService::processMessages");
  156.     VLog         log(fn);
  157.     
  158.     bool         done = Service::processMessages(numberFdsActive);
  159.     
  160.     if ( !done )
  161.     {
  162.      processProtocols(numberFdsActive);
  163.     }
  164.     return ( done );
  165. }
  166. void     
  167. PollFifoService::processProtocols(int numberFdsActive)
  168. {
  169.     const string    fn("PollFifoService::processProtocols");
  170.     VLog         log(fn);
  171.     myFifo.processProtocols(numberFdsActive);
  172. }