Minor changes for syncing with stable branch.
[bpt/guile.git] / doc / ref / data-rep.texi
1 @c essay \input texinfo
2 @c essay @c -*-texinfo-*-
3 @c essay @c %**start of header
4 @c essay @setfilename data-rep.info
5 @c essay @settitle Data Representation in Guile
6 @c essay @c %**end of header
7
8 @c essay @include version.texi
9
10 @c essay @dircategory The Algorithmic Language Scheme
11 @c essay @direntry
12 @c essay * data-rep: (data-rep). Data Representation in Guile --- how to use
13 @c essay Guile objects in your C code.
14 @c essay @end direntry
15
16 @c essay @setchapternewpage off
17
18 @c essay @ifinfo
19 @c essay Data Representation in Guile
20
21 @c essay Copyright (C) 1998, 1999, 2000 Free Software Foundation
22
23 @c essay Permission is granted to make and distribute verbatim copies of
24 @c essay this manual provided the copyright notice and this permission notice
25 @c essay are preserved on all copies.
26
27 @c essay @ignore
28 @c essay Permission is granted to process this file through TeX and print the
29 @c essay results, provided the printed document carries copying permission
30 @c essay notice identical to this one except for the removal of this paragraph
31 @c essay (this paragraph not being relevant to the printed manual).
32 @c essay @end ignore
33
34 @c essay Permission is granted to copy and distribute modified versions of this
35 @c essay manual under the conditions for verbatim copying, provided that the entire
36 @c essay resulting derived work is distributed under the terms of a permission
37 @c essay notice identical to this one.
38
39 @c essay Permission is granted to copy and distribute translations of this manual
40 @c essay into another language, under the above conditions for modified versions,
41 @c essay except that this permission notice may be stated in a translation approved
42 @c essay by the Free Software Foundation.
43 @c essay @end ifinfo
44
45 @c essay @titlepage
46 @c essay @sp 10
47 @c essay @comment The title is printed in a large font.
48 @c essay @title Data Representation in Guile
49 @c essay @subtitle $Id: data-rep.texi,v 1.7 2002-03-29 20:25:23 ossau Exp $
50 @c essay @subtitle For use with Guile @value{VERSION}
51 @c essay @author Jim Blandy
52 @c essay @author Free Software Foundation
53 @c essay @author @email{jimb@@red-bean.com}
54 @c essay @c The following two commands start the copyright page.
55 @c essay @page
56 @c essay @vskip 0pt plus 1filll
57 @c essay @vskip 0pt plus 1filll
58 @c essay Copyright @copyright{} 1998 Free Software Foundation
59
60 @c essay Permission is granted to make and distribute verbatim copies of
61 @c essay this manual provided the copyright notice and this permission notice
62 @c essay are preserved on all copies.
63
64 @c essay Permission is granted to copy and distribute modified versions of this
65 @c essay manual under the conditions for verbatim copying, provided that the entire
66 @c essay resulting derived work is distributed under the terms of a permission
67 @c essay notice identical to this one.
68
69 @c essay Permission is granted to copy and distribute translations of this manual
70 @c essay into another language, under the above conditions for modified versions,
71 @c essay except that this permission notice may be stated in a translation approved
72 @c essay by Free Software Foundation.
73 @c essay @end titlepage
74
75 @c essay @c @smallbook
76 @c essay @c @finalout
77 @c essay @headings double
78
79
80 @c essay @node Top, Data Representation in Scheme, (dir), (dir)
81 @c essay @top Data Representation in Guile
82
83 @c essay @ifinfo
84 @c essay This essay is meant to provide the background necessary to read and
85 @c essay write C code that manipulates Scheme values in a way that conforms to
86 @c essay libguile's interface. If you would like to write or maintain a
87 @c essay Guile-based application in C or C++, this is the first information you
88 @c essay need.
89
90 @c essay In order to make sense of Guile's @code{SCM_} functions, or read
91 @c essay libguile's source code, it's essential to have a good grasp of how Guile
92 @c essay actually represents Scheme values. Otherwise, a lot of the code, and
93 @c essay the conventions it follows, won't make very much sense.
94
95 @c essay We assume you know both C and Scheme, but we do not assume you are
96 @c essay familiar with Guile's C interface.
97 @c essay @end ifinfo
98
99
100 @page
101 @node Data Representation
102 @chapter Data Representation in Guile
103
104 @strong{by Jim Blandy}
105
106 [Due to the rather non-orthogonal and performance-oriented nature of the
107 SCM interface, you need to understand SCM internals *before* you can use
108 the SCM API. That's why this chapter comes first.]
109
110 [NOTE: this is Jim Blandy's essay almost entirely unmodified. It has to
111 be adapted to fit this manual smoothly.]
112
113 In order to make sense of Guile's SCM_ functions, or read libguile's
114 source code, it's essential to have a good grasp of how Guile actually
115 represents Scheme values. Otherwise, a lot of the code, and the
116 conventions it follows, won't make very much sense. This essay is meant
117 to provide the background necessary to read and write C code that
118 manipulates Scheme values in a way that is compatible with libguile.
119
120 We assume you know both C and Scheme, but we do not assume you are
121 familiar with Guile's implementation.
122
123 @menu
124 * Data Representation in Scheme:: Why things aren't just totally
125 straightforward, in general terms.
126 * How Guile does it:: How to write C code that manipulates
127 Guile values, with an explanation
128 of Guile's garbage collector.
129 * Defining New Types (Smobs):: How to extend Guile with your own
130 application-specific datatypes.
131 @end menu
132
133 @node Data Representation in Scheme
134 @section Data Representation in Scheme
135
136 Scheme is a latently-typed language; this means that the system cannot,
137 in general, determine the type of a given expression at compile time.
138 Types only become apparent at run time. Variables do not have fixed
139 types; a variable may hold a pair at one point, an integer at the next,
140 and a thousand-element vector later. Instead, values, not variables,
141 have fixed types.
142
143 In order to implement standard Scheme functions like @code{pair?} and
144 @code{string?} and provide garbage collection, the representation of
145 every value must contain enough information to accurately determine its
146 type at run time. Often, Scheme systems also use this information to
147 determine whether a program has attempted to apply an operation to an
148 inappropriately typed value (such as taking the @code{car} of a string).
149
150 Because variables, pairs, and vectors may hold values of any type,
151 Scheme implementations use a uniform representation for values --- a
152 single type large enough to hold either a complete value or a pointer
153 to a complete value, along with the necessary typing information.
154
155 The following sections will present a simple typing system, and then
156 make some refinements to correct its major weaknesses. However, this is
157 not a description of the system Guile actually uses. It is only an
158 illustration of the issues Guile's system must address. We provide all
159 the information one needs to work with Guile's data in @ref{How Guile
160 does it}.
161
162
163 @menu
164 * A Simple Representation::
165 * Faster Integers::
166 * Cheaper Pairs::
167 * Guile Is Hairier::
168 @end menu
169
170 @node A Simple Representation
171 @subsection A Simple Representation
172
173 The simplest way to meet the above requirements in C would be to
174 represent each value as a pointer to a structure containing a type
175 indicator, followed by a union carrying the real value. Assuming that
176 @code{SCM} is the name of our universal type, we can write:
177
178 @example
179 enum type @{ integer, pair, string, vector, ... @};
180
181 typedef struct value *SCM;
182
183 struct value @{
184 enum type type;
185 union @{
186 int integer;
187 struct @{ SCM car, cdr; @} pair;
188 struct @{ int length; char *elts; @} string;
189 struct @{ int length; SCM *elts; @} vector;
190 ...
191 @} value;
192 @};
193 @end example
194 with the ellipses replaced with code for the remaining Scheme types.
195
196 This representation is sufficient to implement all of Scheme's
197 semantics. If @var{x} is an @code{SCM} value:
198 @itemize @bullet
199 @item
200 To test if @var{x} is an integer, we can write @code{@var{x}->type == integer}.
201 @item
202 To find its value, we can write @code{@var{x}->value.integer}.
203 @item
204 To test if @var{x} is a vector, we can write @code{@var{x}->type == vector}.
205 @item
206 If we know @var{x} is a vector, we can write
207 @code{@var{x}->value.vector.elts[0]} to refer to its first element.
208 @item
209 If we know @var{x} is a pair, we can write
210 @code{@var{x}->value.pair.car} to extract its car.
211 @end itemize
212
213
214 @node Faster Integers
215 @subsection Faster Integers
216
217 Unfortunately, the above representation has a serious disadvantage. In
218 order to return an integer, an expression must allocate a @code{struct
219 value}, initialize it to represent that integer, and return a pointer to
220 it. Furthermore, fetching an integer's value requires a memory
221 reference, which is much slower than a register reference on most
222 processors. Since integers are extremely common, this representation is
223 too costly, in both time and space. Integers should be very cheap to
224 create and manipulate.
225
226 One possible solution comes from the observation that, on many
227 architectures, structures must be aligned on a four-byte boundary.
228 (Whether or not the machine actually requires it, we can write our own
229 allocator for @code{struct value} objects that assures this is true.)
230 In this case, the lower two bits of the structure's address are known to
231 be zero.
232
233 This gives us the room we need to provide an improved representation
234 for integers. We make the following rules:
235 @itemize @bullet
236 @item
237 If the lower two bits of an @code{SCM} value are zero, then the SCM
238 value is a pointer to a @code{struct value}, and everything proceeds as
239 before.
240 @item
241 Otherwise, the @code{SCM} value represents an integer, whose value
242 appears in its upper bits.
243 @end itemize
244
245 Here is C code implementing this convention:
246 @example
247 enum type @{ pair, string, vector, ... @};
248
249 typedef struct value *SCM;
250
251 struct value @{
252 enum type type;
253 union @{
254 struct @{ SCM car, cdr; @} pair;
255 struct @{ int length; char *elts; @} string;
256 struct @{ int length; SCM *elts; @} vector;
257 ...
258 @} value;
259 @};
260
261 #define POINTER_P(x) (((int) (x) & 3) == 0)
262 #define INTEGER_P(x) (! POINTER_P (x))
263
264 #define GET_INTEGER(x) ((int) (x) >> 2)
265 #define MAKE_INTEGER(x) ((SCM) (((x) << 2) | 1))
266 @end example
267
268 Notice that @code{integer} no longer appears as an element of @code{enum
269 type}, and the union has lost its @code{integer} member. Instead, we
270 use the @code{POINTER_P} and @code{INTEGER_P} macros to make a coarse
271 classification of values into integers and non-integers, and do further
272 type testing as before.
273
274 Here's how we would answer the questions posed above (again, assume
275 @var{x} is an @code{SCM} value):
276 @itemize @bullet
277 @item
278 To test if @var{x} is an integer, we can write @code{INTEGER_P (@var{x})}.
279 @item
280 To find its value, we can write @code{GET_INTEGER (@var{x})}.
281 @item
282 To test if @var{x} is a vector, we can write:
283 @example
284 @code{POINTER_P (@var{x}) && @var{x}->type == vector}
285 @end example
286 Given the new representation, we must make sure @var{x} is truly a
287 pointer before we dereference it to determine its complete type.
288 @item
289 If we know @var{x} is a vector, we can write
290 @code{@var{x}->value.vector.elts[0]} to refer to its first element, as
291 before.
292 @item
293 If we know @var{x} is a pair, we can write
294 @code{@var{x}->value.pair.car} to extract its car, just as before.
295 @end itemize
296
297 This representation allows us to operate more efficiently on integers
298 than the first. For example, if @var{x} and @var{y} are known to be
299 integers, we can compute their sum as follows:
300 @example
301 MAKE_INTEGER (GET_INTEGER (@var{x}) + GET_INTEGER (@var{y}))
302 @end example
303 Now, integer math requires no allocation or memory references. Most
304 real Scheme systems actually use an even more efficient representation,
305 but this essay isn't about bit-twiddling. (Hint: what if pointers had
306 @code{01} in their least significant bits, and integers had @code{00}?)
307
308
309 @node Cheaper Pairs
310 @subsection Cheaper Pairs
311
312 However, there is yet another issue to confront. Most Scheme heaps
313 contain more pairs than any other type of object; Jonathan Rees says
314 that pairs occupy 45% of the heap in his Scheme implementation, Scheme
315 48. However, our representation above spends three @code{SCM}-sized
316 words per pair --- one for the type, and two for the @sc{car} and
317 @sc{cdr}. Is there any way to represent pairs using only two words?
318
319 Let us refine the convention we established earlier. Let us assert
320 that:
321 @itemize @bullet
322 @item
323 If the bottom two bits of an @code{SCM} value are @code{#b00}, then
324 it is a pointer, as before.
325 @item
326 If the bottom two bits are @code{#b01}, then the upper bits are an
327 integer. This is a bit more restrictive than before.
328 @item
329 If the bottom two bits are @code{#b10}, then the value, with the bottom
330 two bits masked out, is the address of a pair.
331 @end itemize
332
333 Here is the new C code:
334 @example
335 enum type @{ string, vector, ... @};
336
337 typedef struct value *SCM;
338
339 struct value @{
340 enum type type;
341 union @{
342 struct @{ int length; char *elts; @} string;
343 struct @{ int length; SCM *elts; @} vector;
344 ...
345 @} value;
346 @};
347
348 struct pair @{
349 SCM car, cdr;
350 @};
351
352 #define POINTER_P(x) (((int) (x) & 3) == 0)
353
354 #define INTEGER_P(x) (((int) (x) & 3) == 1)
355 #define GET_INTEGER(x) ((int) (x) >> 2)
356 #define MAKE_INTEGER(x) ((SCM) (((x) << 2) | 1))
357
358 #define PAIR_P(x) (((int) (x) & 3) == 2)
359 #define GET_PAIR(x) ((struct pair *) ((int) (x) & ~3))
360 @end example
361
362 Notice that @code{enum type} and @code{struct value} now only contain
363 provisions for vectors and strings; both integers and pairs have become
364 special cases. The code above also assumes that an @code{int} is large
365 enough to hold a pointer, which isn't generally true.
366
367
368 Our list of examples is now as follows:
369 @itemize @bullet
370 @item
371 To test if @var{x} is an integer, we can write @code{INTEGER_P
372 (@var{x})}; this is as before.
373 @item
374 To find its value, we can write @code{GET_INTEGER (@var{x})}, as
375 before.
376 @item
377 To test if @var{x} is a vector, we can write:
378 @example
379 @code{POINTER_P (@var{x}) && @var{x}->type == vector}
380 @end example
381 We must still make sure that @var{x} is a pointer to a @code{struct
382 value} before dereferencing it to find its type.
383 @item
384 If we know @var{x} is a vector, we can write
385 @code{@var{x}->value.vector.elts[0]} to refer to its first element, as
386 before.
387 @item
388 We can write @code{PAIR_P (@var{x})} to determine if @var{x} is a
389 pair, and then write @code{GET_PAIR (@var{x})->car} to refer to its
390 car.
391 @end itemize
392
393 This change in representation reduces our heap size by 15%. It also
394 makes it cheaper to decide if a value is a pair, because no memory
395 references are necessary; it suffices to check the bottom two bits of
396 the @code{SCM} value. This may be significant when traversing lists, a
397 common activity in a Scheme system.
398
399 Again, most real Scheme systems use a slightly different implementation;
400 for example, if GET_PAIR subtracts off the low bits of @code{x}, instead
401 of masking them off, the optimizer will often be able to combine that
402 subtraction with the addition of the offset of the structure member we
403 are referencing, making a modified pointer as fast to use as an
404 unmodified pointer.
405
406
407 @node Guile Is Hairier
408 @subsection Guile Is Hairier
409
410 We originally started with a very simple typing system --- each object
411 has a field that indicates its type. Then, for the sake of efficiency
412 in both time and space, we moved some of the typing information directly
413 into the @code{SCM} value, and left the rest in the @code{struct value}.
414 Guile itself employs a more complex hierarchy, storing finer and finer
415 gradations of type information in different places, depending on the
416 object's coarser type.
417
418 In the author's opinion, Guile could be simplified greatly without
419 significant loss of efficiency, but the simplified system would still be
420 more complex than what we've presented above.
421
422
423 @node How Guile does it
424 @section How Guile does it
425
426 Here we present the specifics of how Guile represents its data. We
427 don't go into complete detail; an exhaustive description of Guile's
428 system would be boring, and we do not wish to encourage people to write
429 code which depends on its details anyway. We do, however, present
430 everything one need know to use Guile's data.
431
432
433 @menu
434 * General Rules::
435 * Conservative GC::
436 * Immediates vs Non-immediates::
437 * Immediate Datatypes::
438 * Non-immediate Datatypes::
439 * Signalling Type Errors::
440 * Unpacking the SCM type::
441 @end menu
442
443 @node General Rules
444 @subsection General Rules
445
446 Any code which operates on Guile datatypes must @code{#include} the
447 header file @code{<libguile.h>}. This file contains a definition for
448 the @code{SCM} typedef (Guile's universal type, as in the examples
449 above), and definitions and declarations for a host of macros and
450 functions that operate on @code{SCM} values.
451
452 All identifiers declared by @code{<libguile.h>} begin with @code{scm_}
453 or @code{SCM_}.
454
455 @c [[I wish this were true, but I don't think it is at the moment. -JimB]]
456 @c Macros do not evaluate their arguments more than once, unless documented
457 @c to do so.
458
459 The functions described here generally check the types of their
460 @code{SCM} arguments, and signal an error if their arguments are of an
461 inappropriate type. Macros generally do not, unless that is their
462 specified purpose. You must verify their argument types beforehand, as
463 necessary.
464
465 Macros and functions that return a boolean value have names ending in
466 @code{P} or @code{_p} (for ``predicate''). Those that return a negated
467 boolean value have names starting with @code{SCM_N}. For example,
468 @code{SCM_IMP (@var{x})} is a predicate which returns non-zero iff
469 @var{x} is an immediate value (an @code{IM}). @code{SCM_NCONSP
470 (@var{x})} is a predicate which returns non-zero iff @var{x} is
471 @emph{not} a pair object (a @code{CONS}).
472
473
474 @node Conservative GC
475 @subsection Conservative Garbage Collection
476
477 Aside from the latent typing, the major source of constraints on a
478 Scheme implementation's data representation is the garbage collector.
479 The collector must be able to traverse every live object in the heap, to
480 determine which objects are not live.
481
482 There are many ways to implement this, but Guile uses an algorithm
483 called @dfn{mark and sweep}. The collector scans the system's global
484 variables and the local variables on the stack to determine which
485 objects are immediately accessible by the C code. It then scans those
486 objects to find the objects they point to, @i{et cetera}. The collector
487 sets a @dfn{mark bit} on each object it finds, so each object is
488 traversed only once. This process is called @dfn{tracing}.
489
490 When the collector can find no unmarked objects pointed to by marked
491 objects, it assumes that any objects that are still unmarked will never
492 be used by the program (since there is no path of dereferences from any
493 global or local variable that reaches them) and deallocates them.
494
495 In the above paragraphs, we did not specify how the garbage collector
496 finds the global and local variables; as usual, there are many different
497 approaches. Frequently, the programmer must maintain a list of pointers
498 to all global variables that refer to the heap, and another list
499 (adjusted upon entry to and exit from each function) of local variables,
500 for the collector's benefit.
501
502 The list of global variables is usually not too difficult to maintain,
503 since global variables are relatively rare. However, an explicitly
504 maintained list of local variables (in the author's personal experience)
505 is a nightmare to maintain. Thus, Guile uses a technique called
506 @dfn{conservative garbage collection}, to make the local variable list
507 unnecessary.
508
509 The trick to conservative collection is to treat the stack as an
510 ordinary range of memory, and assume that @emph{every} word on the stack
511 is a pointer into the heap. Thus, the collector marks all objects whose
512 addresses appear anywhere in the stack, without knowing for sure how
513 that word is meant to be interpreted.
514
515 Obviously, such a system will occasionally retain objects that are
516 actually garbage, and should be freed. In practice, this is not a
517 problem. The alternative, an explicitly maintained list of local
518 variable addresses, is effectively much less reliable, due to programmer
519 error.
520
521 To accommodate this technique, data must be represented so that the
522 collector can accurately determine whether a given stack word is a
523 pointer or not. Guile does this as follows:
524
525 @itemize @bullet
526 @item
527 Every heap object has a two-word header, called a @dfn{cell}. Some
528 objects, like pairs, fit entirely in a cell's two words; others may
529 store pointers to additional memory in either of the words. For
530 example, strings and vectors store their length in the first word, and a
531 pointer to their elements in the second.
532
533 @item
534 Guile allocates whole arrays of cells at a time, called @dfn{heap
535 segments}. These segments are always allocated so that the cells they
536 contain fall on eight-byte boundaries, or whatever is appropriate for
537 the machine's word size. Guile keeps all cells in a heap segment
538 initialized, whether or not they are currently in use.
539
540 @item
541 Guile maintains a sorted table of heap segments.
542 @end itemize
543
544 Thus, given any random word @var{w} fetched from the stack, Guile's
545 garbage collector can consult the table to see if @var{w} falls within a
546 known heap segment, and check @var{w}'s alignment. If both tests pass,
547 the collector knows that @var{w} is a valid pointer to a cell,
548 intentional or not, and proceeds to trace the cell.
549
550 Note that heap segments do not contain all the data Guile uses; cells
551 for objects like vectors and strings contain pointers to other memory
552 areas. However, since those pointers are internal, and not shared among
553 many pieces of code, it is enough for the collector to find the cell,
554 and then use the cell's type to find more pointers to trace.
555
556
557 @node Immediates vs Non-immediates
558 @subsection Immediates vs Non-immediates
559
560 Guile classifies Scheme objects into two kinds: those that fit entirely
561 within an @code{SCM}, and those that require heap storage.
562
563 The former class are called @dfn{immediates}. The class of immediates
564 includes small integers, characters, boolean values, the empty list, the
565 mysterious end-of-file object, and some others.
566
567 The remaining types are called, not surprisingly, @dfn{non-immediates}.
568 They include pairs, procedures, strings, vectors, and all other data
569 types in Guile.
570
571 @deftypefn Macro int SCM_IMP (SCM @var{x})
572 Return non-zero iff @var{x} is an immediate object.
573 @end deftypefn
574
575 @deftypefn Macro int SCM_NIMP (SCM @var{x})
576 Return non-zero iff @var{x} is a non-immediate object. This is the
577 exact complement of @code{SCM_IMP}, above.
578 @end deftypefn
579
580 Note that for versions of Guile prior to 1.4 it was necessary to use the
581 @code{SCM_NIMP} macro before calling a finer-grained predicate to
582 determine @var{x}'s type, such as @code{SCM_CONSP} or
583 @code{SCM_VECTORP}. This is no longer required: the definitions of all
584 Guile type predicates now include a call to @code{SCM_NIMP} where
585 necessary.
586
587
588 @node Immediate Datatypes
589 @subsection Immediate Datatypes
590
591 The following datatypes are immediate values; that is, they fit entirely
592 within an @code{SCM} value. The @code{SCM_IMP} and @code{SCM_NIMP}
593 macros will distinguish these from non-immediates; see @ref{Immediates
594 vs Non-immediates} for an explanation of the distinction.
595
596 Note that the type predicates for immediate values work correctly on any
597 @code{SCM} value; you do not need to call @code{SCM_IMP} first, to
598 establish that a value is immediate.
599
600 @menu
601 * Integer Data::
602 * Character Data::
603 * Boolean Data::
604 * Unique Values::
605 @end menu
606
607 @node Integer Data
608 @subsubsection Integers
609
610 Here are functions for operating on small integers, that fit within an
611 @code{SCM}. Such integers are called @dfn{immediate numbers}, or
612 @dfn{INUMs}. In general, INUMs occupy all but two bits of an
613 @code{SCM}.
614
615 Bignums and floating-point numbers are non-immediate objects, and have
616 their own, separate accessors. The functions here will not work on
617 them. This is not as much of a problem as you might think, however,
618 because the system never constructs bignums that could fit in an INUM,
619 and never uses floating point values for exact integers.
620
621 @deftypefn Macro int SCM_INUMP (SCM @var{x})
622 Return non-zero iff @var{x} is a small integer value.
623 @end deftypefn
624
625 @deftypefn Macro int SCM_NINUMP (SCM @var{x})
626 The complement of SCM_INUMP.
627 @end deftypefn
628
629 @deftypefn Macro int SCM_INUM (SCM @var{x})
630 Return the value of @var{x} as an ordinary, C integer. If @var{x}
631 is not an INUM, the result is undefined.
632 @end deftypefn
633
634 @deftypefn Macro SCM SCM_MAKINUM (int @var{i})
635 Given a C integer @var{i}, return its representation as an @code{SCM}.
636 This function does not check for overflow.
637 @end deftypefn
638
639
640 @node Character Data
641 @subsubsection Characters
642
643 Here are functions for operating on characters.
644
645 @deftypefn Macro int SCM_CHARP (SCM @var{x})
646 Return non-zero iff @var{x} is a character value.
647 @end deftypefn
648
649 @deftypefn Macro {unsigned int} SCM_CHAR (SCM @var{x})
650 Return the value of @code{x} as a C character. If @var{x} is not a
651 Scheme character, the result is undefined.
652 @end deftypefn
653
654 @deftypefn Macro SCM SCM_MAKE_CHAR (int @var{c})
655 Given a C character @var{c}, return its representation as a Scheme
656 character value.
657 @end deftypefn
658
659
660 @node Boolean Data
661 @subsubsection Booleans
662
663 Here are functions and macros for operating on booleans.
664
665 @deftypefn Macro SCM SCM_BOOL_T
666 @deftypefnx Macro SCM SCM_BOOL_F
667 The Scheme true and false values.
668 @end deftypefn
669
670 @deftypefn Macro int SCM_NFALSEP (@var{x})
671 Convert the Scheme boolean value to a C boolean. Since every object in
672 Scheme except @code{#f} is true, this amounts to comparing @var{x} to
673 @code{#f}; hence the name.
674 @c Noel feels a chill here.
675 @end deftypefn
676
677 @deftypefn Macro SCM SCM_BOOL_NOT (@var{x})
678 Return the boolean inverse of @var{x}. If @var{x} is not a
679 Scheme boolean, the result is undefined.
680 @end deftypefn
681
682
683 @node Unique Values
684 @subsubsection Unique Values
685
686 The immediate values that are neither small integers, characters, nor
687 booleans are all unique values --- that is, datatypes with only one
688 instance.
689
690 @deftypefn Macro SCM SCM_EOL
691 The Scheme empty list object, or ``End Of List'' object, usually written
692 in Scheme as @code{'()}.
693 @end deftypefn
694
695 @deftypefn Macro SCM SCM_EOF_VAL
696 The Scheme end-of-file value. It has no standard written
697 representation, for obvious reasons.
698 @end deftypefn
699
700 @deftypefn Macro SCM SCM_UNSPECIFIED
701 The value returned by expressions which the Scheme standard says return
702 an ``unspecified'' value.
703
704 This is sort of a weirdly literal way to take things, but the standard
705 read-eval-print loop prints nothing when the expression returns this
706 value, so it's not a bad idea to return this when you can't think of
707 anything else helpful.
708 @end deftypefn
709
710 @deftypefn Macro SCM SCM_UNDEFINED
711 The ``undefined'' value. Its most important property is that is not
712 equal to any valid Scheme value. This is put to various internal uses
713 by C code interacting with Guile.
714
715 For example, when you write a C function that is callable from Scheme
716 and which takes optional arguments, the interpreter passes
717 @code{SCM_UNDEFINED} for any arguments you did not receive.
718
719 We also use this to mark unbound variables.
720 @end deftypefn
721
722 @deftypefn Macro int SCM_UNBNDP (SCM @var{x})
723 Return true if @var{x} is @code{SCM_UNDEFINED}. Apply this to a
724 symbol's value to see if it has a binding as a global variable.
725 @end deftypefn
726
727
728 @node Non-immediate Datatypes
729 @subsection Non-immediate Datatypes
730
731 A non-immediate datatype is one which lives in the heap, either because
732 it cannot fit entirely within a @code{SCM} word, or because it denotes a
733 specific storage location (in the nomenclature of the Revised^5 Report
734 on Scheme).
735
736 The @code{SCM_IMP} and @code{SCM_NIMP} macros will distinguish these
737 from immediates; see @ref{Immediates vs Non-immediates}.
738
739 Given a cell, Guile distinguishes between pairs and other non-immediate
740 types by storing special @dfn{tag} values in a non-pair cell's car, that
741 cannot appear in normal pairs. A cell with a non-tag value in its car
742 is an ordinary pair. The type of a cell with a tag in its car depends
743 on the tag; the non-immediate type predicates test this value. If a tag
744 value appears elsewhere (in a vector, for example), the heap may become
745 corrupted.
746
747 Note how the type information for a non-immediate object is split
748 between the @code{SCM} word and the cell that the @code{SCM} word points
749 to. The @code{SCM} word itself only indicates that the object is
750 non-immediate --- in other words stored in a heap cell. The tag stored
751 in the first word of the heap cell indicates more precisely the type of
752 that object.
753
754 The type predicates for non-immediate values work correctly on any
755 @code{SCM} value; you do not need to call @code{SCM_NIMP} first, to
756 establish that a value is non-immediate.
757
758 @menu
759 * Pair Data::
760 * Vector Data::
761 * Procedures::
762 * Closures::
763 * Subrs::
764 * Port Data::
765 @end menu
766
767
768 @node Pair Data
769 @subsubsection Pairs
770
771 Pairs are the essential building block of list structure in Scheme. A
772 pair object has two fields, called the @dfn{car} and the @dfn{cdr}.
773
774 It is conventional for a pair's @sc{car} to contain an element of a
775 list, and the @sc{cdr} to point to the next pair in the list, or to
776 contain @code{SCM_EOL}, indicating the end of the list. Thus, a set of
777 pairs chained through their @sc{cdr}s constitutes a singly-linked list.
778 Scheme and libguile define many functions which operate on lists
779 constructed in this fashion, so although lists chained through the
780 @sc{car}s of pairs will work fine too, they may be less convenient to
781 manipulate, and receive less support from the community.
782
783 Guile implements pairs by mapping the @sc{car} and @sc{cdr} of a pair
784 directly into the two words of the cell.
785
786
787 @deftypefn Macro int SCM_CONSP (SCM @var{x})
788 Return non-zero iff @var{x} is a Scheme pair object.
789 @end deftypefn
790
791 @deftypefn Macro int SCM_NCONSP (SCM @var{x})
792 The complement of SCM_CONSP.
793 @end deftypefn
794
795 @deftypefun SCM scm_cons (SCM @var{car}, SCM @var{cdr})
796 Allocate (``CONStruct'') a new pair, with @var{car} and @var{cdr} as its
797 contents.
798 @end deftypefun
799
800 The macros below perform no type checking. The results are undefined if
801 @var{cell} is an immediate. However, since all non-immediate Guile
802 objects are constructed from cells, and these macros simply return the
803 first element of a cell, they actually can be useful on datatypes other
804 than pairs. (Of course, it is not very modular to use them outside of
805 the code which implements that datatype.)
806
807 @deftypefn Macro SCM SCM_CAR (SCM @var{cell})
808 Return the @sc{car}, or first field, of @var{cell}.
809 @end deftypefn
810
811 @deftypefn Macro SCM SCM_CDR (SCM @var{cell})
812 Return the @sc{cdr}, or second field, of @var{cell}.
813 @end deftypefn
814
815 @deftypefn Macro void SCM_SETCAR (SCM @var{cell}, SCM @var{x})
816 Set the @sc{car} of @var{cell} to @var{x}.
817 @end deftypefn
818
819 @deftypefn Macro void SCM_SETCDR (SCM @var{cell}, SCM @var{x})
820 Set the @sc{cdr} of @var{cell} to @var{x}.
821 @end deftypefn
822
823 @deftypefn Macro SCM SCM_CAAR (SCM @var{cell})
824 @deftypefnx Macro SCM SCM_CADR (SCM @var{cell})
825 @deftypefnx Macro SCM SCM_CDAR (SCM @var{cell}) @dots{}
826 @deftypefnx Macro SCM SCM_CDDDDR (SCM @var{cell})
827 Return the @sc{car} of the @sc{car} of @var{cell}, the @sc{car} of the
828 @sc{cdr} of @var{cell}, @i{et cetera}.
829 @end deftypefn
830
831
832 @node Vector Data
833 @subsubsection Vectors, Strings, and Symbols
834
835 Vectors, strings, and symbols have some properties in common. They all
836 have a length, and they all have an array of elements. In the case of a
837 vector, the elements are @code{SCM} values; in the case of a string or
838 symbol, the elements are characters.
839
840 All these types store their length (along with some tagging bits) in the
841 @sc{car} of their header cell, and store a pointer to the elements in
842 their @sc{cdr}. Thus, the @code{SCM_CAR} and @code{SCM_CDR} macros
843 are (somewhat) meaningful when applied to these datatypes.
844
845 @deftypefn Macro int SCM_VECTORP (SCM @var{x})
846 Return non-zero iff @var{x} is a vector.
847 @end deftypefn
848
849 @deftypefn Macro int SCM_STRINGP (SCM @var{x})
850 Return non-zero iff @var{x} is a string.
851 @end deftypefn
852
853 @deftypefn Macro int SCM_SYMBOLP (SCM @var{x})
854 Return non-zero iff @var{x} is a symbol.
855 @end deftypefn
856
857 @deftypefn Macro int SCM_VECTOR_LENGTH (SCM @var{x})
858 @deftypefnx Macro int SCM_STRING_LENGTH (SCM @var{x})
859 @deftypefnx Macro int SCM_SYMBOL_LENGTH (SCM @var{x})
860 Return the length of the object @var{x}. The result is undefined if
861 @var{x} is not a vector, string, or symbol, respectively.
862 @end deftypefn
863
864 @deftypefn Macro {SCM *} SCM_VECTOR_BASE (SCM @var{x})
865 Return a pointer to the array of elements of the vector @var{x}.
866 The result is undefined if @var{x} is not a vector.
867 @end deftypefn
868
869 @deftypefn Macro {char *} SCM_STRING_CHARS (SCM @var{x})
870 @deftypefnx Macro {char *} SCM_SYMBOL_CHARS (SCM @var{x})
871 Return a pointer to the characters of @var{x}. The result is undefined
872 if @var{x} is not a symbol or string, respectively.
873 @end deftypefn
874
875 There are also a few magic values stuffed into memory before a symbol's
876 characters, but you don't want to know about those. What cruft!
877
878
879 @node Procedures
880 @subsubsection Procedures
881
882 Guile provides two kinds of procedures: @dfn{closures}, which are the
883 result of evaluating a @code{lambda} expression, and @dfn{subrs}, which
884 are C functions packaged up as Scheme objects, to make them available to
885 Scheme programmers.
886
887 (There are actually other sorts of procedures: compiled closures, and
888 continuations; see the source code for details about them.)
889
890 @deftypefun SCM scm_procedure_p (SCM @var{x})
891 Return @code{SCM_BOOL_T} iff @var{x} is a Scheme procedure object, of
892 any sort. Otherwise, return @code{SCM_BOOL_F}.
893 @end deftypefun
894
895
896 @node Closures
897 @subsubsection Closures
898
899 [FIXME: this needs to be further subbed, but texinfo has no subsubsub]
900
901 A closure is a procedure object, generated as the value of a
902 @code{lambda} expression in Scheme. The representation of a closure is
903 straightforward --- it contains a pointer to the code of the lambda
904 expression from which it was created, and a pointer to the environment
905 it closes over.
906
907 In Guile, each closure also has a property list, allowing the system to
908 store information about the closure. I'm not sure what this is used for
909 at the moment --- the debugger, maybe?
910
911 @deftypefn Macro int SCM_CLOSUREP (SCM @var{x})
912 Return non-zero iff @var{x} is a closure.
913 @end deftypefn
914
915 @deftypefn Macro SCM SCM_PROCPROPS (SCM @var{x})
916 Return the property list of the closure @var{x}. The results are
917 undefined if @var{x} is not a closure.
918 @end deftypefn
919
920 @deftypefn Macro void SCM_SETPROCPROPS (SCM @var{x}, SCM @var{p})
921 Set the property list of the closure @var{x} to @var{p}. The results
922 are undefined if @var{x} is not a closure.
923 @end deftypefn
924
925 @deftypefn Macro SCM SCM_CODE (SCM @var{x})
926 Return the code of the closure @var{x}. The result is undefined if
927 @var{x} is not a closure.
928
929 This function should probably only be used internally by the
930 interpreter, since the representation of the code is intimately
931 connected with the interpreter's implementation.
932 @end deftypefn
933
934 @deftypefn Macro SCM SCM_ENV (SCM @var{x})
935 Return the environment enclosed by @var{x}.
936 The result is undefined if @var{x} is not a closure.
937
938 This function should probably only be used internally by the
939 interpreter, since the representation of the environment is intimately
940 connected with the interpreter's implementation.
941 @end deftypefn
942
943
944 @node Subrs
945 @subsubsection Subrs
946
947 [FIXME: this needs to be further subbed, but texinfo has no subsubsub]
948
949 A subr is a pointer to a C function, packaged up as a Scheme object to
950 make it callable by Scheme code. In addition to the function pointer,
951 the subr also contains a pointer to the name of the function, and
952 information about the number of arguments accepted by the C function, for
953 the sake of error checking.
954
955 There is no single type predicate macro that recognizes subrs, as
956 distinct from other kinds of procedures. The closest thing is
957 @code{scm_procedure_p}; see @ref{Procedures}.
958
959 @deftypefn Macro {char *} SCM_SNAME (@var{x})
960 Return the name of the subr @var{x}. The result is undefined if
961 @var{x} is not a subr.
962 @end deftypefn
963
964 @deftypefun SCM scm_make_gsubr (char *@var{name}, int @var{req}, int @var{opt}, int @var{rest}, SCM (*@var{function})())
965 Create a new subr object named @var{name}, based on the C function
966 @var{function}, make it visible to Scheme the value of as a global
967 variable named @var{name}, and return the subr object.
968
969 The subr object accepts @var{req} required arguments, @var{opt} optional
970 arguments, and a @var{rest} argument iff @var{rest} is non-zero. The C
971 function @var{function} should accept @code{@var{req} + @var{opt}}
972 arguments, or @code{@var{req} + @var{opt} + 1} arguments if @code{rest}
973 is non-zero.
974
975 When a subr object is applied, it must be applied to at least @var{req}
976 arguments, or else Guile signals an error. @var{function} receives the
977 subr's first @var{req} arguments as its first @var{req} arguments. If
978 there are fewer than @var{opt} arguments remaining, then @var{function}
979 receives the value @code{SCM_UNDEFINED} for any missing optional
980 arguments. If @var{rst} is non-zero, then any arguments after the first
981 @code{@var{req} + @var{opt}} are packaged up as a list as passed as
982 @var{function}'s last argument.
983
984 Note that subrs can actually only accept a predefined set of
985 combinations of required, optional, and rest arguments. For example, a
986 subr can take one required argument, or one required and one optional
987 argument, but a subr can't take one required and two optional arguments.
988 It's bizarre, but that's the way the interpreter was written. If the
989 arguments to @code{scm_make_gsubr} do not fit one of the predefined
990 patterns, then @code{scm_make_gsubr} will return a compiled closure
991 object instead of a subr object.
992 @end deftypefun
993
994
995 @node Port Data
996 @subsubsection Ports
997
998 Haven't written this yet, 'cos I don't understand ports yet.
999
1000
1001 @node Signalling Type Errors
1002 @subsection Signalling Type Errors
1003
1004 Every function visible at the Scheme level should aggressively check the
1005 types of its arguments, to avoid misinterpreting a value, and perhaps
1006 causing a segmentation fault. Guile provides some macros to make this
1007 easier.
1008
1009 @deftypefn Macro void SCM_ASSERT (int @var{test}, SCM @var{obj}, unsigned int @var{position}, const char *@var{subr})
1010 If @var{test} is zero, signal a ``wrong type argument'' error,
1011 attributed to the subroutine named @var{subr}, operating on the value
1012 @var{obj}, which is the @var{position}'th argument of @var{subr}.
1013 @end deftypefn
1014
1015 @deftypefn Macro int SCM_ARG1
1016 @deftypefnx Macro int SCM_ARG2
1017 @deftypefnx Macro int SCM_ARG3
1018 @deftypefnx Macro int SCM_ARG4
1019 @deftypefnx Macro int SCM_ARG5
1020 @deftypefnx Macro int SCM_ARG6
1021 @deftypefnx Macro int SCM_ARG7
1022 One of the above values can be used for @var{position} to indicate the
1023 number of the argument of @var{subr} which is being checked.
1024 Alternatively, a positive integer number can be used, which allows to
1025 check arguments after the seventh. However, for parameter numbers up to
1026 seven it is preferable to use @code{SCM_ARGN} instead of the
1027 corresponding raw number, since it will make the code easier to
1028 understand.
1029 @end deftypefn
1030
1031 @deftypefn Macro int SCM_ARGn
1032 Passing a value of zero or @code{SCM_ARGn} for @var{position} allows to
1033 leave it unspecified which argument's type is incorrect. Again,
1034 @code{SCM_ARGn} should be preferred over a raw zero constant.
1035 @end deftypefn
1036
1037
1038 @node Unpacking the SCM type
1039 @subsection Unpacking the SCM Type
1040
1041 The previous sections have explained how @code{SCM} values can refer to
1042 immediate and non-immediate Scheme objects. For immediate objects, the
1043 complete object value is stored in the @code{SCM} word itself, while for
1044 non-immediates, the @code{SCM} word contains a pointer to a heap cell,
1045 and further information about the object in question is stored in that
1046 cell. This section describes how the @code{SCM} type is actually
1047 represented and used at the C level.
1048
1049 In fact, there are two basic C data types to represent objects in Guile:
1050
1051 @itemize @bullet
1052 @item
1053 @code{SCM} is the user level abstract C type that is used to represent
1054 all of Guile's Scheme objects, no matter what the Scheme object type is.
1055 No C operation except assignment is guaranteed to work with variables of
1056 type @code{SCM}, so you should only use macros and functions to work
1057 with @code{SCM} values. Values are converted between C data types and
1058 the @code{SCM} type with utility functions and macros.
1059
1060 @item
1061 @code{scm_t_bits} is an integral data type that is guaranteed to be
1062 large enough to hold all information that is required to represent any
1063 Scheme object. While this data type is mostly used to implement Guile's
1064 internals, the use of this type is also necessary to write certain kinds
1065 of extensions to Guile.
1066 @end itemize
1067
1068 @menu
1069 * Relationship between SCM and scm_t_bits::
1070 * Immediate objects::
1071 * Non-immediate objects::
1072 * Allocating Cells::
1073 * Heap Cell Type Information::
1074 * Accessing Cell Entries::
1075 * Basic Rules for Accessing Cell Entries::
1076 @end menu
1077
1078
1079 @node Relationship between SCM and scm_t_bits
1080 @subsubsection Relationship between @code{SCM} and @code{scm_t_bits}
1081
1082 A variable of type @code{SCM} is guaranteed to hold a valid Scheme
1083 object. A variable of type @code{scm_t_bits}, on the other hand, may
1084 hold a representation of a @code{SCM} value as a C integral type, but
1085 may also hold any C value, even if it does not correspond to a valid
1086 Scheme object.
1087
1088 For a variable @var{x} of type @code{SCM}, the Scheme object's type
1089 information is stored in a form that is not directly usable. To be able
1090 to work on the type encoding of the scheme value, the @code{SCM}
1091 variable has to be transformed into the corresponding representation as
1092 a @code{scm_t_bits} variable @var{y} by using the @code{SCM_UNPACK}
1093 macro. Once this has been done, the type of the scheme object @var{x}
1094 can be derived from the content of the bits of the @code{scm_t_bits}
1095 value @var{y}, in the way illustrated by the example earlier in this
1096 chapter (@pxref{Cheaper Pairs}). Conversely, a valid bit encoding of a
1097 Scheme value as a @code{scm_t_bits} variable can be transformed into the
1098 corresponding @code{SCM} value using the @code{SCM_PACK} macro.
1099
1100 @deftypefn Macro scm_t_bits SCM_UNPACK (SCM @var{x})
1101 Transforms the @code{SCM} value @var{x} into its representation as an
1102 integral type. Only after applying @code{SCM_UNPACK} it is possible to
1103 access the bits and contents of the @code{SCM} value.
1104 @end deftypefn
1105
1106 @deftypefn Macro SCM SCM_PACK (scm_t_bits @var{x})
1107 Takes a valid integral representation of a Scheme object and transforms
1108 it into its representation as a @code{SCM} value.
1109 @end deftypefn
1110
1111
1112 @node Immediate objects
1113 @subsubsection Immediate objects
1114
1115 A Scheme object may either be an immediate, i.e. carrying all necessary
1116 information by itself, or it may contain a reference to a @dfn{cell}
1117 with additional information on the heap. Although in general it should
1118 be irrelevant for user code whether an object is an immediate or not,
1119 within Guile's own code the distinction is sometimes of importance.
1120 Thus, the following low level macro is provided:
1121
1122 @deftypefn Macro int SCM_IMP (SCM @var{x})
1123 A Scheme object is an immediate if it fulfills the @code{SCM_IMP}
1124 predicate, otherwise it holds an encoded reference to a heap cell. The
1125 result of the predicate is delivered as a C style boolean value. User
1126 code and code that extends Guile should normally not be required to use
1127 this macro.
1128 @end deftypefn
1129
1130 @noindent
1131 Summary:
1132 @itemize @bullet
1133 @item
1134 Given a Scheme object @var{x} of unknown type, check first
1135 with @code{SCM_IMP (@var{x})} if it is an immediate object.
1136 @item
1137 If so, all of the type and value information can be determined from the
1138 @code{scm_t_bits} value that is delivered by @code{SCM_UNPACK
1139 (@var{x})}.
1140 @end itemize
1141
1142
1143 @node Non-immediate objects
1144 @subsubsection Non-immediate objects
1145
1146 A Scheme object of type @code{SCM} that does not fulfill the
1147 @code{SCM_IMP} predicate holds an encoded reference to a heap cell.
1148 This reference can be decoded to a C pointer to a heap cell using the
1149 @code{SCM2PTR} macro. The encoding of a pointer to a heap cell into a
1150 @code{SCM} value is done using the @code{PTR2SCM} macro.
1151
1152 @c (FIXME:: this name should be changed)
1153 @deftypefn Macro (scm_t_cell *) SCM2PTR (SCM @var{x})
1154 Extract and return the heap cell pointer from a non-immediate @code{SCM}
1155 object @var{x}.
1156 @end deftypefn
1157
1158 @c (FIXME:: this name should be changed)
1159 @deftypefn Macro SCM PTR2SCM (scm_t_cell * @var{x})
1160 Return a @code{SCM} value that encodes a reference to the heap cell
1161 pointer @var{x}.
1162 @end deftypefn
1163
1164 Note that it is also possible to transform a non-immediate @code{SCM}
1165 value by using @code{SCM_UNPACK} into a @code{scm_t_bits} variable.
1166 However, the result of @code{SCM_UNPACK} may not be used as a pointer to
1167 a @code{scm_t_cell}: only @code{SCM2PTR} is guaranteed to transform a
1168 @code{SCM} object into a valid pointer to a heap cell. Also, it is not
1169 allowed to apply @code{PTR2SCM} to anything that is not a valid pointer
1170 to a heap cell.
1171
1172 @noindent
1173 Summary:
1174 @itemize @bullet
1175 @item
1176 Only use @code{SCM2PTR} on @code{SCM} values for which @code{SCM_IMP} is
1177 false!
1178 @item
1179 Don't use @code{(scm_t_cell *) SCM_UNPACK (@var{x})}! Use @code{SCM2PTR
1180 (@var{x})} instead!
1181 @item
1182 Don't use @code{PTR2SCM} for anything but a cell pointer!
1183 @end itemize
1184
1185 @node Allocating Cells
1186 @subsubsection Allocating Cells
1187
1188 Guile provides both ordinary cells with two slots, and double cells
1189 with four slots. The following two function are the most primitive
1190 way to allocate such cells.
1191
1192 If the caller intends to use it as a header for some other type, she
1193 must pass an appropriate magic value in @var{word_0}, to mark it as a
1194 member of that type, and pass whatever value as @var{word_1}, etc that
1195 the type expects. You should generally not need these functions,
1196 unless you are implementing a new datatype, and thoroughly understand
1197 the code in @code{<libguile/tags.h>}.
1198
1199 If you just want to allocate pairs, use @code{scm_cons}.
1200
1201 @deftypefn Function SCM scm_cell (scm_t_bits word_0, scm_t_bits word_1)
1202 Allocate a new cell, initialize the two slots with @var{word_0} and
1203 @var{word_1}, and return it.
1204
1205 Note that @var{word_0} and @var{word_1} are of type @code{scm_t_bits}.
1206 If you want to pass a @code{SCM} object, you need to use
1207 @code{SCM_UNPACK}.
1208 @end deftypefn
1209
1210 @deftypefn Function SCM scm_double_cell (scm_t_bits word_0, scm_t_bits word_1, scm_t_bits word_2, scm_t_bits word_3)
1211 Like @code{scm_cell}, but allocates a double cell with four
1212 slots.
1213 @end deftypefn
1214
1215 @node Heap Cell Type Information
1216 @subsubsection Heap Cell Type Information
1217
1218 Heap cells contain a number of entries, each of which is either a scheme
1219 object of type @code{SCM} or a raw C value of type @code{scm_t_bits}.
1220 Which of the cell entries contain Scheme objects and which contain raw C
1221 values is determined by the first entry of the cell, which holds the
1222 cell type information.
1223
1224 @deftypefn Macro scm_t_bits SCM_CELL_TYPE (SCM @var{x})
1225 For a non-immediate Scheme object @var{x}, deliver the content of the
1226 first entry of the heap cell referenced by @var{x}. This value holds
1227 the information about the cell type.
1228 @end deftypefn
1229
1230 @deftypefn Macro void SCM_SET_CELL_TYPE (SCM @var{x}, scm_t_bits @var{t})
1231 For a non-immediate Scheme object @var{x}, write the value @var{t} into
1232 the first entry of the heap cell referenced by @var{x}. The value
1233 @var{t} must hold a valid cell type.
1234 @end deftypefn
1235
1236
1237 @node Accessing Cell Entries
1238 @subsubsection Accessing Cell Entries
1239
1240 For a non-immediate Scheme object @var{x}, the object type can be
1241 determined by reading the cell type entry using the @code{SCM_CELL_TYPE}
1242 macro. For each different type of cell it is known which cell entries
1243 hold Scheme objects and which cell entries hold raw C data. To access
1244 the different cell entries appropriately, the following macros are
1245 provided.
1246
1247 @deftypefn Macro scm_t_bits SCM_CELL_WORD (SCM @var{x}, unsigned int @var{n})
1248 Deliver the cell entry @var{n} of the heap cell referenced by the
1249 non-immediate Scheme object @var{x} as raw data. It is illegal, to
1250 access cell entries that hold Scheme objects by using these macros. For
1251 convenience, the following macros are also provided.
1252 @itemize @bullet
1253 @item
1254 SCM_CELL_WORD_0 (@var{x}) @result{} SCM_CELL_WORD (@var{x}, 0)
1255 @item
1256 SCM_CELL_WORD_1 (@var{x}) @result{} SCM_CELL_WORD (@var{x}, 1)
1257 @item
1258 @dots{}
1259 @item
1260 SCM_CELL_WORD_@var{n} (@var{x}) @result{} SCM_CELL_WORD (@var{x}, @var{n})
1261 @end itemize
1262 @end deftypefn
1263
1264 @deftypefn Macro SCM SCM_CELL_OBJECT (SCM @var{x}, unsigned int @var{n})
1265 Deliver the cell entry @var{n} of the heap cell referenced by the
1266 non-immediate Scheme object @var{x} as a Scheme object. It is illegal,
1267 to access cell entries that do not hold Scheme objects by using these
1268 macros. For convenience, the following macros are also provided.
1269 @itemize @bullet
1270 @item
1271 SCM_CELL_OBJECT_0 (@var{x}) @result{} SCM_CELL_OBJECT (@var{x}, 0)
1272 @item
1273 SCM_CELL_OBJECT_1 (@var{x}) @result{} SCM_CELL_OBJECT (@var{x}, 1)
1274 @item
1275 @dots{}
1276 @item
1277 SCM_CELL_OBJECT_@var{n} (@var{x}) @result{} SCM_CELL_OBJECT (@var{x},
1278 @var{n})
1279 @end itemize
1280 @end deftypefn
1281
1282 @deftypefn Macro void SCM_SET_CELL_WORD (SCM @var{x}, unsigned int @var{n}, scm_t_bits @var{w})
1283 Write the raw C value @var{w} into entry number @var{n} of the heap cell
1284 referenced by the non-immediate Scheme value @var{x}. Values that are
1285 written into cells this way may only be read from the cells using the
1286 @code{SCM_CELL_WORD} macros or, in case cell entry 0 is written, using
1287 the @code{SCM_CELL_TYPE} macro. For the special case of cell entry 0 it
1288 has to be made sure that @var{w} contains a cell type information which
1289 does not describe a Scheme object. For convenience, the following
1290 macros are also provided.
1291 @itemize @bullet
1292 @item
1293 SCM_SET_CELL_WORD_0 (@var{x}, @var{w}) @result{} SCM_SET_CELL_WORD
1294 (@var{x}, 0, @var{w})
1295 @item
1296 SCM_SET_CELL_WORD_1 (@var{x}, @var{w}) @result{} SCM_SET_CELL_WORD
1297 (@var{x}, 1, @var{w})
1298 @item
1299 @dots{}
1300 @item
1301 SCM_SET_CELL_WORD_@var{n} (@var{x}, @var{w}) @result{} SCM_SET_CELL_WORD
1302 (@var{x}, @var{n}, @var{w})
1303 @end itemize
1304 @end deftypefn
1305
1306 @deftypefn Macro void SCM_SET_CELL_OBJECT (SCM @var{x}, unsigned int @var{n}, SCM @var{o})
1307 Write the Scheme object @var{o} into entry number @var{n} of the heap
1308 cell referenced by the non-immediate Scheme value @var{x}. Values that
1309 are written into cells this way may only be read from the cells using
1310 the @code{SCM_CELL_OBJECT} macros or, in case cell entry 0 is written,
1311 using the @code{SCM_CELL_TYPE} macro. For the special case of cell
1312 entry 0 the writing of a Scheme object into this cell is only allowed
1313 if the cell forms a Scheme pair. For convenience, the following macros
1314 are also provided.
1315 @itemize @bullet
1316 @item
1317 SCM_SET_CELL_OBJECT_0 (@var{x}, @var{o}) @result{} SCM_SET_CELL_OBJECT
1318 (@var{x}, 0, @var{o})
1319 @item
1320 SCM_SET_CELL_OBJECT_1 (@var{x}, @var{o}) @result{} SCM_SET_CELL_OBJECT
1321 (@var{x}, 1, @var{o})
1322 @item
1323 @dots{}
1324 @item
1325 SCM_SET_CELL_OBJECT_@var{n} (@var{x}, @var{o}) @result{}
1326 SCM_SET_CELL_OBJECT (@var{x}, @var{n}, @var{o})
1327 @end itemize
1328 @end deftypefn
1329
1330 @noindent
1331 Summary:
1332 @itemize @bullet
1333 @item
1334 For a non-immediate Scheme object @var{x} of unknown type, get the type
1335 information by using @code{SCM_CELL_TYPE (@var{x})}.
1336 @item
1337 As soon as the cell type information is available, only use the
1338 appropriate access methods to read and write data to the different cell
1339 entries.
1340 @end itemize
1341
1342
1343 @node Basic Rules for Accessing Cell Entries
1344 @subsubsection Basic Rules for Accessing Cell Entries
1345
1346 For each cell type it is generally up to the implementation of that type
1347 which of the corresponding cell entries hold Scheme objects and which
1348 hold raw C values. However, there is one basic rule that has to be
1349 followed: Scheme pairs consist of exactly two cell entries, which both
1350 contain Scheme objects. Further, a cell which contains a Scheme object
1351 in it first entry has to be a Scheme pair. In other words, it is not
1352 allowed to store a Scheme object in the first cell entry and a non
1353 Scheme object in the second cell entry.
1354
1355 @c Fixme:shouldn't this rather be SCM_PAIRP / SCM_PAIR_P ?
1356 @deftypefn Macro int SCM_CONSP (SCM @var{x})
1357 Determine, whether the Scheme object @var{x} is a Scheme pair,
1358 i.e. whether @var{x} references a heap cell consisting of exactly two
1359 entries, where both entries contain a Scheme object. In this case, both
1360 entries will have to be accessed using the @code{SCM_CELL_OBJECT}
1361 macros. On the contrary, if the @code{SCM_CONSP} predicate is not
1362 fulfilled, the first entry of the Scheme cell is guaranteed not to be a
1363 Scheme value and thus the first cell entry must be accessed using the
1364 @code{SCM_CELL_WORD_0} macro.
1365 @end deftypefn
1366
1367
1368 @node Defining New Types (Smobs)
1369 @section Defining New Types (Smobs)
1370
1371 @dfn{Smobs} are Guile's mechanism for adding new non-immediate types to
1372 the system.@footnote{The term ``smob'' was coined by Aubrey Jaffer, who
1373 says it comes from ``small object'', referring to the fact that only the
1374 @sc{cdr} and part of the @sc{car} of a smob's cell are available for
1375 use.} To define a new smob type, the programmer provides Guile with
1376 some essential information about the type --- how to print it, how to
1377 garbage collect it, and so on --- and Guile returns a fresh type tag for
1378 use in the first word of new cells. The programmer can then use
1379 @code{scm_c_define_gsubr} to make a set of C functions that create and
1380 operate on these objects visible to Scheme code.
1381
1382 (You can find a complete version of the example code used in this
1383 section in the Guile distribution, in @file{doc/example-smob}. That
1384 directory includes a makefile and a suitable @code{main} function, so
1385 you can build a complete interactive Guile shell, extended with the
1386 datatypes described here.)
1387
1388 @menu
1389 * Describing a New Type::
1390 * Creating Instances::
1391 * Type checking::
1392 * Garbage Collecting Smobs::
1393 * A Common Mistake In Allocating Smobs::
1394 * Garbage Collecting Simple Smobs::
1395 * A Complete Example::
1396 @end menu
1397
1398 @node Describing a New Type
1399 @subsection Describing a New Type
1400
1401 To define a new type, the programmer must write four functions to
1402 manage instances of the type:
1403
1404 @table @code
1405 @item mark
1406 Guile will apply this function to each instance of the new type it
1407 encounters during garbage collection. This function is responsible for
1408 telling the collector about any other non-immediate objects the object
1409 refers to. The default smob mark function is to not mark any data.
1410 @xref{Garbage Collecting Smobs}, for more details.
1411
1412 @item free
1413 Guile will apply this function to each instance of the new type it could
1414 not find any live pointers to. The function should release all
1415 resources held by the object and return the number of bytes released.
1416 This is analogous to the Java finalization method-- it is invoked at
1417 an unspecified time (when garbage collection occurs) after the object
1418 is dead. The default free function frees the smob data (if the size
1419 of the struct passed to @code{scm_make_smob_type} is non-zero) using
1420 @code{scm_gc_free}. @xref{Garbage Collecting Smobs}, for more
1421 details.
1422
1423 @item print
1424 @c GJB:FIXME:: @var{exp} and @var{port} need to refer to a prototype of
1425 @c the print function.... where is that, or where should it go?
1426 Guile will apply this function to each instance of the new type to print
1427 the value, as for @code{display} or @code{write}. The function should
1428 write a printed representation of @var{exp} on @var{port}, in accordance
1429 with the parameters in @var{pstate}. (For more information on print
1430 states, see @ref{Port Data}.) The default print function prints
1431 @code{#<NAME ADDRESS>} where @code{NAME} is the first argument passed to
1432 @code{scm_make_smob_type}.
1433
1434 @item equalp
1435 If Scheme code asks the @code{equal?} function to compare two instances
1436 of the same smob type, Guile calls this function. It should return
1437 @code{SCM_BOOL_T} if @var{a} and @var{b} should be considered
1438 @code{equal?}, or @code{SCM_BOOL_F} otherwise. If @code{equalp} is
1439 @code{NULL}, @code{equal?} will assume that two instances of this type are
1440 never @code{equal?} unless they are @code{eq?}.
1441
1442 @end table
1443
1444 To actually register the new smob type, call @code{scm_make_smob_type}:
1445
1446 @deftypefun scm_t_bits scm_make_smob_type (const char *name, size_t size)
1447 This function implements the standard way of adding a new smob type,
1448 named @var{name}, with instance size @var{size}, to the system. The
1449 return value is a tag that is used in creating instances of the type.
1450 If @var{size} is 0, then no memory will be allocated when instances of
1451 the smob are created, and nothing will be freed by the default free
1452 function. Default values are provided for mark, free, print, and,
1453 equalp, as described above. If you want to customize any of these
1454 functions, the call to @code{scm_make_smob_type} should be immediately
1455 followed by calls to one or several of @code{scm_set_smob_mark},
1456 @code{scm_set_smob_free}, @code{scm_set_smob_print}, and/or
1457 @code{scm_set_smob_equalp}.
1458 @end deftypefun
1459
1460 Each of the below @code{scm_set_smob_XXX} functions registers a smob
1461 special function for a given type. Each function is intended to be used
1462 only zero or one time per type, and the call should be placed
1463 immediately following the call to @code{scm_make_smob_type}.
1464
1465 @deftypefun void scm_set_smob_mark (scm_t_bits tc, SCM (*mark) (SCM))
1466 This function sets the smob marking procedure for the smob type specified by
1467 the tag @var{tc}. @var{tc} is the tag returned by @code{scm_make_smob_type}.
1468 @end deftypefun
1469
1470 @deftypefun void scm_set_smob_free (scm_t_bits tc, size_t (*free) (SCM))
1471 This function sets the smob freeing procedure for the smob type specified by
1472 the tag @var{tc}. @var{tc} is the tag returned by @code{scm_make_smob_type}.
1473 @end deftypefun
1474
1475 @deftypefun void scm_set_smob_print (scm_t_bits tc, int (*print) (SCM, SCM, scm_print_state*))
1476 This function sets the smob printing procedure for the smob type specified by
1477 the tag @var{tc}. @var{tc} is the tag returned by @code{scm_make_smob_type}.
1478 @end deftypefun
1479
1480 @deftypefun void scm_set_smob_equalp (scm_t_bits tc, SCM (*equalp) (SCM, SCM))
1481 This function sets the smob equality-testing predicate for the smob type specified by
1482 the tag @var{tc}. @var{tc} is the tag returned by @code{scm_make_smob_type}.
1483 @end deftypefun
1484
1485 In versions 1.4 and earlier, there was another way of creating smob
1486 types, using @code{scm_make_smob_type_mfpe}. This function is now
1487 deprecated and will be removed in a future version of Guile. You should
1488 use the mechanism described above for new code, and change old code not
1489 to use deprecated features.
1490
1491 Instead of using @code{scm_make_smob_type} and calling each of the
1492 individual @code{scm_set_smob_XXX} functions to register each special
1493 function independently, you could use @code{scm_make_smob_type_mfpe} to
1494 register all of the special functions at once as you create the smob
1495 type
1496
1497 @deftypefun long scm_make_smob_type_mfpe(const char *name, size_t size, SCM (*mark) (SCM), size_t (*free) (SCM), int (*print) (SCM, SCM, scm_print_state*), SCM (*equalp) (SCM, SCM))
1498 This function invokes @code{scm_make_smob_type} on its first two arguments
1499 to add a new smob type named @var{name}, with instance size @var{size} to the system.
1500 It also registers the @var{mark}, @var{free}, @var{print}, @var{equalp} smob
1501 special functions for that new type. Any of these parameters can be @code{NULL}
1502 to have that special function use the default behavior for guile.
1503 The return value is a tag that is used in creating instances of the type. If @var{size}
1504 is 0, then no memory will be allocated when instances of the smob are created, and
1505 nothing will be freed by the default free function.
1506 @end deftypefun
1507
1508 For example, here is how one might declare and register a new type
1509 representing eight-bit gray-scale images:
1510
1511 @example
1512 #include <libguile.h>
1513
1514 static scm_t_bits image_tag;
1515
1516 void
1517 init_image_type (void)
1518 @{
1519 image_tag = scm_make_smob_type ("image", sizeof (struct image));
1520 scm_set_smob_mark (image_tag, mark_image);
1521 scm_set_smob_free (image_tag, free_image);
1522 scm_set_smob_print (image_tag, print_image);
1523 @}
1524 @end example
1525
1526
1527 @node Creating Instances
1528 @subsection Creating Instances
1529
1530 Like other non-immediate types, smobs start with a cell whose first word
1531 contains typing information, and whose remaining words are free for any
1532 use.
1533
1534 After the header word containing the type code, smobs can have either
1535 one, two or three additional words of data. These words store either a
1536 pointer to the internal C structure holding the smob-specific data, or
1537 the smob data itself. To create an instance of a smob type following
1538 these standards, you should use @code{SCM_NEWSMOB}, @code{SCM_NEWSMOB2}
1539 or @code{SCM_NEWSMOB3}:@footnote{The @code{SCM_NEWSMOB2} and
1540 @code{SCM_NEWSMOB3} variants will allocate double cells and thus use
1541 twice as much memory as smobs created by @code{SCM_NEWSMOB}.}
1542
1543 @deftypefn Macro void SCM_NEWSMOB(SCM value, scm_t_bits tag, void *data)
1544 @deftypefnx Macro void SCM_NEWSMOB2(SCM value, scm_t_bits tag, void *data1, void *data2)
1545 @deftypefnx Macro void SCM_NEWSMOB3(SCM value, scm_t_bits tag, void *data1, void *data2, void *data3)
1546 Make @var{value} contain a smob instance of the type with tag @var{tag}
1547 and smob data @var{data} (or @var{data1}, @var{data2}, and @var{data3}).
1548 @var{value} must be previously declared as C type @code{SCM}.
1549 @end deftypefn
1550
1551 Since it is often the case (e.g., in smob constructors) that you will
1552 create a smob instance and return it, there is also a slightly specialized
1553 macro for this situation:
1554
1555 @deftypefn Macro fn_returns SCM_RETURN_NEWSMOB(scm_t_bits tag, void *data)
1556 @deftypefnx Macro fn_returns SCM_RETURN_NEWSMOB2(scm_t_bits tag, void *data1, void *data2)
1557 @deftypefnx Macro fn_returns SCM_RETURN_NEWSMOB3(scm_t_bits tag, void *data1, void *data2, void *data3)
1558 This macro expands to a block of code that creates a smob instance of
1559 the type with tag @var{tag} and smob data @var{data} (or @var{data1},
1560 @var{data2}, and @var{data3}), and causes the surrounding function to
1561 return that @code{SCM} value. It should be the last piece of code in
1562 a block.
1563 @end deftypefn
1564
1565 Guile provides some functions for managing memory, which are often
1566 helpful when implementing smobs. @xref{Memory Blocks}.
1567
1568
1569 Continuing the above example, if the global variable @code{image_tag}
1570 contains a tag returned by @code{scm_make_smob_type}, here is how we
1571 could construct a smob whose @sc{cdr} contains a pointer to a freshly
1572 allocated @code{struct image}:
1573
1574 @example
1575 struct image @{
1576 int width, height;
1577 char *pixels;
1578
1579 /* The name of this image */
1580 SCM name;
1581
1582 /* A function to call when this image is
1583 modified, e.g., to update the screen,
1584 or SCM_BOOL_F if no action necessary */
1585 SCM update_func;
1586 @};
1587
1588 SCM
1589 make_image (SCM name, SCM s_width, SCM s_height)
1590 @{
1591 struct image *image;
1592 int width, height;
1593
1594 SCM_ASSERT (SCM_STRINGP (name), name, SCM_ARG1, "make-image");
1595 SCM_ASSERT (SCM_INUMP (s_width), s_width, SCM_ARG2, "make-image");
1596 SCM_ASSERT (SCM_INUMP (s_height), s_height, SCM_ARG3, "make-image");
1597
1598 width = SCM_INUM (s_width);
1599 height = SCM_INUM (s_height);
1600
1601 image = (struct image *) scm_gc_malloc (sizeof (struct image), "image");
1602 image->width = width;
1603 image->height = height;
1604 image->pixels = scm_gc_malloc (width * height, "image pixels");
1605 image->name = name;
1606 image->update_func = SCM_BOOL_F;
1607
1608 SCM_RETURN_NEWSMOB (image_tag, image);
1609 @}
1610 @end example
1611
1612
1613 @node Type checking
1614 @subsection Type checking
1615
1616 Functions that operate on smobs should aggressively check the types of
1617 their arguments, to avoid misinterpreting some other datatype as a smob,
1618 and perhaps causing a segmentation fault. Fortunately, this is pretty
1619 simple to do. The function need only verify that its argument is a
1620 non-immediate, whose first word is the type tag returned by
1621 @code{scm_make_smob_type}.
1622
1623 For example, here is a simple function that operates on an image smob,
1624 and checks the type of its argument. We also present an expanded
1625 version of the @code{init_image_type} function, to make
1626 @code{clear_image} and the image constructor function @code{make_image}
1627 visible to Scheme code.
1628
1629 @example
1630 SCM
1631 clear_image (SCM image_smob)
1632 @{
1633 int area;
1634 struct image *image;
1635
1636 SCM_ASSERT (SCM_SMOB_PREDICATE (image_tag, image_smob),
1637 image_smob, SCM_ARG1, "clear-image");
1638
1639 image = (struct image *) SCM_SMOB_DATA (image_smob);
1640 area = image->width * image->height;
1641 memset (image->pixels, 0, area);
1642
1643 /* Invoke the image's update function. */
1644 if (image->update_func != SCM_BOOL_F)
1645 scm_apply (image->update_func, SCM_EOL, SCM_EOL);
1646
1647 return SCM_UNSPECIFIED;
1648 @}
1649
1650
1651 void
1652 init_image_type (void)
1653 @{
1654 image_tag = scm_make_smob_type ("image", sizeof (struct image));
1655 scm_set_smob_mark (image_tag, mark_image);
1656 scm_set_smob_free (image_tag, free_image);
1657 scm_set_smob_print (image_tag, print_image);
1658
1659 scm_c_define_gsubr ("clear-image", 1, 0, 0, clear_image);
1660 scm_c_define_gsubr ("make-image", 3, 0, 0, make_image);
1661 @}
1662 @end example
1663
1664 @c GJB:FIXME:: should talk about guile-snarf somewhere!
1665
1666
1667 @node Garbage Collecting Smobs
1668 @subsection Garbage Collecting Smobs
1669
1670 Once a smob has been released to the tender mercies of the Scheme
1671 system, it must be prepared to survive garbage collection. Guile calls
1672 the @code{mark} and @code{free} functions of the @code{scm_smobfuns}
1673 structure to manage this.
1674
1675 As described before (@pxref{Conservative GC}), every object in the
1676 Scheme system has a @dfn{mark bit}, which the garbage collector uses to
1677 tell live objects from dead ones. When collection starts, every
1678 object's mark bit is clear. The collector traces pointers through the
1679 heap, starting from objects known to be live, and sets the mark bit on
1680 each object it encounters. When it can find no more unmarked objects,
1681 the collector walks all objects, live and dead, frees those whose mark
1682 bits are still clear, and clears the mark bit on the others.
1683
1684 The two main portions of the collection are called the @dfn{mark phase},
1685 during which the collector marks live objects, and the @dfn{sweep
1686 phase}, during which the collector frees all unmarked objects.
1687
1688 The mark bit of a smob lives in a special memory region. When the
1689 collector encounters a smob, it sets the smob's mark bit, and uses the
1690 smob's type tag to find the appropriate @code{mark} function for that
1691 smob: the one listed in that smob's @code{scm_smobfuns} structure. It
1692 then calls the @code{mark} function, passing it the smob as its only
1693 argument.
1694
1695 The @code{mark} function is responsible for marking any other Scheme
1696 objects the smob refers to. If it does not do so, the objects' mark
1697 bits will still be clear when the collector begins to sweep, and the
1698 collector will free them. If this occurs, it will probably break, or at
1699 least confuse, any code operating on the smob; the smob's @code{SCM}
1700 values will have become dangling references.
1701
1702 To mark an arbitrary Scheme object, the @code{mark} function may call
1703 this function:
1704
1705 @deftypefun void scm_gc_mark (SCM @var{x})
1706 Mark the object @var{x}, and recurse on any objects @var{x} refers to.
1707 If @var{x}'s mark bit is already set, return immediately.
1708 @end deftypefun
1709
1710 Thus, here is how we might write the @code{mark} function for the image
1711 smob type discussed above:
1712
1713 @example
1714 @group
1715 SCM
1716 mark_image (SCM image_smob)
1717 @{
1718 /* Mark the image's name and update function. */
1719 struct image *image = (struct image *) SCM_SMOB_DATA (image_smob);
1720
1721 scm_gc_mark (image->name);
1722 scm_gc_mark (image->update_func);
1723
1724 return SCM_BOOL_F;
1725 @}
1726 @end group
1727 @end example
1728
1729 Note that, even though the image's @code{update_func} could be an
1730 arbitrarily complex structure (representing a procedure and any values
1731 enclosed in its environment), @code{scm_gc_mark} will recurse as
1732 necessary to mark all its components. Because @code{scm_gc_mark} sets
1733 an object's mark bit before it recurses, it is not confused by
1734 circular structures.
1735
1736 As an optimization, the collector will mark whatever value is returned
1737 by the @code{mark} function; this helps limit depth of recursion during
1738 the mark phase. Thus, the code above could also be written as:
1739 @example
1740 @group
1741 SCM
1742 mark_image (SCM image_smob)
1743 @{
1744 /* Mark the image's name and update function. */
1745 struct image *image = (struct image *) SCM_SMOB_DATA (image_smob);
1746
1747 scm_gc_mark (image->name);
1748 return image->update_func;
1749 @}
1750 @end group
1751 @end example
1752
1753
1754 Finally, when the collector encounters an unmarked smob during the sweep
1755 phase, it uses the smob's tag to find the appropriate @code{free}
1756 function for the smob. It then calls the function, passing it the smob
1757 as its only argument.
1758
1759 The @code{free} function must release any resources used by the smob.
1760 However, it need not free objects managed by the collector; the
1761 collector will take care of them. For historical reasons, the return
1762 type of the @code{free} function should be @code{size_t}, an unsigned
1763 integral type; the @code{free} function should always return zero.
1764
1765 Here is how we might write the @code{free} function for the image smob
1766 type:
1767 @example
1768 size_t
1769 free_image (SCM image_smob)
1770 @{
1771 struct image *image = (struct image *) SCM_SMOB_DATA (image_smob);
1772
1773 scm_gc_free (image->pixels, image->width * image->height, "image pixels");
1774 scm_gc_free (image, sizeof (struct image), "image");
1775
1776 return 0;
1777 @}
1778 @end example
1779
1780 During the sweep phase, the garbage collector will clear the mark bits
1781 on all live objects. The code which implements a smob need not do this
1782 itself.
1783
1784 There is no way for smob code to be notified when collection is
1785 complete.
1786
1787 It is usually a good idea to minimize the amount of processing done
1788 during garbage collection; keep @code{mark} and @code{free} functions
1789 very simple. Since collections occur at unpredictable times, it is easy
1790 for any unusual activity to interfere with normal code.
1791
1792
1793 @node A Common Mistake In Allocating Smobs, Garbage Collecting Simple Smobs, Garbage Collecting Smobs, Defining New Types (Smobs)
1794 @subsection A Common Mistake In Allocating Smobs
1795
1796 When constructing new objects, you must be careful that the garbage
1797 collector can always find any new objects you allocate. For example,
1798 suppose we wrote the @code{make_image} function this way:
1799
1800 @example
1801 SCM
1802 make_image (SCM name, SCM s_width, SCM s_height)
1803 @{
1804 struct image *image;
1805 SCM image_smob;
1806 int width, height;
1807
1808 SCM_ASSERT (SCM_STRINGP (name), name, SCM_ARG1, "make-image");
1809 SCM_ASSERT (SCM_INUMP (s_width), s_width, SCM_ARG2, "make-image");
1810 SCM_ASSERT (SCM_INUMP (s_height), s_height, SCM_ARG3, "make-image");
1811
1812 width = SCM_INUM (s_width);
1813 height = SCM_INUM (s_height);
1814
1815 image = (struct image *) scm_gc_malloc (sizeof (struct image), "image");
1816 image->width = width;
1817 image->height = height;
1818 image->pixels = scm_gc_malloc (width * height, "image pixels");
1819
1820 /* THESE TWO LINES HAVE CHANGED: */
1821 image->name = scm_string_copy (name);
1822 image->update_func = scm_c_define_gsubr (@dots{});
1823
1824 SCM_NEWCELL (image_smob);
1825 SCM_SET_CELL_WORD_1 (image_smob, image);
1826 SCM_SET_CELL_TYPE (image_smob, image_tag);
1827
1828 return image_smob;
1829 @}
1830 @end example
1831
1832 This code is incorrect. The calls to @code{scm_string_copy} and
1833 @code{scm_c_define_gsubr} allocate fresh objects. Allocating any new object
1834 may cause the garbage collector to run. If @code{scm_c_define_gsubr}
1835 invokes a collection, the garbage collector has no way to discover that
1836 @code{image->name} points to the new string object; the @code{image}
1837 structure is not yet part of any Scheme object, so the garbage collector
1838 will not traverse it. Since the garbage collector cannot find any
1839 references to the new string object, it will free it, leaving
1840 @code{image} pointing to a dead object.
1841
1842 A correct implementation might say, instead:
1843
1844 @example
1845 image->name = SCM_BOOL_F;
1846 image->update_func = SCM_BOOL_F;
1847
1848 SCM_NEWCELL (image_smob);
1849 SCM_SET_CELL_WORD_1 (image_smob, image);
1850 SCM_SET_CELL_TYPE (image_smob, image_tag);
1851
1852 image->name = scm_string_copy (name);
1853 image->update_func = scm_c_define_gsubr (@dots{});
1854
1855 return image_smob;
1856 @end example
1857
1858 Now, by the time we allocate the new string and function objects,
1859 @code{image_smob} points to @code{image}. If the garbage collector
1860 scans the stack, it will find a reference to @code{image_smob} and
1861 traverse @code{image}, so any objects @code{image} points to will be
1862 preserved.
1863
1864
1865 @node Garbage Collecting Simple Smobs, A Complete Example, A Common Mistake In Allocating Smobs, Defining New Types (Smobs)
1866 @subsection Garbage Collecting Simple Smobs
1867
1868 It is often useful to define very simple smob types --- smobs which have
1869 no data to mark, other than the cell itself, or smobs whose first data
1870 word is simply an ordinary Scheme object, to be marked recursively.
1871 Guile provides some functions to handle these common cases; you can use
1872 this function as your smob type's @code{mark} function, if your smob's
1873 structure is simple enough.
1874
1875 If the smob refers to no other Scheme objects, then no action is
1876 necessary; the garbage collector has already marked the smob cell
1877 itself. In that case, you can use zero as your mark function.
1878
1879 @deftypefun SCM scm_markcdr (SCM @var{x})
1880 Mark the references in the smob @var{x}, assuming that @var{x}'s first
1881 data word contains an ordinary Scheme object, and @var{x} refers to no
1882 other objects. This function simply returns @var{x}'s first data word.
1883
1884 This is only useful for simple smobs created by @code{SCM_NEWSMOB} or
1885 @code{SCM_RETURN_NEWSMOB}, not for smobs allocated as double cells.
1886 @end deftypefun
1887
1888 @deftypefun size_t scm_free0 (SCM @var{x})
1889 Do nothing; return zero. This function is appropriate for smobs that
1890 use either zero or @code{scm_markcdr} as their marking functions, and
1891 refer to no heap storage, including memory managed by @code{malloc},
1892 other than the smob's header cell.
1893
1894 This function should not be needed anymore, because simply passing
1895 @code{NULL} as the free function does the same.
1896 @end deftypefun
1897
1898
1899 @node A Complete Example
1900 @subsection A Complete Example
1901
1902 Here is the complete text of the implementation of the image datatype,
1903 as presented in the sections above. We also provide a definition for
1904 the smob's @code{print} function, and make some objects and functions
1905 static, to clarify exactly what the surrounding code is using.
1906
1907 As mentioned above, you can find this code in the Guile distribution, in
1908 @file{doc/example-smob}. That directory includes a makefile and a
1909 suitable @code{main} function, so you can build a complete interactive
1910 Guile shell, extended with the datatypes described here.)
1911
1912 @example
1913 /* file "image-type.c" */
1914
1915 #include <stdlib.h>
1916 #include <libguile.h>
1917
1918 static scm_t_bits image_tag;
1919
1920 struct image @{
1921 int width, height;
1922 char *pixels;
1923
1924 /* The name of this image */
1925 SCM name;
1926
1927 /* A function to call when this image is
1928 modified, e.g., to update the screen,
1929 or SCM_BOOL_F if no action necessary */
1930 SCM update_func;
1931 @};
1932
1933 static SCM
1934 make_image (SCM name, SCM s_width, SCM s_height)
1935 @{
1936 struct image *image;
1937 int width, height;
1938
1939 SCM_ASSERT (SCM_STRINGP (name), name, SCM_ARG1, "make-image");
1940 SCM_ASSERT (SCM_INUMP (s_width), s_width, SCM_ARG2, "make-image");
1941 SCM_ASSERT (SCM_INUMP (s_height), s_height, SCM_ARG3, "make-image");
1942
1943 width = SCM_INUM (s_width);
1944 height = SCM_INUM (s_height);
1945
1946 image = (struct image *) scm_gc_malloc (sizeof (struct image), "image");
1947 image->width = width;
1948 image->height = height;
1949 image->pixels = scm_gc_malloc (width * height, "image pixels");
1950 image->name = name;
1951 image->update_func = SCM_BOOL_F;
1952
1953 SCM_RETURN_NEWSMOB (image_tag, image);
1954 @}
1955
1956 static SCM
1957 clear_image (SCM image_smob)
1958 @{
1959 int area;
1960 struct image *image;
1961
1962 SCM_ASSERT (SCM_SMOB_PREDICATE (image_tag, image_smob),
1963 image_smob, SCM_ARG1, "clear-image");
1964
1965 image = (struct image *) SCM_SMOB_DATA (image_smob);
1966 area = image->width * image->height;
1967 memset (image->pixels, 0, area);
1968
1969 /* Invoke the image's update function. */
1970 if (image->update_func != SCM_BOOL_F)
1971 scm_apply (image->update_func, SCM_EOL, SCM_EOL);
1972
1973 return SCM_UNSPECIFIED;
1974 @}
1975
1976 static SCM
1977 mark_image (SCM image_smob)
1978 @{
1979 /* Mark the image's name and update function. */
1980 struct image *image = (struct image *) SCM_SMOB_DATA (image_smob);
1981
1982 scm_gc_mark (image->name);
1983 return image->update_func;
1984 @}
1985
1986 static size_t
1987 free_image (SCM image_smob)
1988 @{
1989 struct image *image = (struct image *) SCM_SMOB_DATA (image_smob);
1990
1991 scm_gc_free (image->pixels, image->width * image->height, "image pixels");
1992 scm_gc_free (image, sizeof (struct image), "image");
1993
1994 return 0;
1995 @}
1996
1997 static int
1998 print_image (SCM image_smob, SCM port, scm_print_state *pstate)
1999 @{
2000 struct image *image = (struct image *) SCM_SMOB_DATA (image_smob);
2001
2002 scm_puts ("#<image ", port);
2003 scm_display (image->name, port);
2004 scm_puts (">", port);
2005
2006 /* non-zero means success */
2007 return 1;
2008 @}
2009
2010 void
2011 init_image_type (void)
2012 @{
2013 image_tag = scm_make_smob_type ("image", sizeof (struct image));
2014 scm_set_smob_mark (image_tag, mark_image);
2015 scm_set_smob_free (image_tag, free_image);
2016 scm_set_smob_print (image_tag, print_image);
2017
2018 scm_c_define_gsubr ("clear-image", 1, 0, 0, clear_image);
2019 scm_c_define_gsubr ("make-image", 3, 0, 0, make_image);
2020 @}
2021 @end example
2022
2023 Here is a sample build and interaction with the code from the
2024 @file{example-smob} directory, on the author's machine:
2025
2026 @example
2027 zwingli:example-smob$ make CC=gcc
2028 gcc `guile-config compile` -c image-type.c -o image-type.o
2029 gcc `guile-config compile` -c myguile.c -o myguile.o
2030 gcc image-type.o myguile.o `guile-config link` -o myguile
2031 zwingli:example-smob$ ./myguile
2032 guile> make-image
2033 #<primitive-procedure make-image>
2034 guile> (define i (make-image "Whistler's Mother" 100 100))
2035 guile> i
2036 #<image Whistler's Mother>
2037 guile> (clear-image i)
2038 guile> (clear-image 4)
2039 ERROR: In procedure clear-image in expression (clear-image 4):
2040 ERROR: Wrong type argument in position 1: 4
2041 ABORT: (wrong-type-arg)
2042
2043 Type "(backtrace)" to get more information.
2044 guile>
2045 @end example
2046
2047 @c essay @bye