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

Diff for /pegasus/src/Pegasus/Common/CIMClassRep.cpp between version 1.19 and 1.20

version 1.19, 2001/12/13 14:53:49 version 1.20, 2001/12/22 02:15:15
Line 38 
Line 38 
 CIMClassRep::CIMClassRep( CIMClassRep::CIMClassRep(
     const String& className,     const String& className,
     const String& superClassName)     const String& superClassName)
     : _className(className), _superClassName(superClassName), _resolved(false)      :
       CIMObjectRep(className),
       _superClassName(superClassName)
 { {
     if (!CIMName::legal(className))  
         throw IllegalName();  
   
     if (superClassName.size() && !CIMName::legal(superClassName))     if (superClassName.size() && !CIMName::legal(superClassName))
         throw IllegalName();         throw IllegalName();
 } }
Line 121 
Line 120 
     _properties.append(x);     _properties.append(x);
 } }
  
   
 Uint32 CIMClassRep::findProperty(const String& name)  
 {  
     for (Uint32 i = 0, n = _properties.size(); i < n; i++)  
     {  
         if (CIMName::equal(_properties[i].getName(), name))  
             return i;  
     }  
   
     return PEG_NOT_FOUND;  
 }  
   
 Boolean CIMClassRep::existsProperty(const String& name)  
 {  
     return (findProperty(name) != PEG_NOT_FOUND) ?  
                     true : false;  
 }  
   
 CIMProperty CIMClassRep::getProperty(Uint32 pos)  
 {  
     if (pos >= _properties.size())  
         throw OutOfBounds();  
   
     return _properties[pos];  
 }  
   
 void CIMClassRep::removeProperty(Uint32 pos)  
 {  
     if (pos >= _properties.size())  
         throw OutOfBounds();  
   
     _properties.remove(pos);  
 }  
   
   
 Uint32 CIMClassRep::getPropertyCount() const  
 {  
     return _properties.size();  
 }  
   
 void CIMClassRep::addMethod(const CIMMethod& x) void CIMClassRep::addMethod(const CIMMethod& x)
 { {
     if (!x)     if (!x)
Line 189 
Line 148 
  
 Boolean CIMClassRep::existsMethod(const String& name) Boolean CIMClassRep::existsMethod(const String& name)
 { {
     return(findMethod(name) != PEG_NOT_FOUND) ?      return(findMethod(name) == PEG_NOT_FOUND) ? false : true;
                         true : false;  
 } }
   
 CIMMethod CIMClassRep::getMethod(Uint32 pos) CIMMethod CIMClassRep::getMethod(Uint32 pos)
 { {
     if (pos >= _methods.size())     if (pos >= _methods.size())
Line 204 
Line 163 
 { {
     return _methods.size();     return _methods.size();
 } }
 //ATTN: Ks 18 May  
 void CIMClassRep::removeMethod(Uint32 pos) void CIMClassRep::removeMethod(Uint32 pos)
 { {
     if (pos >= _methods.size())     if (pos >= _methods.size())
Line 515 
Line 474 
 } }
  
 CIMClassRep::CIMClassRep(const CIMClassRep& x) : CIMClassRep::CIMClassRep(const CIMClassRep& x) :
     Sharable(),      CIMObjectRep(x),
     _className(x._className),      _superClassName(x._superClassName)
     _superClassName(x._superClassName),  
     _resolved(x._resolved)  
 { {
     x._qualifiers.cloneTo(_qualifiers);  
   
     _properties.reserve(x._properties.size());  
   
     for (Uint32 i = 0, n = x._properties.size(); i < n; i++)  
         _properties.append(x._properties[i].clone());  
   
     _methods.reserve(x._methods.size());     _methods.reserve(x._methods.size());
  
     for (Uint32 i = 0, n = x._methods.size(); i < n; i++)     for (Uint32 i = 0, n = x._methods.size(); i < n; i++)
         _methods.append(x._methods[i].clone());         _methods.append(x._methods[i].clone());
 } }
  
 CIMClassRep& CIMClassRep::operator=(const CIMClassRep& x)  
 {  
     return *this;  
 }  
   
 Boolean CIMClassRep::identical(const CIMClassRep* x) const Boolean CIMClassRep::identical(const CIMClassRep* x) const
 { {
     if (_className != x->_className)      if (!CIMObjectRep::identical(x))
         return false;         return false;
  
     if (_superClassName != x->_superClassName)     if (_superClassName != x->_superClassName)
         return false;         return false;
  
     if (!_qualifiers.identical(x->_qualifiers))      //
         return false;      // Check methods:
       //
     // Compare properties:  
   
     {  
         const Array<CIMProperty>& tmp1 = _properties;  
         const Array<CIMProperty>& tmp2 = x->_properties;  
   
         if (tmp1.size() != tmp2.size())  
             return false;  
   
         for (Uint32 i = 0, n = tmp1.size(); i < n; i++)  
         {  
             if (!tmp1[i].identical(tmp2[i]))  
                 return false;  
         }  
     }  
   
     // Compare methods:  
  
     {     {
         const Array<CIMMethod>& tmp1 = _methods;         const Array<CIMMethod>& tmp1 = _methods;


Legend:
Removed from v.1.19  
changed lines
  Added in v.1.20

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2