//%2003//////////////////////////////////////////////////////////////////////// // // 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. // // 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: Karl Schopmeyer (k.schopmeyer@opengrooup.org) // // Modified By: // //%//////////////////////////////////////////////////////////////////////////// #ifndef InteropProvider_h #define InteropProvider_h /////////////////////////////////////////////////////////////////////////////// // Interop Provider /////////////////////////////////////////////////////////////////////////////// #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include PEGASUS_NAMESPACE_BEGIN /** The InteropProvider provides information and manipulates the following classes from the DMTF CIM_Interop schema: CIM_Namespace - Creation and deletion of namespaces __Namespace - Creation and deletion of namespaces (deprecated) CIM_ObjectManager - Reports on the status of the object manager CIM_ObjectManagerCommunicationMechanism - Reports on CIMOM communications COM_CIMXMLCommunicationMechanism - Reports on CIMXML communications CIM_ProtocolAdapter Associations NamespaceinManager creation and deletion of namespaces using the __namespace class Note however, that the DMTF specification model does not define a class for __namespace so that it is, a "false" class. We assume that it has the same characteristics as the CIM_namespace class defined in CIM 2.6. This provider implements the following functions: - createInstance ( adds a new namespace to the repository) - getInstance ( Gets one instance containing a namespace name) - modifyInstance ( Not supported ) - enumerateInstances ( Lists all namespaces as Instances) - enumerateInstanceNames ( Lists all namespace names ) TBD */ class PEGASUS_INTEROPPROVIDER_LINKAGE InteropProvider : public CIMInstanceProvider, public CIMAssociationProvider { public: InteropProvider(CIMRepository* repository) { PEG_METHOD_ENTER(TRC_CONTROLPROVIDER,"InteropProvider::InteropProvider"); _repository = repository; PEG_METHOD_EXIT(); } virtual ~InteropProvider() { PEG_METHOD_ENTER(TRC_CONTROLPROVIDER,"InteropProvider::~InteropProvider"); PEG_METHOD_EXIT(); } virtual void createInstance( const OperationContext & context, const CIMObjectPath & instanceReference, const CIMInstance& myInstance, ObjectPathResponseHandler & handler); virtual void deleteInstance( const OperationContext & context, const CIMObjectPath& instanceName, ResponseHandler & handler); virtual void getInstance( const OperationContext & context, const CIMObjectPath& instanceName, const Boolean includeQualifiers, const Boolean includeClassOrigin, const CIMPropertyList& propertyList, InstanceResponseHandler & handler); void modifyInstance( const OperationContext & context, const CIMObjectPath & instanceReference, const CIMInstance& modifiedIns, const Boolean includeQualifiers, const CIMPropertyList& propertyList, ResponseHandler & handler) { throw PEGASUS_CIM_EXCEPTION(CIM_ERR_NOT_SUPPORTED, ""); } virtual void enumerateInstances( const OperationContext & context, const CIMObjectPath & ref, const Boolean includeQualifiers, const Boolean includeClassOrigin, const CIMPropertyList& propertyList, InstanceResponseHandler & handler); virtual void enumerateInstanceNames( const OperationContext & context, const CIMObjectPath & classReference, ObjectPathResponseHandler & handler); // Association Interfaces // CIMAssociationProvider interface virtual void associators( const OperationContext & context, const CIMObjectPath & objectName, const CIMName & associationClass, const CIMName & resultClass, const String & role, const String & resultRole, const Boolean includeQualifiers, const Boolean includeClassOrigin, const CIMPropertyList & propertyList, ObjectResponseHandler & handler); virtual void associatorNames( const OperationContext & context, const CIMObjectPath & objectName, const CIMName & associationClass, const CIMName & resultClass, const String & role, const String & resultRole, ObjectPathResponseHandler & handler); virtual void references( const OperationContext & context, const CIMObjectPath & objectName, const CIMName & resultClass, const String & role, const Boolean includeQualifiers, const Boolean includeClassOrigin, const CIMPropertyList & propertyList, ObjectResponseHandler & handler); virtual void referenceNames( const OperationContext & context, const CIMObjectPath & objectName, const CIMName & resultClass, const String & role, ObjectPathResponseHandler & handler); /** Standard initialization function for the provider. */ void initialize(CIMOMHandle& cimomHandle) { } void terminate(void) { } private: CIMInstance _buildInstanceSkeleton(const CIMName& className); CIMObjectPath _buildReference(const CIMInstance& instance, const CIMName& className); CIMObjectPath _buildObjectPath(const CIMNamespaceName& name, const CIMName& className, const CIMInstance& instance); CIMObjectPath _buildInstancePath(const CIMNamespaceName& name, const CIMName& className, const CIMInstance& instance); CIMClass _getClass(const CIMNamespaceName& nameSpace, const CIMName& className); Array _enumerateNameSpaces(); CIMInstance _buildInstancePGCIMXMLCommunicationMechanism( const String& namespaceType, const String& IPAddress, const Boolean& includeQualifiers, const Boolean& includeClassOrigin, const CIMPropertyList& propertyList); Array _buildInstancesPGCIMXMLCommunicationMechanism( const Boolean includeQualifiers, const Boolean includeClassOrigin, const CIMPropertyList& propertyList); CIMInstance _buildInstanceCIMObjectManager(const Boolean includeQualifiers, const Boolean includeClassOrigin, const CIMPropertyList& propertyList); Array _getInstancesCIMNamespace(const Boolean& includeQualifiers, const Boolean& includeClassOrigin, const CIMPropertyList& propertyList); CIMInstance _getInstanceCIMNamespace(const CIMNamespaceName & nameSpace); // CIMInstance _buildInstanceCIMNamespace(const CIMNamespaceName & nameSpace); Array _buildInstancesNamespaceInManager(); Array _buildInstancesCommMechanismForManager(); // Repository Instance variable // CIMRepository* _repository; CIMClass * _cimNamespaceClass; CIMNamespaceName _operationNamespace; CIMInstance instanceOfCIMObjectManager; }; PEGASUS_NAMESPACE_END #endif // InteropProvider_h