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

Diff for /pegasus/src/Pegasus/Common/CIMInstance.cpp between version 1.25 and 1.32

version 1.25, 2002/06/01 00:56:24 version 1.32, 2002/08/20 17:39:37
Line 61 
Line 61 
     Inc(_rep = x._rep);     Inc(_rep = x._rep);
 } }
  
 CIMInstance::CIMInstance(const CIMObject& x) throw(DynamicCastFailed)  CIMInstance::CIMInstance(const CIMObject& x) throw(DynamicCastFailedException)
 { {
     if (!(_rep = dynamic_cast<CIMInstanceRep*>(x._rep)))     if (!(_rep = dynamic_cast<CIMInstanceRep*>(x._rep)))
         throw DynamicCastFailed();          throw DynamicCastFailedException();
     Inc(_rep);     Inc(_rep);
 } }
  
 CIMInstance::CIMInstance(const String& className)  CIMInstance::CIMInstance(const CIMName& className)
 { {
     _rep = new CIMInstanceRep(className);      _rep = new CIMInstanceRep(CIMObjectPath(String::EMPTY, CIMNamespaceName(), className));
 } }
  
 CIMInstance::CIMInstance(CIMInstanceRep* rep) CIMInstance::CIMInstance(CIMInstanceRep* rep)
Line 93 
Line 93 
     Dec(_rep);     Dec(_rep);
 } }
  
 const String& CIMInstance::getClassName() const  const CIMName& CIMInstance::getClassName() const
 { {
     _checkRep();     _checkRep();
     return _rep->getClassName();     return _rep->getClassName();
Line 118 
Line 118 
     return *this;     return *this;
 } }
  
 Uint32 CIMInstance::findQualifier(const String& name) const  Uint32 CIMInstance::findQualifier(const CIMName& name) const
 { {
     _checkRep();     _checkRep();
     return _rep->findQualifier(name);     return _rep->findQualifier(name);
 } }
  
 Boolean CIMInstance::existsQualifier(const String& name) const  
 {  
     _checkRep();  
     return _rep->existsQualifier(name);  
 }  
   
 CIMQualifier CIMInstance::getQualifier(Uint32 pos) CIMQualifier CIMInstance::getQualifier(Uint32 pos)
 { {
     _checkRep();     _checkRep();
Line 155 
Line 149 
     return *this;     return *this;
 } }
  
 Uint32 CIMInstance::findProperty(const String& name) const  Uint32 CIMInstance::findProperty(const CIMName& name) const
 { {
     _checkRep();     _checkRep();
     return _rep->findProperty(name);     return _rep->findProperty(name);
 } }
  
 Boolean CIMInstance::existsProperty(const String& name) const  CIMProperty CIMInstance::getProperty(Uint32 pos) throw(IndexOutOfBoundsException)
 {  
    _checkRep();  
    return _rep->existsProperty(name);  
 }  
   
 CIMProperty CIMInstance::getProperty(Uint32 pos) throw(OutOfBounds)  
 { {
     _checkRep();     _checkRep();
     return _rep->getProperty(pos);     return _rep->getProperty(pos);
 } }
  
 CIMConstProperty CIMInstance::getProperty(Uint32 pos) const throw(OutOfBounds)  CIMConstProperty CIMInstance::getProperty(Uint32 pos) const throw(IndexOutOfBoundsException)
 { {
     _checkRep();     _checkRep();
     return _rep->getProperty(pos);     return _rep->getProperty(pos);
 } }
  
 void CIMInstance::removeProperty(Uint32 pos)  throw(OutOfBounds)  void CIMInstance::removeProperty(Uint32 pos)  throw(IndexOutOfBoundsException)
 { {
     _checkRep();     _checkRep();
     _rep->removeProperty(pos);     _rep->removeProperty(pos);
Line 191 
Line 179 
     return _rep->getPropertyCount();     return _rep->getPropertyCount();
 } }
  
 Boolean CIMInstance::isNull() const  Boolean CIMInstance::isUninitialized() const
 { {
     return (_rep == 0)? true : false;     return (_rep == 0)? true : false;
 } }
Line 203 
Line 191 
     return _rep->identical(x._rep);     return _rep->identical(x._rep);
 } }
  
 void CIMInstance::resolve(  
     DeclContext* declContext,  
     const String& nameSpace,  
     Boolean propagateQualifiers)  
 {  
     _checkRep();  
     CIMConstClass cimClass;  
     _rep->resolve(declContext, nameSpace, cimClass, propagateQualifiers);  
 }  
   
 void CIMInstance::resolve(  
     DeclContext* declContext,  
     const String& nameSpace,  
     CIMConstClass& cimClassOut,  
     Boolean propagateQualifiers)  
 {  
     _checkRep();  
     _rep->resolve(declContext, nameSpace, cimClassOut, propagateQualifiers);  
 }  
   
 CIMInstance CIMInstance::clone() const CIMInstance CIMInstance::clone() const
 { {
     return CIMInstance((CIMInstanceRep*)(_rep->clone()));     return CIMInstance((CIMInstanceRep*)(_rep->clone()));
 } }
  
 CIMObjectPath CIMInstance::getInstanceName(const CIMConstClass& cimClass) const  CIMObjectPath CIMInstance::buildPath(const CIMConstClass& cimClass) const
 { {
     _checkRep();     _checkRep();
     return _rep->getInstanceName(cimClass);      return _rep->buildPath(cimClass);
 } }
  
 String CIMInstance::toString() const String CIMInstance::toString() const
Line 243 
Line 211 
 void CIMInstance::_checkRep() const void CIMInstance::_checkRep() const
 { {
     if (!_rep)     if (!_rep)
         ThrowUninitializedHandle();          throw UninitializedObjectException();
 } }
  
 //////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
Line 267 
Line 235 
     Inc(_rep = x._rep);     Inc(_rep = x._rep);
 } }
  
 CIMConstInstance::CIMConstInstance(const CIMObject& x) throw(DynamicCastFailed)  CIMConstInstance::CIMConstInstance(const CIMObject& x) throw(DynamicCastFailedException)
 { {
     if (!(_rep = dynamic_cast<CIMInstanceRep*>(x._rep)))     if (!(_rep = dynamic_cast<CIMInstanceRep*>(x._rep)))
         throw DynamicCastFailed();          throw DynamicCastFailedException();
     Inc(_rep);     Inc(_rep);
 } }
  
 CIMConstInstance::CIMConstInstance(const CIMConstObject& x) CIMConstInstance::CIMConstInstance(const CIMConstObject& x)
     throw(DynamicCastFailed)      throw(DynamicCastFailedException)
 { {
     if (!(_rep = dynamic_cast<CIMInstanceRep*>(x._rep)))     if (!(_rep = dynamic_cast<CIMInstanceRep*>(x._rep)))
         throw DynamicCastFailed();          throw DynamicCastFailedException();
     Inc(_rep);     Inc(_rep);
 } }
  
 CIMConstInstance::CIMConstInstance(const String& className)  CIMConstInstance::CIMConstInstance(const CIMName& className)
 { {
     _rep = new CIMInstanceRep(className);      _rep = new CIMInstanceRep(CIMObjectPath(String::EMPTY, CIMNamespaceName(), className));
 } }
  
 CIMConstInstance& CIMConstInstance::operator=(const CIMConstInstance& x) CIMConstInstance& CIMConstInstance::operator=(const CIMConstInstance& x)
Line 312 
Line 280 
     Dec(_rep);     Dec(_rep);
 } }
  
 const String& CIMConstInstance::getClassName() const  const CIMName& CIMConstInstance::getClassName() const
 { {
     _checkRep();     _checkRep();
     return _rep->getClassName();     return _rep->getClassName();
Line 324 
Line 292 
     return _rep->getPath();     return _rep->getPath();
 } }
  
 Uint32 CIMConstInstance::findQualifier(const String& name) const  Uint32 CIMConstInstance::findQualifier(const CIMName& name) const
 { {
     _checkRep();     _checkRep();
     return _rep->findQualifier(name);     return _rep->findQualifier(name);
Line 342 
Line 310 
     return _rep->getQualifierCount();     return _rep->getQualifierCount();
 } }
  
 Uint32 CIMConstInstance::findProperty(const String& name) const  Uint32 CIMConstInstance::findProperty(const CIMName& name) const
 { {
     _checkRep();     _checkRep();
     return _rep->findProperty(name);     return _rep->findProperty(name);
Line 360 
Line 328 
     return _rep->getPropertyCount();     return _rep->getPropertyCount();
 } }
  
 Boolean CIMConstInstance::isNull() const  Boolean CIMConstInstance::isUninitialized() const
 { {
     return (_rep == 0)? true : false;     return (_rep == 0)? true : false;
 } }
Line 377 
Line 345 
     return CIMInstance((CIMInstanceRep*)(_rep->clone()));     return CIMInstance((CIMInstanceRep*)(_rep->clone()));
 } }
  
 CIMObjectPath CIMConstInstance::getInstanceName(const CIMConstClass& cimClass) const  CIMObjectPath CIMConstInstance::buildPath(const CIMConstClass& cimClass) const
 { {
     _checkRep();     _checkRep();
     return _rep->getInstanceName(cimClass);      return _rep->buildPath(cimClass);
 } }
  
 String CIMConstInstance::toString() const String CIMConstInstance::toString() const
Line 392 
Line 360 
 void CIMConstInstance::_checkRep() const void CIMConstInstance::_checkRep() const
 { {
     if (!_rep)     if (!_rep)
         ThrowUninitializedHandle();          throw UninitializedObjectException();
 }  
   
   
 Boolean operator==(const CIMInstance& x, const CIMInstance& y)  
 {  
     return x.identical(y);  
 } }
  
 PEGASUS_NAMESPACE_END PEGASUS_NAMESPACE_END


Legend:
Removed from v.1.25  
changed lines
  Added in v.1.32

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2