(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.13 and 1.29

version 1.13, 2002/03/22 00:48:56 version 1.29, 2002/07/31 22:05:08
Line 1 
Line 1 
 //%///////////////////////////////////////////////////////////////////////////// //%/////////////////////////////////////////////////////////////////////////////
 // //
 // Copyright (c) 2000, 2001 The Open group, BMC Software, Tivoli Systems, IBM  // Copyright (c) 2000, 2001, 2002 BMC Software, Hewlett-Packard Company, IBM,
   // The Open Group, Tivoli Systems
 // //
 // 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 22 
Line 23 
 // //
 // Author: Mike Brasher (mbrasher@bmc.com) // Author: Mike Brasher (mbrasher@bmc.com)
 // //
 // Modified By:  // Modified By: Roger Kumpf, Hewlett-Packard Company (roger_kumpf@hp.com)
   //                              Karl Schopmeyer, (k.schopmeyer@opengroup.org)
   //              Carol Ann Krug Graves, Hewlett-Packard Company
   //                  (carolann_graves@hp.com)
 // //
 //%///////////////////////////////////////////////////////////////////////////// //%/////////////////////////////////////////////////////////////////////////////
  
   #include "CIMInstanceRep.h"
 #include "CIMInstance.h" #include "CIMInstance.h"
 #include "DeclContext.h" #include "DeclContext.h"
 #include "Indentor.h" #include "Indentor.h"
Line 46 
Line 51 
 // //
 //////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
  
 CIMInstance::CIMInstance(const CIMObject& x)  CIMInstance::CIMInstance()
       : _rep(0)
   {
   }
   
   CIMInstance::CIMInstance(const CIMInstance& x)
   {
       Inc(_rep = x._rep);
   }
   
   CIMInstance::CIMInstance(const CIMObject& x) throw(DynamicCastFailed)
 { {
     if (!(_rep = dynamic_cast<CIMInstanceRep*>(x._rep)))     if (!(_rep = dynamic_cast<CIMInstanceRep*>(x._rep)))
         throw DynamicCastFailed();         throw DynamicCastFailed();
       Inc(_rep);
   }
   
   CIMInstance::CIMInstance(const CIMName& className)
   {
       _rep = new CIMInstanceRep(CIMObjectPath(String::EMPTY, CIMNamespaceName(), className));
   }
   
   CIMInstance::CIMInstance(CIMInstanceRep* rep)
       : _rep(rep)
   {
   }
   
   CIMInstance& CIMInstance::operator=(const CIMInstance& x)
   {
       if (x._rep != _rep)
       {
           Dec(_rep);
           Inc(_rep = x._rep);
       }
       return *this;
   }
   
   CIMInstance::~CIMInstance()
   {
       Dec(_rep);
   }
   
   const CIMName& CIMInstance::getClassName() const
   {
       _checkRep();
       return _rep->getClassName();
   }
   
   const CIMObjectPath& CIMInstance::getPath() const
   {
       _checkRep();
       return _rep->getPath();
   }
   
   void CIMInstance::setPath (const CIMObjectPath & path)
   {
       _checkRep ();
       _rep->setPath (path);
   }
   
   CIMInstance& CIMInstance::addQualifier(const CIMQualifier& qualifier)
   {
       _checkRep();
       _rep->addQualifier(qualifier);
       return *this;
   }
   
   Uint32 CIMInstance::findQualifier(const CIMName& name) const
   {
       _checkRep();
       return _rep->findQualifier(name);
   }
   
   CIMQualifier CIMInstance::getQualifier(Uint32 pos)
   {
       _checkRep();
       return _rep->getQualifier(pos);
 } }
  
 CIMInstance::CIMInstance(const CIMObject& x, NoThrow&)  CIMConstQualifier CIMInstance::getQualifier(Uint32 pos) const
 { {
     _rep = dynamic_cast<CIMInstanceRep*>(x._rep);      _checkRep();
       return _rep->getQualifier(pos);
   }
   
   Uint32 CIMInstance::getQualifierCount() const
   {
       _checkRep();
       return _rep->getQualifierCount();
   }
   
   CIMInstance& CIMInstance::addProperty(const CIMProperty& x)
   {
       _checkRep();
       _rep->addProperty(x);
       return *this;
   }
   
   Uint32 CIMInstance::findProperty(const CIMName& name) const
   {
       _checkRep();
       return _rep->findProperty(name);
   }
   
   CIMProperty CIMInstance::getProperty(Uint32 pos) throw(OutOfBounds)
   {
       _checkRep();
       return _rep->getProperty(pos);
   }
   
   CIMConstProperty CIMInstance::getProperty(Uint32 pos) const throw(OutOfBounds)
   {
       _checkRep();
       return _rep->getProperty(pos);
   }
   
   void CIMInstance::removeProperty(Uint32 pos)  throw(OutOfBounds)
   {
       _checkRep();
       _rep->removeProperty(pos);
   }
   
   Uint32 CIMInstance::getPropertyCount() const
   {
       _checkRep();
       return _rep->getPropertyCount();
   }
   
   Boolean CIMInstance::isUninitialized() const
   {
       return (_rep == 0)? true : false;
 } }
  
 Boolean CIMInstance::identical(const CIMConstInstance& x) const Boolean CIMInstance::identical(const CIMConstInstance& x) const
Line 64 
Line 191 
     return _rep->identical(x._rep);     return _rep->identical(x._rep);
 } }
  
 void CIMInstance::resolve(  CIMInstance CIMInstance::clone() const
     DeclContext* declContext,  {
     const String& nameSpace,      return CIMInstance((CIMInstanceRep*)(_rep->clone()));
     Boolean propagateQualifiers)  }
   
   CIMObjectPath CIMInstance::getInstanceName(const CIMConstClass& cimClass) const
   {
       _checkRep();
       return _rep->getInstanceName(cimClass);
   }
   
   String CIMInstance::toString() const
 { {
     _checkRep();     _checkRep();
     CIMConstClass cimClass;      return _rep->toString();
     _rep->resolve(declContext, nameSpace, cimClass, propagateQualifiers);  }
   
   void CIMInstance::_checkRep() const
   {
       if (!_rep)
           ThrowUninitializedObject();
 } }
  
 //////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
Line 80 
Line 220 
 // //
 //////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
  
 CIMConstInstance::CIMConstInstance(const CIMObject& x)  CIMConstInstance::CIMConstInstance()
       : _rep(0)
   {
   }
   
   CIMConstInstance::CIMConstInstance(const CIMConstInstance& x)
   {
       Inc(_rep = x._rep);
   }
   
   CIMConstInstance::CIMConstInstance(const CIMInstance& x)
   {
       Inc(_rep = x._rep);
   }
   
   CIMConstInstance::CIMConstInstance(const CIMObject& x) throw(DynamicCastFailed)
 { {
     if (!(_rep = dynamic_cast<CIMInstanceRep*>(x._rep)))     if (!(_rep = dynamic_cast<CIMInstanceRep*>(x._rep)))
         throw DynamicCastFailed();         throw DynamicCastFailed();
       Inc(_rep);
 } }
  
 CIMConstInstance::CIMConstInstance(const CIMConstObject& x) CIMConstInstance::CIMConstInstance(const CIMConstObject& x)
       throw(DynamicCastFailed)
 { {
     if (!(_rep = dynamic_cast<CIMInstanceRep*>(x._rep)))     if (!(_rep = dynamic_cast<CIMInstanceRep*>(x._rep)))
         throw DynamicCastFailed();         throw DynamicCastFailed();
       Inc(_rep);
   }
   
   CIMConstInstance::CIMConstInstance(const CIMName& className)
   {
       _rep = new CIMInstanceRep(CIMObjectPath(String::EMPTY, CIMNamespaceName(), className));
   }
   
   CIMConstInstance& CIMConstInstance::operator=(const CIMConstInstance& x)
   {
       if (x._rep != _rep)
       {
           Dec(_rep);
           Inc(_rep = x._rep);
       }
       return *this;
   }
   
   CIMConstInstance& CIMConstInstance::operator=(const CIMInstance& x)
   {
       if (x._rep != _rep)
       {
           Dec(_rep);
           Inc(_rep = x._rep);
       }
       return *this;
   }
   
   CIMConstInstance::~CIMConstInstance()
   {
       Dec(_rep);
   }
   
   const CIMName& CIMConstInstance::getClassName() const
   {
       _checkRep();
       return _rep->getClassName();
   }
   
   const CIMObjectPath& CIMConstInstance::getPath() const
   {
       _checkRep();
       return _rep->getPath();
   }
   
   Uint32 CIMConstInstance::findQualifier(const CIMName& name) const
   {
       _checkRep();
       return _rep->findQualifier(name);
 } }
  
 CIMConstInstance::CIMConstInstance(const CIMObject& x, NoThrow&)  CIMConstQualifier CIMConstInstance::getQualifier(Uint32 pos) const
 { {
     _rep = dynamic_cast<CIMInstanceRep*>(x._rep);      _checkRep();
       return _rep->getQualifier(pos);
   }
   
   Uint32 CIMConstInstance::getQualifierCount() const
   {
       _checkRep();
       return _rep->getQualifierCount();
 } }
  
 CIMConstInstance::CIMConstInstance(const CIMConstObject& x, NoThrow&)  Uint32 CIMConstInstance::findProperty(const CIMName& name) const
   {
       _checkRep();
       return _rep->findProperty(name);
   }
   
   CIMConstProperty CIMConstInstance::getProperty(Uint32 pos) const
   {
       _checkRep();
       return _rep->getProperty(pos);
   }
   
   Uint32 CIMConstInstance::getPropertyCount() const
   {
       _checkRep();
       return _rep->getPropertyCount();
   }
   
   Boolean CIMConstInstance::isUninitialized() const
   {
       return (_rep == 0)? true : false;
   }
   
   Boolean CIMConstInstance::identical(const CIMConstInstance& x) const
   {
       x._checkRep();
       _checkRep();
       return _rep->identical(x._rep);
   }
   
   CIMInstance CIMConstInstance::clone() const
   {
       return CIMInstance((CIMInstanceRep*)(_rep->clone()));
   }
   
   CIMObjectPath CIMConstInstance::getInstanceName(const CIMConstClass& cimClass) const
   {
       _checkRep();
       return _rep->getInstanceName(cimClass);
   }
   
   String CIMConstInstance::toString() const
   {
       _checkRep();
       return _rep->toString();
   }
   
   void CIMConstInstance::_checkRep() const
   {
       if (!_rep)
           ThrowUninitializedObject();
   }
   
   
   Boolean operator==(const CIMInstance& x, const CIMInstance& y)
 { {
     _rep = dynamic_cast<CIMInstanceRep*>(x._rep);      return x.identical(y);
 } }
  
 PEGASUS_NAMESPACE_END PEGASUS_NAMESPACE_END


Legend:
Removed from v.1.13  
changed lines
  Added in v.1.29

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2