(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.76.4.1

version 1.74, 2006/07/21 18:40:55 version 1.76.4.1, 2007/12/19 14:51:11
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"
Line 50 
Line 41 
 #include "XmlWriter.h" #include "XmlWriter.h"
 #include "MofWriter.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"
Line 117 
Line 108 
  
     // 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 137 
  
     // 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 215 
Line 202 
  
     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 0
                 if (!superClass._rep->_resolved)                 if (!superClass._rep->_resolved)
                         throw ClassNotResolved(_superClassName);                         throw ClassNotResolved(_superClassName);
Line 236 
Line 221 
  
                 /* 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 242 
             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 254 
  
                         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 295 
                         /*       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 332 
                                                                                         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 354 
                                                 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 376 
  
                         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 408 
                         /**********************  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 426 
                                 _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 452 
                 //----------------------------------------------------------------------                 //----------------------------------------------------------------------
                 // 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 466 
                 //----------------------------------------------------------------------                 //----------------------------------------------------------------------
  
                 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 557 
Line 548 
     // 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 void CIMClassRep::toXml(Buffer& out) const
Line 590 
Line 581 
  
     out << STRLIT("</CLASS>\n");     out << STRLIT("</CLASS>\n");
 } }
   
 /** toMof prepares an 8-bit string with the MOF for the class. /** toMof prepares an 8-bit string with the MOF for the class.
     The BNF for this is:     The BNF for this is:
     <pre>     <pre>


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

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2