(file) Return to CIMObjectRep.h CVS log (file) (dir) Up to [Pegasus] / pegasus / src / Pegasus / Common

Diff for /pegasus/src/Pegasus/Common/CIMObjectRep.h between version 1.9 and 1.33

version 1.9, 2002/05/02 18:23:45 version 1.33, 2008/03/05 21:31:45
Line 1 
Line 1 
 //%/////////////////////////////////////////////////////////////////////////////  //%2006////////////////////////////////////////////////////////////////////////
 // //
 // Copyright (c) 2000, 2001 The Open group, BMC Software, Tivoli Systems, IBM  // 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 // Permission is hereby granted, free of charge, to any person obtaining a copy
 // of this software and associated documentation files (the "Software"), to // of this software and associated documentation files (the "Software"), to
Line 20 
Line 29 
 // //
 //============================================================================== //==============================================================================
 // //
 // Author: Mike Brasher (mbrasher@bmc.com)  
 //  
 // Modified By:  
 //  
 //%///////////////////////////////////////////////////////////////////////////// //%/////////////////////////////////////////////////////////////////////////////
  
 #ifndef Pegasus_CIMObjectRep_h #ifndef Pegasus_CIMObjectRep_h
 #define Pegasus_CIMObjectRep_h #define Pegasus_CIMObjectRep_h
  
 #include <Pegasus/Common/Config.h> #include <Pegasus/Common/Config.h>
   #include <Pegasus/Common/Linkage.h>
 #include <Pegasus/Common/String.h> #include <Pegasus/Common/String.h>
   #include <Pegasus/Common/Sharable.h>
   #include <Pegasus/Common/CIMName.h>
 #include <Pegasus/Common/CIMProperty.h> #include <Pegasus/Common/CIMProperty.h>
 #include <Pegasus/Common/CIMQualifier.h> #include <Pegasus/Common/CIMQualifier.h>
 #include <Pegasus/Common/CIMQualifierList.h> #include <Pegasus/Common/CIMQualifierList.h>
 #include <Pegasus/Common/Array.h> #include <Pegasus/Common/Array.h>
   #include <Pegasus/Common/OrderedSet.h>
   #include <Pegasus/Common/CIMPropertyRep.h>
  
 PEGASUS_NAMESPACE_BEGIN PEGASUS_NAMESPACE_BEGIN
  
Line 45 
Line 55 
  
     This class contains what is common to CIMClass and CIMInstance.     This class contains what is common to CIMClass and CIMInstance.
 */ */
 class PEGASUS_COMMON_LINKAGE CIMObjectRep : public Sharable  class CIMObjectRep : public Sharable
 { {
 public: public:
  
     CIMObjectRep(const CIMReference& className);      CIMObjectRep(const CIMObjectPath& className);
  
     virtual ~CIMObjectRep();     virtual ~CIMObjectRep();
  
     const String& getClassName() const      const CIMName& getClassName() const
     {     {
         return _reference.getClassName();         return _reference.getClassName();
     }     }
  
     const Boolean equalClassName(const String& classname) const      const CIMObjectPath& getPath() const
     {  
         return (String::equalNoCase(classname, _reference.getClassName()));  
     }  
   
     const CIMReference& getPath() const  
     {     {
         return _reference;         return _reference;
     }     }
  
       /**
         Sets the object path for the object
         @param  path  CIMObjectPath containing the object path
        */
       void setPath (const CIMObjectPath & path);
   
     void addQualifier(const CIMQualifier& qualifier)     void addQualifier(const CIMQualifier& qualifier)
     {     {
         _qualifiers.add(qualifier);         _qualifiers.add(qualifier);
     }     }
  
     Uint32 findQualifier(const String& name) const      Uint32 findQualifier(const CIMName& name) const
     {     {
         return _qualifiers.find(name);         return _qualifiers.find(name);
     }     }
  
     Boolean existsQualifier(const String& name) const      CIMQualifier getQualifier(Uint32 index)
     {  
         return ((_qualifiers.find(name) != PEG_NOT_FOUND) ? true : false);  
     }  
   
     CIMQualifier getQualifier(Uint32 pos)  
     {     {
         return _qualifiers.getQualifier(pos);          return _qualifiers.getQualifier(index);
     }     }
  
     CIMConstQualifier getQualifier(Uint32 pos) const      CIMConstQualifier getQualifier(Uint32 index) const
     {     {
         return _qualifiers.getQualifier(pos);          return _qualifiers.getQualifier(index);
     }     }
  
     Boolean isTrueQualifer(String& name) const      Boolean isTrueQualifer(CIMName& name) const
     {     {
         return _qualifiers.isTrue(name);         return _qualifiers.isTrue(name);
     }     }
Line 103 
Line 109 
         return _qualifiers.getCount();         return _qualifiers.getCount();
     }     }
  
     void removeQualifier(Uint32 pos)      void removeQualifier(Uint32 index)
     {     {
         _qualifiers.removeQualifier(pos);          _qualifiers.removeQualifier(index);
     }     }
  
     virtual void addProperty(const CIMProperty& x);     virtual void addProperty(const CIMProperty& x);
  
     Uint32 findProperty(const String& name) const;      Uint32 findProperty(const CIMName& name, Uint32 nameTag) const
       {
           return _properties.find(name, nameTag);
       }
  
     Boolean existsProperty(const String& name) const;      Uint32 findProperty(const CIMName& name) const
       {
           return _properties.find(name, generateCIMNameTag(name));
       }
  
     CIMProperty getProperty(Uint32 pos);      CIMProperty getProperty(Uint32 index);
  
     CIMConstProperty getProperty(Uint32 pos) const      CIMConstProperty getProperty(Uint32 index) const
     {     {
         return ((CIMObjectRep*)this)->getProperty(pos);          return ((CIMObjectRep*)this)->getProperty(index);
     }     }
  
     void removeProperty(Uint32 pos);      void removeProperty(Uint32 index);
  
     Uint32 getPropertyCount() const;      Uint32 getPropertyCount() const
       {
           return _properties.size();
       }
  
     virtual Boolean identical(const CIMObjectRep* x) const;     virtual Boolean identical(const CIMObjectRep* x) const;
  
     virtual void toXml(Array<Sint8>& out) const = 0;  
   
     virtual void print(PEGASUS_STD(ostream)& os = PEGASUS_STD(cout)) const = 0;  
   
     virtual CIMObjectRep* clone() const = 0;     virtual CIMObjectRep* clone() const = 0;
  
 protected: protected:
  
     CIMObjectRep();  
   
     CIMObjectRep(const CIMObjectRep& x);     CIMObjectRep(const CIMObjectRep& x);
  
     CIMReference _reference;      CIMObjectPath _reference;
     CIMQualifierList _qualifiers;     CIMQualifierList _qualifiers;
     Array<CIMProperty> _properties;      typedef OrderedSet<CIMProperty,
                          CIMPropertyRep,
                          PEGASUS_PROPERTY_ORDEREDSET_HASHSIZE> PropertySet;
       PropertySet _properties;
     Boolean _resolved;     Boolean _resolved;
  
 private: private:
  
     // This method is declared and made private so that the compiler does      CIMObjectRep();    // Unimplemented
     // not implicitly define a default copy constructor.      CIMObjectRep& operator=(const CIMObjectRep& x);    // Unimplemented
     CIMObjectRep& operator=(const CIMObjectRep& x)  
     {  
         PEGASUS_ASSERT(0);  
         return *this;  
     }  
  
     friend class CIMObject;     friend class CIMObject;
       friend class BinaryStreamer;
 }; };
  
 PEGASUS_NAMESPACE_END PEGASUS_NAMESPACE_END


Legend:
Removed from v.1.9  
changed lines
  Added in v.1.33

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2