//%2006//////////////////////////////////////////////////////////////////////// // // 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 // 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. // //============================================================================== // //%///////////////////////////////////////////////////////////////////////////// #ifndef Pegasus_Repository_h #define Pegasus_Repository_h #include #include #include #include #include #include #include #include #include #include #include #include PEGASUS_NAMESPACE_BEGIN class RepositoryDeclContext; class compilerDeclContext; /** This class provides a simple implementation of a CIM repository. Concurrent access is controlled by an internal lock. */ class PEGASUS_REPOSITORY_LINKAGE CIMRepository { public: enum CIMRepositoryMode { MODE_DEFAULT = 0, MODE_XML = 1, MODE_BIN = 2, MODE_COMPRESSED = 4 }; /// Constructor CIMRepository( const String& repositoryRoot, Uint32 mode = CIMRepository::MODE_DEFAULT, RepositoryDeclContext* declContext = 0); /// Descructor ~CIMRepository(); /// getClass CIMClass getClass( const CIMNamespaceName& nameSpace, const CIMName& className, Boolean localOnly = true, Boolean includeQualifiers = true, Boolean includeClassOrigin = false, const CIMPropertyList& propertyList = CIMPropertyList()); /// getInstance CIMInstance getInstance( const CIMNamespaceName& nameSpace, const CIMObjectPath& instanceName, Boolean localOnly = true, Boolean includeQualifiers = false, Boolean includeClassOrigin = false, const CIMPropertyList& propertyList = CIMPropertyList()); /// deleteClass void deleteClass( const CIMNamespaceName& nameSpace, const CIMName& className); /// deleteInstance void deleteInstance( const CIMNamespaceName& nameSpace, const CIMObjectPath& instanceName); /// createClass void createClass( const CIMNamespaceName& nameSpace, const CIMClass& newClass, const ContentLanguageList& contentLangs = ContentLanguageList()); /// createInstance CIMObjectPath createInstance( const CIMNamespaceName& nameSpace, const CIMInstance& newInstance, const ContentLanguageList& contentLangs = ContentLanguageList()); /// modifyClass void modifyClass( const CIMNamespaceName& nameSpace, const CIMClass& modifiedClass, const ContentLanguageList& contentLangs = ContentLanguageList()); /// modifyInstance void modifyInstance( const CIMNamespaceName& nameSpace, const CIMInstance& modifiedInstance, Boolean includeQualifiers = true, const CIMPropertyList& propertyList = CIMPropertyList(), const ContentLanguageList& contentLangs = ContentLanguageList()); /// enumerateClasses Array enumerateClasses( const CIMNamespaceName& nameSpace, const CIMName& className = CIMName(), Boolean deepInheritance = false, Boolean localOnly = true, Boolean includeQualifiers = true, Boolean includeClassOrigin = false); /// enumerateClassNames Array enumerateClassNames( const CIMNamespaceName& nameSpace, const CIMName& className = CIMName(), Boolean deepInheritance = false); /** Enumerates the instances of the specified class and its subclasses. This method mimics the client behavior for the EnumerateInstances operation, but of course it can only return the instances that reside in the repository. This method does not perform deepInheritance filtering regardless of the value given for that parameter. This method is useful mainly for testing purposes, and should not be relied upon for complete results in a CIM Server environment. */ Array enumerateInstancesForSubtree( const CIMNamespaceName& nameSpace, const CIMName& className, Boolean deepInheritance = true, Boolean localOnly = true, Boolean includeQualifiers = false, Boolean includeClassOrigin = false, const CIMPropertyList& propertyList = CIMPropertyList()); /** Enumerates the instances of just the specified class. This method mimics the provider behavior for the EnumerateInstances operation. */ Array enumerateInstancesForClass( const CIMNamespaceName& nameSpace, const CIMName& className, Boolean localOnly = true, Boolean includeQualifiers = false, Boolean includeClassOrigin = false, const CIMPropertyList& propertyList = CIMPropertyList()); /** Enumerates the names of the instances of the specified class and its subclasses. This method mimics the client behavior for the EnumerateInstanceNames operation, but of course it can only return the names of the instances that reside in the repository. This method is useful mainly for testing purposes, and should not be relied upon for complete results in a CIM Server environment. @param nameSpace The namespace in which className resides. @param className The name the class for which to retrieve the instance names. @return An Array of CIMObjectPath objects containing the names of the instances of the specified class in the specified namespace. */ Array enumerateInstanceNamesForSubtree( const CIMNamespaceName& nameSpace, const CIMName& className); /** Enumerates the names of the instances of just the specified class. This method mimics the provider behavior for the EnumerateInstanceNames operation. @param nameSpace The namespace in which className resides. @param className The name the class for which to retrieve the instance names. @return An Array of CIMObjectPath objects containing the names of the instances of the specified class in the specified namespace. */ Array enumerateInstanceNamesForClass( const CIMNamespaceName& nameSpace, const CIMName& className); /// associators Array associators( const CIMNamespaceName& nameSpace, const CIMObjectPath& objectName, const CIMName& assocClass = CIMName(), const CIMName& resultClass = CIMName(), const String& role = String::EMPTY, const String& resultRole = String::EMPTY, Boolean includeQualifiers = false, Boolean includeClassOrigin = false, const CIMPropertyList& propertyList = CIMPropertyList()); /// associatorNames Array associatorNames( const CIMNamespaceName& nameSpace, const CIMObjectPath& objectName, const CIMName& assocClass = CIMName(), const CIMName& resultClass = CIMName(), const String& role = String::EMPTY, const String& resultRole = String::EMPTY); /// references Array references( const CIMNamespaceName& nameSpace, const CIMObjectPath& objectName, const CIMName& resultClass = CIMName(), const String& role = String::EMPTY, Boolean includeQualifiers = false, Boolean includeClassOrigin = false, const CIMPropertyList& propertyList = CIMPropertyList()); /// referenceNames Array referenceNames( const CIMNamespaceName& nameSpace, const CIMObjectPath& objectName, const CIMName& resultClass = CIMName(), const String& role = String::EMPTY); /// getProperty CIMValue getProperty( const CIMNamespaceName& nameSpace, const CIMObjectPath& instanceName, const CIMName& propertyName); /// setProperty void setProperty( const CIMNamespaceName& nameSpace, const CIMObjectPath& instanceName, const CIMName& propertyName, const CIMValue& newValue = CIMValue(), const ContentLanguageList& contentLangs = ContentLanguageList()); /// getQualifier CIMQualifierDecl getQualifier( const CIMNamespaceName& nameSpace, const CIMName& qualifierName); /// setQualifier void setQualifier( const CIMNamespaceName& nameSpace, const CIMQualifierDecl& qualifierDecl, const ContentLanguageList& contentLangs = ContentLanguageList()); /// deleteQualifier void deleteQualifier( const CIMNamespaceName& nameSpace, const CIMName& qualifierName); /// enumerateQualifiers Array enumerateQualifiers( const CIMNamespaceName& nameSpace); typedef HashTable NameSpaceAttributes; /** CIMMethod createNameSpace - Creates a new namespace in the repository @param String with the name of the namespace @exception - Throws "Already_Exists if the Namespace exits. Throws "CannotCreateDirectory" if there are problems in the creation. */ void createNameSpace(const CIMNamespaceName& nameSpace, const NameSpaceAttributes& attributes = NameSpaceAttributes()); void modifyNameSpace(const CIMNamespaceName& nameSpace, const NameSpaceAttributes& attributes = NameSpaceAttributes()); /** CIMMethod enumerateNameSpaces - Get all of the namespaces in the repository. \Ref{NAMESPACE} @return Array of strings with the namespaces */ Array enumerateNameSpaces() const; /** CIMMethod deleteNameSpace - Deletes a namespace in the repository. The deleteNameSpace method will only delete a namespace if there are no classed defined in the namespace. Today this is a Pegasus characteristics and not defined as part of the DMTF standards. @param String with the name of the namespace @exception - Throws NoSuchDirectory if the Namespace does not exist. */ void deleteNameSpace(const CIMNamespaceName& nameSpace); Boolean getNameSpaceAttributes( const CIMNamespaceName& nameSpace, NameSpaceAttributes& attributes); //////////////////////////////////////////////////////////////////////////// /** Indicates whether instance operations that do not have a provider registered should be served by this repository. */ Boolean isDefaultInstanceProvider(); /** Get subclass names of the given class in the given namespace. @param nameSpaceName @param className - class whose subclass names will be gotten. If className is empty, all classnames are returned. @param deepInheritance - if true all descendent classes of class are returned. If className is empty, only root classes are returned. @param subClassNames - output argument to hold subclass names. @exception CIMException(CIM_ERR_INVALID_CLASS) */ void getSubClassNames( const CIMNamespaceName& nameSpaceName, const CIMName& className, Boolean deepInheritance, Array& subClassNames) const; /** Get the names of all superclasses (direct and indirect) of this class. */ void getSuperClassNames( const CIMNamespaceName& nameSpaceName, const CIMName& className, Array& subClassNames) const; Boolean isRemoteNameSpace( const CIMNamespaceName& nameSpaceName, String& remoteInfo); #ifdef PEGASUS_DEBUG void DisplayCacheStatistics(); #endif protected: // Internal getClass implementation that does not do access control CIMClass _getClass( const CIMNamespaceName& nameSpace, const CIMName& className, Boolean localOnly, Boolean includeQualifiers, Boolean includeClassOrigin, const CIMPropertyList& propertyList); /// Internal getInstance implementation that does not do access control CIMInstance _getInstance( const CIMNamespaceName& nameSpace, const CIMObjectPath& instanceName, Boolean localOnly, Boolean includeQualifiers, Boolean includeClassOrigin, const CIMPropertyList& propertyList, Boolean resolveInstance); /// Internal createClass implementation that does not do access control void _createClass( const CIMNamespaceName& nameSpace, const CIMClass& newClass); /// Internal createInstance implementation that does not do access control CIMObjectPath _createInstance( const CIMNamespaceName& nameSpace, const CIMInstance& newInstance); /// Internal modifyClass implementation that does not do access control void _modifyClass( const CIMNamespaceName& nameSpace, const CIMClass& modifiedClass); /// Internal associatorNames implementation that does not do access control Array _associatorNames( const CIMNamespaceName& nameSpace, const CIMObjectPath& objectName, const CIMName& assocClass, const CIMName& resultClass, const String& role, const String& resultRole); /// Internal referenceNames implementation that does not do access control Array _referenceNames( const CIMNamespaceName& nameSpace, const CIMObjectPath& objectName, const CIMName& resultClass, const String& role); /// Internal getQualifier implementation that does not do access control CIMQualifierDecl _getQualifier( const CIMNamespaceName& nameSpace, const CIMName& qualifierName); /// Internal setQualifier implementation that does not do access control void _setQualifier( const CIMNamespaceName& nameSpace, const CIMQualifierDecl& qualifierDecl); private: class CIMRepositoryRep* _rep; friend class compilerDeclContext; friend class RepositoryDeclContext; }; PEGASUS_NAMESPACE_END #endif /* Pegasus_Repository_h */