Changeset 251
- Timestamp:
- Mar 11, 2007, 2:22:39 PM (18 years ago)
- Location:
- trunk/nom
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/nom/class_c/nomclassmanager.c ¶
r242 r251 16 16 * The Initial Developer of the Original Code is 17 17 * netlabs.org: Chris Wohlgemuth <cinc-ml@netlabs.org>. 18 * Portions created by the Initial Developer are Copyright (C) 2005-200 618 * Portions created by the Initial Developer are Copyright (C) 2005-2007 19 19 * the Initial Developer. All Rights Reserved. 20 20 * … … 35 35 * And remember, phase 3 is near... 36 36 */ 37 /** \file nomobj.idl 38 39 Implementation file for the NOM class NOMClassMgr. 40 */ 41 37 42 #ifndef NOM_NOMClassMgr_IMPLEMENTATION_FILE 38 43 #define NOM_NOMClassMgr_IMPLEMENTATION_FILE -
TabularUnified trunk/nom/class_c/nomcls.c ¶
r242 r251 32 32 * 33 33 * ***** END LICENSE BLOCK ***** */ 34 /** \file noncls.c 35 36 Implementation file for the NOMClass class. 37 */ 34 38 #ifndef NOM_NOMClass_IMPLEMENTATION_FILE 35 39 #define NOM_NOMClass_IMPLEMENTATION_FILE … … 83 87 ncp=(NOMClassPriv*)_ncpObject; 84 88 89 /* Allocate memory big enough to hold an object. This means the size is that of the 90 mtab pointer and all instance variables. */ 85 91 if((nObj=_nomAllocate(nomSelf, ncp->mtab->ulInstanceSize, NULLHANDLE))==NULLHANDLE) 86 92 return NULLHANDLE; … … 149 155 150 156 /** 151 Function which implements the nomGet Name() method of NOMClass.157 Function which implements the nomGetCreatedClassName() method of NOMClass. 152 158 */ 153 NOM_Scope CORBA_string NOMLINK impl_NOMClass_nomGetName(NOMClass* nomSelf, CORBA_Environment *ev) 154 { 155 return nomSelf->mtab->nomClassName; 159 NOM_Scope CORBA_string NOMLINK impl_NOMClass_nomGetCreatedClassName(NOMClass* nomSelf, CORBA_Environment *ev) 160 { 161 NOMClassPriv* ncp; 162 163 /* The private struct characterizing the objects this meta class can create. */ 164 ncp=_nomGetObjectCreateInfo(nomSelf, NULLHANDLE); 165 166 if(!ncp) 167 return ""; /* That can not happen but anyway... */ 168 169 // return nomSelf->mtab->nomClassName; 170 return ncp->mtab->nomClassName; 156 171 } 157 172 … … 212 227 213 228 /* FIXME: no use of version information, yet. */ 214 //nomPrintf("I'm here (%s): ", _nomGetName(nomSelf, NULLHANDLE)); 215 if(!_nomFindClassFromName(NOMClassMgrObject, _nomGetName(nomSelf, NULLHANDLE), 229 230 //The following was used before changing nomGetname() 231 //if(!_nomFindClassFromName(NOMClassMgrObject, _nomGetName(nomSelf, NULLHANDLE), 232 // 0, 0, NULLHANDLE)) 233 if(!_nomFindClassFromName(NOMClassMgrObject, _nomGetClassName(nomSelf, NULLHANDLE), 216 234 0, 0, NULLHANDLE)) 235 217 236 { 218 237 NOMClassPriv* ncPriv; -
TabularUnified trunk/nom/class_c/nomobj.c ¶
r222 r251 16 16 * The Initial Developer of the Original Code is 17 17 * netlabs.org: Chris Wohlgemuth <cinc-ml@netlabs.org>. 18 * Portions created by the Initial Developer are Copyright (C) 2005-200 618 * Portions created by the Initial Developer are Copyright (C) 2005-2007 19 19 * the Initial Developer. All Rights Reserved. 20 20 * … … 32 32 * 33 33 * ***** END LICENSE BLOCK ***** */ 34 /** \file nomobj.idl 35 36 Implementation file for the NOM class NOMObject. 37 */ 38 34 39 #ifndef NOM_NOMObject_IMPLEMENTATION_FILE 35 40 #define NOM_NOMObject_IMPLEMENTATION_FILE … … 49 54 50 55 /** 51 52 56 \brief This function implements the method nomInit() of class NOMObject. 53 57 */ 54 58 NOM_Scope void NOMLINK impl_NOMObject_nomInit(NOMObject *nomSelf, CORBA_Environment *ev) 55 59 { 56 //nomPrintf(" Entering %s (%x) with nomSelf: 0x%x. nomSelf is: %s.\n", 57 // __FUNCTION__, impl_NOMObject_nomInit, nomSelf , nomSelf->mtab->nomClassName); 58 } 59 60 /** 61 60 61 } 62 63 /** 62 64 \brief This function implements the method nomUnInit() of class NOMObject. 63 65 */ … … 71 73 72 74 /** 73 74 75 \brief This function implements the method nomGetSize() of class NOMObject. 75 76 */ … … 87 88 88 89 /** 89 90 90 \brief This function implements the method delete() of class NOMObject. 91 91 … … 121 121 122 122 /** 123 124 123 \brief This function implements the method nomGetClass() of class NOMObject. 125 124 It returns a pointer to the class object of this object. … … 162 161 163 162 163 NOM_Scope CORBA_boolean NOMLINK impl_NOMObject_nomIsA(NOMObject* nomSelf, const PNOMClass nomClass, CORBA_Environment *ev) 164 { 165 /* NOMObjectData* nomThis=NOMObjectGetData(nomSelf); */ 166 NOMClassPriv* ncp; 167 nomMethodTabs mtabs; /* List of mtabs */ 168 169 if(!nomIsObj(nomClass)){ 170 g_warning("%s: class object pointer nomClass does not point to an object.", __FUNCTION__); 171 return FALSE; 172 } 173 174 /* Check if we have the class in our list of classes */ 175 ncp=(NOMClassPriv*)nomSelf->mtab->nomClsInfo; 176 mtabs=&ncp->mtabList; 177 while(mtabs) 178 { 179 if(nomClass==mtabs->mtab->nomClassObject) 180 return TRUE; 181 182 mtabs=mtabs->next; 183 } 184 return FALSE; 185 } 186 187 188 NOM_Scope CORBA_boolean NOMLINK impl_NOMObject_nomIsInstanceOf(NOMObject* nomSelf, const PNOMClass nomClass, CORBA_Environment *ev) 189 { 190 /* NOMObjectData* nomThis=NOMObjectGetData(nomSelf); */ 191 192 if(!nomIsObj(nomClass)){ 193 g_warning("%s: class object pointer nomClass does not point to an object.", __FUNCTION__); 194 return FALSE; 195 } 196 197 if(nomClass==_nomGetClass(nomSelf, NULLHANDLE)) 198 return TRUE; 199 200 return FALSE; 201 } 202 203 /** 204 Function which implements the nomGetClassName() method of NOMObject. 205 */ 206 NOM_Scope CORBA_string NOMLINK impl_NOMObject_nomGetClassName(NOMObject* nomSelf, CORBA_Environment *ev) 207 { 208 /* NOMObjectData* nomThis=NOMObjectGetData(nomSelf); */ 209 return nomSelf->mtab->nomClassName; 210 } -
TabularUnified trunk/nom/idl/nomcls.idl ¶
r250 r251 65 65 66 66 /** 67 This method returns the name of the class this class object is an instance of. 67 This method returns the name of the class this class object is the meta class of. This 68 means the returned string is the name of the class the metaclass creates instances of. 69 70 \remarks This method used to be called nomGetName(). 68 71 69 72 \par How to override: 70 73 This method is usually not overriden. 71 74 72 \sa impl_NOMClass_nomGetName()75 \sa nomGetClassName() 73 76 */ 74 string nomGet Name();77 string nomGetCreatedClassName(); 75 78 76 79 /** … … 104 107 method is always called during object creation. 105 108 106 \par How to override 109 \par How to override: 107 110 This method can be overriden to track the creation of objects. When doing so 108 111 the parent should be called first. … … 130 133 this method does nothing. It's for compatibility with ported code. 131 134 132 \par How to override 135 \par How to override: 133 136 This method is usually not overriden. 134 137 … … 137 140 void nomDeallocate(in gpointer memptr); 138 141 void nomSetObjectCreateInfo(in gpointer ncpObject); 142 143 /** 144 \remarks 145 The return type may change. 146 */ 139 147 gpointer nomGetObjectCreateInfo(); 140 148 … … 145 153 also be registered. 146 154 155 \remarks This method is only called by the system during class creation. 156 157 \par How to override: 158 This method is usually not overriden. 159 147 160 \sa impl_NOMClass_nomClassReady() 148 161 */ 149 162 void nomClassReady(); 150 163 164 /** 165 \warning 166 The type of this variable will change! 167 */ 151 168 NOMINSTANCEVAR(string ncpObject); //NOMClassPriv structure holding info about the object this class can create 152 169 NOMOVERRIDE(nomInit); -
TabularUnified trunk/nom/idl/nomobj.idl ¶
r250 r251 161 161 */ 162 162 PNOMObject new(); 163 164 /** 165 This method checks if the object is an instance of the given class or some subclass. Using 166 this method one can make sure some feature is available if the introducing class is known. 167 Every subclass of a given class also supports the features of the introducing class. 168 169 \remarks This method checks the validity of \e nomClass using nomIsObj() and returns FALSE 170 in case it's not an object. 171 172 \param nomClass Pointer to a class object. 173 174 \returns TRUE if the object is an instance of the given class or one of its 175 subclasses. 176 177 \sa nomIsInstanceOf() 178 */ 179 boolean nomIsA(in PNOMClass nomClass); 180 181 /** 182 This method checks if the object is an instance of exactly the given class. 183 184 185 \remarks This method checks the validity of \e nomClass using nomIsObj() and returns FALSE 186 in case it's not an object. 187 188 \param nomClass Pointer to a class object. 189 190 \returns TRUE if the object is an instance of exactly the given class. 191 192 \sa nomIsA() 193 */ 194 boolean nomIsInstanceOf(in PNOMClass nomClass); 195 /** 196 This method returns the name of the class this object is an instance of. 197 198 \par How to override: 199 This method is usually not overriden. 200 201 \returns A null terminated C string. Note that this is not a copy. The string 202 is valid as long as the class object exists (not the instance). 203 204 \sa impl_NOMClass_nomGetClassName() 205 */ 206 string nomGetClassName(); 207 208 163 209 }; 164 210 -
TabularUnified trunk/nom/include/nomapi.h ¶
r250 r251 73 73 } nomClassDataStructure, *NomClassDataStructurePtr; 74 74 75 /** 76 Structure describing the parameters of a static method. The information 77 is used for runtime type information. 78 */ 75 79 typedef struct nomParmInfoStruct { 76 80 gulong ulNumParms; /* The number of parameters for this method */ 77 81 gchar* pReturnType; 78 gchar* pParm[]; /* Parameter types */82 gchar* pParm[]; /* Parameter types */ 79 83 }nomParmInfo; 80 84 … … 141 145 #define NOM_FLG_NOMUNINIT_OVERRIDEN 0x00000002 142 146 143 /* This structure holds additional informationen about class not to be found in nomMethodTab.147 /* This structure holds additional informationen about a class not to be found in nomMethodTab. 144 148 It holds the default method table of the class and the thunking code necessary to access 145 data and methods. 149 data and methods. Note that the name may be slightly misleading. This structure is not 150 limited to objects/classes which are related to NOMClass. It's a structure used by every NOM 151 class (be it a normal class or a meta class). 146 152 */ 147 153 typedef struct 148 154 { 149 155 nomMethodTab *mtab; /* This is the mtab for this class it points to thisMtab at the 150 end (not mtab for objects created by this meta class) */ 156 end. This is not an mtab for objects created by a meta class. 157 Meta classes store the pointer to a NOMClassPriv which specify 158 the objects they may create in a private instance variable. */ 151 159 gulong ulClassSize; /* The size of an instance (mtab+ instance vars) */ 152 160 gulong ulPrivClassSize; /* The size of this private struct including mtab (not pointr but 153 161 real filled structure. Do we need this? */ 154 // gulong ulIsMetaClass; /* Set to 1 if this is a metaclass */155 162 gulong ulClassFlags; /* Set to 1 if this is a metaclass */ 156 163 nomStaticClassInfo *sci; /* Class description */ 164 /* FIXME: the following list may be obsolete maybe when we just use the parentMtabStruc?? */ 157 165 nomMethodTabList mtabList; /* The (private) internal list of mtabs we maintain 158 166 struct nomMethodTabList {
Note:
See TracChangeset
for help on using the changeset viewer.