(file) Return to MetaTypes.cpp CVS log (file) (dir) Up to [Pegasus] / pegasus / src / Pegasus / Repository / Attic

Diff for /pegasus/src/Pegasus/Repository/Attic/MetaTypes.cpp between version 1.1 and 1.1.2.2

version 1.1, 2007/10/02 14:17:23 version 1.1.2.2, 2007/10/02 17:27:10
Line 0 
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.
   //
   // 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.
   //
   //==============================================================================
   //
   //%/////////////////////////////////////////////////////////////////////////////
   
   #include "MetaTypes.h"
   #include <Pegasus/Common/System.h>
   #include <Pegasus/Common/CIMClass.h>
   #include <Pegasus/Common/CIMQualifierDecl.h>
   #include <Pegasus/Common/System.h>
   
   PEGASUS_NAMESPACE_BEGIN
   
   static const size_t _MAX_FEATURES = 1024;
   static const size_t _MAX_QUALIFIERS = 1024;
   
   static bool _eqi(const char* s1, const char* s2)
   {
       return System::strcasecmp(s1, s2) == 0;
   }
   
   class Str
   {
   public:
       Str(const String& s) : _cstr(s.getCString()) { }
       Str(const CIMName& n) : _cstr(n.getString().getCString()) { }
       Str(const CIMNamespaceName& n) : _cstr(n.getString().getCString()) { }
       Str(const Exception& e) : _cstr(e.getMessage().getCString()) { }
       Str(const CIMDateTime& x) : _cstr(x.toString().getCString()) { }
       Str(const CIMObjectPath& x) : _cstr(x.toString().getCString()) { }
       const char* operator*() const { return (const char*)_cstr; }
       operator const char*() const { return (const char*)_cstr; }
   private:
       CString _cstr;
   };
   
   static inline void _readBoolean(const char*& value, Boolean& x)
   {
       unsigned const char* p = (unsigned const char*)value;
       x = Boolean(p[0]);
       value++;
   }
   
   static inline void _readUint8(const char*& value, Uint8& x)
   {
       unsigned const char* p = (unsigned const char*)value;
       x = Uint8(p[0]);
       value += sizeof(x);
   }
   
   static inline void _readSint8(const char*& value, Sint8& x)
   {
       _readUint8(value, *((Uint8*)&x));
   }
   
   static inline void _readUint16(const char*& value, Uint16& x)
   {
       unsigned const char* p = (unsigned const char*)value;
       Uint16 x0 = Uint16(p[0]) << 8;
       Uint16 x1 = Uint16(p[1]) << 0;
       x = Uint16(x0 | x1);
       value += sizeof(x);
   }
   
   static inline void _readSint16(const char*& value, Sint16& x)
   {
       _readUint16(value, *((Uint16*)&x));
       value += sizeof(x);
   }
   
   static inline void _readUint32(const char*& value, Uint32& x)
   {
       unsigned const char* p = (unsigned const char*)value;
       Uint32 x0 = Uint32(p[0]) << 24;
       Uint32 x1 = Uint32(p[1]) << 16;
       Uint32 x2 = Uint32(p[0]) <<  8;
       Uint32 x3 = Uint32(p[1]) <<  0;
       x = Uint32(x0 | x1 | x2 | x3);
       value += sizeof(x);
   }
   
   static inline void _readSint32(const char*& value, Sint32& x)
   {
       _readUint32(value, *((Uint32*)&x));
       value += sizeof(x);
   }
   
   static inline void _readUint64(const char*& value, Uint64& x)
   {
       unsigned const char* p = (unsigned const char*)value;
       Uint64 x0 = Uint64(p[0]) << 56;
       Uint64 x1 = Uint64(p[1]) << 48;
       Uint64 x2 = Uint64(p[2]) << 40;
       Uint64 x3 = Uint64(p[3]) << 32;
       Uint64 x4 = Uint64(p[4]) << 24;
       Uint64 x5 = Uint64(p[5]) << 16;
       Uint64 x6 = Uint64(p[6]) <<  8;
       Uint64 x7 = Uint64(p[7]) <<  0;
       x = Uint64(x0 | x1 | x2 | x3 | x4 | x5 | x6 | x7);
       value += sizeof(x);
   }
   
   static inline void _readSint64(const char*& value, Sint64& x)
   {
       _readUint64(value, *((Uint64*)&x));
       value += sizeof(x);
   }
   
   static inline void _readReal32(const char*& value, Real32& x)
   {
       _readUint32(value, *((Uint32*)&x));
       value += sizeof(x);
   }
   
   static inline void _readReal64(const char*& value, Real64& x)
   {
       _readUint64(value, *((Uint64*)&x));
       value += sizeof(x);
   }
   
   static inline void _readChar16(const char*& value, Char16& x)
   {
       _readUint16(value, *((Uint16*)&x));
       value += sizeof(x);
   }
   
   static inline void _readString(const char*& value, String& x)
   {
       size_t n = strlen(value);
       x.assign(value, n);
       value += n + 1;
   }
   
   static inline void _readDateTime(const char*& value, CIMDateTime& x)
   {
       size_t n = strlen(value);
       x.set(value);
       value += n + 1;
   }
   
   static int _makeValue(
       CIMValue& cv,
       Uint16 type,
       Sint16 subscript,
       const char* value)
   {
       // If null value:
   
       if (value == 0)
       {
           if (subscript == -1)
               cv.setNullValue(CIMType(type), false);
           else
               cv.setNullValue(CIMType(type), true, subscript);
   
           return 0;
       }
   
       // If scalar, else array:
   
       if (subscript == -1)
       {
           switch (CIMType(type))
           {
               case CIMTYPE_BOOLEAN:
               {
                   Boolean x;
                   _readBoolean(value, x);
                   cv.set(x);
                   return 0;
               }
               case CIMTYPE_UINT8:
               {
                   Uint8 x;
                   _readUint8(value, x);
                   cv.set(x);
                   return 0;
               }
               case CIMTYPE_SINT8:
               {
                   Sint8 x;
                   _readSint8(value, x);
                   cv.set(x);
                   return 0;
               }
               case CIMTYPE_UINT16:
               {
                   Uint16 x;
                   _readUint16(value, x);
                   cv.set(x);
                   return 0;
               }
               case CIMTYPE_SINT16:
               {
                   Sint16 x;
                   _readSint16(value, x);
                   cv.set(x);
                   return 0;
               }
               case CIMTYPE_UINT32:
               {
                   Uint32 x;
                   _readUint32(value, x);
                   cv.set(x);
                   return 0;
               }
               case CIMTYPE_SINT32:
               {
                   Sint32 x;
                   _readSint32(value, x);
                   cv.set(x);
                   return 0;
               }
               case CIMTYPE_UINT64:
               {
                   Uint64 x;
                   _readUint64(value, x);
                   cv.set(x);
                   return 0;
               }
               case CIMTYPE_SINT64:
               {
                   Sint64 x;
                   _readSint64(value, x);
                   cv.set(x);
                   return 0;
               }
               case CIMTYPE_REAL32:
               {
                   Real32 x;
                   _readReal32(value, x);
                   cv.set(x);
                   return 0;
               }
               case CIMTYPE_REAL64:
               {
                   Real64 x;
                   _readReal64(value, x);
                   cv.set(x);
                   return 0;
               }
               case CIMTYPE_CHAR16:
               {
                   Char16 x;
                   _readChar16(value, x);
                   cv.set(x);
                   return 0;
               }
               case CIMTYPE_STRING:
               {
                   String x;
                   _readString(value, x);
                   cv.set(x);
                   return 0;
               }
               case CIMTYPE_DATETIME:
               {
                   CIMDateTime x;
                   _readDateTime(value, x);
                   cv.set(x);
                   return 0;
               }
   
               default:
                   printf("T[%u]\n", __LINE__);
                   return -1;
           }
       }
       else
       {
           // Read array size:
   
           Uint16 size;
           _readUint16(value, size);
   
           // Read array elements:
   
           switch (CIMType(type))
           {
               case CIMTYPE_BOOLEAN:
               {
                   Array<Boolean> a;
   
                   for (Uint16 i = 0; i < size; i++)
                   {
                       Boolean x;
                       _readBoolean(value, x);
                       a.append(x);
                   }
   
                   cv.set(a);
                   return 0;
               }
               case CIMTYPE_UINT8:
               {
                   Array<Uint8> a;
   
                   for (Uint16 i = 0; i < size; i++)
                   {
                       Uint8 x;
                       _readUint8(value, x);
                       a.append(x);
                   }
   
                   cv.set(a);
                   return 0;
               }
               case CIMTYPE_SINT8:
               {
                   Array<Sint8> a;
   
                   for (Uint16 i = 0; i < size; i++)
                   {
                       Sint8 x;
                       _readSint8(value, x);
                       a.append(x);
                   }
   
                   cv.set(a);
                   return 0;
               }
               case CIMTYPE_UINT16:
               {
                   Array<Uint16> a;
   
                   for (Uint16 i = 0; i < size; i++)
                   {
                       Uint16 x;
                       _readUint16(value, x);
                       a.append(x);
                   }
   
                   cv.set(a);
                   return 0;
               }
               case CIMTYPE_SINT16:
               {
                   Array<Sint16> a;
   
                   for (Uint16 i = 0; i < size; i++)
                   {
                       Sint16 x;
                       _readSint16(value, x);
                       a.append(x);
                   }
   
                   cv.set(a);
                   return 0;
               }
               case CIMTYPE_UINT32:
               {
                   Array<Uint32> a;
   
                   for (Uint16 i = 0; i < size; i++)
                   {
                       Uint32 x;
                       _readUint32(value, x);
                       a.append(x);
                   }
   
                   cv.set(a);
                   return 0;
               }
               case CIMTYPE_SINT32:
               {
                   Array<Sint32> a;
   
                   for (Uint16 i = 0; i < size; i++)
                   {
                       Sint32 x;
                       _readSint32(value, x);
                       a.append(x);
                   }
   
                   cv.set(a);
                   return 0;
               }
               case CIMTYPE_UINT64:
               {
                   Array<Uint64> a;
   
                   for (Uint16 i = 0; i < size; i++)
                   {
                       Uint64 x;
                       _readUint64(value, x);
                       a.append(x);
                   }
   
                   cv.set(a);
                   return 0;
               }
               case CIMTYPE_SINT64:
               {
                   Array<Sint64> a;
   
                   for (Uint16 i = 0; i < size; i++)
                   {
                       Sint64 x;
                       _readSint64(value, x);
                       a.append(x);
                   }
   
                   cv.set(a);
                   return 0;
               }
               case CIMTYPE_REAL32:
               {
                   Array<Real32> a;
   
                   for (Uint16 i = 0; i < size; i++)
                   {
                       Real32 x;
                       _readReal32(value, x);
                       a.append(x);
                   }
   
                   cv.set(a);
                   return 0;
               }
               case CIMTYPE_REAL64:
               {
                   Array<Real64> a;
   
                   for (Uint16 i = 0; i < size; i++)
                   {
                       Real64 x;
                       _readReal64(value, x);
                       a.append(x);
                   }
   
                   cv.set(a);
                   return 0;
               }
               case CIMTYPE_CHAR16:
               {
                   Array<Char16> a;
   
                   for (Uint16 i = 0; i < size; i++)
                   {
                       Char16 x;
                       _readChar16(value, x);
                       a.append(x);
                   }
   
                   cv.set(a);
                   return 0;
               }
               case CIMTYPE_STRING:
               {
                   Array<String> a;
   
                   for (Uint16 i = 0; i < size; i++)
                   {
                       String x;
                       _readString(value, x);
                       a.append(x);
                   }
   
                   cv.set(a);
                   return 0;
               }
               case CIMTYPE_DATETIME:
               {
                   Array<CIMDateTime> a;
   
                   for (Uint16 i = 0; i < size; i++)
                   {
                       CIMDateTime x;
                       _readDateTime(value, x);
                       a.append(x);
                   }
   
                   cv.set(a);
                   return 0;
               }
   
               default:
                   printf("T[%u]\n", __LINE__);
                   return -1;
           }
       }
   
       // Unreachable!
       printf("T[%u]\n", __LINE__);
       return -1;
   }
   
   struct FeatureInfo
   {
       const MetaFeature* mf;
       const MetaClass* mc;
   };
   
   static int _mergeFeatures(
       const MetaClass* mc,
       bool localOnly,
       FeatureInfo features[_MAX_FEATURES],
       size_t& numFeatures)
   {
       if (!localOnly && mc->super)
       {
           if (_mergeFeatures(mc->super, localOnly, features, numFeatures) != 0)
           {
               printf("T[%u]\n", __LINE__);
               return -1;
           }
       }
   
       // Process all features of this class:
   
       for (size_t i = 0; mc->features[i]; i++)
       {
           const MetaFeature* mf = mc->features[i];
   
           // Override feature if defined by ancestor class:
   
           bool found = false;
   
           for (size_t j = 0; j < numFeatures; j++)
           {
               const MetaFeature* tmp = features[j].mf;
   
               if (_eqi(mf->name, tmp->name))
               {
                   features[j].mf = mf;
                   features[j].mc = mc;
                   found = true;
                   break;
               }
           }
   
           // Add new feature if not not defined by ancestor class:
   
           if (!found)
           {
               if (numFeatures == _MAX_FEATURES)
               {
                   printf("T[%u]\n", __LINE__);
                   return -1;
               }
   
               features[numFeatures].mf = mf;
               features[numFeatures].mc = mc;
               numFeatures++;
           }
       }
   
       return 0;
   }
   
   struct QualifierInfo
   {
       const char* qualifier;
       const MetaClass* mc;
   };
   
   static const MetaFeature* _findFeature(
       const MetaClass* mc,
       const char* name)
   {
       for (size_t i = 0; mc->features[i]; i++)
       {
           const MetaFeature* mf = mc->features[i];
   
           if (_eqi(mf->name, name))
               return mf;
       }
   
       // Not found!
       return 0;
   }
   
   static const MetaFeature* _findParameter(
       const MetaMethod* mm,
       const char* name)
   {
       for (size_t i = 0; mm->parameters[i]; i++)
       {
           const MetaFeature* mf = mm->parameters[i];
   
           if (_eqi(mm->name, name))
               return mf;
       }
   
       // Not found!
       return 0;
   }
   
   static int _mergeQualifiers(
       const MetaNameSpace* ns,
       const MetaClass* mc,
       const char* featureName,
       const char* parameterName,
       bool depth,
       QualifierInfo qualifiers[_MAX_QUALIFIERS],
       size_t& numQualifiers)
   {
       // Merge super-class qualifiers:
   
       if (mc->super)
       {
           _mergeQualifiers(ns, mc->super, featureName, parameterName, depth + 1,
               qualifiers, numQualifiers);
       }
   
       const char** quals = 0;
   
       // Find qualifiers of the given object:
   
       if (!featureName && !parameterName)
       {
           // Case 1: get class qualifiers:
           quals = mc->qualifiers;
       }
       else if (featureName && !parameterName)
       {
           // Case 2: get feature qualifiers:
   
           const MetaFeature* mf = _findFeature(mc, featureName);
   
           if (mf)
               quals = mf->qualifiers;
       }
       else if (featureName && parameterName)
       {
           // Case 3: get parameter qualifiers:
   
           const MetaFeature* mf = _findFeature(mc, featureName);
   
           if (mf && (mf->flags & META_FLAG_METHOD))
           {
               const MetaMethod* mm = (const MetaMethod*)mf;
               const MetaFeature* p = _findParameter(mm, parameterName);
   
               if (p)
                   quals = p->qualifiers;
           }
       }
   
       // Merge quals into the qualifiers array:
   
       if (!quals)
           return 0;
   
       for (size_t i = 0; quals[i]; i++)
       {
           const char* qi = quals[i];
   
           // Override existing qualifier if any:
   
           bool found = false;
   
           for (size_t j = 0; j < numQualifiers; j++)
           {
               const char* qj = qualifiers[j].qualifier;
   
               if (qi[0] == qj[0])
               {
                   qualifiers[j].qualifier = qi;
                   qualifiers[j].mc = mc;
                   found = true;
                   break;
               }
           }
   
           // Inject this qualifier not found:
   
           if (!found)
           {
               MetaQualifierDecl* qd = ns->qualifiers[qi[0]];
   
               if (depth == 0 || !(qd->flavor & META_FLAVOR_RESTRICTED))
               {
                   if (numQualifiers == _MAX_QUALIFIERS)
                   {
                       printf("T[%u]\n", __LINE__);
                       return -1;
                   }
   
                   qualifiers[numQualifiers].qualifier = qi;
                   qualifiers[numQualifiers].mc = mc;
                   numQualifiers++;
               }
           }
       }
   
       return 0;
   }
   
   template<class C>
   static int _addQualifiers(
       const MetaNameSpace* ns,
       const MetaClass* mc,
       const char* featureName,
       const char* parameterName,
       C& c)
   {
       QualifierInfo qualifiers[_MAX_QUALIFIERS];
       size_t numQualifiers = 0;
   
       if (_mergeQualifiers(
           ns, mc, featureName, parameterName, 0, qualifiers, numQualifiers) != 0)
       {
           printf("T[%u]\n", __LINE__);
           return -1;
       }
   
       // Add qualifiers to container:
   
       for (size_t i = 0; i < numQualifiers; i++)
       {
           const char* q = qualifiers[i].qualifier;
   
           // Get qualifier id:
   
           Uint8 qid = Uint8(q[0]);
   
           // Get qualifier declaration:
   
           MetaQualifierDecl* qd = ns->qualifiers[qid];
   
           // Make CIMValue:
   
           CIMValue cv;
   
           if (_makeValue(cv, qd->type, qd->subscript, q + 1) != 0)
           {
               printf("T[%u]\n", __LINE__);
               return -1;
           }
   
           // Add qualifier:
   
           c.addQualifier(CIMQualifier(qd->name, cv));
       }
   
       return 0;
   }
   
   static int _addProperty(
       const MetaNameSpace* ns,
       const MetaClass* mc,
       const MetaProperty* mp,
       const char* classOrigin,
       bool propagated,
       bool includeQualifiers,
       bool includeClassOrigin,
       CIMClass& cc)
   {
       // Make CIMvalue:
   
       CIMValue cv;
   
       if (_makeValue(cv, mp->type, mp->subscript, mp->value) != 0)
       {
           printf("T[%u]\n", __LINE__);
           return -1;
       }
   
       // Create property:
   
       CIMProperty cp(mp->name, cv);
   
       if (includeClassOrigin)
           cp.setClassOrigin(classOrigin);
   
       cp.setPropagated(propagated);
   
       // Add qualifiers:
   
       if (includeQualifiers)
       {
           if (_addQualifiers(ns, mc, mp->name, 0, cp) != 0)
           {
               printf("T[%u]\n", __LINE__);
               return -1;
           }
       }
   
       // Add to class:
   
       cc.addProperty(cp);
       return 0;
   }
   
   static int _addReference(
       const MetaNameSpace* ns,
       const MetaClass* mc,
       const MetaReference* mr,
       const char* classOrigin,
       bool propagated,
       bool includeQualifiers,
       bool includeClassOrigin,
       CIMClass& cc)
   {
       // Set isArray and arraySize:
   
       Boolean isArray;
       Uint32 arraySize;
   
       if (mr->subscript == -1)
       {
           isArray = false;
           arraySize = 0;
       }
       else
       {
           isArray = true;
           arraySize = mr->subscript;
       }
   
       // Set referenceClassName:
   
       CIMName rcn = mr->ref->name;
   
       // Create value:
   
       CIMValue cv(CIMTYPE_REFERENCE, isArray, arraySize);
   
       // Create property:
   
       CIMProperty cp(mr->name, cv, arraySize, rcn);
   
       if (includeClassOrigin)
           cp.setClassOrigin(classOrigin);
   
       cp.setPropagated(propagated);
   
       // Add qualifiers:
   
       if (includeQualifiers)
       {
           if (_addQualifiers(ns, mc, mr->name, 0, cp) != 0)
           {
               printf("T[%u]\n", __LINE__);
               return -1;
           }
       }
   
       // Add to class:
   
       cc.addProperty(cp);
       return 0;
   }
   
   static int _addPropertyParameter(
       const MetaNameSpace* ns,
       const MetaClass* mc,
       const MetaMethod* mm,
       const MetaProperty* mp,
       bool includeQualifiers,
       CIMMethod& cm)
   {
       // Create property:
   
       bool isArray;
       Uint32 arraySize;
   
       if (mp->subscript == -1)
       {
           isArray = false;
           arraySize = 0;
       }
       else
       {
           isArray = true;
           arraySize = Uint32(mp->subscript);
       }
   
       CIMParameter cp(mp->name, CIMType(mp->type), isArray, arraySize);
   
       // Add qualifiers:
   
       if (includeQualifiers)
       {
           if (_addQualifiers(ns, mc, mm->name, mp->name, cm) != 0)
           {
               printf("T[%u]\n", __LINE__);
               return -1;
           }
       }
   
       // Add to method:
   
       cm.addParameter(cp);
       return 0;
   }
   
   static int _addReferenceParameter(
       const MetaNameSpace* ns,
       const MetaClass* mc,
       const MetaMethod* mm,
       const MetaReference* mr,
       bool includeQualifiers,
       CIMMethod& cm)
   {
       // Create property:
   
       bool isArray;
       Uint32 arraySize;
   
       if (mr->subscript == -1)
       {
           isArray = false;
           arraySize = 0;
       }
       else
       {
           isArray = true;
           arraySize = Uint32(mr->subscript);
       }
   
       CIMName rcn = mr->ref->name;
       CIMParameter cp(mr->name, CIMTYPE_REFERENCE, isArray, arraySize, rcn);
   
       // Add qualifiers:
   
       if (includeQualifiers)
       {
           if (_addQualifiers(ns, mc, mm->name, mr->name, cm) != 0)
           {
               printf("T[%u]\n", __LINE__);
               return -1;
           }
       }
   
       // Add to method:
   
       cm.addParameter(cp);
       return 0;
   }
   
   static int _addMethod(
       const MetaNameSpace* ns,
       const MetaClass* mc,
       const MetaMethod* mm,
       const char* classOrigin,
       bool propagated,
       bool includeQualifiers,
       bool includeClassOrigin,
       CIMClass& cc)
   {
       // Create method:
   
       CIMMethod cm(mm->name, CIMType(mm->type));
   
       if (includeClassOrigin)
           cm.setClassOrigin(classOrigin);
   
       cm.setPropagated(propagated);
   
       // Add parameters:
   
       for (size_t i = 0; mm->parameters[i]; i++)
       {
           MetaFeature* mf = mm->parameters[i];
   
           if (mf->flags & META_FLAG_PROPERTY)
           {
               MetaProperty* mp = (MetaProperty*)mf;
               _addPropertyParameter(ns, mc, mm, mp, includeQualifiers, cm);
           }
           else if (mf->flags & META_FLAG_REFERENCE)
           {
               MetaReference* mr = (MetaReference*)mf;
               _addReferenceParameter(ns, mc, mm, mr, includeQualifiers, cm);
           }
       }
   
       // Add qualifiers:
   
       if (includeQualifiers)
       {
           if (_addQualifiers(ns, mc, mm->name, 0, cm) != 0)
           {
               printf("T[%u]\n", __LINE__);
               return -1;
           }
       }
   
       // Add to class:
   
       cc.addMethod(cm);
       return 0;
   }
   
   static bool _hasProperty(const char* const* propertyList, const char* name)
   {
       for (size_t i = 0; propertyList[i]; i++)
       {
           if (_eqi(propertyList[i], name))
               return true;
       }
   
       return false;
   }
   
   static int _addFeatures(
       const MetaNameSpace* ns,
       const MetaClass* mc,
       bool localOnly,
       bool includeQualifiers,
       bool includeClassOrigin,
       const char* const* propertyList,
       CIMClass& cc)
   {
       // Merge features from all inheritance levels into a single array:
   
       FeatureInfo features[_MAX_FEATURES];
       size_t numFeatures = 0;
   
       if (_mergeFeatures(mc, localOnly, features, numFeatures) != 0)
       {
           printf("T[%u]\n", __LINE__);
           return -1;
       }
   
       // For each feature:
   
       for (size_t i = 0; i < numFeatures; i++)
       {
           const FeatureInfo& fi = features[i];
   
           // Set propagated flag:
   
           bool propagated = fi.mc != mc;
   
           // Set classOrigin:
   
           const char* classOrigin = fi.mc->name;
   
           // Skip feature not in property list:
   
           const MetaFeature* mf = fi.mf;
   
           if (propertyList && !_hasProperty(propertyList, mf->name))
               continue;
   
           // Add the feature:
   
           if (mf->flags & META_FLAG_PROPERTY)
           {
               MetaProperty* mp = (MetaProperty*)mf;
   
               if (_addProperty(ns, mc, mp, classOrigin, propagated,
                   includeQualifiers, includeClassOrigin, cc) != 0)
               {
                   printf("T[%u]\n", __LINE__);
                   return -1;
               }
           }
           else if (mf->flags & META_FLAG_REFERENCE)
           {
               MetaReference* mr = (MetaReference*)mf;
   
               if (_addReference(ns, mc, mr, classOrigin, propagated,
                   includeQualifiers, includeClassOrigin, cc) != 0)
               {
                   printf("T[%u]\n", __LINE__);
                   return -1;
               }
           }
           else if (mf->flags & META_FLAG_METHOD)
           {
               MetaMethod* mm = (MetaMethod*)mf;
   
               if (_addMethod(ns, mc, mm, classOrigin, propagated,
                   includeQualifiers, includeClassOrigin, cc) != 0)
               {
                   printf("T[%u]\n", __LINE__);
                   return -1;
               }
           }
       }
   
       return 0;
   }
   
   int MakeClass(
       const MetaNameSpace* ns,
       const MetaClass* mc,
       Boolean localOnly,
       Boolean includeQualifiers,
       Boolean includeClassOrigin,
       const char* const* propertyList,
       CIMClass& cc)
   {
       try
       {
           // Create class:
           {
               CIMName scn;
   
               if (mc->super)
                   scn = mc->super->name;
   
               cc = CIMClass(mc->name, scn);
           }
   
           // Add qualifiers:
   
           if (includeQualifiers)
           {
               if (_addQualifiers(ns, mc, 0, 0, cc) != 0)
               {
                   printf("T[%u]\n", __LINE__);
                   return -1;
               }
           }
   
           // Features:
   
           if (_addFeatures(ns, mc, localOnly, includeQualifiers,
               includeClassOrigin, propertyList, cc) != 0)
           {
               printf("T[%u]\n", __LINE__);
               return -1;
           }
       }
       catch (Exception& e)
       {
           printf("EXCEPTION[%s]\n", *Str(e));
           return -1;
       }
       catch (...)
       {
           printf("T[%u]\n", __LINE__);
           return -1;
       }
   
       return 0;
   }
   
   int MakeQualifierDecl(
       const MetaNameSpace* ns,
       const MetaQualifierDecl* mqd,
       class CIMQualifierDecl& cqd)
   {
       // Value:
   
       CIMValue cv;
   
       if (_makeValue(cv, mqd->type, mqd->subscript, mqd->value) != 0)
       {
           printf("T[%u]\n", __LINE__);
           return -1;
       }
   
       // Scope:
   
       CIMScope scope;
   
       if (mqd->scope & META_SCOPE_CLASS)
           scope.addScope(CIMScope::CLASS);
       if (mqd->scope & META_SCOPE_ASSOCIATION)
           scope.addScope(CIMScope::ASSOCIATION);
       if (mqd->scope & META_SCOPE_INDICATION)
           scope.addScope(CIMScope::INDICATION);
       if (mqd->scope & META_SCOPE_PROPERTY)
           scope.addScope(CIMScope::PROPERTY);
       if (mqd->scope & META_SCOPE_REFERENCE)
           scope.addScope(CIMScope::REFERENCE);
       if (mqd->scope & META_SCOPE_METHOD)
           scope.addScope(CIMScope::METHOD);
       if (mqd->scope & META_SCOPE_PARAMETER);
           scope.addScope(CIMScope::PARAMETER);
   
       // Flavor:
   
       CIMFlavor flavor;
   
       if (mqd->flavor & META_FLAVOR_OVERRIDABLE)
           flavor.addFlavor(CIMFlavor::OVERRIDABLE);
       if (mqd->flavor & META_FLAVOR_TOSUBCLASS)
           flavor.addFlavor(CIMFlavor::TOSUBCLASS);
       if (mqd->flavor & META_FLAVOR_TOINSTANCE)
           flavor.addFlavor(CIMFlavor::TOINSTANCE);
       if (mqd->flavor & META_FLAVOR_TRANSLATABLE)
           flavor.addFlavor(CIMFlavor::TRANSLATABLE);
       if (mqd->flavor & META_FLAVOR_DISABLEOVERRIDE)
           flavor.addFlavor(CIMFlavor::DISABLEOVERRIDE);
       if (mqd->flavor & META_FLAVOR_RESTRICTED)
           flavor.addFlavor(CIMFlavor::RESTRICTED);
   
       // Array size:
   
       Uint32 arraySize;
   
       if (mqd->subscript == -1)
           arraySize = 0;
       else
           arraySize = mqd->subscript;
   
       cqd = CIMQualifierDecl(mqd->name, cv, scope, flavor, arraySize);
   
       return 0;
   }
   
   PEGASUS_NAMESPACE_END


Legend:
Removed from v.1.1  
changed lines
  Added in v.1.1.2.2

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2