//%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_Instance_h #define Pegasus_Instance_h #include #include #include #include #include PEGASUS_NAMESPACE_BEGIN //////////////////////////////////////////////////////////////////////////////// // // CIMInstance // //////////////////////////////////////////////////////////////////////////////// class CIMConstInstance; class CIMInstanceRep; class Resolver; /** The CIMInstance class represents the DMTF standard CIM instance definition.

The CIMInstance class uses a shared representation model, such that multiple CIMInstance objects may refer to the same data copy. Assignment and copy operators create new references to the same data, not distinct copies. An update to a CIMInstance object affects all the CIMInstance objects that refer to the same data copy. The data remains valid until all the CIMInstance objects that refer to it are destructed. A separate copy of the data may be created using the clone method. */ class PEGASUS_COMMON_LINKAGE CIMInstance { public: /** Constructs an uninitialized CIMInstance object. A method invocation on an uninitialized object will result in the throwing of an UninitializedObjectException. An uninitialized object may be converted into an initialized object only by using the assignment operator with an initialized object. */ CIMInstance(); /** Constructs a CIMInstance object from the value of a specified CIMInstance object, so that both objects refer to the same data copy. @param x The CIMInstance object from which to construct a new CIMInstance object. */ CIMInstance(const CIMInstance& x); /** Constructs a CIMInstance object from the value of a specified CIMObject object, so that both objects refer to the same data copy. @param x The CIMObject object from which to construct the CIMInstance object. @exception DynamicCastFailedException If a CIMInstance can not be created from the given CIMObject. */ explicit CIMInstance(const CIMObject& x); /** Constructs a CIMInstance object with the specified class name. @param className A CIMName specifying the class name of the instance. */ CIMInstance(const CIMName& className); /** Assigns the value of the specified CIMInstance object to this object, so that both objects refer to the same data copy. @param x The CIMInstance object from which to assign this CIMInstance object. @return A reference to this CIMInstance object. */ CIMInstance& operator=(const CIMInstance& x); /** Destructs the CIMInstance object. */ ~CIMInstance(); /** Gets the class name of the instance. @return A CIMName containing the class name. @exception UninitializedObjectException If the object is not initialized. */ const CIMName& getClassName() const; /** Gets the object path for the instance. @return A CIMObjectPath containing the object path. @exception UninitializedObjectException If the object is not initialized. */ const CIMObjectPath& getPath() const; /** Sets the object path for the instance. @param path A CIMObjectPath containing the object path. @exception UninitializedObjectException If the object is not initialized. */ void setPath (const CIMObjectPath & path); /** Adds a qualifier to the instance. @param qualifier The CIMQualifier to be added. @return A reference to this CIMInstance object. @exception AlreadyExistsException If a qualifier with the same name already exists in the CIMInstance. @exception UninitializedObjectException If the object is not initialized. */ CIMInstance& addQualifier(const CIMQualifier& qualifier); /** Finds a qualifier by name. @param name A CIMName specifying the name of the qualifier to be found. @return Index of the qualifier if found or PEG_NOT_FOUND if not found. @exception UninitializedObjectException If the object is not initialized. */ Uint32 findQualifier(const CIMName& name) const; /** Gets the qualifier at the specified index. @param index The index of the qualifier to be retrieved. @return The CIMQualifier at the specified index. @exception IndexOutOfBoundsException If the index is outside the range of qualifiers available for the CIMInstance. @exception UninitializedObjectException If the object is not initialized. */ CIMQualifier getQualifier(Uint32 index); /** Gets the qualifier at the specified index. @param index The index of the qualifier to be retrieved. @return The CIMConstQualifier at the specified index. @exception IndexOutOfBoundsException If the index is outside the range of qualifiers available for the CIMInstance. @exception UninitializedObjectException If the object is not initialized. */ CIMConstQualifier getQualifier(Uint32 index) const; /** Removes a qualifier from the instance. @param index The index of the qualifier to remove. @exception IndexOutOfBoundsException If the index is outside the range of qualifiers available for the CIMInstance. @exception UninitializedObjectException If the object is not initialized. */ void removeQualifier(Uint32 index); /** Gets the number of qualifiers in the instance. @return An integer count of the qualifiers in the CIMInstance. @exception UninitializedObjectException If the object is not initialized. */ Uint32 getQualifierCount() const; /** Adds a property to the instance. @param x The CIMProperty to be added. @return A reference to this CIMInstance object. @exception AlreadyExistsException If a property with the same name already exists in the CIMInstance. @exception UninitializedObjectException If the object is not initialized. */ CIMInstance& addProperty(const CIMProperty& x); /** Finds a property by name. @param name A CIMName specifying the name of the property to be found. @return Index of the property if found or PEG_NOT_FOUND if not found. @exception UninitializedObjectException If the object is not initialized. */ Uint32 findProperty(const CIMName& name) const; /** Gets the property at the specified index. @param index The index of the property to be retrieved. @return The CIMProperty at the specified index. @exception IndexOutOfBoundsException If the index is outside the range of properties available for the CIMInstance. @exception UninitializedObjectException If the object is not initialized. */ CIMProperty getProperty(Uint32 index); /** Gets the property at the specified index. @param index The index of the property to be retrieved. @return The CIMConstProperty at the specified index. @exception IndexOutOfBoundsException If the index is outside the range of properties available for the CIMInstance. @exception UninitializedObjectException If the object is not initialized. */ CIMConstProperty getProperty(Uint32 index) const; /** Removes a property from the instance. @param index The index of the property to remove. @exception IndexOutOfBoundsException If the index is outside the range of properties available for the CIMInstance. @exception UninitializedObjectException If the object is not initialized. */ void removeProperty(Uint32 index); /** Gets the number of properties in the instance. @return An integer count of the properties in the CIMInstance. @exception UninitializedObjectException If the object is not initialized. */ Uint32 getPropertyCount() const; /** Builds the object path for this instance, based on the class name and property values in the instance and the Key qualifiers on the properties in the class definition. The returned object path does not include hostname and namespace attributes. Note that this method does not update the path attribute of the CIMInstance. @return A CIMObjectPath containing the object path for the instance. @exception UninitializedObjectException If the object is not initialized. */ CIMObjectPath buildPath(const CIMConstClass& cimClass) const; /** Makes a deep copy of the instance. This creates a new copy of all the instance attributes including qualifiers and properties. @return A new copy of the CIMInstance object. @exception UninitializedObjectException If the object is not initialized. */ CIMInstance clone() const; /** Compares the CIMInstance with a specified CIMConstInstance. @param x The CIMConstInstance to be compared. @return True if this instance is identical to the one specified, false otherwise. @exception UninitializedObjectException If the object is not initialized. */ Boolean identical(const CIMConstInstance& x) const; /** Determines whether the object has been initialized. @return True if the object has not been initialized, false otherwise. */ Boolean isUninitialized() const; #ifdef PEGASUS_USE_EXPERIMENTAL_INTERFACES /** Experimental Interface
Filter the properties, qualifiers and class origin attributes from the instance based on specified filtering criteria. Information is not added by this method, it is only removed. This method is specifically designed to allow providers to filter instances based on CIM operation parameters. @param includeQualifiers A Boolean indicating whether qualifiers are preserved in the instance and its properties. If false, existing qualifiers are removed; otherwise, qualifiers are not removed. Because the CIM specification is unclear on the meaning of this parameter and its relationship to instance operations, the behavior when this parameter is true MAY change in the future based on clarifications of the CIM specification. @param includeClassOrigin A Boolean indicating whether ClassOrigin attributes are preserved in the properties. If false, ClassOrigin attributes are removed from all properties; otherwise, ClassOrigin attributes are not removed. @param propertyList A CIMPropertyList defining the properties that are preserved in the instance. If the propertyList is not NULL, properties absent from this list are removed from the instance. If the propertyList is NULL, no properties are removed from the instance. @exception UninitializedObjectException If the object is not initialized. */ void filter( Boolean includeQualifiers, Boolean includeClassOrigin, const CIMPropertyList & propertyList); #endif private: CIMInstanceRep* _rep; CIMInstance(CIMInstanceRep* rep); void _checkRep() const; friend class CIMConstInstance; friend class CIMObject; friend class CIMConstObject; friend class Resolver; friend class XmlWriter; friend class MofWriter; friend class BinaryStreamer; friend class CIMClassRep; }; //////////////////////////////////////////////////////////////////////////////// // // CIMConstInstance // //////////////////////////////////////////////////////////////////////////////// /** The CIMConstInstance class provides a const interface to a CIMInstance object. This class is needed because the shared representation model used by CIMInstance does not prevent modification to a const CIMInstance object. Note that the value of a CIMConstInstance object could still be modified by a CIMInstance object that refers to the same data copy. */ class PEGASUS_COMMON_LINKAGE CIMConstInstance { public: /** Constructs an uninitialized CIMConstInstance object. A method invocation on an uninitialized object will result in the throwing of an UninitializedObjectException. An uninitialized object may be converted into an initialized object only by using the assignment operator with an initialized object. */ CIMConstInstance(); /** Constructs a CIMConstInstance object from the value of a specified CIMConstInstance object, so that both objects refer to the same data copy. @param x The CIMConstInstance object from which to construct a new CIMConstInstance object. */ CIMConstInstance(const CIMConstInstance& x); /** Constructs a CIMConstInstance object from the value of a specified CIMInstance object, so that both objects refer to the same data copy. @param x The CIMInstance object from which to construct a new CIMConstInstance object. */ CIMConstInstance(const CIMInstance& x); /** Constructs a CIMConstInstance object from the value of a specified CIMObject object, so that both objects refer to the same data copy. @param x The CIMObject object from which to construct the CIMConstInstance object. @exception DynamicCastFailedException If a CIMConstInstance can not be created from the given CIMObject. */ explicit CIMConstInstance(const CIMObject& x); /** Constructs a CIMConstInstance object from the value of a specified CIMConstObject object, so that both objects refer to the same data copy. @param x The CIMConstObject object from which to construct the CIMConstInstance object. @exception DynamicCastFailedException If a CIMConstInstance can not be created from the given CIMConstObject. */ explicit CIMConstInstance(const CIMConstObject& x); /** Constructs a CIMConstInstance object with the specified class name. @param className A CIMName specifying the class name of the instance. */ CIMConstInstance(const CIMName& className); /** Assigns the value of the specified CIMConstInstance object to this object, so that both objects refer to the same data copy. @param x The CIMConstInstance object from which to assign this CIMConstInstance object. @return A reference to this CIMConstInstance object. */ CIMConstInstance& operator=(const CIMConstInstance& x); /** Assigns the value of the specified CIMInstance object to this object, so that both objects refer to the same data copy. @param x The CIMInstance object from which to assign this CIMConstInstance object. @return A reference to this CIMConstInstance object. */ CIMConstInstance& operator=(const CIMInstance& x); /** Destructs the CIMConstInstance object. */ ~CIMConstInstance(); /** Gets the class name of the instance. @return A CIMName containing the class name. @exception UninitializedObjectException If the object is not initialized. */ const CIMName& getClassName() const; /** Gets the object path for the instance. @return A CIMObjectPath containing the object path. @exception UninitializedObjectException If the object is not initialized. */ const CIMObjectPath& getPath() const; /** Finds a qualifier by name. @param name A CIMName specifying the name of the qualifier to be found. @return Index of the qualifier if found or PEG_NOT_FOUND if not found. @exception UninitializedObjectException If the object is not initialized. */ Uint32 findQualifier(const CIMName& name) const; /** Gets the qualifier at the specified index. @param index The index of the qualifier to be retrieved. @return The CIMConstQualifier at the specified index. @exception IndexOutOfBoundsException If the index is outside the range of qualifiers available for the CIMConstInstance. @exception UninitializedObjectException If the object is not initialized. */ CIMConstQualifier getQualifier(Uint32 index) const; /** Gets the number of qualifiers in the instance. @return An integer count of the qualifiers in the CIMInstance. @exception UninitializedObjectException If the object is not initialized. */ Uint32 getQualifierCount() const; /** Finds a property by name. @param name A CIMName specifying the name of the property to be found. @return Index of the property if found or PEG_NOT_FOUND if not found. @exception UninitializedObjectException If the object is not initialized. */ Uint32 findProperty(const CIMName& name) const; /** Gets the property at the specified index. @param index The index of the property to be retrieved. @return The CIMConstProperty at the specified index. @exception IndexOutOfBoundsException If the index is outside the range of properties available for the CIMConstInstance. @exception UninitializedObjectException If the object is not initialized. */ CIMConstProperty getProperty(Uint32 index) const; /** Gets the number of properties in the instance. @return An integer count of the properties in the CIMConstInstance. @exception UninitializedObjectException If the object is not initialized. */ Uint32 getPropertyCount() const; /** Builds the object path for this instance, based on the class name and property values in the instance and the Key qualifiers on the properties in the class definition. The returned object path does not include hostname and namespace attributes. Note that this method does not update the path attribute of the CIMInstance. @return A CIMObjectPath containing the object path for the instance. @exception UninitializedObjectException If the object is not initialized. */ CIMObjectPath buildPath(const CIMConstClass& cimClass) const; /** Makes a deep copy of the instance. This creates a new copy of all the instance attributes including qualifiers and properties. @return A CIMInstance object with a separate copy of the CIMConstInstance object. @exception UninitializedObjectException If the object is not initialized. */ CIMInstance clone() const; /** Compares the CIMConstInstance with a specified CIMConstInstance. @param x The CIMConstInstance to be compared. @return True if this instance is identical to the one specified, false otherwise. @exception UninitializedObjectException If the object is not initialized. */ Boolean identical(const CIMConstInstance& x) const; /** Determines whether the object has been initialized. @return True if the object has not been initialized, false otherwise. */ Boolean isUninitialized() const; private: CIMInstanceRep* _rep; void _checkRep() const; friend class CIMInstance; friend class CIMObject; friend class CIMConstObject; friend class XmlWriter; friend class MofWriter; friend class BinaryStreamer; }; #define PEGASUS_ARRAY_T CIMInstance # include #undef PEGASUS_ARRAY_T PEGASUS_NAMESPACE_END #endif /* Pegasus_Instance_h */