Changeset 251


Ignore:
Timestamp:
Mar 11, 2007, 2:22:39 PM (18 years ago)
Author:
cinc
Message:

Implemented some methods. Bug fixes and documentation.

Location:
trunk/nom
Files:
6 edited

Legend:

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

    r242 r251  
    1616* The Initial Developer of the Original Code is
    1717* netlabs.org: Chris Wohlgemuth <cinc-ml@netlabs.org>.
    18 * Portions created by the Initial Developer are Copyright (C) 2005-2006
     18* Portions created by the Initial Developer are Copyright (C) 2005-2007
    1919* the Initial Developer. All Rights Reserved.
    2020*
     
    3535 * And remember, phase 3 is near...
    3636 */
     37/** \file nomobj.idl
     38   
     39    Implementation file for the NOM class NOMClassMgr.
     40*/
     41
    3742#ifndef NOM_NOMClassMgr_IMPLEMENTATION_FILE
    3843#define NOM_NOMClassMgr_IMPLEMENTATION_FILE
  • TabularUnified trunk/nom/class_c/nomcls.c

    r242 r251  
    3232*
    3333* ***** END LICENSE BLOCK ***** */
     34/** \file noncls.c
     35   
     36    Implementation file for the NOMClass class.
     37*/
    3438#ifndef NOM_NOMClass_IMPLEMENTATION_FILE
    3539#define NOM_NOMClass_IMPLEMENTATION_FILE
     
    8387  ncp=(NOMClassPriv*)_ncpObject;
    8488
     89  /* Allocate memory big enough to hold an object. This means the size is that of the
     90     mtab pointer and all instance variables. */
    8591  if((nObj=_nomAllocate(nomSelf, ncp->mtab->ulInstanceSize, NULLHANDLE))==NULLHANDLE)
    8692    return NULLHANDLE;
     
    149155
    150156/**
    151    Function which implements the nomGetName() method of NOMClass.
     157   Function which implements the nomGetCreatedClassName() method of NOMClass.
    152158*/
    153 NOM_Scope CORBA_string NOMLINK impl_NOMClass_nomGetName(NOMClass* nomSelf, CORBA_Environment *ev)
    154 {
    155   return nomSelf->mtab->nomClassName;
     159NOM_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;
    156171}
    157172
     
    212227
    213228      /* 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),
    216234                              0, 0, NULLHANDLE))
     235
    217236        {
    218237          NOMClassPriv* ncPriv;
  • TabularUnified trunk/nom/class_c/nomobj.c

    r222 r251  
    1616* The Initial Developer of the Original Code is
    1717* netlabs.org: Chris Wohlgemuth <cinc-ml@netlabs.org>.
    18 * Portions created by the Initial Developer are Copyright (C) 2005-2006
     18* Portions created by the Initial Developer are Copyright (C) 2005-2007
    1919* the Initial Developer. All Rights Reserved.
    2020*
     
    3232*
    3333* ***** END LICENSE BLOCK ***** */
     34/** \file nomobj.idl
     35   
     36    Implementation file for the NOM class NOMObject.
     37*/
     38
    3439#ifndef NOM_NOMObject_IMPLEMENTATION_FILE
    3540#define NOM_NOMObject_IMPLEMENTATION_FILE
     
    4954
    5055/**
    51 
    5256    \brief This function implements the method nomInit() of class NOMObject.
    5357 */
    5458NOM_Scope void  NOMLINK impl_NOMObject_nomInit(NOMObject *nomSelf, CORBA_Environment *ev)
    5559
    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/**
    6264    \brief This function implements the method nomUnInit() of class NOMObject.
    6365 */
     
    7173
    7274/**
    73 
    7475    \brief This function implements the method nomGetSize() of class NOMObject.
    7576 */
     
    8788
    8889/**
    89 
    9090    \brief This function implements the method delete() of class NOMObject.
    9191
     
    121121
    122122/**
    123 
    124123    \brief This function implements the method nomGetClass() of class NOMObject.
    125124    It returns a pointer to the class object of this object.
     
    162161
    163162
     163NOM_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
     188NOM_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*/
     206NOM_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  
    6565
    6666  /**
    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().
    6871
    6972     \par How to override:
    7073     This method is usually not overriden.
    7174
    72      \sa impl_NOMClass_nomGetName()
     75     \sa nomGetClassName()
    7376   */
    74   string nomGetName();
     77  string nomGetCreatedClassName();
    7578
    7679  /**
     
    104107     method is always called during object creation.
    105108
    106      \par How to override
     109     \par How to override:
    107110     This method can be overriden to track the creation of objects. When doing so
    108111     the parent should be called first.
     
    130133     this method does nothing. It's for compatibility with ported code.
    131134
    132      \par How to override
     135     \par How to override:
    133136     This method is usually not overriden.
    134137 
     
    137140  void nomDeallocate(in gpointer memptr);
    138141  void nomSetObjectCreateInfo(in gpointer ncpObject);
     142
     143  /**
     144     \remarks
     145     The return type may change.
     146   */
    139147  gpointer nomGetObjectCreateInfo();
    140148
     
    145153     also be registered.
    146154
     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
    147160     \sa impl_NOMClass_nomClassReady()
    148161   */
    149162  void nomClassReady();
    150163
     164  /**
     165     \warning
     166     The type of this variable will change!
     167  */
    151168  NOMINSTANCEVAR(string ncpObject);     //NOMClassPriv structure holding info about the object this class can create
    152169  NOMOVERRIDE(nomInit);
  • TabularUnified trunk/nom/idl/nomobj.idl

    r250 r251  
    161161   */
    162162  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
    163209};
    164210
  • TabularUnified trunk/nom/include/nomapi.h

    r250 r251  
    7373} nomClassDataStructure, *NomClassDataStructurePtr;
    7474
     75/**
     76   Structure describing the parameters of a static method. The information
     77   is used for runtime type information.
     78 */
    7579typedef struct nomParmInfoStruct {
    7680  gulong ulNumParms;  /* The number of parameters for this method */
    7781  gchar* pReturnType;
    78   gchar* pParm[];    /* Parameter types */
     82  gchar* pParm[];     /* Parameter types */
    7983}nomParmInfo;
    8084
     
    141145#define NOM_FLG_NOMUNINIT_OVERRIDEN  0x00000002
    142146
    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.
    144148   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).
    146152*/
    147153typedef struct
    148154{
    149155  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.    */
    151159  gulong            ulClassSize;        /* The size of an instance (mtab+ instance vars)                  */
    152160  gulong        ulPrivClassSize;        /* The size of this private struct including mtab (not pointr but
    153161                                           real filled structure. Do we need this?                         */
    154   // gulong        ulIsMetaClass;          /* Set to 1 if this is a metaclass                                 */
    155162  gulong        ulClassFlags;           /* Set to 1 if this is a metaclass                                 */
    156163  nomStaticClassInfo *sci;              /* Class description                                               */
     164  /* FIXME: the following list may be obsolete maybe when we just use the parentMtabStruc??                */
    157165  nomMethodTabList mtabList;            /* The (private) internal list of mtabs we maintain
    158166                                           struct nomMethodTabList {
Note: See TracChangeset for help on using the changeset viewer.