//%///////////////////////////////////////////////////////////////////////////// // // Copyright (c) 2000, 2001 The Open group, BMC Software, Tivoli Systems, IBM // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to // deal in the Software without restriction, including without limitation the // rights to use, copy, modify, merge, publish, distribute, sublicense, and/or // sell copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // // THE ABOVE COPYRIGHT NOTICE AND THIS PERMISSION NOTICE SHALL BE INCLUDED IN // ALL COPIES OR SUBSTANTIAL PORTIONS OF THE SOFTWARE. THE SOFTWARE IS PROVIDED // "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT // LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR // PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT // HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN // 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 Brasher (mbrasher@bmc.com) // // Modified By: // //%///////////////////////////////////////////////////////////////////////////// #ifndef Pegasus_Message_h #define Pegasus_Message_h #include #include PEGASUS_NAMESPACE_BEGIN class MessageQueue; /** The Message class and derived classes are used to pass messages between modules. Messages are passed between modules using the message queues (see MessageQueue class). Derived classes may add their own fields. This base class defines two common fields: type, which is the type of the message, and key which is a key value whose meaning is defined by the derived class. The MessageQueue class provides methods for finding messages by both type and key. The Message class also provides previous and next pointers which are used to place the messages on a queue by the MessageQueue class. */ class PEGASUS_COMMON_LINKAGE Message { public: Message(Uint32 type, Uint32 key = getNextKey()) : _type(type), _key(key), _next(0), _prev(0) { } virtual ~Message(); Uint32 getType() const { return _type; } void setType(Uint32 type) { _type = type; } Uint32 getKey() const { return _key; } void setKey(Uint32 key) { _key = key; } Message* getNext() { return _next; } const Message* getNext() const { return _next; } Message* getPrevious() { return _prev; } const Message* getPrevious() const { return _prev; } static Uint32 getNextKey() { return ++_nextKey; } virtual void print(PEGASUS_STD(ostream)& os) const; private: Uint32 _type; Uint32 _key; Message* _next; Message* _prev; MessageQueue* _owner; static Uint32 _nextKey; friend class MessageQueue; }; enum MessageType { DUMMY_MESSAGE, // CIM Message types: CIM_GET_CLASS_REQUEST_MESSAGE, CIM_GET_INSTANCE_REQUEST_MESSAGE, CIM_DELETE_CLASS_REQUEST_MESSAGE, CIM_DELETE_INSTANCE_REQUEST_MESSAGE, CIM_CREATE_CLASS_REQUEST_MESSAGE, CIM_CREATE_INSTANCE_REQUEST_MESSAGE, CIM_MODIFY_CLASS_REQUEST_MESSAGE, CIM_MODIFY_INSTANCE_REQUEST_MESSAGE, CIM_ENUMERATE_CLASSES_REQUEST_MESSAGE, CIM_ENUMERATE_CLASS_NAMES_REQUEST_MESSAGE, CIM_ENUMERATE_INSTANCES_REQUEST_MESSAGE, CIM_ENUMERATE_INSTANCE_NAMES_REQUEST_MESSAGE, CIM_EXEC_QUERY_REQUEST_MESSAGE, CIM_ASSOCIATORS_REQUEST_MESSAGE, CIM_ASSOCIATOR_NAMES_REQUEST_MESSAGE, CIM_REFERENCES_REQUEST_MESSAGE, CIM_REFERENCE_NAMES_REQUEST_MESSAGE, CIM_GET_PROPERTY_REQUEST_MESSAGE, CIM_SET_PROPERTY_REQUEST_MESSAGE, CIM_GET_QUALIFIER_REQUEST_MESSAGE, CIM_SET_QUALIFIER_REQUEST_MESSAGE, CIM_DELETE_QUALIFIER_REQUEST_MESSAGE, CIM_ENUMERATE_QUALIFIERS_REQUEST_MESSAGE, CIM_INVOKE_METHOD_REQUEST_MESSAGE, CIM_GET_CLASS_RESPONSE_MESSAGE, CIM_GET_INSTANCE_RESPONSE_MESSAGE, CIM_DELETE_CLASS_RESPONSE_MESSAGE, CIM_DELETE_INSTANCE_RESPONSE_MESSAGE, CIM_CREATE_CLASS_RESPONSE_MESSAGE, CIM_CREATE_INSTANCE_RESPONSE_MESSAGE, CIM_MODIFY_CLASS_RESPONSE_MESSAGE, CIM_MODIFY_INSTANCE_RESPONSE_MESSAGE, CIM_ENUMERATE_CLASSES_RESPONSE_MESSAGE, CIM_ENUMERATE_CLASS_NAMES_RESPONSE_MESSAGE, CIM_ENUMERATE_INSTANCES_RESPONSE_MESSAGE, CIM_ENUMERATE_INSTANCE_NAMES_RESPONSE_MESSAGE, CIM_EXEC_QUERY_RESPONSE_MESSAGE, CIM_ASSOCIATORS_RESPONSE_MESSAGE, CIM_ASSOCIATOR_NAMES_RESPONSE_MESSAGE, CIM_REFERENCES_RESPONSE_MESSAGE, CIM_REFERENCE_NAMES_RESPONSE_MESSAGE, CIM_GET_PROPERTY_RESPONSE_MESSAGE, CIM_SET_PROPERTY_RESPONSE_MESSAGE, CIM_GET_QUALIFIER_RESPONSE_MESSAGE, CIM_SET_QUALIFIER_RESPONSE_MESSAGE, CIM_DELETE_QUALIFIER_RESPONSE_MESSAGE, CIM_ENUMERATE_QUALIFIERS_RESPONSE_MESSAGE, CIM_INVOKE_METHOD_RESPONSE_MESSAGE, // Monitor-related messages: SOCKET_MESSAGE, // Connection-oriented messages: CLOSE_CONNECTION_MESSAGE, // HTTP messages: HTTP_MESSAGE, NUMBER_OF_MESSAGES }; PEGASUS_COMMON_LINKAGE const char* MessageTypeToString(Uint32 messageType); PEGASUS_NAMESPACE_END #endif /* Pegasus_Message_h */