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

Diff for /pegasus/src/Pegasus/Common/Monitor.cpp between version 1.10 and 1.32.2.5

version 1.10, 2002/05/21 17:20:26 version 1.32.2.5, 2002/10/31 15:24:27
Line 1 
Line 1 
 //%///////////////////////////////////////////////////////////////////////////// //%/////////////////////////////////////////////////////////////////////////////
 // //
 // Copyright (c) 2000, 2001 The Open group, BMC Software, Tivoli Systems, IBM  // Copyright (c) 2000, 2001, 2002 BMC Software, Hewlett-Packard Company, IBM,
   // The Open Group, Tivoli Systems
 // //
 // Permission is hereby granted, free of charge, to any person obtaining a copy // Permission is hereby granted, free of charge, to any person obtaining a copy
 // of this software and associated documentation files (the "Software"), to // of this software and associated documentation files (the "Software"), to
Line 26 
Line 27 
 // //
 //%///////////////////////////////////////////////////////////////////////////// //%/////////////////////////////////////////////////////////////////////////////
  
 #include <Pegasus/Common/Config.h>  
 #include <cstring>  
 #include "Monitor.h" #include "Monitor.h"
 #include "MessageQueue.h"  
 #include "Socket.h"  
 #include <Pegasus/Common/Tracer.h>  
 #include <Pegasus/Common/HTTPConnection.h>  
  
 #ifdef PEGASUS_OS_TYPE_WINDOWS #ifdef PEGASUS_OS_TYPE_WINDOWS
 # if defined(FD_SETSIZE) && FD_SETSIZE != 1024 # if defined(FD_SETSIZE) && FD_SETSIZE != 1024
 #  error "FD_SETSIZE was not set to 1024 prior to the last inclusion \ #  error "FD_SETSIZE was not set to 1024 prior to the last inclusion \
 of <winsock.h>. It may have been indirectly included (e.g., by including \ of <winsock.h>. It may have been indirectly included (e.g., by including \
 <windows.h>). Find the inclusion of that header which is visible to this \  <windows.h>). Finthe inclusion of that header which is visible to this \
 compilation unit and #define FD_SETZIE to 1024 prior to that inclusion; \ compilation unit and #define FD_SETZIE to 1024 prior to that inclusion; \
 otherwise, less than 64 clients (the default) will be able to connect to the \ otherwise, less than 64 clients (the default) will be able to connect to the \
 CIMOM. PLEASE DO NOT SUPPRESS THIS WARNING; PLEASE FIX THE PROBLEM." CIMOM. PLEASE DO NOT SUPPRESS THIS WARNING; PLEASE FIX THE PROBLEM."
Line 60 
Line 55 
  
 PEGASUS_NAMESPACE_BEGIN PEGASUS_NAMESPACE_BEGIN
  
   
   static AtomicInt _connections = 0;
   
   
   static struct timeval create_time = {0, 1};
   static struct timeval destroy_time = {15, 0};
   static struct timeval deadlock_time = {300, 0};
   
 //////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
 // //
 // MonitorRep // MonitorRep
Line 83 
Line 86 
 //////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
  
 Monitor::Monitor() Monitor::Monitor()
    : _module_handle(0), _controller(0), _async(false)     : _async(false)
 { {
     Socket::initializeInterface();     Socket::initializeInterface();
     _rep = new MonitorRep;      _rep = 0;
     FD_ZERO(&_rep->rd_fd_set);      _entries.reserveCapacity(32);
     FD_ZERO(&_rep->wr_fd_set);      int i = 0;
     FD_ZERO(&_rep->ex_fd_set);      for( ; i < 32; i++ )
     FD_ZERO(&_rep->active_rd_fd_set);      {
     FD_ZERO(&_rep->active_wr_fd_set);         _MonitorEntry entry(0, 0, 0);
     FD_ZERO(&_rep->active_ex_fd_set);         _entries.append(entry);
       }
 } }
  
 Monitor::~Monitor()  Monitor::Monitor(Boolean async)
      : _async(async)
 { {
    printf("deregistering with module controller\n");      Socket::initializeInterface();
       _rep = 0;
    if(_module_handle != NULL)      _entries.reserveCapacity(32);
       int i = 0;
       for( ; i < 32; i++ )
     {     {
        _controller->deregister_module(PEGASUS_MODULENAME_MONITOR);         _MonitorEntry entry(0, 0, 0);
        _controller = 0;         _entries.append(entry);
        delete _module_handle;  
     }     }
    printf("deleting rep\n");  
  
     delete _rep;      if( _async == true )
     printf("uninitializing interface \n");  
     Socket::uninitializeInterface();      {
     printf("returning from monitor destructor\n");         _thread_pool = new ThreadPool(0,
                                        "Monitor",
                                        1,
                                        0,
                                        create_time,
                                        destroy_time,
                                        deadlock_time);
       }
       else
          _thread_pool = 0;
 } }
  
   Monitor::~Monitor()
   {
       Tracer::trace(TRC_HTTP, Tracer::LEVEL4,
                     "deregistering with module controller");
  
  
 //<<< Tue May 14 20:38:26 2002 mdd >>>      Tracer::trace(TRC_HTTP, Tracer::LEVEL4, "deleting rep");
 //  register with module controller  
 //  when it is time to enqueue the message,  
 // use an async_thread_exec call to  
 // isolate the entire if(events) { enqueue -> fd_clear } block  
 //  let the thread pool grow and shrink according to load.  
  
 Boolean Monitor::run(Uint32 milliseconds)      Tracer::trace(TRC_HTTP, Tracer::LEVEL4, "uninitializing interface");
 {      Socket::uninitializeInterface();
       Tracer::trace(TRC_HTTP, Tracer::LEVEL4,
                     "returning from monitor destructor");
       if(_async == true)
          delete _thread_pool;
   }
  
  
    // register the monitor as a module to gain access to the cimserver's thread pool  int Monitor::kill_idle_threads()
    // <<< Wed May 15 09:52:16 2002 mdd >>>  
    while(_module_handle == NULL)  
    {    {
      static struct timeval now, last;
      gettimeofday(&now, NULL);
      int dead_threads = 0;
  
      if( now.tv_sec - last.tv_sec > 300 )
      {
         PEGASUS_STD(cout) << "Monitor Thread Pool currently has " <<
            _thread_pool->running_count() +
            _thread_pool->pool_count() << " Threads." << PEGASUS_STD(endl);
         gettimeofday(&last, NULL);
       try       try
       {       {
            dead_threads =  _thread_pool->kill_dead_threads();
          _controller = &(ModuleController::register_module(PEGASUS_QUEUENAME_CONTROLSERVICE,  
                                                            PEGASUS_MODULENAME_MONITOR,  
                                                            (void *)this,  
                                                            0,  
                                                            0,  
                                                            0,  
                                                            &_module_handle));  
          break;  
   
       }       }
       catch( ... )        catch(IPCException& )
       {       {
          ;  
       }       }
    }  
   
   
 #ifdef PEGASUS_OS_TYPE_WINDOWS  
   
     // Windows select() has a strange little bug. It returns immediately if  
     // there are no descriptors in the set even if the timeout is non-zero.  
     // To work around this, we call Sleep() for now:  
   
     if (_entries.size() == 0)  
         Sleep(milliseconds);  
  
 #endif     }
      return dead_threads;
     // Check for events on the selected file descriptors. Only do this if  }
     // there were no undispatched events from last time.  
  
     int count = 0;  
  
     if (count == 0)  Boolean Monitor::run(Uint32 milliseconds)
     {     {
         memcpy(&_rep->active_rd_fd_set, &_rep->rd_fd_set, sizeof(fd_set));  
         memcpy(&_rep->active_wr_fd_set, &_rep->wr_fd_set, sizeof(fd_set));  
         memcpy(&_rep->active_ex_fd_set, &_rep->ex_fd_set, sizeof(fd_set));  
  
         const Uint32 SECONDS = milliseconds / 1000;      Boolean handled_events = false;
         const Uint32 MICROSECONDS = (milliseconds % 1000) * 1000;      int i = 0;
         struct timeval tv = { SECONDS, MICROSECONDS };  
  
         count = select(      struct timeval tv = {0,1};
             FD_SETSIZE,      fd_set fdread;
             &_rep->active_rd_fd_set,      FD_ZERO(&fdread);
             &_rep->active_wr_fd_set,      _entry_mut.lock(pegasus_thread_self());
             &_rep->active_ex_fd_set,  
             &tv);  
  
         if (count == 0)      for( int indx = 0; indx < (int)_entries.size(); indx++)
         {         {
            pegasus_sleep(milliseconds);         if(_entries[indx]._status.value() == _MonitorEntry::IDLE)
          {
            return false;            FD_SET(_entries[indx].socket, &fdread);
          }
         }         }
  
   
       int events = select(FD_SETSIZE, &fdread, NULL, NULL, &tv);
   
 #ifdef PEGASUS_OS_TYPE_WINDOWS #ifdef PEGASUS_OS_TYPE_WINDOWS
         else if (count == SOCKET_ERROR)      if(events && events != SOCKET_ERROR )
 #else #else
         else if (count == -1)      if(events && events != -1 )
 #endif #endif
         {         {
             count = 0;         for( int indx = 0; indx < (int)_entries.size(); indx++)
             pegasus_sleep(milliseconds);         {
             if(FD_ISSET(_entries[indx].socket, &fdread))
             return false;            {
         }               MessageQueue *q = MessageQueue::lookup(_entries[indx].queueId);
                if(q == 0)
                {
                   PEGASUS_STD(cout) << "Monitor:: found an empty connection slot" << PEGASUS_STD(endl);
                   try
                   {
                      _entries[indx]._status = _MonitorEntry::EMPTY;
     }     }
                   catch(...)
     for (Uint32 i = 0, n = _entries.size(); i < n; i++)  
     {     {
         Sint32 socket = _entries[i].socket;  
         Uint32 events = 0;  
  
         if(_entries[i].dying.value() > 0 )                  }
                   continue;
                }
                try
         {         {
            if(_entries[i]._type == Monitor::CONNECTION)                  if(_entries[indx]._type == Monitor::CONNECTION)
            {            {
                      static_cast<HTTPConnection *>(q)->_entry_index = indx;
               MessageQueue *q = MessageQueue::lookup(_entries[i].queueId);                     if(static_cast<HTTPConnection *>(q)->_dying.value() > 0 )
               if(q && static_cast<HTTPConnection *>(q)->is_dying())  
               {               {
                  static_cast<HTTPConnection *>(q)->lock_connection();                        _entries[indx]._status = _MonitorEntry::DYING;
                  static_cast<HTTPConnection *>(q)->unlock_connection();  
   
                  MessageQueue & o = static_cast<HTTPConnection *>(q)->get_owner();                  MessageQueue & o = static_cast<HTTPConnection *>(q)->get_owner();
                  Message* message= new CloseConnectionMessage(static_cast<HTTPConnection *>(q)->getSocket());                        Message* message= new CloseConnectionMessage(_entries[indx].socket);
                  message->dest = o.getQueueId();                  message->dest = o.getQueueId();
                         _entry_mut.unlock();
                  o.enqueue(message);                  o.enqueue(message);
                  i = 0;                        return true;
                  n = _entries.size();  
                  continue;  
               }  
            }  
         }         }
                      _entries[indx]._status = _MonitorEntry::BUSY;
         if (FD_ISSET(socket, &_rep->active_rd_fd_set))                     _thread_pool->allocate_and_awaken((void *)q, _dispatch);
             events |= SocketMessage::READ;  
   
         if (FD_ISSET(socket, &_rep->active_wr_fd_set))  
             events |= SocketMessage::WRITE;  
   
         if (FD_ISSET(socket, &_rep->active_ex_fd_set))  
             events |= SocketMessage::EXCEPTION;  
   
         if (events)  
         {  
             Tracer::trace(TRC_HTTP, Tracer::LEVEL4,  
                "Monitor::run - Socket Event Detected events = %d", events);  
             if (events & SocketMessage::WRITE)  
             {  
                FD_CLR(socket, &_rep->active_wr_fd_set);  
                Tracer::trace(TRC_HTTP, Tracer::LEVEL4,  
                              "Monitor::run FD_CLR WRITE");  
             }             }
             if (events & SocketMessage::EXCEPTION)                  else
             {             {
                FD_CLR(socket, &_rep->active_ex_fd_set);                     int events = 0;
                Tracer::trace(TRC_HTTP, Tracer::LEVEL4,                     events |= SocketMessage::READ;
                              "Monitor::run FD_CLR EXECEPTION");                     Message *msg = new SocketMessage(_entries[indx].socket, events);
                      _entries[indx]._status = _MonitorEntry::BUSY;
                      _entry_mut.unlock();
                      q->enqueue(msg);
                      _entries[indx]._status = _MonitorEntry::IDLE;
                      return true;
             }             }
             if (events & SocketMessage::READ)  
             {  
                FD_CLR(socket, &_rep->active_rd_fd_set);  
                Tracer::trace(TRC_HTTP, Tracer::LEVEL4,  
                              "Monitor::run FD_CLR READ");  
             }             }
             MessageQueue* queue = MessageQueue::lookup(_entries[i].queueId);               catch(...)
             if( ! queue )  
             {             {
                unsolicitSocketMessages(socket);  
                break;  
             }             }
                handled_events = true;
             if(_entries[i]._type == Monitor::CONNECTION)  
             {  
                if( false == static_cast<HTTPConnection *>(queue)->is_dying())  
                   _controller->async_thread_exec(*_module_handle, _dispatch, (void *)queue);  
             }             }
             else  
             {  
                Message* message = new SocketMessage(socket, events);  
                queue->enqueue(message);  
             }             }
             count--;  
             return true;  
         }         }
       _entry_mut.unlock();
       return(handled_events);
     }     }
     pegasus_sleep(milliseconds);  
  
     return false;  
 }  
  
 Boolean Monitor::solicitSocketMessages(  int  Monitor::solicitSocketMessages(
     Sint32 socket,     Sint32 socket,
     Uint32 events,     Uint32 events,
     Uint32 queueId,     Uint32 queueId,
     int type)     int type)
 { {
   
     PEG_METHOD_ENTER(TRC_HTTP, "Monitor::solictSocketMessage");     PEG_METHOD_ENTER(TRC_HTTP, "Monitor::solictSocketMessage");
  
     // See whether a handler is already registered for this one:     int index = -1;
     Uint32 pos = _findEntry(socket);     _entry_mut.lock(pegasus_thread_self());
  
     if (pos != PEGASUS_NOT_FOUND)     for(index = 0; index < (int)_entries.size(); index++)
     {     {
         PEG_METHOD_EXIT();        try
         return false;        {
     }           if(_entries[index]._status.value() == _MonitorEntry::EMPTY)
            {
     // Set the events:              _entries[index].socket = socket;
               _entries[index].queueId  = queueId;
     if (events & SocketMessage::READ)              _entries[index]._type = type;
         FD_SET(socket, &_rep->rd_fd_set);              _entries[index]._status = _MonitorEntry::IDLE;
               _entry_mut.unlock();
     if (events & SocketMessage::WRITE)  
         FD_SET(socket, &_rep->wr_fd_set);  
   
     if (events & SocketMessage::EXCEPTION)  
         FD_SET(socket, &_rep->ex_fd_set);  
   
     // Add the entry to the list:  
   
     _MonitorEntry entry(socket, queueId, type);  
     entry.dying = 0;  
  
     _entries.append(entry);              return index;
            }
         }
         catch(...)
         {
         }
  
     // Success!     }
     ModuleController* controlService =        _entry_mut.unlock();
         new ModuleController(PEGASUS_QUEUENAME_CONTROLSERVICE);  
     PEG_METHOD_EXIT();     PEG_METHOD_EXIT();
     return true;     return index;
 } }
  
 Boolean Monitor::unsolicitSocketMessages(Sint32 socket)  void Monitor::unsolicitSocketMessages(Sint32 socket)
 { {
     PEG_METHOD_ENTER(TRC_HTTP, "Monitor::unsolicitSocketMessage");      PEG_METHOD_ENTER(TRC_HTTP, "Monitor::unsolicitSocketMessages");
       _entry_mut.lock(pegasus_thread_self());
  
     // Look for the given entry and remove it:      for(int index = 0; index < (int)_entries.size(); index++)
   
     for (Uint32 i = 0, n = _entries.size(); i < n; i++)  
     {     {
         if (_entries[i].socket == socket)         if(_entries[index].socket == socket)
         {         {
             Sint32 socket = _entries[i].socket;            _entries[index]._status = _MonitorEntry::EMPTY;
             FD_CLR(socket, &_rep->rd_fd_set);            break;
             FD_CLR(socket, &_rep->wr_fd_set);  
             FD_CLR(socket, &_rep->ex_fd_set);  
             _entries.remove(i);  
             PEG_METHOD_EXIT();  
             return true;  
         }  
     }     }
     PEG_METHOD_EXIT();  
     return false;  
 } }
  
 Uint32 Monitor::_findEntry(Sint32 socket)      _entry_mut.unlock();
 {  
    for (Uint32 i = 0, n = _entries.size(); i < n; i++)  PEG_METHOD_EXIT();
     {  if( _async  == true )
         if (_entries[i].socket == socket)     PEGASUS_STD(cout) << "Monitor:: running " << _thread_pool->running_count() <<
             return i;     " idle " << _thread_pool->pool_count() << PEGASUS_STD(endl);
     }  
  
     return PEG_NOT_FOUND;  
 } }
  
  
 PEGASUS_THREAD_RETURN PEGASUS_THREAD_CDECL Monitor::_dispatch(void *parm) PEGASUS_THREAD_RETURN PEGASUS_THREAD_CDECL Monitor::_dispatch(void *parm)
 { {
    HTTPConnection *dst = reinterpret_cast<HTTPConnection *>(parm);    HTTPConnection *dst = reinterpret_cast<HTTPConnection *>(parm);
    if( true == dst->is_dying())  
       return 0;  
    dst->lock_connection();  
    if( false == dst->is_dying())  
       dst->run(1);       dst->run(1);
    dst->unlock_connection();     if(  dst->_monitor->_entries.size() > (Uint32)dst->_entry_index )
         dst->_monitor->_entries[dst->_entry_index]._status = _MonitorEntry::IDLE;
  
    return 0;    return 0;
 } }


Legend:
Removed from v.1.10  
changed lines
  Added in v.1.32.2.5

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2