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

Diff for /pegasus/src/Pegasus/Common/CIMObject.cpp between version 1.14 and 1.38

version 1.14, 2002/05/15 08:11:50 version 1.38, 2006/11/07 21:30:36
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: Roger Kumpf, Hewlett-Packard Company (roger_kumpf@hp.com)  
 //  
 //%///////////////////////////////////////////////////////////////////////////// //%/////////////////////////////////////////////////////////////////////////////
  
 #include "CIMClassRep.h" #include "CIMClassRep.h"
Line 36 
Line 41 
  
 PEGASUS_NAMESPACE_BEGIN PEGASUS_NAMESPACE_BEGIN
  
   #define PEGASUS_ARRAY_T CIMObject
   # include "ArrayImpl.h"
   #undef PEGASUS_ARRAY_T
   
 //////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
 // //
 // CIMObject // CIMObject
Line 77 
Line 86 
     return *this;     return *this;
 } }
  
 CIMObject& CIMObject::operator=(const CIMClass& x)  
 {  
     if (x._rep != _rep)  
     {  
         Dec(_rep);  
         Inc(_rep = x._rep);  
     }  
     return *this;  
 }  
   
 CIMObject& CIMObject::operator=(const CIMInstance& x)  
 {  
     if (x._rep != _rep)  
     {  
         Dec(_rep);  
         Inc(_rep = x._rep);  
     }  
     return *this;  
 }  
   
 CIMObject::~CIMObject() CIMObject::~CIMObject()
 { {
     Dec(_rep);     Dec(_rep);
 } }
  
 const String& CIMObject::getClassName() const  const CIMName& CIMObject::getClassName() const
 { {
     _checkRep();     _checkRep();
     return _rep->getClassName();     return _rep->getClassName();
 } }
  
 const Boolean CIMObject::equalClassName(const String& classname) const  const CIMObjectPath& CIMObject::getPath() const
 { {
     _checkRep();     _checkRep();
     return _rep->equalClassName(classname);      return _rep->getPath();
 } }
  
 const CIMReference& CIMObject::getPath() const  void CIMObject::setPath (const CIMObjectPath & path)
 { {
     _checkRep();     _checkRep();
     return _rep->getPath();      _rep->setPath (path);
 } }
  
 CIMObject& CIMObject::addQualifier(const CIMQualifier& qualifier) CIMObject& CIMObject::addQualifier(const CIMQualifier& qualifier)
Line 127 
Line 116 
     return *this;     return *this;
 } }
  
 Uint32 CIMObject::findQualifier(const String& name) const  Uint32 CIMObject::findQualifier(const CIMName& name) const
 { {
     _checkRep();     _checkRep();
     return _rep->findQualifier(name);     return _rep->findQualifier(name);
 } }
  
 Boolean CIMObject::existsQualifier(const String& name) const  CIMQualifier CIMObject::getQualifier(Uint32 index)
 {  
     _checkRep();  
     return _rep->existsQualifier(name);  
 }  
   
 CIMQualifier CIMObject::getQualifier(Uint32 pos)  
 { {
     _checkRep();     _checkRep();
     return _rep->getQualifier(pos);      return _rep->getQualifier(index);
 } }
  
 CIMConstQualifier CIMObject::getQualifier(Uint32 pos) const  CIMConstQualifier CIMObject::getQualifier(Uint32 index) const
 { {
     _checkRep();     _checkRep();
     return _rep->getQualifier(pos);      return _rep->getQualifier(index);
 } }
  
 void CIMObject::removeQualifier(Uint32 pos)  void CIMObject::removeQualifier(Uint32 index)
 { {
     _checkRep();     _checkRep();
     _rep->removeQualifier(pos);      _rep->removeQualifier(index);
 } }
  
 Uint32 CIMObject::getQualifierCount() const Uint32 CIMObject::getQualifierCount() const
Line 170 
Line 153 
     return *this;     return *this;
 } }
  
 Uint32 CIMObject::findProperty(const String& name) const  Uint32 CIMObject::findProperty(const CIMName& name) const
 { {
     _checkRep();     _checkRep();
     return _rep->findProperty(name);     return _rep->findProperty(name);
 } }
  
 Boolean CIMObject::existsProperty(const String& name) const  CIMProperty CIMObject::getProperty(Uint32 index)
 { {
     _checkRep();     _checkRep();
     return _rep->existsProperty(name);      return _rep->getProperty(index);
 } }
  
 CIMProperty CIMObject::getProperty(Uint32 pos)  CIMConstProperty CIMObject::getProperty(Uint32 index) const
 { {
     _checkRep();     _checkRep();
     return _rep->getProperty(pos);      return _rep->getProperty(index);
 } }
  
 CIMConstProperty CIMObject::getProperty(Uint32 pos) const  void CIMObject::removeProperty(Uint32 index)
 { {
     _checkRep();     _checkRep();
     return _rep->getProperty(pos);      _rep->removeProperty(index);
 }  
   
 void CIMObject::removeProperty(Uint32 pos)  
 {  
     _checkRep();  
     _rep->removeProperty(pos);  
 } }
  
 Uint32 CIMObject::getPropertyCount() const Uint32 CIMObject::getPropertyCount() const
Line 206 
Line 183 
     return _rep->getPropertyCount();     return _rep->getPropertyCount();
 } }
  
 Boolean CIMObject::isNull() const  Boolean CIMObject::isUninitialized() const
 { {
     return (_rep == 0)? true : false;     return (_rep == 0)? true : false;
 } }
  
 Boolean CIMObject::identical(const CIMConstObject& x) const  String CIMObject::toString () const
 { {
     x._checkRep();      Buffer out;
   
     _checkRep();     _checkRep();
     return _rep->identical(x._rep);      _rep->toXml(out);
       out.append('\0');
   
       return out.getData();
   }
   
   Boolean CIMObject::isClass () const
   {
       try
       {
           const CIMClass c (*this);
           return true;
       }
       catch (DynamicCastFailedException&)
       {
           return false;
       }
   }
   
   Boolean CIMObject::isInstance () const
   {
       try
       {
           const CIMInstance i (*this);
           return true;
       }
       catch (DynamicCastFailedException&)
       {
           return false;
       }
 } }
  
 void CIMObject::toXml(Array<Sint8>& out) const  Boolean CIMObject::identical(const CIMConstObject& x) const
 { {
       x._checkRep();
     _checkRep();     _checkRep();
     _rep->toXml(out);      return _rep->identical(x._rep);
 } }
  
 CIMObject CIMObject::clone() const CIMObject CIMObject::clone() const
Line 233 
Line 241 
 void CIMObject::_checkRep() const void CIMObject::_checkRep() const
 { {
     if (!_rep)     if (!_rep)
         ThrowUninitializedHandle();          throw UninitializedObjectException();
 } }
  
 //////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
Line 287 
Line 295 
     return *this;     return *this;
 } }
  
 CIMConstObject& CIMConstObject::operator=(const CIMObject& x)  
 {  
     if (x._rep != _rep)  
     {  
         Dec(_rep);  
         Inc(_rep = x._rep);  
     }  
     return *this;  
 }  
   
 CIMConstObject& CIMConstObject::operator=(const CIMClass& x)  
 {  
     if (x._rep != _rep)  
     {  
         Dec(_rep);  
         Inc(_rep = x._rep);  
     }  
     return *this;  
 }  
   
 CIMConstObject& CIMConstObject::operator=(const CIMInstance& x)  
 {  
     if (x._rep != _rep)  
     {  
         Dec(_rep);  
         Inc(_rep = x._rep);  
     }  
     return *this;  
 }  
   
 CIMConstObject& CIMConstObject::operator=(const CIMConstClass& x)  
 {  
     if (x._rep != _rep)  
     {  
         Dec(_rep);  
         Inc(_rep = x._rep);  
     }  
     return *this;  
 }  
   
 CIMConstObject& CIMConstObject::operator=(const CIMConstInstance& x)  
 {  
     if (x._rep != _rep)  
     {  
         Dec(_rep);  
         Inc(_rep = x._rep);  
     }  
     return *this;  
 }  
   
 CIMConstObject::~CIMConstObject() CIMConstObject::~CIMConstObject()
 { {
     Dec(_rep);     Dec(_rep);
 } }
  
 const String& CIMConstObject::getClassName() const  const CIMName& CIMConstObject::getClassName() const
 { {
     _checkRep();     _checkRep();
     return _rep->getClassName();     return _rep->getClassName();
 } }
  
 const CIMReference& CIMConstObject::getPath() const  const CIMObjectPath& CIMConstObject::getPath() const
 { {
     _checkRep();     _checkRep();
     return _rep->getPath();     return _rep->getPath();
 } }
  
 Uint32 CIMConstObject::findQualifier(const String& name) const  Uint32 CIMConstObject::findQualifier(const CIMName& name) const
 { {
     _checkRep();     _checkRep();
     return _rep->findQualifier(name);     return _rep->findQualifier(name);
 } }
  
 CIMConstQualifier CIMConstObject::getQualifier(Uint32 pos) const  CIMConstQualifier CIMConstObject::getQualifier(Uint32 index) const
 { {
     _checkRep();     _checkRep();
     return _rep->getQualifier(pos);      return _rep->getQualifier(index);
 } }
  
 Uint32 CIMConstObject::getQualifierCount() const Uint32 CIMConstObject::getQualifierCount() const
Line 372 
Line 330 
     return _rep->getQualifierCount();     return _rep->getQualifierCount();
 } }
  
 Uint32 CIMConstObject::findProperty(const String& name) const  Uint32 CIMConstObject::findProperty(const CIMName& name) const
 { {
     _checkRep();     _checkRep();
     return _rep->findProperty(name);     return _rep->findProperty(name);
 } }
  
 CIMConstProperty CIMConstObject::getProperty(Uint32 pos) const  CIMConstProperty CIMConstObject::getProperty(Uint32 index) const
 { {
     _checkRep();     _checkRep();
     return _rep->getProperty(pos);      return _rep->getProperty(index);
 } }
  
 Uint32 CIMConstObject::getPropertyCount() const Uint32 CIMConstObject::getPropertyCount() const
Line 390 
Line 348 
     return _rep->getPropertyCount();     return _rep->getPropertyCount();
 } }
  
 Boolean CIMConstObject::isNull() const  Boolean CIMConstObject::isUninitialized() const
 { {
     return (_rep == 0)? true : false;     return (_rep == 0)? true : false;
 } }
  
 void CIMConstObject::toXml(Array<Sint8>& out) const  String CIMConstObject::toString () const
 { {
     _checkRep();      Buffer out;
     _rep->toXml(out);  
 }  
  
 Boolean CIMConstObject::identical(const CIMConstObject& x) const  
 {  
     x._checkRep();  
     _checkRep();     _checkRep();
     return _rep->identical(x._rep);      _rep->toXml(out);
 }      out.append('\0');
   
 CIMObject CIMConstObject::clone() const  
 {  
     return CIMObject(_rep->clone());  
 }  
  
 void CIMConstObject::_checkRep() const      return out.getData();
 {  
     if (!_rep)  
         ThrowUninitializedHandle();  
 } }
  
 ////////////////////////////////////////////////////////////////////////////////  Boolean CIMConstObject::isClass() const
 //  
 // CIMObjectWithPath  
 //  
 ////////////////////////////////////////////////////////////////////////////////  
   
 CIMObjectWithPath::CIMObjectWithPath()  
 { {
 }      try
   
 CIMObjectWithPath::CIMObjectWithPath(  
     const CIMReference& reference,  
     const CIMObject& object)  
     : _reference(reference), _object(object)  
 { {
           const CIMConstClass c(*this);
           return true;
 } }
       catch (DynamicCastFailedException&)
 CIMObjectWithPath::CIMObjectWithPath(const CIMObjectWithPath& x)  
     : _reference(x._reference), _object(x._object)  
 { {
           return false;
 } }
   
 CIMObjectWithPath::~CIMObjectWithPath()  
 {  
 } }
  
 CIMObjectWithPath& CIMObjectWithPath::operator=(const CIMObjectWithPath& x)  Boolean CIMConstObject::isInstance() const
 { {
     if (this != &x)      try
     {     {
         _reference = x._reference;          const CIMConstInstance i(*this);
         _object = x._object;          return true;
     }     }
     return *this;      catch (DynamicCastFailedException&)
 }  
   
 void CIMObjectWithPath::set(  
     const CIMReference& reference,  
     const CIMObject& object)  
 { {
     _reference = reference;          return false;
     _object = object;  
 } }
   
 const CIMReference& CIMObjectWithPath::getReference() const  
 {  
     return _reference;  
 } }
  
 const CIMObject& CIMObjectWithPath::getObject() const  Boolean CIMConstObject::identical(const CIMConstObject& x) const
 {  
     return _object;  
 }  
   
 CIMReference& CIMObjectWithPath::getReference()  
 { {
     return _reference;      x._checkRep();
       _checkRep();
       return _rep->identical(x._rep);
 } }
  
 CIMObject& CIMObjectWithPath::getObject()  CIMObject CIMConstObject::clone() const
 { {
     return _object;      return CIMObject(_rep->clone());
 } }
  
 void CIMObjectWithPath::toXml(Array<Sint8>& out) const  void CIMConstObject::_checkRep() const
 { {
     out << "<VALUE.OBJECTWITHPATH>\n";      if (!_rep)
           throw UninitializedObjectException();
     _reference.toXml(out, false);  
     _object.toXml(out);  
   
     out << "</VALUE.OBJECTWITHPATH>\n";  
 } }
  
 PEGASUS_NAMESPACE_END PEGASUS_NAMESPACE_END


Legend:
Removed from v.1.14  
changed lines
  Added in v.1.38

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2