(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.6 and 1.40.18.1

version 1.6, 2001/04/26 09:24:45 version 1.40.18.1, 2006/02/10 16:09:34
Line 1 
Line 1 
 //%/////////////////////////////////////////////////////////////////////////////  //%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.
 // //
 // Copyright (c) 2000 The Open Group, BMC Software, Tivoli Systems, IBM  // 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:
 // //
 // Permission is hereby granted, free of charge, to any person obtaining a  // THE ABOVE COPYRIGHT NOTICE AND THIS PERMISSION NOTICE SHALL BE INCLUDED IN
 // copy of this software and associated documentation files (the "Software"),  // ALL COPIES OR SUBSTANTIAL PORTIONS OF THE SOFTWARE. THE SOFTWARE IS PROVIDED
 // to deal in the Software without restriction, including without limitation  // "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
 // the rights to use, copy, modify, merge, publish, distribute, sublicense,  // LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
 // and/or sell copies of the Software, and to permit persons to whom the  // PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
 // Software is furnished to do so, subject to the following conditions:  // 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
 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR  // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 // 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.  
 // //
 //============================================================================== //==============================================================================
 // //
 // 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"
 #include "CIMName.h" #include "CIMName.h"
 #include "XmlWriter.h" #include "XmlWriter.h"
  
   PEGASUS_USING_STD;
   
 PEGASUS_NAMESPACE_BEGIN PEGASUS_NAMESPACE_BEGIN
  
   #define PEGASUS_ARRAY_T CIMInstance
   # include "ArrayImpl.h"
   #undef PEGASUS_ARRAY_T
   
   ////////////////////////////////////////////////////////////////////////////////
   //
   // CIMInstance
   //
   ////////////////////////////////////////////////////////////////////////////////
   
   CIMInstance::CIMInstance()
       : _rep(0)
   {
   }
   
   CIMInstance::CIMInstance(const CIMInstance& x)
   {
       Inc(_rep = x._rep);
   }
   
   CIMInstance::CIMInstance(const CIMObject& x)
   {
       if (!(_rep = dynamic_cast<CIMInstanceRep*>(x._rep)))
           throw DynamicCastFailedException();
       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 index)
   {
       _checkRep();
       return _rep->getQualifier(index);
   }
   
   CIMConstQualifier CIMInstance::getQualifier(Uint32 index) const
   {
       _checkRep();
       return _rep->getQualifier(index);
   }
   
   void CIMInstance::removeQualifier(Uint32 index)
   {
       _checkRep();
       _rep->removeQualifier(index);
   }
   
   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 index)
   {
       _checkRep();
       return _rep->getProperty(index);
   }
   
   CIMConstProperty CIMInstance::getProperty(Uint32 index) const
   {
       _checkRep();
       return _rep->getProperty(index);
   }
   
   void CIMInstance::removeProperty(Uint32 index)
   {
       _checkRep();
       _rep->removeProperty(index);
   }
   
   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
 { {
     x._checkRep();     x._checkRep();
Line 40 
Line 205 
     return _rep->identical(x._rep);     return _rep->identical(x._rep);
 } }
  
 void CIMInstance::resolve(DeclContext* declContext, const String& nameSpace)  CIMInstance CIMInstance::clone() const
   {
       return CIMInstance((CIMInstanceRep*)(_rep->clone()));
   }
   
   CIMObjectPath CIMInstance::buildPath(const CIMConstClass& cimClass) const
   {
       _checkRep();
       return _rep->buildPath(cimClass);
   }
   
   void CIMInstance::_checkRep() const
   {
       if (!_rep)
           throw UninitializedObjectException();
   }
   
   
   void CIMInstance::filter(Boolean includeQualifiers, Boolean includeClassOrigin,
                           const CIMPropertyList& propertyList)
   {
       _checkRep();
       _rep->filter(includeQualifiers, includeClassOrigin, propertyList);
   }
   
   ////////////////////////////////////////////////////////////////////////////////
   //
   // CIMConstInstance
   //
   ////////////////////////////////////////////////////////////////////////////////
   
   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)
   {
       if (!(_rep = dynamic_cast<CIMInstanceRep*>(x._rep)))
           throw DynamicCastFailedException();
       Inc(_rep);
   }
   
   CIMConstInstance::CIMConstInstance(const CIMConstObject& x)
   {
       if (!(_rep = dynamic_cast<CIMInstanceRep*>(x._rep)))
           throw DynamicCastFailedException();
       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();     _checkRep();
     CIMConstClass cimClass;      return _rep->getClassName();
     _rep->resolve(declContext, nameSpace, cimClass);  }
   
   const CIMObjectPath& CIMConstInstance::getPath() const
   {
       _checkRep();
       return _rep->getPath();
   }
   
   Uint32 CIMConstInstance::findQualifier(const CIMName& name) const
   {
       _checkRep();
       return _rep->findQualifier(name);
   }
   
   CIMConstQualifier CIMConstInstance::getQualifier(Uint32 index) const
   {
       _checkRep();
       return _rep->getQualifier(index);
   }
   
   Uint32 CIMConstInstance::getQualifierCount() const
   {
       _checkRep();
       return _rep->getQualifierCount();
   }
   
   Uint32 CIMConstInstance::findProperty(const CIMName& name) const
   {
       _checkRep();
       return _rep->findProperty(name);
   }
   
   CIMConstProperty CIMConstInstance::getProperty(Uint32 index) const
   {
       _checkRep();
       return _rep->getProperty(index);
   }
   
   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::buildPath(const CIMConstClass& cimClass) const
   {
       _checkRep();
       return _rep->buildPath(cimClass);
   }
   
   void CIMConstInstance::_checkRep() const
   {
       if (!_rep)
           throw UninitializedObjectException();
 } }
  
 PEGASUS_NAMESPACE_END PEGASUS_NAMESPACE_END


Legend:
Removed from v.1.6  
changed lines
  Added in v.1.40.18.1

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2