(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.50.12.1 and 1.78

version 1.50.12.1, 2006/06/29 17:33:12 version 1.78, 2009/04/09 05:23:26
Line 1 
Line 1 
 //%2006////////////////////////////////////////////////////////////////////////  //%LICENSE////////////////////////////////////////////////////////////////
 // //
 // Copyright (c) 2000, 2001, 2002 BMC Software; Hewlett-Packard Development  // Licensed to The Open Group (TOG) under one or more contributor license
 // Company, L.P.; IBM Corp.; The Open Group; Tivoli Systems.  // agreements.  Refer to the OpenPegasusNOTICE.txt file distributed with
 // Copyright (c) 2003 BMC Software; Hewlett-Packard Development Company, L.P.;  // this work for additional information regarding copyright ownership.
 // IBM Corp.; EMC Corporation, The Open Group.  // Each contributor licenses this file to you under the OpenPegasus Open
 // Copyright (c) 2004 BMC Software; Hewlett-Packard Development Company, L.P.;  // Source License; you may not use this file except in compliance with the
 // IBM Corp.; EMC Corporation; VERITAS Software Corporation; The Open Group.  // License.
 // Copyright (c) 2005 Hewlett-Packard Development Company, L.P.; IBM Corp.;  //
 // EMC Corporation; VERITAS Software Corporation; The Open Group.  // Permission is hereby granted, free of charge, to any person obtaining a
 // Copyright (c) 2006 Hewlett-Packard Development Company, L.P.; IBM Corp.;  // copy of this software and associated documentation files (the "Software"),
 // EMC Corporation; Symantec Corporation; The Open Group.  // to deal in the Software without restriction, including without limitation
 //  // the rights to use, copy, modify, merge, publish, distribute, sublicense,
 // Permission is hereby granted, free of charge, to any person obtaining a copy  // and/or sell copies of the Software, and to permit persons to whom the
 // of this software and associated documentation files (the "Software"), to  // Software is furnished to do so, subject to the following conditions:
 // deal in the Software without restriction, including without limitation the  //
 // rights to use, copy, modify, merge, publish, distribute, sublicense, and/or  // The above copyright notice and this permission notice shall be included
 // sell copies of the Software, and to permit persons to whom the Software is  // in all copies or substantial portions of the Software.
 // furnished to do so, subject to the following conditions:  //
 //  // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
 // THE ABOVE COPYRIGHT NOTICE AND THIS PERMISSION NOTICE SHALL BE INCLUDED IN  // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 // ALL COPIES OR SUBSTANTIAL PORTIONS OF THE SOFTWARE. THE SOFTWARE IS PROVIDED  // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
 // "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT  // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
 // LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR  // CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
 // PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT  // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
 // HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN  // SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 // ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION  //
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.  //////////////////////////////////////////////////////////////////////////
 //  
 //==============================================================================  
 //  
 // Author: Mike Day (mdday@us.ibm.com)  
 //  
 // Modified By: David Dillard, VERITAS Software Corp.  
 //                  (david.dillard@veritas.com)  
 //              Jim Wunderlich (Jim_Wunderlich@prodigy.net)  
 // //
 //%///////////////////////////////////////////////////////////////////////////// //%/////////////////////////////////////////////////////////////////////////////
  
Line 43 
Line 35 
 #include <Pegasus/Common/Config.h> #include <Pegasus/Common/Config.h>
 #include <Pegasus/Common/Message.h> #include <Pegasus/Common/Message.h>
 #include <Pegasus/Common/InternalException.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/Linkage.h>
 #include <Pegasus/Common/RMutex.h>  #include <Pegasus/Common/Mutex.h>
  
 PEGASUS_NAMESPACE_BEGIN PEGASUS_NAMESPACE_BEGIN
  
 extern const Uint32 CIMOM_Q_ID;  
   
 class message_module; class message_module;
   class cimom;
   
  
 class PEGASUS_COMMON_LINKAGE MessageQueueService : class PEGASUS_COMMON_LINKAGE MessageQueueService :
     public Linkable, public MessageQueue     public Linkable, public MessageQueue
Line 64 
Line 57 
  
     typedef MessageQueue Base;     typedef MessageQueue Base;
  
     MessageQueueService(const char *name,      MessageQueueService(
             Uint32 queueID = MessageQueue::getNextQueueId(),          const char* name);
             Uint32 capabilities = 0,  
             Uint32 mask = message_mask::type_cimom |  
             message_mask::type_service |  
             message_mask::ha_request |  
             message_mask::ha_reply |  
             message_mask::ha_async );  
  
     virtual ~MessageQueueService();     virtual ~MessageQueueService();
  
     virtual Boolean isAsync() const {  return true;  }     virtual Boolean isAsync() const {  return true;  }
  
     // enqueue may throw an IPCException  
     virtual void enqueue(Message *);     virtual void enqueue(Message *);
  
     AsyncReply *SendWait(AsyncRequest *request);     AsyncReply *SendWait(AsyncRequest *request);
Line 87 
Line 73 
             MessageQueue *callback_q,             MessageQueue *callback_q,
             void *callback_ptr);             void *callback_ptr);
  
     Boolean SendAsync(Message *msg,  
             Uint32 destination,  
             void (*callback)(Message *response, void *handle, void *parameter),  
             void *handle,  
             void *parameter);  
   
     Boolean SendForget(Message *msg);     Boolean SendForget(Message *msg);
     Boolean ForwardOp(AsyncOpNode *, Uint32 destination);  
   
  
     Boolean register_service(String name, Uint32 capabilities, Uint32 mask);  
     Boolean update_service(Uint32 capabilities, Uint32 mask);     Boolean update_service(Uint32 capabilities, Uint32 mask);
     Boolean deregister_service();     Boolean deregister_service();
     virtual void _shutdown_incoming_queue();  
  
     void find_services(String name,      Uint32 find_service_qid(const char* name);
             Uint32 capabilities,  
             Uint32 mask,  
             Array<Uint32> *results);  
     void enumerate_service(Uint32 queue, message_module *result);  
     Uint32 get_next_xid();  
     static AsyncOpNode *get_op();     static AsyncOpNode *get_op();
     void return_op(AsyncOpNode *op);     void return_op(AsyncOpNode *op);
  
     Boolean operator ==(const MessageQueueService & svce) const  
     {  
         return operator==((const void *)&svce);  
     }  
   
     Boolean operator ==(const void *svce) const  
     {  
         if((const void *)this == svce)  
             return true;  
         return false;  
     }  
   
     static PEGASUS_THREAD_RETURN PEGASUS_THREAD_CDECL polling_routine(void *);  
     static PEGASUS_THREAD_RETURN PEGASUS_THREAD_CDECL kill_idle_threads(void *);  
     static ThreadPool *get_thread_pool();     static ThreadPool *get_thread_pool();
  
     Uint32 _mask;  
     AtomicInt _die;     AtomicInt _die;
         AtomicInt _threads;         AtomicInt _threads;
         Uint32 getIncomingCount() {return _incoming.count(); }         Uint32 getIncomingCount() {return _incoming.count(); }
  
 protected: protected:
     virtual Boolean accept_async(AsyncOpNode *op);     virtual Boolean accept_async(AsyncOpNode *op);
     virtual Boolean messageOK(const Message *msg);  
     virtual void handleEnqueue() = 0;     virtual void handleEnqueue() = 0;
     virtual void handleEnqueue(Message *) = 0;     virtual void handleEnqueue(Message *) = 0;
     Boolean _enqueueResponse(Message *, Message *);     Boolean _enqueueResponse(Message *, Message *);
 //      virtual void _handle_incoming_operation(AsyncOpNode *operation, Thread *thread, MessageQueue *queue);  
     virtual void _handle_incoming_operation(AsyncOpNode *);     virtual void _handle_incoming_operation(AsyncOpNode *);
  
     virtual void _handle_async_request(AsyncRequest *req);     virtual void _handle_async_request(AsyncRequest *req);
     virtual void _handle_async_callback(AsyncOpNode *operation);     virtual void _handle_async_callback(AsyncOpNode *operation);
     virtual void _make_response(Message *req, Uint32 code);     virtual void _make_response(Message *req, Uint32 code);
  
     virtual void handle_heartbeat_request(AsyncRequest *req);      virtual void handle_AsyncIoClose(AsyncIoClose* req);
     virtual void handle_heartbeat_reply(AsyncReply *rep);  
   
     virtual void handle_AsyncIoctl(AsyncIoctl *req);  
     virtual void handle_CimServiceStart(CimServiceStart *req);     virtual void handle_CimServiceStart(CimServiceStart *req);
     virtual void handle_CimServiceStop(CimServiceStop *req);     virtual void handle_CimServiceStop(CimServiceStop *req);
     virtual void handle_CimServicePause(CimServicePause *req);  
     virtual void handle_CimServiceResume(CimServiceResume *req);  
  
     virtual void handle_AsyncOperationStart(AsyncOperationStart *req);      void _completeAsyncResponse(
     virtual void handle_AsyncOperationResult(AsyncOperationResult *rep);          AsyncRequest* request,
     virtual void handle_AsyncLegacyOperationStart(AsyncLegacyOperationStart *req);          AsyncReply* reply);
     virtual void handle_AsyncLegacyOperationResult(AsyncLegacyOperationResult *rep);      void _complete_op_node(AsyncOpNode *);
   
     void _completeAsyncResponse(AsyncRequest *request,  
                 AsyncReply *reply,  
                 Uint32 state,  
                 Uint32 flag);  
     void _complete_op_node(AsyncOpNode *, Uint32, Uint32, Uint32);  
  
     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;
       Boolean _isRunning;
 private: private:
       Boolean _sendAsync(AsyncOpNode* op,
           Uint32 destination,
           void (*callback)(AsyncOpNode*, MessageQueue*, void*),
           MessageQueue* callback_q,
           void* callback_ptr,
           Uint32 flags);
   
       void _removeFromPollingList(MessageQueueService *service);
   
       static ThreadReturnType PEGASUS_THREAD_CDECL polling_routine(void *);
   
     AsyncQueue<AsyncOpNode> _incoming;     AsyncQueue<AsyncOpNode> _incoming;
     static Thread* _polling_thread;     static Thread* _polling_thread;
     static Semaphore _polling_sem;     static Semaphore _polling_sem;
     static AtomicInt _stop_polling;     static AtomicInt _stop_polling;
     static AtomicInt _check_idle_flag;  
   
     static List<MessageQueueService, RMutex> _polling_list;  
  
     static PEGASUS_THREAD_RETURN PEGASUS_THREAD_CDECL _req_proc(void *);      typedef List<MessageQueueService, NullLock> PollingList;
       static PollingList* _polling_list;
       static Mutex _polling_list_mutex;
  
     static void _sendwait_callback(AsyncOpNode *, MessageQueue *, void *);      static ThreadReturnType PEGASUS_THREAD_CDECL _req_proc(void *);
  
     AtomicInt _incoming_queue_shutdown;     AtomicInt _incoming_queue_shutdown;
  
 protected:  
     static ThreadPool *_thread_pool;  
   
 private:  
     struct timeval _default_op_timeout;  
     static AtomicInt _xid;  
     friend class cimom;     friend class cimom;
     friend class CIMServer;  
 }; };
  
 PEGASUS_NAMESPACE_END PEGASUS_NAMESPACE_END


Legend:
Removed from v.1.50.12.1  
changed lines
  Added in v.1.78

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2