api-smobs.texi 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  1. @c -*-texinfo-*-
  2. @c This is part of the GNU Guile Reference Manual.
  3. @c Copyright (C) 1996, 1997, 2000, 2001, 2002, 2003, 2004
  4. @c Free Software Foundation, Inc.
  5. @c See the file guile.texi for copying conditions.
  6. @page
  7. @node Smobs
  8. @section Smobs
  9. This chapter contains reference information related to defining and
  10. working with smobs. See @ref{Defining New Types (Smobs)} for a
  11. tutorial-like introduction to smobs.
  12. @deftypefun scm_t_bits scm_make_smob_type (const char *name, size_t size)
  13. This function adds a new smob type, named @var{name}, with instance size
  14. @var{size}, to the system. The return value is a tag that is used in
  15. creating instances of the type.
  16. If @var{size} is 0, the default @emph{free} function will do nothing.
  17. If @var{size} is not 0, the default @emph{free} function will
  18. deallocate the memory block pointed to by @code{SCM_SMOB_DATA} with
  19. @code{scm_gc_free}. The @var{WHAT} parameter in the call to
  20. @code{scm_gc_free} will be @var{NAME}.
  21. Default values are provided for the @emph{mark}, @emph{free},
  22. @emph{print}, and @emph{equalp} functions, as described in
  23. @ref{Defining New Types (Smobs)}. If you want to customize any of
  24. these functions, the call to @code{scm_make_smob_type} should be
  25. immediately followed by calls to one or several of
  26. @code{scm_set_smob_mark}, @code{scm_set_smob_free},
  27. @code{scm_set_smob_print}, and/or @code{scm_set_smob_equalp}.
  28. @end deftypefun
  29. @deftypefn {C Function} void scm_set_smob_mark (scm_t_bits tc, SCM (*mark) (SCM obj))
  30. This function sets the smob marking procedure for the smob type specified by
  31. the tag @var{tc}. @var{tc} is the tag returned by @code{scm_make_smob_type}.
  32. The @var{mark} procedure must cause @code{scm_gc_mark} to be called
  33. for every @code{SCM} value that is directly referenced by the smob
  34. instance @var{obj}. One of these @code{SCM} values can be returned
  35. from the procedure and Guile will call @code{scm_gc_mark} for it.
  36. This can be used to avoid deep recursions for smob instances that form
  37. a list.
  38. It must not call any libguile function or macro except
  39. @code{scm_gc_mark}, @code{SCM_SMOB_FLAGS}, @code{SCM_SMOB_DATA},
  40. @code{SCM_SMOB_DATA_2}, and @code{SCM_SMOB_DATA_3}.
  41. @end deftypefn
  42. @deftypefn {C Function} void scm_set_smob_free (scm_t_bits tc, size_t (*free) (SCM obj))
  43. This function sets the smob freeing procedure for the smob type
  44. specified by the tag @var{tc}. @var{tc} is the tag returned by
  45. @code{scm_make_smob_type}.
  46. The @var{free} procedure must deallocate all resources that are
  47. directly associated with the smob instance @var{OBJ}. It must assume
  48. that all @code{SCM} values that it references have already been freed
  49. and are thus invalid.
  50. It must also not call any libguile function or macro except
  51. @code{scm_gc_free}, @code{SCM_SMOB_FLAGS}, @code{SCM_SMOB_DATA},
  52. @code{SCM_SMOB_DATA_2}, and @code{SCM_SMOB_DATA_3}.
  53. The @var{free} procedure must return 0.
  54. @end deftypefn
  55. @deftypefn {C Function} void scm_set_smob_print (scm_t_bits tc, int (*print) (SCM obj, SCM port, scm_print_state* pstate))
  56. This function sets the smob printing procedure for the smob type
  57. specified by the tag @var{tc}. @var{tc} is the tag returned by
  58. @code{scm_make_smob_type}.
  59. The @var{print} procedure should output a textual representation of
  60. the smob instance @var{obj} to @var{port}, using information in
  61. @var{pstate}.
  62. The textual representation should be of the form @code{#<name ...>}.
  63. This ensures that @code{read} will not interpret it as some other
  64. Scheme value.
  65. It is often best to ignore @var{pstate} and just print to @var{port}
  66. with @code{scm_display}, @code{scm_write}, @code{scm_simple_format},
  67. and @code{scm_puts}.
  68. @end deftypefn
  69. @deftypefn {C Function} void scm_set_smob_equalp (scm_t_bits tc, SCM (*equalp) (SCM obj1, SCM obj1))
  70. This function sets the smob equality-testing predicate for the smob
  71. type specified by the tag @var{tc}. @var{tc} is the tag returned by
  72. @code{scm_make_smob_type}.
  73. The @var{equalp} procedure should return @code{SCM_BOOL_T} when
  74. @var{obj1} is @code{equal?} to @var{obj2}. Else it should return
  75. @var{SCM_BOOL_F}. Both @var{obj1} and @var{obj2} are instances of the
  76. smob type @var{tc}.
  77. @end deftypefn
  78. @deftypefn {C Function} void scm_assert_smob_type (scm_t_bits tag, SCM val)
  79. When @var{val} is a smob of the type indicated by @var{tag}, do nothing.
  80. Else, signal an error.
  81. @end deftypefn
  82. @deftypefn {C Macro} int SCM_SMOB_PREDICATE (scm_t_bits tag, SCM exp)
  83. Return true iff @var{exp} is a smob instance of the type indicated by
  84. @var{tag}. The expression @var{exp} can be evaluated more than once,
  85. so it shouldn't contain any side effects.
  86. @end deftypefn
  87. @deftypefn {C Macro} void SCM_NEWSMOB (SCM value, scm_t_bits tag, void *data)
  88. @deftypefnx {C Macro} void SCM_NEWSMOB2 (SCM value, scm_t_bits tag, void *data, void *data2)
  89. @deftypefnx {C Macro} void SCM_NEWSMOB3 (SCM value, scm_t_bits tag, void *data, void *data2, void *data3)
  90. Make @var{value} contain a smob instance of the type with tag
  91. @var{tag} and smob data @var{data}, @var{data2}, and @var{data3}, as
  92. appropriate.
  93. The @var{tag} is what has been returned by @code{scm_make_smob_type}.
  94. The initial values @var{data}, @var{data2}, and @var{data3} are of
  95. type @code{scm_t_bits}; when you want to use them for @code{SCM}
  96. values, these values need to be converted to a @code{scm_t_bits} first
  97. by using @code{SCM_UNPACK}.
  98. The flags of the smob instance start out as zero.
  99. @end deftypefn
  100. Since it is often the case (e.g., in smob constructors) that you will
  101. create a smob instance and return it, there is also a slightly specialized
  102. macro for this situation:
  103. @deftypefn {C Macro} {} SCM_RETURN_NEWSMOB (scm_t_bits tag, void *data)
  104. @deftypefnx {C Macro} {} SCM_RETURN_NEWSMOB2 (scm_t_bits tag, void *data1, void *data2)
  105. @deftypefnx {C Macro} {} SCM_RETURN_NEWSMOB3 (scm_t_bits tag, void *data1, void *data2, void *data3)
  106. This macro expands to a block of code that creates a smob instance of
  107. the type with tag @var{tag} and smob data @var{data}, @var{data2}, and
  108. @var{data3}, as with @code{SCM_NEWSMOB}, etc., and causes the
  109. surrounding function to return that @code{SCM} value. It should be
  110. the last piece of code in a block.
  111. @end deftypefn
  112. @deftypefn {C Macro} scm_t_bits SCM_SMOB_FLAGS (SCM obj)
  113. Return the 16 extra bits of the smob @var{obj}. No meaning is
  114. predefined for these bits, you can use them freely.
  115. @end deftypefn
  116. @deftypefn {C Macro} scm_t_bits SCM_SET_SMOB_FLAGS (SCM obj, scm_t_bits flags)
  117. Set the 16 extra bits of the smob @var{obj} to @var{flags}. No
  118. meaning is predefined for these bits, you can use them freely.
  119. @end deftypefn
  120. @deftypefn {C Macro} scm_t_bits SCM_SMOB_DATA (SCM obj)
  121. @deftypefnx {C Macro} scm_t_bits SCM_SMOB_DATA_2 (SCM obj)
  122. @deftypefnx {C Macro} scm_t_bits SCM_SMOB_DATA_3 (SCM obj)
  123. Return the first (second, third) immediate word of the smob @var{obj}
  124. as a @code{scm_t_bits} value. When the word contains a @code{SCM}
  125. value, use @code{SCM_SMOB_OBJECT} (etc.) instead.
  126. @end deftypefn
  127. @deftypefn {C Macro} void SCM_SET_SMOB_DATA (SCM obj, scm_t_bits val)
  128. @deftypefnx {C Macro} void SCM_SET_SMOB_DATA_2 (SCM obj, scm_t_bits val)
  129. @deftypefnx {C Macro} void SCM_SET_SMOB_DATA_3 (SCM obj, scm_t_bits val)
  130. Set the first (second, third) immediate word of the smob @var{obj} to
  131. @var{val}. When the word should be set to a @code{SCM} value, use
  132. @code{SCM_SMOB_SET_OBJECT} (etc.) instead.
  133. @end deftypefn
  134. @deftypefn {C Macro} SCM SCM_SMOB_OBJECT (SCM obj)
  135. @deftypefnx {C Macro} SCM SCM_SMOB_OBJECT_2 (SCM obj)
  136. @deftypefnx {C Macro} SCM SCM_SMOB_OBJECT_3 (SCM obj)
  137. Return the first (second, third) immediate word of the smob @var{obj}
  138. as a @code{SCM} value. When the word contains a @code{scm_t_bits}
  139. value, use @code{SCM_SMOB_DATA} (etc.) instead.
  140. @end deftypefn
  141. @deftypefn {C Macro} void SCM_SET_SMOB_OBJECT (SCM obj, SCM val)
  142. @deftypefnx {C Macro} void SCM_SET_SMOB_OBJECT_2 (SCM obj, SCM val)
  143. @deftypefnx {C Macro} void SCM_SET_SMOB_OBJECT_3 (SCM obj, SCM val)
  144. Set the first (second, third) immediate word of the smob @var{obj} to
  145. @var{val}. When the word should be set to a @code{scm_t_bits} value, use
  146. @code{SCM_SMOB_SET_DATA} (etc.) instead.
  147. @end deftypefn
  148. @deftypefn {C Macro} {SCM *} SCM_SMOB_OBJECT_LOC (SCM obj)
  149. @deftypefnx {C Macro} {SCM *} SCM_SMOB_OBJECT_2_LOC (SCM obj)
  150. @deftypefnx {C Macro} {SCM *} SCM_SMOB_OBJECT_3_LOC (SCM obj)
  151. Return a pointer to the first (second, third) immediate word of the
  152. smob @var{obj}. Note that this is a pointer to @code{SCM}. If you
  153. need to work with @code{scm_t_bits} values, use @code{SCM_PACK} and
  154. @code{SCM_UNPACK}, as appropriate.
  155. @end deftypefn
  156. @deftypefun SCM scm_markcdr (SCM @var{x})
  157. Mark the references in the smob @var{x}, assuming that @var{x}'s first
  158. data word contains an ordinary Scheme object, and @var{x} refers to no
  159. other objects. This function simply returns @var{x}'s first data word.
  160. @end deftypefun
  161. @c Local Variables:
  162. @c TeX-master: "guile.texi"
  163. @c End: