Changeset 221
- Timestamp:
- Feb 3, 2007, 11:01:41 PM (18 years ago)
- Location:
- trunk/nom
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/nom/class_c/nomclassmanager.c ¶
r220 r221 56 56 \remark This method isn't implemented yet. 57 57 */ 58 NOM_Scope CORBA_Object NOMLINK impl_NOMClassMgr_nomFindClassFromId(NOMClassMgr* nomSelf, 59 const CORBA_long classId, 58 NOM_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 */ 75 NOM_Scope PNOMObject NOMLINK impl_NOMClassMgr_nomFindClassFromName(NOMClassMgr* nomSelf, 76 const CORBA_char * className, 60 77 const CORBA_long ulMajorVersion, 61 78 const CORBA_long ulMinorVersion, 62 79 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)80 80 { 81 81 CORBA_Object nomRetval=NULLHANDLE; … … 144 144 145 145 146 147 146 /** 148 147 \brief Function which implements the nomGetClassList() method of NOMClassMgr. … … 159 158 160 159 NOM_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) 162 162 { 163 163 nomMethodTab * mtab; … … 176 176 177 177 178 /* 178 /** 179 179 This function is called when a method is (accidently) removed from our list. 180 180 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 90 90 NOM_ulong majorVersion, 91 91 NOM_ulong minorVersion); 92 voidaddMethodAndDataToThisPrivClassStruct(NOMClassPriv* nClass, NOMClassPriv* ncpParent, nomStaticClassInfo *sci);92 boolean addMethodAndDataToThisPrivClassStruct(NOMClassPriv* nClass, NOMClassPriv* ncpParent, nomStaticClassInfo *sci); 93 93 NOMClass* createNOMObjectClassObjectAndUpdateNOMObject(NOMClass* nomClass, NOMClassPriv* nClass, NOM_ulong ulSize); 94 94 void fillCClassDataStructParentMtab(nomStaticClassInfo *sci, NOMClassPriv *nClass, NOMClass *nomClass); -
TabularUnified trunk/nom/src/nombuildclass.c ¶
r210 r221 32 32 * 33 33 * ***** END LICENSE BLOCK ***** */ 34 /** \file 35 This File contains most of the magic to create classes for NOM. 36 */ 34 37 35 38 #define INCL_DOS … … 320 323 321 324 322 /* 325 /** 323 326 - This function builds the nomMethodTab of class nClass. 324 327 - Calculates the method thunks … … 328 331 methods. 329 332 */ 330 voidaddMethodAndDataToThisPrivClassStruct(NOMClassPriv* nClass, NOMClassPriv* ncpParent, nomStaticClassInfo *sci)333 boolean addMethodAndDataToThisPrivClassStruct(NOMClassPriv* nClass, NOMClassPriv* ncpParent, nomStaticClassInfo *sci) 331 334 { 332 335 BYTE * mem; … … 334 337 335 338 BUILDNOMCLASS_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 } 336 349 337 350 nClass->sci=sci; /* Save static class info for internal use */ … … 347 360 nClass->parentMtabStruct.mtab=(nomMethodTab*)&nClass->thisMtab; 348 361 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); 352 363 353 364 /* There're some parents. Copy parent mtab data into new mtab. */ … … 367 378 /* Add class struct of this class. This includes the proc adresses. */ 368 379 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 374 385 nClass->entries0=(NOMClass**)mem; /* Our part in the mtab starts here. We need this position to insert the class object pointer 375 386 later. */ … … 396 407 sci->ccds->instanceDataToken=&nClass->thunk; 397 408 398 BUILDNOMCLASS_LEAVE 409 BUILDNOMCLASS_LEAVE; 410 return TRUE; 399 411 } 400 412 … … 530 542 if((nClass=(NOMClassPriv*)NOMCalloc(1, ulMemSize))==NULLHANDLE) 531 543 return NULLHANDLE; 532 544 #if 0 545 //Moved to addMethodAndDataToThisPrivClassStruct() 533 546 /* Get mem for method thunking code */ 534 547 if(0!=sci->ulNumStaticMethods){ … … 539 552 } 540 553 } 554 #endif 555 541 556 /* Add class struct of this class. 542 557 This includes … … 544 559 -add the parent mtab info to the new built mtab 545 560 */ 546 addMethodAndDataToThisPrivClassStruct( nClass, ncpParent, sci) ; 547 561 if(!addMethodAndDataToThisPrivClassStruct( nClass, ncpParent, sci)){ 562 NOMFree(nClass); 563 return NULLHANDLE; 564 }; 565 548 566 DBG_NOMBUILDCLASS(TRUE, "%s: mtab: %x\n", __FUNCTION__, nClass->mtab); 549 567 … … 598 616 nomClassMeta=_nomFindClassFromName(NOMClassMgrObject, *sci->nomExplicitMetaId, majorVersion, minorVersion, NULLHANDLE); 599 617 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); 603 619 604 620 if(!nomClassMeta) … … 632 648 nomClass); 633 649 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); 637 651 638 652 /* nomClassReady() is called in nomBuildClass() */ … … 802 816 } 803 817 804 818 /** 819 Build a class for NOM from the data generated from the IDL compiler and 820 compiled into the DLL. 821 */ 805 822 NOMEXTERN NOMClass * NOMLINK nomBuildClass(gulong ulReserved, 806 823 nomStaticClassInfo *sci, … … 886 903 priv_buildNOMObjectClassInfo(ulReserved, sci, /* yes */ 887 904 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. */ 889 906 } 890 907 … … 907 924 ncpParent=priv_findPrivClassInGlobalClassListFromName(pGlobalNomEnv, 908 925 **(sci->nomIdAllParents)); /* This may also return a class not derived 909 from SOMClass */926 from NOMClass */ 910 927 #endif 911 928 if(!ncpParent) … … 1008 1025 return NULLHANDLE; 1009 1026 1027 #if 0 1028 //Moved to addMethodAndDataToThisPrivClassStruct() 1010 1029 if(0!=sci->ulNumStaticMethods){ 1011 1030 /* Get mem for method thunking code */ … … 1016 1035 } 1017 1036 } 1037 #endif 1018 1038 1019 1039 nClass->ulClassSize=sci->ulInstanceDataSize+ulParentDataSize; 1020 1040 1021 1041 if((nomClass=(NOMClass*)NOMCalloc(1, sci->ulInstanceDataSize+ulParentDataSize))==NULLHANDLE) { 1022 NOMFree(nClass->mThunk);1042 //NOMFree(nClass->mThunk); 1023 1043 NOMFree(nClass); 1024 1044 return NULLHANDLE; … … 1028 1048 1029 1049 /* 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 }; 1031 1055 1032 1056 /* Resolve overrides if any */ … … 1047 1071 nClass->mtab->nomClassName=*sci->nomClassId; 1048 1072 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. */ 1051 1076 fillCClassDataStructParentMtab(sci, nClass, nomClass); 1052 1077 -
TabularUnified trunk/nom/src/nombuildnomcls.c ¶
r210 r221 49 49 /********************************************************/ 50 50 51 /* Define if you want to have messages from somBuildClass() and friends */51 /* Define if you want to have messages from nomBuildClass() and friends */ 52 52 //#define DEBUG_NOMBUILDCLASS 53 53 /* Define if you want to have messages from building NOMObject */ … … 59 59 #define BUILDNOMCLASS_ENTER nomPrintf("\n%d: *** entering %s...\n",__LINE__, __FUNCTION__); 60 60 #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__); 61 62 #else 62 63 #define BUILDNOMCLASS_ENTER 63 64 #define BUILDNOMCLASS_LEAVE 65 #define DBG_BUILDNOMCLASS(a, b,...) 64 66 #endif 65 67 … … 101 103 102 104 /* 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); 106 106 107 107 mtabSize=ncpParent->mtab->mtabSize+sizeof(nomMethodProc*)*(sci->ulNumStaticMethods)+sizeof(NOMClass*);/* numStaticMethods is correct here! … … 114 114 gulParentDataSize=ncpParent->mtab->ulInstanceSize; /* Parent instance size. This is the mtab pointer + instance vars */ 115 115 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); 121 119 122 120 /* Alloc private class struct using SOMCalloc. */ … … 124 122 return NULLHANDLE; 125 123 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 133 138 /* The size of each instance of this class. A NOM object has a method tab pointer 134 139 at the beginning followed by the instance variables. */ … … 142 147 mtab-entries[] to our new one before adding our own methods. 143 148 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 }; 146 154 147 155 /**********************************/ … … 261 269 pGlobalNomEnv->nomObjectMetaClass=(NOMClass*)nomClass->mtab->entries[0]; 262 270 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); 267 273 268 274 pGlobalNomEnv->defaultMetaClass=nomClass; … … 274 280 #endif 275 281 276 277 282 /* Run initialization code if any */ 278 283 _nomInit(nomClass, NULLHANDLE); -
TabularUnified trunk/nom/src/nombuildnomobj.c ¶
r139 r221 147 147 an individual thunking code must be calculated because the number of instance 148 148 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 } 153 155 } 154 156
Note:
See TracChangeset
for help on using the changeset viewer.