📄 cimobject.h
字号:
//%2004//////////////////////////////////////////////////////////////////////////// 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.//// 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_Object_h#define Pegasus_Object_h#include <Pegasus/Common/Config.h>#include <Pegasus/Common/Linkage.h>#include <Pegasus/Common/String.h>#include <Pegasus/Common/CIMName.h>#include <Pegasus/Common/Array.h>#include <Pegasus/Common/CIMProperty.h>#include <Pegasus/Common/CIMQualifier.h>PEGASUS_NAMESPACE_BEGINclass CIMConstObject;class CIMObjectRep;class CIMClass;class CIMConstClass;class CIMInstance;class CIMConstInstance;//////////////////////////////////////////////////////////////////////////////////// CIMObject///////////////////////////////////////////////////////////////////////////////////** The CIMObject class is the superclass for the CIMInstance and CIMClass classes. The CIMObjectRep data member points to either a CIMInstanceRep or CIMClassRep.*/class PEGASUS_COMMON_LINKAGE CIMObject{public: /** Creates CIMObject instance with null values (default constructor). */ CIMObject(); /** Creates a new CIMObject instance (copy constructor). @param x Specifies the name of the CIMObject instance to create. */ CIMObject(const CIMObject& x); /** Construction of a CIMObject instance based on the CIMClass object. */ CIMObject(const CIMClass& x); /** Construction of a CIMObject instance based on the CIMInstance object. */ CIMObject(const CIMInstance& x); /** Assign the values of the CIMObject instance to CIMObject. @param x Specifies the name of the CIMObject instance. */ CIMObject& operator=(const CIMObject& x); /** Destroys CIMObject. */ ~CIMObject(); /** Gets the ClassName of the object. @return ClassName of the object in a CIMName parameter. For example, <pre> CIMName className; CIMClass myclass("myclass", "superclass"); className = myclass.getClassName; </pre> */ const CIMName& getClassName() const; /** REVIEWERS: Insert description here. */ const CIMObjectPath& getPath() const; /** Sets the object path for the object. @param path Specifies the CIMObjectPath that contains the object path. */ void setPath (const CIMObjectPath & path); /** Adds the CIMQualifier object to the instance. @param qualifier CIMQualifier object to add to instance. @return The resulting CIMObject. @exception AlreadyExistsException True if the CIMQualifier already exists in the instance; otherwise, false. */ CIMObject& addQualifier(const CIMQualifier& qualifier); /** Searches the instance for the qualifier object defined by the input parameter. @param name CIMName that defines the qualifier object to be found. @return Position of the qualifier to use in subsequent operations or PEG_NOT_FOUND if the qualifier is not found. */ Uint32 findQualifier(const CIMName& name) const; /** Retrieves the qualifier object defined by the input parameter. @param index Specifies the index for the qualifier object. The index to qualifier objects is zero-origin and continuous so that incrementing loops can be used to get all qualifier objects in a CIMInstance. @return CIMQualifier object defined by the index. @exception IndexOutOfBoundsException True if the index is out of bounds; otherwise, false. */ CIMQualifier getQualifier(Uint32 index); /** Retrieves the qualifier object defined by the input parameter. @param index Specifies the index for the qualifier object. The index to qualifier objects is zero-origin and continuous so that incrementing loops can be used to get all qualifier objects in a CIMInstance. @return CIMConstQualifier object defined by the index. @exception IndexOutOfBoundsException True if the index is out of bounds; otherwise, false. */ CIMConstQualifier getQualifier(Uint32 index) const; /** REVIEWERS: Insert description here. */ void removeQualifier(Uint32 index); /** Gets the number of CIMQualifier objects defined for this CIMObject. @return Count of the number of CIMQualifier objects in the CIMObject. */ Uint32 getQualifierCount() const; /** Adds a property object defined by the input parameter to the CIMObject. @param x Property Object to be added. See the CIM Property class for definition of the property object. @return The resulting CIMObject. @exception AlreadyExistsException True if the property already exists otherwise, false. */ CIMObject& addProperty(const CIMProperty& x); /** Searches the CIMProperty objects in the CIMObject for a property object with the name defined by the input parameter. @param name CIMName with the name of the property object to be found. @return Position in the CIM object of the property object if found or PEG_NOT_FOUND if no property object found with the name defined by the input parameter. */ Uint32 findProperty(const CIMName& name) const; /** Gets the CIMProperty object in the CIMObject defined by the input parameter. @param index Specifies the index to the property object in the CIMObject. The index to qualifier objects is zero-origin and continuous so that incrementing loops can be used to get all qualifier objects in a CIMObject. @return CIMProperty object corresponding to the index. @exception IndexOutOfBoundsException True if the index is out of bounds; otherwise, false. */ CIMProperty getProperty(Uint32 index); /** Gets the CIMproperty object in the CIMObject defined by the input parameter. @param index Specifies the index to the property object in the CIMObject. @return CIMProperty object corresponding to the index. @exception IndexOutOfBoundsException True if the index is outside the range of properties in this object; otherwise, false. */ CIMConstProperty getProperty(Uint32 index) const; /** Remove the specified property from the instance. @param index Specifies the index to the property to be removed from the instance. Normally this is obtained by findProperty(); @exception IndexOutOfBoundsException True if the index is outside the range of properties in this object; otherwise, false. */ void removeProperty(Uint32 index); /** Gets the number of CIMProperty objects defined for this CIMObject. @return Count of the number of CIMProperty objects in the CIMObject. Zero indicates that no CIMProperty objects are contained in the CIMObject. */ Uint32 getPropertyCount() const; /** Makes a deep copy (clone) of the given object. @return Copy of the CIMObject. */ CIMObject clone() const; /** Compares with another CIM Object. @param x CIM object for comparison. @return True if the objects are identical; otherwise, false. */ Boolean identical(const CIMConstObject& x) const; /** Determines if the object has not been initialized. @return True if the object has not been initialized; otherwise, false. */ Boolean isUninitialized() const; /** Determines if the object represents a CIMClass. @return True if the object represents a CIMClass; otherwise, false. */ Boolean isClass () const; /** Determines if the object represents a CIMInstance. @return True if the object represents a CIMInstance; otherwise, false. */ Boolean isInstance () const;private: CIMObjectRep* _rep; CIMObject(CIMObjectRep* rep); void _checkRep() const; friend class CIMConstObject; friend class CIMClass; friend class CIMConstClass; friend class CIMInstance; friend class CIMConstInstance;};#define PEGASUS_ARRAY_T CIMObject# include <Pegasus/Common/ArrayInter.h>#undef PEGASUS_ARRAY_T//////////////////////////////////////////////////////////////////////////////////// CIMConstObject///////////////////////////////////////////////////////////////////////////////////**REVIEWERS: Add class defintion here*/class PEGASUS_COMMON_LINKAGE CIMConstObject{public: /** Constructs a new CIMConstObject with null values (default constructor). */ CIMConstObject(); /** Constructs a new CIMConstObject. @param x Specifies the name of the CIMConstObject instance to create. */ CIMConstObject(const CIMConstObject& x); /** Constructs a new CIMConstObject from a CIMObject instance. @param x Specifies the name of the CIMObject instance to use to create the CIMConstObject instance. */ CIMConstObject(const CIMObject& x); /** Constructs a CIMObject instance from a CIMClass instance. @param x Specifies the name of the CIMClass instance. */ CIMConstObject(const CIMClass& x); /** Constructs a CIMObject instance from a CIMInstance instance. @param x Specifies the name of the CIMInstance instance. */ CIMConstObject(const CIMInstance& x); /** Constructs a CIMObject instance from a CIMConstClass instance. @param x Specifies the name of the CIMConstClass instance. */ CIMConstObject(const CIMConstClass& x); /** Constructs a CIMObject instance from a CIMConstInstance instance. @param x Specifies the name of the CIMConstInstance instance. */ CIMConstObject(const CIMConstInstance& x); /** REVIEWERS: Insert description here. @param x Specifies the name of the CIMConstObject instance. */ CIMConstObject& operator=(const CIMConstObject& x); /** CIMConstObject destructor. */ ~CIMConstObject(); /** REVIEWERS: Insert description here. */ const CIMName& getClassName() const; /** REVIEWERS: Insert description here. */ const CIMObjectPath& getPath() const; /** REVIEWERS: Insert description here. @param name Specifies the name of the CIMName instance. */ Uint32 findQualifier(const CIMName& name) const; /** REVIEWERS: Insert description here. @param index Specifies the name of the Uint32 instance. */ CIMConstQualifier getQualifier(Uint32 index) const; /** REVIEWERS: Insert description here. */ Uint32 getQualifierCount() const; /** REVIEWERS: Insert description here. @param name Specifies the name of the CIMName instance. */ Uint32 findProperty(const CIMName& name) const; /** REVIEWERS: Insert description here. @param index Specifies the name of the Uint32 instance. */ CIMConstProperty getProperty(Uint32 index) const; /** REVIEWERS: Insert description here. */ Uint32 getPropertyCount() const; /** REVIEWERS: Insert description here. */ CIMObject clone() const; /** REVIEWERS: Insert description here. */ Boolean identical(const CIMConstObject& x) const; /** REVIEWERS: Insert description here. */ Boolean isUninitialized() const; /** REVIEWERS: Insert description here. */ Boolean isClass() const; /** REVIEWERS: Insert description here. */ Boolean isInstance() const;private: CIMObjectRep* _rep; void _checkRep() const; friend class CIMObject; friend class CIMClass; friend class CIMConstClass; friend class CIMInstance; friend class CIMConstInstance;};PEGASUS_NAMESPACE_END#endif /* Pegasus_Object_h */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -