(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.74 and 1.86

version 1.74, 2006/07/21 18:40:55 version 1.86, 2008/06/19 17:57:00
Line 29 
Line 29 
 // //
 //============================================================================== //==============================================================================
 // //
 // Author: Mike Brasher (mbrasher@bmc.com)  
 //  
 // Modified By: Karl Schopmeyer(k.schopmeyer@attglobal.net)  
 //              Roger Kumpf, Hewlett-Packard Company (roger_kumpf@hp.com)  
 //              Carol Ann Krug Graves, Hewlett-Packard Company  
 //                  (carolann_graves@hp.com)  
 //              David Dillard, VERITAS Software Corp.  
 //                  (david.dillard@veritas.com)  
 //  
 //%///////////////////////////////////////////////////////////////////////////// //%/////////////////////////////////////////////////////////////////////////////
  
 #include "CIMClassRep.h" #include "CIMClassRep.h"
 #include "DeclContext.h" #include "DeclContext.h"
 #include "Resolver.h" #include "Resolver.h"
 #include "Indentor.h"  
 #include "CIMName.h" #include "CIMName.h"
 #include "CIMQualifierNames.h" #include "CIMQualifierNames.h"
 #include "CIMScope.h" #include "CIMScope.h"
 #include "XmlWriter.h"  
 #include "MofWriter.h"  
 #include <Pegasus/Common/Tracer.h> #include <Pegasus/Common/Tracer.h>
 #include <Pegasus/Common/MessageLoader.h> //l10n  #include <Pegasus/Common/MessageLoader.h>
 #include "CIMNameUnchecked.h" #include "CIMNameUnchecked.h"
 #include "StrLit.h" #include "StrLit.h"
 #include "CIMInstanceRep.h" #include "CIMInstanceRep.h"
   #include "CIMPropertyInternal.h"
   #include "CIMMethodRep.h"
  
 PEGASUS_NAMESPACE_BEGIN PEGASUS_NAMESPACE_BEGIN
 PEGASUS_USING_STD; PEGASUS_USING_STD;
Line 105 
Line 95 
     value.get(flag);     value.get(flag);
     return flag;     return flag;
 } }
 void CIMClassRep::setSuperClassName(const CIMName& superClassName)  
 {  
     _superClassName = superClassName;  
 }  
  
 void CIMClassRep::addProperty(const CIMProperty& x) void CIMClassRep::addProperty(const CIMProperty& x)
 { {
Line 117 
Line 103 
  
     // Reject addition of duplicate property name:     // Reject addition of duplicate property name:
  
     if (findProperty(x.getName()) != PEG_NOT_FOUND){      if (findProperty(x.getName()) != PEG_NOT_FOUND)
         //l10n      {
                 //throw AlreadyExistsException          MessageLoaderParms parms(
             //("property \"" + x.getName().getString () + "\"");              "Common.CIMClassRep.PROPERTY",
         MessageLoaderParms parms("Common.CIMClassRep.PROPERTY",  
                                                          "property \"$0\"",                                                          "property \"$0\"",
                                                          x.getName().getString());                                                          x.getName().getString());
         throw AlreadyExistsException(parms);         throw AlreadyExistsException(parms);
   
     }     }
  
     // Reject addition of a reference property without a referenceClassName     // Reject addition of a reference property without a referenceClassName
Line 148 
Line 132 
  
     // Reject duplicate method names:     // Reject duplicate method names:
  
     if (findMethod(x.getName()) != PEG_NOT_FOUND){      if (findMethod(x.getName()) != PEG_NOT_FOUND)
         //l10n      {
                 //throw AlreadyExistsException          MessageLoaderParms parms(
             //("method \"" + x.getName().getString() + "\"");              "Common.CIMClassRep.METHOD",
         MessageLoaderParms parms("Common.CIMClassRep.METHOD",  
                                                          "method \"$0\"",                                                          "method \"$0\"",
                                                          x.getName().getString());                                                          x.getName().getString());
         throw AlreadyExistsException(parms);         throw AlreadyExistsException(parms);
   
     }     }
  
     // Add the method:     // Add the method:
Line 164 
Line 146 
     _methods.append(x);     _methods.append(x);
 } }
  
 Uint32 CIMClassRep::findMethod(const CIMName& name) const  
 {  
     for (Uint32 i = 0, n = _methods.size(); i < n; i++)  
     {  
         if (name.equal(_methods[i].getName()))  
             return i;  
     }  
   
     return PEG_NOT_FOUND;  
 }  
   
 CIMMethod CIMClassRep::getMethod(Uint32 index)  
 {  
     if (index >= _methods.size())  
         throw IndexOutOfBoundsException();  
   
     return _methods[index];  
 }  
   
 Uint32 CIMClassRep::getMethodCount() const  
 {  
     return _methods.size();  
 }  
   
 void CIMClassRep::removeMethod(Uint32 index)  
 {  
     if (index >= _methods.size())  
         throw IndexOutOfBoundsException();  
   
     _methods.remove(index);  
 }  
   
 void CIMClassRep::resolve( void CIMClassRep::resolve(
     DeclContext* context,     DeclContext* context,
     const CIMNamespaceName& nameSpace)     const CIMNamespaceName& nameSpace)
 { {
         PEG_METHOD_ENTER(TRC_OBJECTRESOLUTION, "CIMClassRep::resolve()");         PEG_METHOD_ENTER(TRC_OBJECTRESOLUTION, "CIMClassRep::resolve()");
 #if 0  
     if (_resolved)  
         throw ClassAlreadyResolved(_reference.getClassName());  
 #endif  
     if (!context)     if (!context)
         throw NullPointer();         throw NullPointer();
  
         PEG_TRACE_STRING(TRC_OBJECTRESOLUTION, Tracer::LEVEL3,      PEG_TRACE_STRING(TRC_OBJECTRESOLUTION, Tracer::LEVEL4,
                 String("CIMClassRep::resolve  class = ") +                 String("CIMClassRep::resolve  class = ") +
                 _reference.getClassName().getString() + ", superclass = " +                 _reference.getClassName().getString() + ", superclass = " +
                 _superClassName.getString());                 _superClassName.getString());
  
     if (!_superClassName.isNull())     if (!_superClassName.isNull())
         {         {
                 //cout << "KSTEST Class Resolve with Super class " << getClassName()  
                 //<< " superClass " << _superClassName << endl;  
                 //----------------------------------------------------------------------                 //----------------------------------------------------------------------
                 // First check to see if the super-class really exists and the subclassing legal:          // First check to see if the super-class really exists and the
           // subclassing legal:
                 //----------------------------------------------------------------------                 //----------------------------------------------------------------------
                 CIMConstClass superClass          CIMConstClass superClass =
                         = context->lookupClass(nameSpace, _superClassName);              context->lookupClass(nameSpace, _superClassName);
  
                 if (superClass.isUninitialized())                 if (superClass.isUninitialized())
                         throw PEGASUS_CIM_EXCEPTION(CIM_ERR_INVALID_SUPERCLASS,                         throw PEGASUS_CIM_EXCEPTION(CIM_ERR_INVALID_SUPERCLASS,
                           _superClassName.getString());                           _superClassName.getString());
  
   
 #if 0  
                 if (!superClass._rep->_resolved)  
                         throw ClassNotResolved(_superClassName);  
 #endif  
                 // If subclass is abstract but superclass not, throw CIM Exception                 // If subclass is abstract but superclass not, throw CIM Exception
  
                 /* ATTN:KS-24 Mar 2002 P1 - Test this and confirm that rule is correct                 /* ATTN:KS-24 Mar 2002 P1 - Test this and confirm that rule is correct
                 if isAbstract() && !superclass.isAbstract()                 if isAbstract() && !superclass.isAbstract()
                         throw PEGASUS_CIM_EXCEPTION(CIM_ERR_INVALID_SUPERCLASS,_superClassName);              throw PEGASUS_CIM_EXCEPTION(
                   CIM_ERR_INVALID_SUPERCLASS, _superClassName);
                 */                 */
                 /*if(superclass.isTrueQualifier(CIMQualifierNames::TERMINAL)                 /*if(superclass.isTrueQualifier(CIMQualifierNames::TERMINAL)
                         throw PEGASUS_CIM_EXCEPTION(CIM_ERR_INVALID_SUPERCLASS,_superClassName);              throw PEGASUS_CIM_EXCEPTION(
                   CIM_ERR_INVALID_SUPERCLASS, _superClassName);
                 */                 */
                 //----------------------------------------------------------------------                 //----------------------------------------------------------------------
                 // Iterate all the properties of *this* class. Resolve each one and                 // Iterate all the properties of *this* class. Resolve each one and
Line 255 
Line 198 
             if(!isAssociationClass &&             if(!isAssociationClass &&
                property.getValue().getType() == CIMTYPE_REFERENCE)                property.getValue().getType() == CIMTYPE_REFERENCE)
             {             {
                                 //l10n  
                             //throw PEGASUS_CIM_EXCEPTION(CIM_ERR_INVALID_PARAMETER,  
                                 //"Non-assocation class contains reference property");  
                             throw PEGASUS_CIM_EXCEPTION_L(CIM_ERR_INVALID_PARAMETER,                             throw PEGASUS_CIM_EXCEPTION_L(CIM_ERR_INVALID_PARAMETER,
                                                 MessageLoaderParms("Common.CIMClassRep.NON_ASSOCIATION_CLASS_CONTAINS_REFERENCE_PROPERTY",                      MessageLoaderParms(
                           "Common.CIMClassRep.NON_ASSOCIATION_CLASS_CONTAINS_"
                               "REFERENCE_PROPERTY",
                                                                                    "Non-assocation class contains reference property"));                                                                                    "Non-assocation class contains reference property"));
   
   
             }             }
  
  
Line 270 
Line 210 
  
                         if (index == PEG_NOT_FOUND)                         if (index == PEG_NOT_FOUND)
                         {                         {
                             Resolver::resolveProperty (property, context,                  Resolver::resolveProperty(
                                 nameSpace, false, true);                      property, context, nameSpace, false, true);
                             if (property.getClassOrigin().isNull())                             if (property.getClassOrigin().isNull())
                             {                             {
                                 property.setClassOrigin(getClassName());                                 property.setClassOrigin(getClassName());
Line 311 
Line 251 
                         /*       ATTN: KS move to simpler version of the find                         /*       ATTN: KS move to simpler version of the find
                         for (Uint32 j = m, n = _properties.size(); j < n; j++)                         for (Uint32 j = m, n = _properties.size(); j < n; j++)
                         {                         {
                                 if (CIMName::equal(_properties[j].getName(),                  if (_properties[j].getName() == superClassProperty.getName())
                                                                    superClassProperty.getName()))  
                                 {                                 {
                                         index = j;                                         index = j;
                                         break;                                         break;
Line 349 
Line 288 
                                                                                         superproperty.getQualifier(i);                                                                                         superproperty.getQualifier(i);
                                         const CIMName name = superClassQualifier.getName();                                         const CIMName name = superClassQualifier.getName();
                                         /* ATTN KS This is replacement find function.                                         /* ATTN KS This is replacement find function.
                                         if((Uint32 j = subproperty.findQualifier(q.getName()) == PEG_NOT_FOUND)                      if (Uint32 j = subproperty.findQualifier(q.getName()) ==
                           PEG_NOT_FOUND)
                                         {                                         {
                                                 subproperty.addQualifier(superClassQualifier);                                                 subproperty.addQualifier(superClassQualifier);
   
                                         }                                         }
                                         */                                         */
                                         for (Uint32 j = 0, m = subproperty.getQualifierCount();                                         for (Uint32 j = 0, m = subproperty.getQualifierCount();
Line 371 
Line 310 
                                                 subproperty.addQualifier(superClassQualifier);                                                 subproperty.addQualifier(superClassQualifier);
                                         }                                         }
                                         /*                                         /*
                                         if ((index = subproperty.findQualifier(name)) == PEG_NOT_FOUND)                      if ((index = subproperty.findQualifier(name)) ==
                           PEG_NOT_FOUND)
                                         {                                         {
                                                 subproperty.addQualifier(superClassQualifier);                                                 subproperty.addQualifier(superClassQualifier);
                                         }                                         }
Line 392 
Line 332 
  
                         if (index == PEG_NOT_FOUND)                         if (index == PEG_NOT_FOUND)
                         {                         {
                             Resolver::resolveMethod (method, context,                  Resolver::resolveMethod(method, context, nameSpace);
                                 nameSpace);                  if (method.getClassOrigin().isNull())
                   {
                       method.setClassOrigin(getClassName());
                   }
                   method.setPropagated(false);
                         }                         }
                         else                         else
                         {                         {
                                 CIMConstMethod superClassMethod = superClass.getMethod(index);                                 CIMConstMethod superClassMethod = superClass.getMethod(index);
                             Resolver::resolveMethod (method, context,                  Resolver::resolveMethod(
                                 nameSpace, superClassMethod);                      method, context, nameSpace, superClassMethod);
                         }                         }
                 }                 }
  
Line 420 
Line 364 
                         /**********************  KS move to simpler version                         /**********************  KS move to simpler version
                         for (Uint32 j = m, n = _methods.size(); j < n; j++)                         for (Uint32 j = m, n = _methods.size(); j < n; j++)
                         {                         {
                                 if (CIMName::equal(_methods[j].getName(),                  if (_methods[j].getName() == superClassMethod.getName())
                                                                         superClassMethod.getName()))  
                                 {                                 {
                                         index = j;                                         index = j;
                                         break;                                         break;
Line 439 
Line 382 
                                 _methods.insert(m++, method);                                 _methods.insert(m++, method);
                         }                         }
                         */                         */
                         if((index = findMethod(superClassMethod.getName())) == PEG_NOT_FOUND)              if ((index = findMethod(superClassMethod.getName())) ==
                   PEG_NOT_FOUND)
                         {                         {
                                 CIMMethod method = superClassMethod.clone();                                 CIMMethod method = superClassMethod.clone();
                                 method.setPropagated(true);                                 method.setPropagated(true);
                                 _methods.insert(m++, method);                                 _methods.insert(m++, method);
                         }                         }
   
                 }                 }
  
                 //----------------------------------------------------------------------                 //----------------------------------------------------------------------
                 // Validate the qualifiers of this class:                 // Validate the qualifiers of this class:
                 //----------------------------------------------------------------------                 //----------------------------------------------------------------------
                 //cout << "KSTEST Class Qualifiers resolve for class" << getClassName() << endl;  
                 _qualifiers.resolve(                 _qualifiers.resolve(
                         context,                         context,
                         nameSpace,                         nameSpace,
Line 464 
Line 408 
                 //----------------------------------------------------------------------                 //----------------------------------------------------------------------
                 // Resolve each property:                 // Resolve each property:
                 //----------------------------------------------------------------------                 //----------------------------------------------------------------------
                 //cout << "KSTEST Class Resolve, No Super class " << getClassName() << endl;  
  
                 for (Uint32 i = 0, n = _properties.size(); i < n; i++)                 for (Uint32 i = 0, n = _properties.size(); i < n; i++)
                 {                 {
                     Resolver::resolveProperty (_properties[i], context,               Resolver::resolveProperty(
                         nameSpace, false, true);                   _properties[i], context, nameSpace, false, true);
                     _properties[i].setClassOrigin(getClassName());                     _properties[i].setClassOrigin(getClassName());
                     _properties[i].setPropagated(false);                     _properties[i].setPropagated(false);
                 }                 }
Line 479 
Line 422 
                 //----------------------------------------------------------------------                 //----------------------------------------------------------------------
  
                 for (Uint32 i = 0, n = _methods.size(); i < n; i++)                 for (Uint32 i = 0, n = _methods.size(); i < n; i++)
           {
                     Resolver::resolveMethod (_methods[i], context, nameSpace);                     Resolver::resolveMethod (_methods[i], context, nameSpace);
               _methods[i].setClassOrigin(getClassName());
               _methods[i].setPropagated(false);
           }
  
                 //----------------------------------------------------------------------                 //----------------------------------------------------------------------
                 // Resolve the qualifiers:                 // Resolve the qualifiers:
Line 495 
Line 442 
                         dummy,                         dummy,
                         true);                         true);
     }     }
   
     // _resolved = true;  
 } }
  
 CIMInstance CIMClassRep::buildInstance(Boolean includeQualifiers, CIMInstance CIMClassRep::buildInstance(Boolean includeQualifiers,
Line 557 
Line 502 
     // Create new CIMInstance from CIMInstanceRep     // Create new CIMInstance from CIMInstanceRep
     CIMInstance newInstance(newInstanceRep);     CIMInstance newInstance(newInstanceRep);
  
     return(newInstance);      return newInstance;
 }  
   
 void CIMClassRep::toXml(Buffer& out) const  
 {  
     // Class opening element:  
   
     out << STRLIT("<CLASS ");  
     out << STRLIT(" NAME=\"") << _reference.getClassName() << STRLIT("\" ");  
   
     if (!_superClassName.isNull())  
         out << STRLIT(" SUPERCLASS=\"") << _superClassName << STRLIT("\" ");  
   
     out << STRLIT(">\n");  
   
     // Append Class Qualifiers:  
   
     _qualifiers.toXml(out);  
   
     // Append Property definitions:  
   
     for (Uint32 i = 0, n = _properties.size(); i < n; i++)  
         XmlWriter::appendPropertyElement(out, _properties[i]);  
   
     // Append Method definitions:  
   
     for (Uint32 i = 0, n = _methods.size(); i < n; i++)  
         XmlWriter::appendMethodElement(out, _methods[i]);  
   
     // Class closing element:  
   
     out << STRLIT("</CLASS>\n");  
 }  
 /** toMof prepares an 8-bit string with the MOF for the class.  
     The BNF for this is:  
     <pre>  
     classDeclaration    =    [ qualifierList ]  
                              CLASS className [ alias ] [ superClass ]  
                              "{" *classFeature "}" ";"  
   
     superClass          =    :" className  
   
     classFeature        =    propertyDeclaration | methodDeclaration  
   
 */  
   
 void CIMClassRep::toMof(Buffer& out) const  
 {  
     // Get and format the class qualifiers  
     out << STRLIT("\n//    Class ") << _reference.getClassName();  
     if (_qualifiers.getCount())  
         out.append('\n');  
     out.append('\n');  
     _qualifiers.toMof(out);  
   
     // Separate qualifiers from Class Name  
     out.append('\n');  
   
     // output class statement  
     out << STRLIT("class ") << _reference.getClassName();  
   
     if (!_superClassName.isNull())  
         out << STRLIT(" : ") << _superClassName;  
   
     out << STRLIT("\n{");  
   
     // format the Properties:  
     for (Uint32 i = 0, n = _properties.size(); i < n; i++)  
     {  
         // Generate MOF if this property not propagated  
         // Note that the test is required only because  
         // there is an error in getclass that does not  
         // test the localOnly flag  
         // The inital "false" indicates to format as property declaration.  
         if (!_properties[i].getPropagated())  
             MofWriter::appendPropertyElement(true, out, _properties[i]);  
     }  
   
     // Format the Methods:  for non-propagated methods  
     for (Uint32 i = 0, n = _methods.size(); i < n; i++)  
     {  
         if (!_methods[i].getPropagated())  
             MofWriter::appendMethodElement(out, _methods[i]);  
     }  
   
     // Class closing element:  
     out << STRLIT("\n};\n");  
 }  
   
   
 CIMClassRep::CIMClassRep()  
 {  
 } }
  
 CIMClassRep::CIMClassRep(const CIMClassRep& x) : CIMClassRep::CIMClassRep(const CIMClassRep& x) :
Line 670 
Line 524 
     if (!tmprep)     if (!tmprep)
         return false;         return false;
  
       // If the pointers are the same, the objects must be identical
       if (this == tmprep)
       {
           return true;
       }
   
     if (!_superClassName.equal (tmprep->_superClassName))     if (!_superClassName.equal (tmprep->_superClassName))
         return false;         return false;
  
Line 678 
Line 538 
     //     //
  
     {     {
         const Array<CIMMethod>& tmp1 = _methods;          const MethodSet& tmp1 = _methods;
         const Array<CIMMethod>& tmp2 = tmprep->_methods;          const MethodSet& tmp2 = tmprep->_methods;
  
         if (tmp1.size() != tmp2.size())         if (tmp1.size() != tmp2.size())
             return false;             return false;
Line 697 
Line 557 
         }         }
     }     }
  
     if (_resolved != tmprep->_resolved)  
         return false;  
   
     return true;     return true;
 } }
  
Line 711 
Line 568 
     {     {
         CIMConstProperty property = getProperty(i);         CIMConstProperty property = getProperty(i);
  
         Uint32 index;          if (CIMPropertyInternal::isKeyProperty(property))
         if ((index = property.findQualifier(          {
             CIMNameUnchecked("key"))) != PEG_NOT_FOUND)  
         {  
             CIMValue value;  
             value = property.getQualifier (index).getValue ();  
             if (!value.isNull ())  
             {  
                 Boolean isKey;  
                 value.get (isKey);  
                 if (isKey)  
                     keyNames.append(property.getName());                     keyNames.append(property.getName());
             }             }
         }         }
     }     }
 }  
  
 Boolean CIMClassRep::hasKeys() const Boolean CIMClassRep::hasKeys() const
 { {
     for (Uint32 i = 0, n = getPropertyCount(); i < n; i++)     for (Uint32 i = 0, n = getPropertyCount(); i < n; i++)
     {     {
         CIMConstProperty property = getProperty(i);         CIMConstProperty property = getProperty(i);
           if (CIMPropertyInternal::isKeyProperty(property))
         Uint32 index;          {
         if ((index = property.findQualifier(  
             CIMNameUnchecked("key"))) != PEG_NOT_FOUND)  
         {  
             CIMValue value;  
             value = property.getQualifier (index).getValue ();  
             if (!value.isNull ())  
             {  
                 Boolean isKey;  
                 value.get (isKey);  
                 if (isKey)  
                     return true;                     return true;
             }             }
         }         }
     }  
   
     return false;     return false;
 } }
  


Legend:
Removed from v.1.74  
changed lines
  Added in v.1.86

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2