(file) Return to CIMListener.cpp CVS log (file) (dir) Up to [Pegasus] / pegasus / src / Pegasus / Listener

Diff for /pegasus/src/Pegasus/Listener/CIMListener.cpp between version 1.19 and 1.20

version 1.19, 2004/05/21 20:57:00 version 1.20, 2004/08/03 19:05:08
Line 214 
Line 214 
  
         }         }
 } }
   
 void CIMListenerService::runForever() void CIMListenerService::runForever()
 { {
         static int modulator = 0;         static int modulator = 0;
Line 359 
Line 360 
  
   CIMListenerIndicationDispatcher* _dispatcher;   CIMListenerIndicationDispatcher* _dispatcher;
         ThreadPool* _thread_pool;         ThreadPool* _thread_pool;
     CIMListenerService* _svc;
     Semaphore *_listener_sem;
 }; };
  
 CIMListenerRep::CIMListenerRep(Uint32 portNumber, SSLContext* sslContext) CIMListenerRep::CIMListenerRep(Uint32 portNumber, SSLContext* sslContext)
Line 366 
Line 369 
 ,_sslContext(sslContext) ,_sslContext(sslContext)
 ,_dispatcher(new CIMListenerIndicationDispatcher()) ,_dispatcher(new CIMListenerIndicationDispatcher())
 ,_thread_pool(NULL) ,_thread_pool(NULL)
   ,_svc(NULL)
   ,_listener_sem(NULL)
 { {
 } }
 CIMListenerRep::~CIMListenerRep() CIMListenerRep::~CIMListenerRep()
 { {
         // if port is alive, clean up the port         // if port is alive, clean up the port
     if (_thread_pool != NULL)
     {
       // Block incoming export requests and unbind the port
       _svc->stopClientConnection();
   
       // Shutdown the CIMListenerService
       _svc->shutdown();
     }
   
         if(_sslContext!=NULL)         if(_sslContext!=NULL)
                 delete _sslContext;                 delete _sslContext;
  
Line 379 
Line 393 
  
         if(_thread_pool!=NULL)         if(_thread_pool!=NULL)
                 delete _thread_pool;                 delete _thread_pool;
   
     if(_listener_sem!=NULL)
       delete _listener_sem;
   
     // don't delete _svc, this is deleted by _listener_routine
 } }
  
 Uint32 CIMListenerRep::getPortNumber() const Uint32 CIMListenerRep::getPortNumber() const
Line 420 
Line 439 
                 _thread_pool = new ThreadPool(0, "Listener", 0, 1,                 _thread_pool = new ThreadPool(0, "Listener", 0, 1,
                         create_time, destroy_time, deadlock_time);                         create_time, destroy_time, deadlock_time);
  
                 _thread_pool->allocate_and_awaken(svc,CIMListenerService::_listener_routine);      _listener_sem = new Semaphore(0);
       _thread_pool->allocate_and_awaken(svc,
                                         CIMListenerService::_listener_routine,
                                         _listener_sem);
   
       _svc = svc;
  
                 Logger::put(Logger::STANDARD_LOG,System::CIMLISTENER,                 Logger::put(Logger::STANDARD_LOG,System::CIMLISTENER,
                                               Logger::INFORMATION,                                               Logger::INFORMATION,
Line 433 
Line 457 
 void CIMListenerRep::stop() void CIMListenerRep::stop()
 { {
         if(_thread_pool!=NULL)         if(_thread_pool!=NULL)
         { // stop the thread    {
       //
       // Graceful shutdown of the listener service
       //
   
       // Block incoming export requests and unbind the port
       _svc->stopClientConnection();
   
       // Shutdown the CIMListenerService
       _svc->shutdown();
   
       // Wait for the _listener_routine thread to exit.
       // The thread could be delivering an export, so give it 3sec.
       // Note that _listener_routine deletes the CIMListenerService,
       // so no need to delete _svc.
       try
       {
         _listener_sem->time_wait(3000);
       }
       catch (TimeOut &)
       {
         // No need to do anything, the thread pool will be deleted below
         // to cancel the _listener_routine thread if it is still running.
       }
   
       delete _listener_sem;
       _listener_sem = NULL;
  
       // Delete the thread pool.  This cancels the listener thread if it is still
       // running.
                 delete _thread_pool;                 delete _thread_pool;
                 _thread_pool = NULL;                 _thread_pool = NULL;
  


Legend:
Removed from v.1.19  
changed lines
  Added in v.1.20

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2