Changeset 221


Ignore:
Timestamp:
Feb 3, 2007, 11:01:41 PM (18 years ago)
Author:
cinc
Message:

Changes...

Location:
trunk/nom
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/nom/class_c/nomclassmanager.c

    r220 r221  
    5656   \remark This method isn't implemented yet.
    5757 */
    58 NOM_Scope CORBA_Object NOMLINK impl_NOMClassMgr_nomFindClassFromId(NOMClassMgr* nomSelf,
    59                                                                    const CORBA_long classId,
     58NOM_Scope PNOMObject NOMLINK impl_NOMClassMgr_nomFindClassFromId(NOMClassMgr* nomSelf,
     59                                                                 const CORBA_long classId,
     60                                                                 const CORBA_long ulMajorVersion,
     61                                                                 const CORBA_long ulMinorVersion,
     62                                                                 CORBA_Environment *ev)
     63{
     64  /*  NOMClassMgrData *nomThis = NOMClassMgrGetData(nomSelf); */
     65  CORBA_Object nomRetval;
     66
     67  nomPrintf("%s: %s not implemented yet (line %d)\n", __FILE__, __FUNCTION__, __LINE__);
     68  nomRetval=NULL;
     69  return nomRetval;
     70}
     71
     72/**
     73   \brief Function which implements the nomFindClassFromName() method of NOMClassMgr.
     74 */
     75NOM_Scope PNOMObject NOMLINK impl_NOMClassMgr_nomFindClassFromName(NOMClassMgr* nomSelf,
     76                                                                   const CORBA_char * className,
    6077                                                                   const CORBA_long ulMajorVersion,
    6178                                                                   const CORBA_long ulMinorVersion,
    6279                                                                   CORBA_Environment *ev)
    63 {
    64   /*  NOMClassMgrData *nomThis = NOMClassMgrGetData(nomSelf); */
    65   CORBA_Object nomRetval;
    66 
    67   nomPrintf("%s: %s not implemented yet (line %d)\n", __FILE__, __FUNCTION__, __LINE__);
    68   nomRetval=NULL;
    69   return nomRetval;
    70 }
    71 
    72 /**
    73    \brief Function which implements the nomFindClassFromName() method of NOMClassMgr.
    74  */
    75 NOM_Scope CORBA_Object NOMLINK impl_NOMClassMgr_nomFindClassFromName(NOMClassMgr* nomSelf,
    76                                                                      const CORBA_char * className,
    77                                                                      const CORBA_long ulMajorVersion,
    78                                                                      const CORBA_long ulMinorVersion,
    79                                                                      CORBA_Environment *ev)
    8080{
    8181  CORBA_Object nomRetval=NULLHANDLE;
     
    144144
    145145
    146 
    147146/**
    148147   \brief Function which implements the nomGetClassList() method of NOMClassMgr.
     
    159158
    160159NOM_Scope gpointer NOMLINK impl_NOMClassMgr_nomGetClassInfoPtrFromName(NOMClassMgr* nomSelf,
    161                                                                        const CORBA_char * className, CORBA_Environment *ev)
     160                                                                       const CORBA_char * className,
     161                                                                       CORBA_Environment *ev)
    162162{
    163163  nomMethodTab * mtab;
     
    176176
    177177
    178 /*
     178/**
    179179  This function is called when a method is (accidently) removed from our list.
    180180  This may happen e.g. when a class is registered again using the same name. The old
  • TabularUnified trunk/nom/include/nomtk.h

    r195 r221  
    9090                                                    NOM_ulong majorVersion,
    9191                                                    NOM_ulong minorVersion);
    92 void addMethodAndDataToThisPrivClassStruct(NOMClassPriv* nClass, NOMClassPriv* ncpParent, nomStaticClassInfo *sci);
     92boolean addMethodAndDataToThisPrivClassStruct(NOMClassPriv* nClass, NOMClassPriv* ncpParent, nomStaticClassInfo *sci);
    9393NOMClass*  createNOMObjectClassObjectAndUpdateNOMObject(NOMClass* nomClass, NOMClassPriv* nClass, NOM_ulong ulSize);
    9494void fillCClassDataStructParentMtab(nomStaticClassInfo *sci, NOMClassPriv *nClass, NOMClass *nomClass);
  • TabularUnified trunk/nom/src/nombuildclass.c

    r210 r221  
    3232*
    3333* ***** END LICENSE BLOCK ***** */
     34/** \file
     35    This File contains most of the magic to create classes for NOM.
     36 */
    3437
    3538#define INCL_DOS
     
    320323
    321324
    322 /*
     325/**
    323326  - This function builds the nomMethodTab of class nClass.
    324327  - Calculates the method thunks
     
    328331  methods.
    329332 */
    330 void addMethodAndDataToThisPrivClassStruct(NOMClassPriv* nClass, NOMClassPriv* ncpParent, nomStaticClassInfo *sci)
     333boolean addMethodAndDataToThisPrivClassStruct(NOMClassPriv* nClass, NOMClassPriv* ncpParent, nomStaticClassInfo *sci)
    331334{
    332335  BYTE * mem;
     
    334337
    335338BUILDNOMCLASS_ENTER
     339
     340  /* Get mem for method thunking code. This assembler code is needed so the indirect
     341     jump to the methods from the object pointer which is known does work. For each class
     342     an individual thunking code must be calculated because the number of instance
     343     variables is not defined. */
     344  if(0!=sci->ulNumStaticMethods){
     345    nClass->mThunk=NOMMalloc(sizeof(nomMethodThunk)*sci->ulNumStaticMethods);
     346    if(!nClass->mThunk)
     347      return FALSE;
     348  }
    336349
    337350  nClass->sci=sci;   /* Save static class info for internal use */
     
    347360  nClass->parentMtabStruct.mtab=(nomMethodTab*)&nClass->thisMtab;
    348361 
    349 #ifdef DEBUG_NOMBUILDCLASS
    350   nomPrintf("nClass->mtabList.next: %x\n", nClass->mtabList.next);
    351 #endif
     362  DBG_NOMBUILDCLASS(TRUE, "nClass->mtabList.next: %x\n", nClass->mtabList.next);
    352363 
    353364  /* There're some parents. Copy parent mtab data into new mtab. */
     
    367378  /* Add class struct of this class. This includes the proc adresses. */
    368379  if(sci->ulNumStaticMethods) {
    369 #ifdef DEBUG_NOMBUILDCLASS
    370     nomPrintf("copy own data: %d (classptr+numProcs*procpointersize) from %x (cds, classDataStruct of %x) to %x (our mtab part)\n",
    371               sizeof(NOMClass*)+sci->ulNumStaticMethods*sizeof(nomMethodProc*),
    372               sci->nomCds, sci->nomCds->nomClassObject, mem);
    373 #endif
     380    DBG_NOMBUILDCLASS(TRUE,
     381                      "copy own data: %d (classptr+numProcs*procpointersize) from %x (cds, classDataStruct of %x) to %x (our mtab part)\n",
     382                      sizeof(NOMClass*)+sci->ulNumStaticMethods*sizeof(nomMethodProc*),
     383                      sci->nomCds, sci->nomCds->nomClassObject, mem);
     384
    374385    nClass->entries0=(NOMClass**)mem; /* Our part in the mtab starts here. We need this position to insert the class object pointer
    375386                                         later. */
     
    396407  sci->ccds->instanceDataToken=&nClass->thunk;
    397408
    398   BUILDNOMCLASS_LEAVE
     409  BUILDNOMCLASS_LEAVE;
     410  return TRUE;
    399411}
    400412
     
    530542  if((nClass=(NOMClassPriv*)NOMCalloc(1, ulMemSize))==NULLHANDLE)
    531543    return NULLHANDLE;
    532 
     544#if 0
     545  //Moved to addMethodAndDataToThisPrivClassStruct()
    533546  /* Get mem for method thunking code */
    534547  if(0!=sci->ulNumStaticMethods){
     
    539552    }
    540553  }
     554#endif
     555
    541556  /* Add class struct of this class.
    542557     This includes
     
    544559     -add the parent mtab info to the new built mtab
    545560  */
    546   addMethodAndDataToThisPrivClassStruct( nClass, ncpParent, sci) ;
    547 
     561  if(!addMethodAndDataToThisPrivClassStruct( nClass, ncpParent, sci)){
     562    NOMFree(nClass);
     563    return NULLHANDLE;
     564  };
     565 
    548566  DBG_NOMBUILDCLASS(TRUE, "%s:  mtab: %x\n", __FUNCTION__, nClass->mtab);
    549567
     
    598616  nomClassMeta=_nomFindClassFromName(NOMClassMgrObject, *sci->nomExplicitMetaId, majorVersion, minorVersion, NULLHANDLE);
    599617
    600 #ifdef DEBUG_NOMBUILDCLASS
    601   nomPrintf("%d: %x %s %s\n", __LINE__, nomClassMeta, *sci->nomClassId, *sci->nomExplicitMetaId);
    602 #endif
     618    DBG_NOMBUILDCLASS(TRUE, "%x %s %s\n", nomClassMeta, *sci->nomClassId, *sci->nomExplicitMetaId);
    603619
    604620  if(!nomClassMeta)
     
    632648                            nomClass);
    633649 
    634 #ifdef DEBUG_NOMBUILDCLASS
    635   nomPrintf("%d: New class Object (child of NOMClass): %x \n", __LINE__, nomClass);
    636 #endif
     650  DBG_NOMBUILDCLASS(TRUE, "New class Object (child of NOMClass): %x \n", nomClass);
    637651
    638652  /* nomClassReady() is called in nomBuildClass() */
     
    802816}
    803817
    804 
     818/**
     819   Build a class for NOM from the data generated from the IDL compiler and
     820   compiled into the DLL.
     821 */
    805822NOMEXTERN NOMClass * NOMLINK nomBuildClass(gulong ulReserved,
    806823                                           nomStaticClassInfo *sci,
     
    886903    priv_buildNOMObjectClassInfo(ulReserved, sci, /* yes */
    887904                                 ulMajorVersion, ulMinorVersion);
    888     return NULLHANDLE; /* We can't return a SOMClass for SOMObject because SOMClass isn't built yet. */
     905    return NULLHANDLE; /* We can't return a NOMClass for NOMObject because NOMClass isn't built yet. */
    889906  }
    890907
     
    907924    ncpParent=priv_findPrivClassInGlobalClassListFromName(pGlobalNomEnv,
    908925                                                          **(sci->nomIdAllParents)); /* This may also return a class not derived
    909                                                                                         from SOMClass */
     926                                                                                        from NOMClass */
    910927#endif
    911928    if(!ncpParent)
     
    10081025    return NULLHANDLE;
    10091026
     1027#if 0
     1028  //Moved to addMethodAndDataToThisPrivClassStruct()
    10101029  if(0!=sci->ulNumStaticMethods){
    10111030    /* Get mem for method thunking code */
     
    10161035    }
    10171036  }
     1037#endif
    10181038
    10191039  nClass->ulClassSize=sci->ulInstanceDataSize+ulParentDataSize;
    10201040
    10211041  if((nomClass=(NOMClass*)NOMCalloc(1, sci->ulInstanceDataSize+ulParentDataSize))==NULLHANDLE) {
    1022     NOMFree(nClass->mThunk);
     1042    //NOMFree(nClass->mThunk);
    10231043    NOMFree(nClass);
    10241044    return NULLHANDLE;
     
    10281048
    10291049  /* Add class struct of this class. This includes resolving the method adresses. */
    1030   addMethodAndDataToThisPrivClassStruct( nClass, ncpParent, sci) ;
     1050  if(!addMethodAndDataToThisPrivClassStruct( nClass, ncpParent, sci)){
     1051    NOMFree(nClass);
     1052    NOMFree(nomClass);
     1053    return NULLHANDLE;
     1054  };
    10311055
    10321056  /* Resolve overrides if any */
     
    10471071  nClass->mtab->nomClassName=*sci->nomClassId;
    10481072  nClass->mtab->ulInstanceSize=sci->ulInstanceDataSize+ulParentDataSize; /* Size of instance data of this class and all
    1049                                                                         parent classes. This isn't actually allocated for this class
    1050                                                                         object but the entry is used when creating the objects. */
     1073                                                                            parent classes. This isn't actually allocated
     1074                                                                            for this class object but the entry is used
     1075                                                                            when creating the objects. */
    10511076  fillCClassDataStructParentMtab(sci, nClass, nomClass);
    10521077
  • TabularUnified trunk/nom/src/nombuildnomcls.c

    r210 r221  
    4949/********************************************************/
    5050
    51 /* Define if you want to have messages from somBuildClass() and friends */
     51/* Define if you want to have messages from nomBuildClass() and friends */
    5252//#define DEBUG_NOMBUILDCLASS
    5353/* Define if you want to have messages from building NOMObject */
     
    5959    #define BUILDNOMCLASS_ENTER nomPrintf("\n%d: *** entering %s...\n",__LINE__,  __FUNCTION__);
    6060    #define BUILDNOMCLASS_LEAVE nomPrintf("%d: *** Leaving %s...\n\n",__LINE__,  __FUNCTION__);
     61    #define DBG_BUILDNOMCLASS(a, b,...)   if(a) nomPrintf("%d: " b , __LINE__,  __VA_ARGS__);
    6162#else
    6263    #define BUILDNOMCLASS_ENTER
    6364    #define BUILDNOMCLASS_LEAVE
     65    #define DBG_BUILDNOMCLASS(a, b,...)
    6466#endif
    6567
     
    101103
    102104  /* Calculate size of new class object */
    103 #ifdef DEBUG_BUILDNOMCLASS
    104   nomPrintf("%d: ncParent->mtab->mtabSize: %d\n", __LINE__, ncpParent->mtab->mtabSize);
    105 #endif
     105  DBG_BUILDNOMCLASS(TRUE, "ncParent->mtab->mtabSize: %d\n", ncpParent->mtab->mtabSize);
    106106
    107107  mtabSize=ncpParent->mtab->mtabSize+sizeof(nomMethodProc*)*(sci->ulNumStaticMethods)+sizeof(NOMClass*);/* numStaticMethods is correct here!
     
    114114  gulParentDataSize=ncpParent->mtab->ulInstanceSize; /* Parent instance size. This is the mtab pointer + instance vars */
    115115
    116 #ifdef DEBUG_BUILDNOMCLASS
    117   nomPrintf("%d: mtabSize is: %d, ulParentDataSize is: %d (instance vars + mtab ptr)\n",
    118             __LINE__, mtabSize, gulParentDataSize);
    119   nomPrintf("%d: sci->numStaticMethods: %d\n", __LINE__, sci->ulNumStaticMethods);
    120 #endif
     116  DBG_BUILDNOMCLASS(TRUE,"mtabSize is: %d, ulParentDataSize is: %d (instance vars + mtab ptr)\n",
     117                    mtabSize, gulParentDataSize);
     118  DBG_BUILDNOMCLASS(TRUE, "sci->numStaticMethods: %d\n", sci->ulNumStaticMethods);
    121119
    122120  /* Alloc private class struct using SOMCalloc. */
     
    124122    return NULLHANDLE;
    125123
    126   /* Get mem for method thunking code */
    127   nClass->mThunk=NOMMalloc(sizeof(nomMethodThunk)*sci->ulNumStaticMethods);
    128   if(!nClass->mThunk) {
    129     NOMFree(nClass);
    130     return NULLHANDLE;
    131   }
    132 
     124  /* Get mem for method thunking code. This assembler code is needed so the indirect
     125     jump to the methods from the object pointer which is known does work. For each class
     126     an individual thunking code must be calculated because the number of instance
     127     variables is not defined. */
     128#if 0
     129  //Moved to addMethodAndDataToThisPrivClassStruct()
     130  if(0!=sci->ulNumStaticMethods){
     131    nClass->mThunk=NOMMalloc(sizeof(nomMethodThunk)*sci->ulNumStaticMethods);
     132    if(!nClass->mThunk) {
     133      NOMFree(nClass);
     134      return NULLHANDLE;
     135    }
     136  }
     137#endif
    133138  /* The size of each instance of this class. A NOM object has a method tab pointer
    134139     at the beginning followed by the instance variables. */
     
    142147     mtab-entries[] to our new one before adding our own methods.
    143148     sci will be saved in nClass->sci */
    144 #warning !!!!! Move mem alloc for thunking into this func !!!!!
    145   addMethodAndDataToThisPrivClassStruct( nClass, ncpParent, sci);
     149  //#warning !!!!! Move mem alloc for thunking into this func !!!!!
     150  if(!addMethodAndDataToThisPrivClassStruct( nClass, ncpParent, sci)){
     151    NOMFree(nClass);
     152    return NULLHANDLE;
     153  };
    146154
    147155  /**********************************/
     
    261269  pGlobalNomEnv->nomObjectMetaClass=(NOMClass*)nomClass->mtab->entries[0];
    262270
    263 #ifdef DEBUG_BUILDNOMCLASS
    264   nomPrintf("%d: mtab: %x New class ptr (class object SOMClass): %x (SOMClassPriv: %x) for %s\n",
    265             __LINE__, nomClass->mtab, nomClass, nClass, *sci->nomClassId);
    266 #endif
     271    DBG_BUILDNOMCLASS(TRUE, "mtab: %x New class ptr (class object SOMClass): %x (SOMClassPriv: %x) for %s\n",
     272                      nomClass->mtab, nomClass, nClass, *sci->nomClassId);
    267273
    268274  pGlobalNomEnv->defaultMetaClass=nomClass;
     
    274280#endif
    275281
    276 
    277282  /* Run initialization code if any */
    278283  _nomInit(nomClass, NULLHANDLE);
  • TabularUnified trunk/nom/src/nombuildnomobj.c

    r139 r221  
    147147     an individual thunking code must be calculated because the number of instance
    148148     variables is not defined. */
    149   nClass->mThunk=NOMMalloc(sizeof(nomMethodThunk)*sci->ulNumStaticMethods);
    150   if(!nClass->mThunk) {
    151     NOMFree(nClass);
    152     return NULLHANDLE;
     149  if(0!=sci->ulNumStaticMethods){
     150    nClass->mThunk=NOMMalloc(sizeof(nomMethodThunk)*sci->ulNumStaticMethods);
     151    if(!nClass->mThunk) {
     152      NOMFree(nClass);
     153      return NULLHANDLE;
     154    }
    153155  }
    154156
Note: See TracChangeset for help on using the changeset viewer.