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

  1 karl  1.50 //%2006////////////////////////////////////////////////////////////////////////
  2 mday  1.1  //
  3 karl  1.41 // Copyright (c) 2000, 2001, 2002 BMC Software; Hewlett-Packard Development
  4            // Company, L.P.; IBM Corp.; The Open Group; Tivoli Systems.
  5            // Copyright (c) 2003 BMC Software; Hewlett-Packard Development Company, L.P.;
  6 karl  1.39 // IBM Corp.; EMC Corporation, The Open Group.
  7 karl  1.41 // Copyright (c) 2004 BMC Software; Hewlett-Packard Development Company, L.P.;
  8            // IBM Corp.; EMC Corporation; VERITAS Software Corporation; The Open Group.
  9 karl  1.42 // Copyright (c) 2005 Hewlett-Packard Development Company, L.P.; IBM Corp.;
 10            // EMC Corporation; VERITAS Software Corporation; The Open Group.
 11 karl  1.50 // Copyright (c) 2006 Hewlett-Packard Development Company, L.P.; IBM Corp.;
 12            // EMC Corporation; Symantec Corporation; The Open Group.
 13 mday  1.1  //
 14            // Permission is hereby granted, free of charge, to any person obtaining a copy
 15            // of this software and associated documentation files (the "Software"), to
 16            // deal in the Software without restriction, including without limitation the
 17            // rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
 18            // sell copies of the Software, and to permit persons to whom the Software is
 19            // furnished to do so, subject to the following conditions:
 20 karl  1.50 // 
 21 mday  1.1  // THE ABOVE COPYRIGHT NOTICE AND THIS PERMISSION NOTICE SHALL BE INCLUDED IN
 22            // ALL COPIES OR SUBSTANTIAL PORTIONS OF THE SOFTWARE. THE SOFTWARE IS PROVIDED
 23            // "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
 24            // LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
 25            // PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
 26            // HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
 27            // ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 28            // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 29            //
 30            //==============================================================================
 31            //
 32            // Author: Mike Day (mdday@us.ibm.com)
 33            //
 34 david.dillard 1.45 // Modified By: David Dillard, VERITAS Software Corp.
 35                    //                  (david.dillard@veritas.com)
 36 jim.wunderlich 1.49 //              Jim Wunderlich (Jim_Wunderlich@prodigy.net)
 37 mday           1.1  //
 38                     //%/////////////////////////////////////////////////////////////////////////////
 39                     
 40                     #ifndef Pegasus_MessageQueue_Service_h
 41                     #define Pegasus_MessageQueue_Service_h
 42                     
 43                     #include <Pegasus/Common/Config.h>
 44                     #include <Pegasus/Common/Message.h>
 45 kumpf          1.34 #include <Pegasus/Common/InternalException.h>
 46 mday           1.1  #include <Pegasus/Common/IPC.h>
 47                     #include <Pegasus/Common/Thread.h>
 48                     #include <Pegasus/Common/AsyncOpNode.h>
 49                     #include <Pegasus/Common/Cimom.h>
 50 mike           1.50.12.4 #include <Pegasus/Common/Mutex.h>
 51 mday           1.1       #include <Pegasus/Common/CimomMessage.h>
 52 kumpf          1.33      #include <Pegasus/Common/Linkage.h>
 53 mike           1.50.12.3 #include <Pegasus/Common/RecursiveMutex.h>
 54 mday           1.1       
 55                          PEGASUS_NAMESPACE_BEGIN
 56                          
 57 mday           1.10      extern const Uint32 CIMOM_Q_ID;
 58 mday           1.9       
 59 mday           1.3       class message_module;
 60                          
 61 mike           1.50.12.4 
 62 mike           1.50.12.1 class PEGASUS_COMMON_LINKAGE MessageQueueService : 
 63                              public Linkable, public MessageQueue
 64 mday           1.1       {
 65 david.dillard  1.45      public:
 66                          
 67                              typedef MessageQueue Base;
 68 mday           1.1       
 69 david.dillard  1.45          MessageQueueService(const char *name,
 70                                      Uint32 queueID = MessageQueue::getNextQueueId(),
 71                                      Uint32 capabilities = 0,
 72                                      Uint32 mask = message_mask::type_cimom |
 73                                      message_mask::type_service |
 74                                      message_mask::ha_request |
 75                                      message_mask::ha_reply |
 76                                      message_mask::ha_async );
 77                          
 78                              virtual ~MessageQueueService();
 79                          
 80                              virtual Boolean isAsync() const {  return true;  }
 81                          
 82                              // enqueue may throw an IPCException
 83                              virtual void enqueue(Message *);
 84                          
 85                              AsyncReply *SendWait(AsyncRequest *request);
 86                              Boolean SendAsync(AsyncOpNode *op,
 87                                      Uint32 destination,
 88                                      void (*callback)(AsyncOpNode *, MessageQueue *, void *),
 89                                      MessageQueue *callback_q,
 90 david.dillard  1.45                  void *callback_ptr);
 91                          
 92                              Boolean SendAsync(Message *msg,
 93                                      Uint32 destination,
 94                                      void (*callback)(Message *response, void *handle, void *parameter),
 95                                      void *handle,
 96                                      void *parameter);
 97                          
 98                              Boolean SendForget(Message *msg);
 99                              Boolean ForwardOp(AsyncOpNode *, Uint32 destination);
100                          
101                          
102                              Boolean register_service(String name, Uint32 capabilities, Uint32 mask);
103                              Boolean update_service(Uint32 capabilities, Uint32 mask);
104                              Boolean deregister_service();
105                              virtual void _shutdown_incoming_queue();
106                          
107                              void find_services(String name,
108                                      Uint32 capabilities,
109                                      Uint32 mask,
110                                      Array<Uint32> *results);
111 david.dillard  1.45          void enumerate_service(Uint32 queue, message_module *result);
112                              Uint32 get_next_xid();
113                              static AsyncOpNode *get_op();
114                              void return_op(AsyncOpNode *op);
115                          
116                              Boolean operator ==(const MessageQueueService & svce) const
117                              {
118                                  return operator==((const void *)&svce);
119                              }
120                          
121                              Boolean operator ==(const void *svce) const
122                              {
123                                  if((const void *)this == svce)
124                                      return true;
125                                  return false;
126                              }
127                          
128                              static PEGASUS_THREAD_RETURN PEGASUS_THREAD_CDECL polling_routine(void *);
129                              static PEGASUS_THREAD_RETURN PEGASUS_THREAD_CDECL kill_idle_threads(void *);
130                              static ThreadPool *get_thread_pool();
131                          
132 david.dillard  1.45          Uint32 _mask;
133                              AtomicInt _die;
134 konrad.r       1.48      	AtomicInt _threads;
135 jim.wunderlich 1.49              Uint32 getIncomingCount() {return _incoming.count(); }
136 david.dillard  1.45      
137                          protected:
138                              virtual Boolean accept_async(AsyncOpNode *op);
139                              virtual Boolean messageOK(const Message *msg);
140                              virtual void handleEnqueue() = 0;
141                              virtual void handleEnqueue(Message *) = 0;
142                              Boolean _enqueueResponse(Message *, Message *);
143 mday           1.22      //      virtual void _handle_incoming_operation(AsyncOpNode *operation, Thread *thread, MessageQueue *queue);
144 david.dillard  1.45          virtual void _handle_incoming_operation(AsyncOpNode *);
145                          
146                              virtual void _handle_async_request(AsyncRequest *req);
147                              virtual void _handle_async_callback(AsyncOpNode *operation);
148                              virtual void _make_response(Message *req, Uint32 code);
149                          
150                              virtual void handle_heartbeat_request(AsyncRequest *req);
151                              virtual void handle_heartbeat_reply(AsyncReply *rep);
152                          
153                              virtual void handle_AsyncIoctl(AsyncIoctl *req);
154                              virtual void handle_CimServiceStart(CimServiceStart *req);
155                              virtual void handle_CimServiceStop(CimServiceStop *req);
156                              virtual void handle_CimServicePause(CimServicePause *req);
157                              virtual void handle_CimServiceResume(CimServiceResume *req);
158                          
159                              virtual void handle_AsyncOperationStart(AsyncOperationStart *req);
160                              virtual void handle_AsyncOperationResult(AsyncOperationResult *rep);
161                              virtual void handle_AsyncLegacyOperationStart(AsyncLegacyOperationStart *req);
162                              virtual void handle_AsyncLegacyOperationResult(AsyncLegacyOperationResult *rep);
163                          
164                              void _completeAsyncResponse(AsyncRequest *request,
165 david.dillard  1.45                      AsyncReply *reply,
166                                          Uint32 state,
167                                          Uint32 flag);
168                              void _complete_op_node(AsyncOpNode *, Uint32, Uint32, Uint32);
169                          
170                              static cimom *_meta_dispatcher;
171                              static AtomicInt _service_count;
172                              static Mutex _meta_dispatcher_mutex;
173                          
174                          private:
175 mike           1.50.12.1     AsyncQueue<AsyncOpNode> _incoming;
176 david.dillard  1.45          static Thread* _polling_thread;
177                              static Semaphore _polling_sem;
178                              static AtomicInt _stop_polling;
179                              static AtomicInt _check_idle_flag;
180                          
181 mike           1.50.12.4     typedef List<MessageQueueService, RecursiveMutex> PollingList;
182                              static PollingList* _polling_list;
183                              static Mutex _polling_list_mutex;
184                          
185                              PollingList* _get_polling_list();
186 david.dillard  1.45      
187                              static PEGASUS_THREAD_RETURN PEGASUS_THREAD_CDECL _req_proc(void *);
188                          
189                              static void _sendwait_callback(AsyncOpNode *, MessageQueue *, void *);
190                          
191                              AtomicInt _incoming_queue_shutdown;
192                          
193                          protected:
194                              static ThreadPool *_thread_pool;
195                          
196                          private:
197                              struct timeval _default_op_timeout;
198 kumpf          1.50.12.2     static Mutex _xidMutex;
199                              static Uint32 _xid;
200 david.dillard  1.45          friend class cimom;
201                              friend class CIMServer;
202 mday           1.1       };
203                          
204                          PEGASUS_NAMESPACE_END
205                          
206                          #endif /* Pegasus_MessageQueue_Service_h */

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2