home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 8 / FreshFishVol8-CD2.bin / bbs / gnu / gcc-2.6.3-bin.lha / GNU / lib / gcc-lib / amigados / 2.6.3 / include / objc / objc-api.h < prev    next >
C/C++ Source or Header  |  1994-12-23  |  15KB  |  453 lines

  1. /* GNU Objective-C Runtime API.
  2.    Copyright (C) 1993 Free Software Foundation, Inc.
  3.  
  4. This file is part of GNU CC.
  5.  
  6. GNU CC is free software; you can redistribute it and/or modify it
  7. under the terms of the GNU General Public License as published by the
  8. Free Software Foundation; either version 2, or (at your option) any
  9. later version.
  10.  
  11. GNU CC is distributed in the hope that it will be useful, but WITHOUT
  12. ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13. or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
  14. License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with GNU CC; see the file COPYING.  If not, write to
  18. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  19.  
  20. /* As a special exception, if you link this library with files compiled
  21.    with GCC to produce an executable, this does not cause the resulting
  22.    executable to be covered by the GNU General Public License.  This
  23.    exception does not however invalidate any other reasons why the
  24.    executable file might be covered by the GNU General Public License. */
  25.  
  26. #ifndef __objc_api_INCLUDE_GNU
  27. #define __objc_api_INCLUDE_GNU
  28.  
  29. #include "objc/objc.h"
  30. #include "objc/hash.h"
  31. #include <stdio.h>
  32.  
  33. /* For functions which return Method_t */
  34. #define METHOD_NULL    (Method_t)0
  35.                                                 /* Boolean typedefs */
  36. /*
  37. ** Method descriptor returned by introspective Object methods.
  38. ** This is really just the first part of the more complete objc_method
  39. ** structure defined below and used internally by the runtime.
  40. */
  41. struct objc_method_description
  42. {
  43.     SEL name;            /* this is a selector, not a string */
  44.     char *types;        /* type encoding */
  45. };
  46.  
  47. /* Filer types used to describe Ivars and Methods.  */
  48. #define _C_ID       '@'
  49. #define _C_CLASS    '#'
  50. #define _C_SEL      ':'
  51. #define _C_CHR      'c'
  52. #define _C_UCHR     'C'
  53. #define _C_SHT      's'
  54. #define _C_USHT     'S'
  55. #define _C_INT      'i'
  56. #define _C_UINT     'I'
  57. #define _C_LNG      'l'
  58. #define _C_ULNG     'L'
  59. #define _C_FLT      'f'
  60. #define _C_DBL      'd'
  61. #define _C_BFLD     'b'
  62. #define _C_VOID     'v'
  63. #define _C_UNDEF    '?'
  64. #define _C_PTR      '^'
  65. #define _C_CHARPTR  '*'
  66. #define _C_ATOM     '%'
  67. #define _C_ARY_B    '['
  68. #define _C_ARY_E    ']'
  69. #define _C_UNION_B  '('
  70. #define _C_UNION_E  ')'
  71. #define _C_STRUCT_B '{'
  72. #define _C_STRUCT_E '}'
  73.  
  74.  
  75.  
  76. /*
  77. ** Set this variable nonzero to print a line describing each
  78. ** message that is sent.  (this is currently disabled)
  79. */
  80. extern BOOL objc_trace;
  81.  
  82.  
  83. /*
  84. ** Whereas a Module (defined further down) is the root (typically) of a file,
  85. ** a Symtab is the root of the class and category definitions within the
  86. ** module.  
  87. ** 
  88. ** A Symtab contains a variable length array of pointers to classes and
  89. ** categories  defined in the module. 
  90. */
  91. typedef struct objc_symtab {
  92.   unsigned long sel_ref_cnt;                     /* Unknown. */
  93.   SEL        refs;                              /* Unknown. */
  94.   unsigned short cls_def_cnt;                   /* Number of classes compiled
  95.                                                   (defined) in the module. */
  96.   unsigned short cat_def_cnt;                   /* Number of categories 
  97.                                                   compiled (defined) in the 
  98.                                                   module. */
  99.   void      *defs[1];                           /* Variable array of pointers.
  100.                                                   cls_def_cnt of type Class* 
  101.                                                   followed by cat_def_cnt of
  102.                                                   type Category_t. */
  103. } Symtab,   *Symtab_t;
  104.  
  105.  
  106. /*
  107. ** The compiler generates one of these structures for each module that
  108. ** composes the executable (eg main.m).  
  109. ** 
  110. ** This data structure is the root of the definition tree for the module.  
  111. ** 
  112. ** A collect program runs between ld stages and creates a ObjC ctor array. 
  113. ** That array holds a pointer to each module structure of the executable. 
  114. */
  115. typedef struct objc_module {
  116.   unsigned long version;                        /* Compiler revision. */
  117.   unsigned long size;                           /* sizeof(Module). */
  118.   const char* name;                             /* Name of the file where the 
  119.                                                   module was generated.   The 
  120.                                                   name includes the path. */
  121.   Symtab_t    symtab;                           /* Pointer to the Symtab of
  122.                                                   the module.  The Symtab
  123.                                                   holds an array of pointers to 
  124.                                                   the classes and categories 
  125.                                                   defined in the module. */
  126. } Module, *Module_t;
  127.  
  128.  
  129. /*
  130. ** The compiler generates one of these structures for a class that has
  131. ** instance variables defined in its specification. 
  132. */
  133. typedef struct objc_ivar* Ivar_t;
  134. typedef struct objc_ivar_list {
  135.   int   ivar_count;                             /* Number of structures (Ivar) 
  136.                                                   contained in the list.  One
  137.                                                   structure per instance 
  138.                                                   variable defined in the
  139.                                                   class. */
  140.   struct objc_ivar {
  141.     const char* ivar_name;                      /* Name of the instance
  142.                                                   variable as entered in the
  143.                                                   class definition. */
  144.     const char* ivar_type;                      /* Description of the Ivar's
  145.                                                   type.  Useful for 
  146.                                                   debuggers. */
  147.     int        ivar_offset;                    /* Byte offset from the base 
  148.                                                   address of the instance 
  149.                                                   structure to the variable. */
  150.  
  151.   } ivar_list[1];                               /* Variable length 
  152.                                                   structure. */
  153. } IvarList, *IvarList_t;
  154.  
  155.  
  156. /*
  157. ** The compiler generates one (or more) of these structures for a class that
  158. ** has methods defined in its specification. 
  159. ** 
  160. ** The implementation of a class can be broken into separate pieces in a file
  161. ** and categories can break them across modules. To handle this problem is a
  162. ** singly linked list of methods. 
  163. */
  164. typedef struct objc_method Method;
  165. typedef Method* Method_t;
  166. typedef struct objc_method_list {
  167.   struct objc_method_list*  method_next;      /* This variable is used to link 
  168.                                                 a method list to another.  It 
  169.                                                 is a singly linked list. */
  170.   int            method_count;               /* Number of methods defined in 
  171.                                                 this structure. */
  172.   struct objc_method {
  173.     SEL         method_name;                  /* This variable is the method's 
  174.                                                 name.  It is a char*. 
  175.                                                   The unique integer passed to 
  176.                                                 objc_msg_send is a char* too.  
  177.                                                 It is compared against 
  178.                                                 method_name using strcmp. */
  179.     const char* method_types;                 /* Description of the method's
  180.                                                 parameter list.  Useful for
  181.                                                 debuggers. */
  182.     IMP         method_imp;                   /* Address of the method in the 
  183.                                                 executable. */
  184.   } method_list[1];                           /* Variable length 
  185.                                                 structure. */
  186. } MethodList, *MethodList_t;
  187.  
  188. struct objc_protocol_list {
  189.   struct objc_protocol_list *next;
  190.   int count;
  191.   Protocol *list[1];
  192. };
  193.  
  194. /*
  195. ** This is used to assure consistent access t