(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.17 and 1.50

version 1.17, 2002/05/07 03:55:28 version 1.50, 2008/12/02 09:00:42
Line 1 
Line 1 
 //%/////////////////////////////////////////////////////////////////////////////  //%LICENSE////////////////////////////////////////////////////////////////
 //  
 // Copyright (c) 2000, 2001 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:  
 // //
 // THE ABOVE COPYRIGHT NOTICE AND THIS PERMISSION NOTICE SHALL BE INCLUDED IN  // Licensed to The Open Group (TOG) under one or more contributor license
 // ALL COPIES OR SUBSTANTIAL PORTIONS OF THE SOFTWARE. THE SOFTWARE IS PROVIDED  // agreements.  Refer to the OpenPegasusNOTICE.txt file distributed with
 // "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT  // this work for additional information regarding copyright ownership.
 // LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR  // Each contributor licenses this file to you under the OpenPegasus Open
 // PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT  // Source License; you may not use this file except in compliance with the
 // HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN  // License.
 // 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.  // 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:
   //
   // The above copyright notice and this permission notice shall be included
   // in all copies or substantial portions of the Software.
   //
   // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
   // OR 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)  
 //  
 // Modified By: Roger Kumpf, Hewlett-Packard Company (roger_kumpf@hp.com)  
 // //
 //%///////////////////////////////////////////////////////////////////////////// //%/////////////////////////////////////////////////////////////////////////////
  
 #include "CIMInstanceRep.h" #include "CIMInstanceRep.h"
 #include "CIMInstance.h" #include "CIMInstance.h"
 #include "DeclContext.h" #include "DeclContext.h"
 #include "Indentor.h"  
 #include "CIMName.h" #include "CIMName.h"
 #include "XmlWriter.h"  
  
 PEGASUS_USING_STD; PEGASUS_USING_STD;
  
Line 54 
Line 55 
  
 CIMInstance::CIMInstance(const CIMInstance& x) CIMInstance::CIMInstance(const CIMInstance& x)
 { {
     Inc(_rep = x._rep);      _rep = x._rep;
       if (_rep)
           _rep->Inc();
 } }
  
 CIMInstance::CIMInstance(const CIMObject& x) throw(DynamicCastFailed)  CIMInstance::CIMInstance(const CIMObject& x)
 { {
     if (!(_rep = dynamic_cast<CIMInstanceRep*>(x._rep)))     if (!(_rep = dynamic_cast<CIMInstanceRep*>(x._rep)))
         throw DynamicCastFailed();          throw DynamicCastFailedException();
     Inc(_rep);      _rep->Inc();
 } }
  
 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 78 
Line 82 
 { {
     if (x._rep != _rep)     if (x._rep != _rep)
     {     {
         Dec(_rep);          if (_rep)
         Inc(_rep = x._rep);              _rep->Dec();
           _rep = x._rep;
           if (_rep)
               _rep->Inc();
     }     }
     return *this;     return *this;
 } }
  
 CIMInstance::~CIMInstance() CIMInstance::~CIMInstance()
 { {
     Dec(_rep);      if (_rep)
           _rep->Dec();
 } }
  
 const String& CIMInstance::getClassName() const  const CIMName& CIMInstance::getClassName() const
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->getClassName();     return _rep->getClassName();
 } }
  
 const Boolean CIMInstance::equalClassName(const String& classname) const  const CIMObjectPath& CIMInstance::getPath() const
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->equalClassName(classname);      return _rep->getPath();
   
 } }
  
 const CIMReference& CIMInstance::getPath() const  void CIMInstance::setPath (const CIMObjectPath & path)
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->getPath();      _rep->setPath (path);
 } }
  
 CIMInstance& CIMInstance::addQualifier(const CIMQualifier& qualifier) CIMInstance& CIMInstance::addQualifier(const CIMQualifier& qualifier)
 { {
     _checkRep();      CheckRep(_rep);
     _rep->addQualifier(qualifier);     _rep->addQualifier(qualifier);
     return *this;     return *this;
 } }
  
 Uint32 CIMInstance::findQualifier(const String& name) const  Uint32 CIMInstance::findQualifier(const CIMName& name) const
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->findQualifier(name);     return _rep->findQualifier(name);
 } }
  
 Boolean CIMInstance::existsQualifier(const String& name) const  CIMQualifier CIMInstance::getQualifier(Uint32 index)
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->existsQualifier(name);      return _rep->getQualifier(index);
 } }
  
 CIMQualifier CIMInstance::getQualifier(Uint32 pos)  CIMConstQualifier CIMInstance::getQualifier(Uint32 index) const
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->getQualifier(pos);      return _rep->getQualifier(index);
 } }
  
 CIMConstQualifier CIMInstance::getQualifier(Uint32 pos) const  void CIMInstance::removeQualifier(Uint32 index)
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->getQualifier(pos);      _rep->removeQualifier(index);
 } }
  
 Uint32 CIMInstance::getQualifierCount() const Uint32 CIMInstance::getQualifierCount() const
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->getQualifierCount();     return _rep->getQualifierCount();
 } }
  
 CIMInstance& CIMInstance::addProperty(const CIMProperty& x) CIMInstance& CIMInstance::addProperty(const CIMProperty& x)
 { {
     _checkRep();      CheckRep(_rep);
     _rep->addProperty(x);     _rep->addProperty(x);
     return *this;     return *this;
 } }
  
 Uint32 CIMInstance::findProperty(const String& name) const  Uint32 CIMInstance::findProperty(const CIMName& name) const
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->findProperty(name);     return _rep->findProperty(name);
 } }
  
 Boolean CIMInstance::existsProperty(const String& name) const  CIMProperty CIMInstance::getProperty(Uint32 index)
 {  
    _checkRep();  
    return _rep->existsProperty(name);  
 }  
   
 CIMProperty CIMInstance::getProperty(Uint32 pos)  
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->getProperty(pos);      return _rep->getProperty(index);
 } }
  
 CIMConstProperty CIMInstance::getProperty(Uint32 pos) const  CIMConstProperty CIMInstance::getProperty(Uint32 index) const
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->getProperty(pos);      return _rep->getProperty(index);
 } }
  
 void CIMInstance::removeProperty(Uint32 pos)  void CIMInstance::removeProperty(Uint32 index)
 { {
     _checkRep();      CheckRep(_rep);
     _rep->removeProperty(pos);      _rep->removeProperty(index);
 } }
  
 Uint32 CIMInstance::getPropertyCount() const Uint32 CIMInstance::getPropertyCount() const
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->getPropertyCount();     return _rep->getPropertyCount();
 } }
  
 CIMInstance::operator int() const  Boolean CIMInstance::isUninitialized() const
 { {
     return (_rep != 0);      return _rep == 0;
 } }
  
 Boolean CIMInstance::identical(const CIMConstInstance& x) const Boolean CIMInstance::identical(const CIMConstInstance& x) const
 { {
     x._checkRep();      CheckRep(x._rep);
     _checkRep();      CheckRep(_rep);
     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);  
 }  
   
 void CIMInstance::toXml(Array<Sint8>& out) const  
 {  
     _checkRep();  
     _rep->toXml(out);  
 }  
   
 void CIMInstance::print(PEGASUS_STD(ostream)& o) const  
 {  
     _checkRep();  
     _rep->print(o);  
 }  
   
 void CIMInstance::toMof(Array<Sint8>& out) const  
 {  
     _checkRep();  
     _rep->toMof(out);  
 }  
   
 CIMInstance CIMInstance::clone() const CIMInstance CIMInstance::clone() const
 { {
     return CIMInstance((CIMInstanceRep*)(_rep->clone()));     return CIMInstance((CIMInstanceRep*)(_rep->clone()));
 } }
  
 CIMReference CIMInstance::getInstanceName(const CIMConstClass& cimClass) const  CIMObjectPath CIMInstance::buildPath(const CIMConstClass& cimClass) const
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->getInstanceName(cimClass);      return _rep->buildPath(cimClass);
 } }
  
 String CIMInstance::toString() const  void CIMInstance::filter(Boolean includeQualifiers, Boolean includeClassOrigin,
                           const CIMPropertyList& propertyList)
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->toString();      _rep->filter(includeQualifiers, includeClassOrigin, propertyList);
 }  
   
 void CIMInstance::_checkRep() const  
 {  
     if (!_rep)  
         ThrowUninitializedHandle();  
 } }
  
 //////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
Line 274 
Line 232 
  
 CIMConstInstance::CIMConstInstance(const CIMConstInstance& x) CIMConstInstance::CIMConstInstance(const CIMConstInstance& x)
 { {
     Inc(_rep = x._rep);      _rep = x._rep;
       if (_rep)
           _rep->Inc();
 } }
  
 CIMConstInstance::CIMConstInstance(const CIMInstance& x) CIMConstInstance::CIMConstInstance(const CIMInstance& x)
 { {
     Inc(_rep = x._rep);      _rep = x._rep;
       if (_rep)
           _rep->Inc();
 } }
  
 CIMConstInstance::CIMConstInstance(const CIMObject& x) throw(DynamicCastFailed)  CIMConstInstance::CIMConstInstance(const CIMObject& x)
 { {
     if (!(_rep = dynamic_cast<CIMInstanceRep*>(x._rep)))     if (!(_rep = dynamic_cast<CIMInstanceRep*>(x._rep)))
         throw DynamicCastFailed();          throw DynamicCastFailedException();
     Inc(_rep);      _rep->Inc();
 } }
  
 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 DynamicCastFailedException();
     Inc(_rep);      _rep->Inc();
 } }
  
 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)
 { {
     if (x._rep != _rep)     if (x._rep != _rep)
     {     {
         Dec(_rep);          if (_rep)
         Inc(_rep = x._rep);              _rep->Dec();
           _rep = x._rep;
           if (_rep)
               _rep->Inc();
     }     }
     return *this;     return *this;
 } }
Line 316 
Line 281 
 { {
     if (x._rep != _rep)     if (x._rep != _rep)
     {     {
         Dec(_rep);          if (_rep)
         Inc(_rep = x._rep);              _rep->Dec();
           _rep = x._rep;
           if (_rep)
               _rep->Inc();
     }     }
     return *this;     return *this;
 } }
  
 CIMConstInstance::~CIMConstInstance() CIMConstInstance::~CIMConstInstance()
 { {
     Dec(_rep);      if (_rep)
           _rep->Dec();
 } }
  
 const String& CIMConstInstance::getClassName() const  const CIMName& CIMConstInstance::getClassName() const
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->getClassName();     return _rep->getClassName();
 } }
  
 const Boolean CIMConstInstance::equalClassName(const String& classname) const  const CIMObjectPath& CIMConstInstance::getPath() const
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->equalClassName(classname);  
 }  
   
 const CIMReference& CIMConstInstance::getPath() const  
 {  
     _checkRep();  
     return _rep->getPath();     return _rep->getPath();
 } }
  
 Uint32 CIMConstInstance::findQualifier(const String& name) const  Uint32 CIMConstInstance::findQualifier(const CIMName& name) const
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->findQualifier(name);     return _rep->findQualifier(name);
 } }
  
 CIMConstQualifier CIMConstInstance::getQualifier(Uint32 pos) const  CIMConstQualifier CIMConstInstance::getQualifier(Uint32 index) const
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->getQualifier(pos);      return _rep->getQualifier(index);
 } }
  
 Uint32 CIMConstInstance::getQualifierCount() const Uint32 CIMConstInstance::getQualifierCount() const
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->getQualifierCount();     return _rep->getQualifierCount();
 } }
  
 Uint32 CIMConstInstance::findProperty(const String& name) const  Uint32 CIMConstInstance::findProperty(const CIMName& name) const
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->findProperty(name);     return _rep->findProperty(name);
 } }
  
 CIMConstProperty CIMConstInstance::getProperty(Uint32 pos) const  CIMConstProperty CIMConstInstance::getProperty(Uint32 index) const
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->getProperty(pos);      return _rep->getProperty(index);
 } }
  
 Uint32 CIMConstInstance::getPropertyCount() const Uint32 CIMConstInstance::getPropertyCount() const
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->getPropertyCount();     return _rep->getPropertyCount();
 } }
  
 CIMConstInstance::operator int() const  Boolean CIMConstInstance::isUninitialized() const
 {  
     return (_rep != 0);  
 }  
   
 void CIMConstInstance::toXml(Array<Sint8>& out) const  
 {  
     _checkRep();  
     _rep->toXml(out);  
 }  
   
 void CIMConstInstance::print(PEGASUS_STD(ostream)& o) const  
 { {
     _checkRep();      return _rep == 0;
     _rep->print(o);  
 } }
  
 Boolean CIMConstInstance::identical(const CIMConstInstance& x) const Boolean CIMConstInstance::identical(const CIMConstInstance& x) const
 { {
     x._checkRep();      CheckRep(x._rep);
     _checkRep();      CheckRep(_rep);
     return _rep->identical(x._rep);     return _rep->identical(x._rep);
 } }
  
Line 410 
Line 361 
     return CIMInstance((CIMInstanceRep*)(_rep->clone()));     return CIMInstance((CIMInstanceRep*)(_rep->clone()));
 } }
  
 CIMReference CIMConstInstance::getInstanceName(const CIMConstClass& cimClass) const  CIMObjectPath CIMConstInstance::buildPath(const CIMConstClass& cimClass) const
 {  
     _checkRep();  
     return _rep->getInstanceName(cimClass);  
 }  
   
 String CIMConstInstance::toString() const  
 {  
     _checkRep();  
     return _rep->toString();  
 }  
   
 void CIMConstInstance::_checkRep() const  
 { {
     if (!_rep)      CheckRep(_rep);
         ThrowUninitializedHandle();      return _rep->buildPath(cimClass);
 } }
  
 PEGASUS_NAMESPACE_END PEGASUS_NAMESPACE_END


Legend:
Removed from v.1.17  
changed lines
  Added in v.1.50

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2