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

Diff for /pegasus/src/Pegasus/Common/MessageQueueService.h between version 1.10 and 1.65

version 1.10, 2002/02/11 01:17:41 version 1.65, 2008/10/21 17:11:13
Line 1 
Line 1 
 //%////-*-c++-*-////////////////////////////////////////////////////////////////  //%2006////////////////////////////////////////////////////////////////////////
 // //
 // Copyright (c) 2000, 2001 The Open group, BMC Software, Tivoli Systems, IBM  // Copyright (c) 2000, 2001, 2002 BMC Software; Hewlett-Packard Development
   // Company, L.P.; IBM Corp.; The Open Group; Tivoli Systems.
   // Copyright (c) 2003 BMC Software; Hewlett-Packard Development Company, L.P.;
   // IBM Corp.; EMC Corporation, The Open Group.
   // Copyright (c) 2004 BMC Software; Hewlett-Packard Development Company, L.P.;
   // IBM Corp.; EMC Corporation; VERITAS Software Corporation; The Open Group.
   // Copyright (c) 2005 Hewlett-Packard Development Company, L.P.; IBM Corp.;
   // EMC Corporation; VERITAS Software Corporation; The Open Group.
   // Copyright (c) 2006 Hewlett-Packard Development Company, L.P.; IBM Corp.;
   // EMC Corporation; Symantec Corporation; The Open Group.
 // //
 // 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 20 
Line 29 
 // //
 //============================================================================== //==============================================================================
 // //
 // Author: Mike Day (mdday@us.ibm.com)  
 //  
 // Modified By:  
 //  
 //%///////////////////////////////////////////////////////////////////////////// //%/////////////////////////////////////////////////////////////////////////////
  
 #ifndef Pegasus_MessageQueue_Service_h #ifndef Pegasus_MessageQueue_Service_h
Line 31 
Line 36 
  
 #include <Pegasus/Common/Config.h> #include <Pegasus/Common/Config.h>
 #include <Pegasus/Common/Message.h> #include <Pegasus/Common/Message.h>
 #include <Pegasus/Common/Exception.h>  #include <Pegasus/Common/InternalException.h>
 #include <Pegasus/Common/IPC.h>  
 #include <Pegasus/Common/Thread.h> #include <Pegasus/Common/Thread.h>
   #include <Pegasus/Common/ThreadPool.h>
 #include <Pegasus/Common/AsyncOpNode.h> #include <Pegasus/Common/AsyncOpNode.h>
 #include <Pegasus/Common/Cimom.h> #include <Pegasus/Common/Cimom.h>
   #include <Pegasus/Common/Mutex.h>
 #include <Pegasus/Common/CimomMessage.h> #include <Pegasus/Common/CimomMessage.h>
   #include <Pegasus/Common/Linkage.h>
   #include <Pegasus/Common/Mutex.h>
  
 PEGASUS_NAMESPACE_BEGIN PEGASUS_NAMESPACE_BEGIN
  
 extern const Uint32 CIMOM_Q_ID; extern const Uint32 CIMOM_Q_ID;
  
 class message_module; class message_module;
   class cimom;
   
  
 class PEGASUS_COMMON_LINKAGE MessageQueueService : public MessageQueue  class PEGASUS_COMMON_LINKAGE MessageQueueService :
       public Linkable, public MessageQueue
 { {
    public:    public:
  
       typedef MessageQueue Base;       typedef MessageQueue Base;
  
       MessageQueueService(const char *name, Uint32 queueID,      MessageQueueService(
           const char* name,
           Uint32 queueID = MessageQueue::getNextQueueId(),
                           Uint32 capabilities = 0,                           Uint32 capabilities = 0,
                           Uint32 mask = message_mask::type_cimom |          Uint32 mask = MessageMask::ha_request |
                           message_mask::type_service |              MessageMask::ha_reply |
                           message_mask::ha_request |              MessageMask::ha_async);
                           message_mask::ha_reply |  
                           message_mask::ha_async ) ;  
  
       virtual ~MessageQueueService(void);      virtual ~MessageQueueService();
  
       virtual void handle_heartbeat_request(AsyncRequest *req);      virtual Boolean isAsync() const {  return true;  }
       virtual void handle_heartbeat_reply(AsyncReply *rep);  
  
       virtual void handle_AsyncIoctl(AsyncIoctl *req);      virtual void enqueue(Message *);
       virtual void handle_CimServiceStart(CimServiceStart *req);  
       virtual void handle_CimServiceStop(CimServiceStop *req);      AsyncReply* SendWait(AsyncRequest* request);
       virtual void handle_CimServicePause(CimServicePause *req);      Boolean SendAsync(AsyncOpNode* op,
       virtual void handle_CimServiceResume(CimServiceResume *req);          Uint32 destination,
           void (*callback)(AsyncOpNode*, MessageQueue*, void*),
           MessageQueue* callback_q,
           void* callback_ptr);
  
       virtual void handle_AsyncOperationStart(AsyncOperationStart *req);      Boolean SendForget(Message* msg);
       virtual void handle_AsyncOperationResult(AsyncOperationResult *rep);  
       virtual void handle_AsyncLegacyOperationStart(AsyncLegacyOperationStart *req);  
       virtual void handle_AsyncLegacyOperationResult(AsyncLegacyOperationResult *rep);  
  
       virtual Boolean isAsync(void) {  return true;  }      Boolean update_service(Uint32 capabilities, Uint32 mask);
       Boolean deregister_service();
  
       Uint32 find_service_qid(const String &name);
       static AsyncOpNode* get_op();
       void return_op(AsyncOpNode* op);
   
       static ThreadPool* get_thread_pool();
   
       Uint32 _mask;
       AtomicInt _die;
       AtomicInt _threads;
       Uint32 getIncomingCount() {return _incoming.count(); }
   
   protected:
       virtual void _shutdown_incoming_queue();
       virtual Boolean accept_async(AsyncOpNode *op);       virtual Boolean accept_async(AsyncOpNode *op);
       virtual Boolean messageOK(const Message *msg) ;       virtual Boolean messageOK(const Message *msg) ;
       virtual void handleEnqueue() = 0;
       virtual void handleEnqueue(Message *) = 0;
       Boolean _enqueueResponse(Message *, Message *);
       virtual void _handle_incoming_operation(AsyncOpNode *);
  
       AsyncReply *SendWait(AsyncRequest *request);      virtual void _handle_async_request(AsyncRequest* req);
       virtual void _handle_async_callback(AsyncOpNode* operation);
       virtual void _make_response(Message* req, Uint32 code);
   
       virtual void handle_AsyncIoctl(AsyncIoctl* req);
       virtual void handle_CimServiceStart(CimServiceStart* req);
       virtual void handle_CimServiceStop(CimServiceStop* req);
  
       void _completeAsyncResponse(AsyncRequest *request,      void _completeAsyncResponse(
           AsyncRequest* request,
                                  AsyncReply *reply,                                  AsyncReply *reply,
                                  Uint32 state,                                  Uint32 state,
                                  Uint32 flag);                                  Uint32 flag);
       Boolean register_service(String name, Uint32 capabilities, Uint32 mask);      void _complete_op_node(AsyncOpNode *, Uint32, Uint32, Uint32);
       Boolean update_service(Uint32 capabilities, Uint32 mask);  
       Boolean deregister_service(void);  
       virtual void _shutdown_incoming_queue(void);  
       void find_services(String name,  
                          Uint32 capabilities,  
                          Uint32 mask,  
                          Array<Uint32> *results);  
       void enumerate_service(Uint32 queue, message_module *result);  
       Uint32 get_next_xid(void);  
       AsyncOpNode *get_op(void);  
       void return_op(AsyncOpNode *op);  
       Uint32 _capabilities;  
       Uint32 _mask;  
       AtomicInt _die;  
    protected:  
  
       virtual void _handle_incoming_operation(AsyncOpNode *operation, Thread *thread, MessageQueue *queue);  
       virtual void _handle_async_request(AsyncRequest *req);  
       virtual void _make_response(AsyncRequest *req, Uint32 code);  
       static cimom *_meta_dispatcher;       static cimom *_meta_dispatcher;
       static AtomicInt _service_count;       static AtomicInt _service_count;
       static Mutex _meta_dispatcher_mutex;       static Mutex _meta_dispatcher_mutex;
       static ThreadPool* _thread_pool;
  
    private:    private:
       void handleEnqueue();      Boolean _sendAsync(AsyncOpNode* op,
       DQueue<AsyncOpNode> _pending;          Uint32 destination,
       AsyncDQueue<AsyncOpNode> _incoming;          void (*callback)(AsyncOpNode*, MessageQueue*, void*),
           MessageQueue* callback_q,
           void* callback_ptr,
           Uint32 flags);
  
       static PEGASUS_THREAD_RETURN PEGASUS_THREAD_CDECL _req_proc(void *);      static ThreadReturnType PEGASUS_THREAD_CDECL polling_routine(void *);
       AtomicInt _incoming_queue_shutdown;  
  
       Thread _req_thread;      AsyncQueue<AsyncOpNode> _incoming;
       static Thread* _polling_thread;
       static Semaphore _polling_sem;
       static AtomicInt _stop_polling;
  
       struct timeval _default_op_timeout;      typedef List<MessageQueueService, Mutex> PollingList;
       static PollingList* _polling_list;
       static Mutex _polling_list_mutex;
  
       static AtomicInt _xid;      PollingList* _get_polling_list();
  
       static ThreadReturnType PEGASUS_THREAD_CDECL _req_proc(void *);
  
       static void _sendwait_callback(AsyncOpNode *, MessageQueue *, void *);
  
       AtomicInt _incoming_queue_shutdown;
  
       friend class cimom;
 }; };
  
 PEGASUS_NAMESPACE_END PEGASUS_NAMESPACE_END
  
 #endif /* Pegasus_MessageQueue_Service_h */ #endif /* Pegasus_MessageQueue_Service_h */
   
   


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

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2