Fix overfull hboxes
[bpt/guile.git] / doc / ref / goops.texi
1 @c -*-texinfo-*-
2 @c This is part of the GNU Guile Reference Manual.
3 @c Copyright (C) 2008, 2009
4 @c Free Software Foundation, Inc.
5 @c See the file guile.texi for copying conditions.
6
7 @macro goops
8 GOOPS
9 @end macro
10
11 @macro guile
12 Guile
13 @end macro
14
15 @node GOOPS
16 @chapter GOOPS
17
18 @menu
19 * Introduction::
20 * Getting Started::
21 * Reference Manual::
22 * MOP Specification::
23 * Tutorial::
24 @end menu
25
26 @node Introduction
27 @section Introduction
28
29 @goops{} is the object oriented extension to @guile{}. Its
30 implementation is derived from @w{STk-3.99.3} by Erick Gallesio and
31 version 1.3 of Gregor Kiczales @cite{Tiny-Clos}. It is very close in
32 spirit to CLOS, the Common Lisp Object System (@cite{CLtL2}) but is
33 adapted for the Scheme language. While GOOPS is not compatible with any
34 of these systems, GOOPS contains a compatibility module which allows for
35 execution of STKlos programs.
36
37 Briefly stated, the @goops{} extension gives the user a full object
38 oriented system with multiple inheritance and generic functions with
39 multi-method dispatch. Furthermore, the implementation relies on a true
40 meta object protocol, in the spirit of the one defined for CLOS
41 (@cite{Gregor Kiczales: A Metaobject Protocol}).
42
43 @node Getting Started
44 @section Getting Started
45
46 @menu
47 * Running GOOPS::
48
49 Examples of some basic GOOPS functionality.
50
51 * Methods::
52 * User-defined types::
53 * Asking for the type of an object::
54
55 See further in the GOOPS tutorial available in this distribution in
56 info (goops.info) and texinfo format.
57 @end menu
58
59 @node Running GOOPS
60 @subsection Running GOOPS
61
62 @enumerate
63 @item
64 Type
65
66 @smalllisp
67 guile-oops
68 @end smalllisp
69
70 You should now be at the Guile prompt ("guile> ").
71
72 @item
73 Type
74
75 @smalllisp
76 (use-modules (oop goops))
77 @end smalllisp
78
79 to load GOOPS. (If your system supports dynamic loading, you
80 should be able to do this not only from `guile-oops' but from an
81 arbitrary Guile interpreter.)
82 @end enumerate
83
84 We're now ready to try some basic GOOPS functionality.
85
86 @node Methods
87 @subsection Methods
88
89 @smalllisp
90 @group
91 (define-method (+ (x <string>) (y <string>))
92 (string-append x y))
93
94 (+ 1 2) --> 3
95 (+ "abc" "de") --> "abcde"
96 @end group
97 @end smalllisp
98
99 @node User-defined types
100 @subsection User-defined types
101
102 @smalllisp
103 (define-class <2D-vector> ()
104 (x #:init-value 0 #:accessor x-component #:init-keyword #:x)
105 (y #:init-value 0 #:accessor y-component #:init-keyword #:y))
106
107 @group
108 (use-modules (ice-9 format))
109
110 (define-method (write (obj <2D-vector>) port)
111 (display (format #f "<~S, ~S>" (x-component obj) (y-component obj))
112 port))
113
114 (define v (make <2D-vector> #:x 3 #:y 4))
115
116 v --> <3, 4>
117 @end group
118
119 @group
120 (define-method (+ (x <2D-vector>) (y <2D-vector>))
121 (make <2D-vector>
122 #:x (+ (x-component x) (x-component y))
123 #:y (+ (y-component x) (y-component y))))
124
125 (+ v v) --> <6, 8>
126 @end group
127 @end smalllisp
128
129 @node Asking for the type of an object
130 @subsection Types
131
132 @example
133 (class-of v) --> #<<class> <2D-vector> 40241ac0>
134 <2D-vector> --> #<<class> <2D-vector> 40241ac0>
135 (class-of 1) --> #<<class> <integer> 401b2a98>
136 <integer> --> #<<class> <integer> 401b2a98>
137
138 (is-a? v <2D-vector>) --> #t
139 @end example
140
141 @node Reference Manual
142 @section Reference Manual
143
144 This chapter is the GOOPS reference manual. It aims to describe all the
145 syntax, procedures, options and associated concepts that a typical
146 application author would need to understand in order to use GOOPS
147 effectively in their application. It also describes what is meant by
148 the GOOPS ``metaobject protocol'' (aka ``MOP''), and indicates how
149 authors can use the metaobject protocol to customize the behaviour of
150 GOOPS itself.
151
152 For a detailed specification of the GOOPS metaobject protocol, see
153 @ref{MOP Specification}.
154
155 @menu
156 * Introductory Remarks::
157 * Defining New Classes::
158 * Creating Instances::
159 * Accessing Slots::
160 * Creating Generic Functions::
161 * Adding Methods to Generic Functions::
162 * Invoking Generic Functions::
163 * Redefining a Class::
164 * Changing the Class of an Instance::
165 * Introspection::
166 * Miscellaneous Functions::
167 @end menu
168
169 @node Introductory Remarks
170 @subsection Introductory Remarks
171
172 GOOPS is an object-oriented programming system based on a ``metaobject
173 protocol'' derived from the ones used in CLOS (the Common Lisp Object
174 System), tiny-clos (a small Scheme implementation of a subset of CLOS
175 functionality) and STKlos.
176
177 GOOPS can be used by application authors at a basic level without any
178 need to understand what the metaobject protocol (aka ``MOP'') is and how
179 it works. On the other hand, the MOP underlies even the customizations
180 that application authors are likely to make use of very quickly --- such
181 as defining an @code{initialize} method to customize the initialization
182 of instances of an application-defined class --- and an understanding of
183 the MOP makes it much easier to explain such customizations in a precise
184 way. And in the long run, understanding the MOP is the key both to
185 understanding GOOPS at a deeper level and to taking full advantage of
186 GOOPS' power, by customizing the behaviour of GOOPS itself.
187
188 Each of the following sections of the reference manual is arranged
189 such that the most basic usage is introduced first, and then subsequent
190 subsubsections discuss the related internal functions and metaobject
191 protocols, finishing with a description of how to customize that area of
192 functionality.
193
194 These introductory remarks continue with a few words about metaobjects
195 and the MOP. Readers who do not want to be bothered yet with the MOP
196 and customization could safely skip this subsubsection on a first reading,
197 and should correspondingly skip subsequent subsubsections that are
198 concerned with internals and customization.
199
200 In general, this reference manual assumes familiarity with standard
201 object oriented concepts and terminology. However, some of the terms
202 used in GOOPS are less well known, so the Terminology subsubsection
203 provides definitions for these terms.
204
205 @menu
206 * Metaobjects and the Metaobject Protocol::
207 * Terminology::
208 @end menu
209
210 @node Metaobjects and the Metaobject Protocol
211 @subsubsection Metaobjects and the Metaobject Protocol
212
213 The conceptual building blocks of GOOPS are classes, slot definitions,
214 instances, generic functions and methods. A class is a grouping of
215 inheritance relations and slot definitions. An instance is an object
216 with slots that are allocated following the rules implied by its class's
217 superclasses and slot definitions. A generic function is a collection
218 of methods and rules for determining which of those methods to apply
219 when the generic function is invoked. A method is a procedure and a set
220 of specializers that specify the type of arguments to which the
221 procedure is applicable.
222
223 Of these entities, GOOPS represents classes, generic functions and
224 methods as ``metaobjects''. In other words, the values in a GOOPS
225 program that describe classes, generic functions and methods, are
226 themselves instances (or ``objects'') of special GOOPS classes that
227 encapsulate the behaviour, respectively, of classes, generic functions,
228 and methods.
229
230 (The other two entities are slot definitions and instances. Slot
231 definitions are not strictly instances, but every slot definition is
232 associated with a GOOPS class that specifies the behaviour of the slot
233 as regards accessibility and protection from garbage collection.
234 Instances are of course objects in the usual sense, and there is no
235 benefit from thinking of them as metaobjects.)
236
237 The ``metaobject protocol'' (aka ``MOP'') is the specification of the
238 generic functions which determine the behaviour of these metaobjects and
239 the circumstances in which these generic functions are invoked.
240
241 For a concrete example of what this means, consider how GOOPS calculates
242 the set of slots for a class that is being defined using
243 @code{define-class}. The desired set of slots is the union of the new
244 class's direct slots and the slots of all its superclasses. But
245 @code{define-class} itself does not perform this calculation. Instead,
246 there is a method of the @code{initialize} generic function that is
247 specialized for instances of type @code{<class>}, and it is this method
248 that performs the slot calculation.
249
250 @code{initialize} is a generic function which GOOPS calls whenever a new
251 instance is created, immediately after allocating memory for a new
252 instance, in order to initialize the new instance's slots. The sequence
253 of steps is as follows.
254
255 @itemize @bullet
256 @item
257 @code{define-class} uses @code{make} to make a new instance of the
258 @code{<class>}, passing as initialization arguments the superclasses,
259 slot definitions and class options that were specified in the
260 @code{define-class} form.
261
262 @item
263 @code{make} allocates memory for the new instance, and then invokes the
264 @code{initialize} generic function to initialize the new instance's
265 slots.
266
267 @item
268 The @code{initialize} generic function applies the method that is
269 specialized for instances of type @code{<class>}, and this method
270 performs the slot calculation.
271 @end itemize
272
273 In other words, rather than being hardcoded in @code{define-class}, the
274 behaviour of class definition is encapsulated by generic function
275 methods that are specialized for the class @code{<class>}.
276
277 It is possible to create a new class that inherits from @code{<class>},
278 which is called a ``metaclass'', and to write a new @code{initialize}
279 method that is specialized for instances of the new metaclass. Then, if
280 the @code{define-class} form includes a @code{#:metaclass} class option
281 whose value is the new metaclass, the class that is defined by the
282 @code{define-class} form will be an instance of the new metaclass rather
283 than of the default @code{<class>}, and will be defined in accordance
284 with the new @code{initialize} method. Thus the default slot
285 calculation, as well as any other aspect of the new class's relationship
286 with its superclasses, can be modified or overridden.
287
288 In a similar way, the behaviour of generic functions can be modified or
289 overridden by creating a new class that inherits from the standard
290 generic function class @code{<generic>}, writing appropriate methods
291 that are specialized to the new class, and creating new generic
292 functions that are instances of the new class.
293
294 The same is true for method metaobjects. And the same basic mechanism
295 allows the application class author to write an @code{initialize} method
296 that is specialized to their application class, to initialize instances
297 of that class.
298
299 Such is the power of the MOP. Note that @code{initialize} is just one
300 of a large number of generic functions that can be customized to modify
301 the behaviour of application objects and classes and of GOOPS itself.
302 Each subsequent section of the reference manual covers a particular area
303 of GOOPS functionality, and describes the generic functions that are
304 relevant for customization of that area.
305
306 We conclude this subsubsection by emphasizing a point that may seem
307 obvious, but contrasts with the corresponding situation in some other
308 MOP implementations, such as CLOS. The point is simply that an
309 identifier which represents a GOOPS class or generic function is a
310 variable with a first-class value, the value being an instance of class
311 @code{<class>} or @code{<generic>}. (In CLOS, on the other hand, a
312 class identifier is a symbol that indexes the corresponding class
313 metaobject in a separate namespace for classes.) This is, of course,
314 simply an extension of the tendency in Scheme to avoid the unnecessary
315 use of, on the one hand, syntactic forms that require unevaluated
316 arguments and, on the other, separate identifier namespaces (e.g. for
317 class names), but it is worth noting that GOOPS conforms fully to this
318 Schemely principle.
319
320 @node Terminology
321 @subsubsection Terminology
322
323 It is assumed that the reader is already familiar with standard object
324 orientation concepts such as classes, objects/instances,
325 inheritance/subclassing, generic functions and methods, encapsulation
326 and polymorphism.
327
328 This section explains some of the less well known concepts and
329 terminology that GOOPS uses, which are assumed by the following sections
330 of the reference manual.
331
332 @subsubheading Metaclass
333
334 A @dfn{metaclass} is the class of an object which represents a GOOPS
335 class. Put more succinctly, a metaclass is a class's class.
336
337 Most GOOPS classes have the metaclass @code{<class>} and, by default,
338 any new class that is created using @code{define-class} has the
339 metaclass @code{<class>}.
340
341 But what does this really mean? To find out, let's look in more detail
342 at what happens when a new class is created using @code{define-class}:
343
344 @example
345 (define-class <my-class> (<object>) . slots)
346 @end example
347
348 GOOPS actually expands the @code{define-class} form to something like
349 this
350
351 @example
352 (define <my-class> (class (<object>) . slots))
353 @end example
354
355 and thence to
356
357 @example
358 (define <my-class>
359 (make <class> #:supers (list <object>) #:slots slots))
360 @end example
361
362 In other words, the value of @code{<my-class>} is in fact an instance of
363 the class @code{<class>} with slot values specifying the superclasses
364 and slot definitions for the class @code{<my-class>}. (@code{#:supers}
365 and @code{#:slots} are initialization keywords for the @code{dsupers}
366 and @code{dslots} slots of the @code{<class>} class.)
367
368 In order to take advantage of the full power of the GOOPS metaobject
369 protocol (@pxref{MOP Specification}), it is sometimes desirable to
370 create a new class with a metaclass other than the default
371 @code{<class>}. This is done by writing:
372
373 @example
374 (define-class <my-class2> (<object>)
375 slot @dots{}
376 #:metaclass <my-metaclass>)
377 @end example
378
379 GOOPS expands this to something like:
380
381 @example
382 (define <my-class2>
383 (make <my-metaclass> #:supers (list <object>) #:slots slots))
384 @end example
385
386 In this case, the value of @code{<my-class2>} is an instance of the more
387 specialized class @code{<my-metaclass>}. Note that
388 @code{<my-metaclass>} itself must previously have been defined as a
389 subclass of @code{<class>}. For a full discussion of when and how it is
390 useful to define new metaclasses, see @ref{MOP Specification}.
391
392 Now let's make an instance of @code{<my-class2>}:
393
394 @example
395 (define my-object (make <my-class2> ...))
396 @end example
397
398 All of the following statements are correct expressions of the
399 relationships between @code{my-object}, @code{<my-class2>},
400 @code{<my-metaclass>} and @code{<class>}.
401
402 @itemize @bullet
403 @item
404 @code{my-object} is an instance of the class @code{<my-class2>}.
405
406 @item
407 @code{<my-class2>} is an instance of the class @code{<my-metaclass>}.
408
409 @item
410 @code{<my-metaclass>} is an instance of the class @code{<class>}.
411
412 @item
413 The class of @code{my-object} is @code{<my-class2>}.
414
415 @item
416 The metaclass of @code{my-object} is @code{<my-metaclass>}.
417
418 @item
419 The class of @code{<my-class2>} is @code{<my-metaclass>}.
420
421 @item
422 The metaclass of @code{<my-class2>} is @code{<class>}.
423
424 @item
425 The class of @code{<my-metaclass>} is @code{<class>}.
426
427 @item
428 The metaclass of @code{<my-metaclass>} is @code{<class>}.
429
430 @item
431 @code{<my-class2>} is not a metaclass, since it is does not inherit from
432 @code{<class>}.
433
434 @item
435 @code{<my-metaclass>} is a metaclass, since it inherits from
436 @code{<class>}.
437 @end itemize
438
439 @subsubheading Class Precedence List
440
441 The @dfn{class precedence list} of a class is the list of all direct and
442 indirect superclasses of that class, including the class itself.
443
444 In the absence of multiple inheritance, the class precedence list is
445 ordered straightforwardly, beginning with the class itself and ending
446 with @code{<top>}.
447
448 For example, given this inheritance hierarchy:
449
450 @example
451 (define-class <invertebrate> (<object>) @dots{})
452 (define-class <echinoderm> (<invertebrate>) @dots{})
453 (define-class <starfish> (<echinoderm>) @dots{})
454 @end example
455
456 the class precedence list of <starfish> would be
457
458 @example
459 (<starfish> <echinoderm> <invertebrate> <object> <top>)
460 @end example
461
462 With multiple inheritance, the algorithm is a little more complicated.
463 A full description is provided by the GOOPS Tutorial: see @ref{Class
464 precedence list}.
465
466 ``Class precedence list'' is often abbreviated, in documentation and
467 Scheme variable names, to @dfn{cpl}.
468
469 @subsubheading Accessor
470
471 An @dfn{accessor} is a generic function with both reference and setter
472 methods.
473
474 @example
475 (define-accessor perimeter)
476 @end example
477
478 Reference methods for an accessor are defined in the same way as generic
479 function methods.
480
481 @example
482 (define-method (perimeter (s <square>))
483 (* 4 (side-length s)))
484 @end example
485
486 Setter methods for an accessor are defined by specifying ``(setter
487 <accessor-name>)'' as the first parameter of the @code{define-method}
488 call.
489
490 @example
491 (define-method ((setter perimeter) (s <square>) (n <number>))
492 (set! (side-length s) (/ n 4)))
493 @end example
494
495 Once an appropriate setter method has been defined in this way, it can
496 be invoked using the generalized @code{set!} syntax, as in:
497
498 @example
499 (set! (perimeter s1) 18.3)
500 @end example
501
502 @node Defining New Classes
503 @subsection Defining New Classes
504
505 [ *fixme* Somewhere in this manual there needs to be an introductory
506 discussion about GOOPS classes, generic functions and methods, covering
507
508 @itemize @bullet
509 @item
510 how classes encapsulate related items of data in @dfn{slots}
511
512 @item
513 why it is that, unlike in C++ and Java, a class does not encapsulate the
514 methods that act upon the class (at least not in the C++/Java sense)
515
516 @item
517 how generic functions provide a more general solution that provides for
518 dispatch on all argument types, and avoids idiosyncracies like C++'s
519 friend classes
520
521 @item
522 how encapsulation in the sense of data- and code-hiding, or of
523 distinguishing interface from implementation, is treated in Guile as an
524 orthogonal concept to object orientation, and is the responsibility of
525 the module system.
526 @end itemize
527
528 Some of this is covered in the Tutorial chapter, in @ref{Generic
529 functions and methods} - perhaps the best solution would be to expand
530 the discussion there. ]
531
532 @menu
533 * Basic Class Definition::
534 * Class Options::
535 * Slot Options::
536 * Class Definition Internals::
537 * Customizing Class Definition::
538 * STKlos Compatibility::
539 @end menu
540
541 @node Basic Class Definition
542 @subsubsection Basic Class Definition
543
544 New classes are defined using the @code{define-class} syntax, with
545 arguments that specify the classes that the new class should inherit
546 from, the direct slots of the new class, and any required class options.
547
548 @deffn syntax define-class name (super @dots{}) slot-definition @dots{} . options
549 Define a class called @var{name} that inherits from @var{super}s, with
550 direct slots defined by @var{slot-definition}s and class options
551 @var{options}. The newly created class is bound to the variable name
552 @var{name} in the current environment.
553
554 Each @var{slot-definition} is either a symbol that names the slot or a
555 list,
556
557 @example
558 (@var{slot-name-symbol} . @var{slot-options})
559 @end example
560
561 where @var{slot-name-symbol} is a symbol and @var{slot-options} is a
562 list with an even number of elements. The even-numbered elements of
563 @var{slot-options} (counting from zero) are slot option keywords; the
564 odd-numbered elements are the corresponding values for those keywords.
565
566 @var{options} is a similarly structured list containing class option
567 keywords and corresponding values.
568 @end deffn
569
570 The standard GOOPS class and slot options are described in the following
571 subsubsections: see @ref{Class Options} and @ref{Slot Options}.
572
573 Example 1. Define a class that combines two pre-existing classes by
574 inheritance but adds no new slots.
575
576 @example
577 (define-class <combined> (<tree> <bicycle>))
578 @end example
579
580 Example 2. Define a @code{regular-polygon} class with slots for side
581 length and number of sides that have default values and can be accessed
582 via the generic functions @code{side-length} and @code{num-sides}.
583
584 @example
585 (define-class <regular-polygon> ()
586 (sl #:init-value 1 #:accessor side-length)
587 (ns #:init-value 5 #:accessor num-sides))
588 @end example
589
590 Example 3. Define a class whose behavior (and that of its instances) is
591 customized via an application-defined metaclass.
592
593 @example
594 (define-class <tcpip-fsm> ()
595 (s #:init-value #f #:accessor state)
596 ...
597 #:metaclass <finite-state-class>)
598 @end example
599
600 @node Class Options
601 @subsubsection Class Options
602
603 @deffn {class option} #:metaclass metaclass
604 The @code{#:metaclass} class option specifies the metaclass of the class
605 being defined. @var{metaclass} must be a class that inherits from
606 @code{<class>}. For an introduction to the use of metaclasses, see
607 @ref{Metaobjects and the Metaobject Protocol} and @ref{Terminology}.
608
609 If the @code{#:metaclass} option is absent, GOOPS reuses or constructs a
610 metaclass for the new class by calling @code{ensure-metaclass}
611 (@pxref{Class Definition Internals,, ensure-metaclass}).
612 @end deffn
613
614 @deffn {class option} #:name name
615 The @code{#:name} class option specifies the new class's name. This
616 name is used to identify the class whenever related objects - the class
617 itself, its instances and its subclasses - are printed.
618
619 If the @code{#:name} option is absent, GOOPS uses the first argument to
620 @code{define-class} as the class name.
621 @end deffn
622
623 @deffn {class option} #:environment environment
624 *fixme* Not sure about this one, but I think that the
625 @code{#:environment} option specifies the environment in which the
626 class's getters and setters are computed and evaluated.
627
628 If the @code{#:environment} option is not specified, the class's
629 environment defaults to the top-level environment in which the
630 @code{define-class} form appears.
631 @end deffn
632
633 @node Slot Options
634 @subsubsection Slot Options
635
636 @deffn {slot option} #:allocation allocation
637 The @code{#:allocation} option tells GOOPS how to allocate storage for
638 the slot. Possible values for @var{allocation} are
639
640 @itemize @bullet
641 @item @code{#:instance}
642
643 Indicates that GOOPS should create separate storage for this slot in
644 each new instance of the containing class (and its subclasses).
645
646 @item @code{#:class}
647
648 Indicates that GOOPS should create storage for this slot that is shared
649 by all instances of the containing class (and its subclasses). In other
650 words, a slot in class @var{C} with allocation @code{#:class} is shared
651 by all @var{instance}s for which @code{(is-a? @var{instance} @var{c})}.
652
653 @item @code{#:each-subclass}
654
655 Indicates that GOOPS should create storage for this slot that is shared
656 by all @emph{direct} instances of the containing class, and that
657 whenever a subclass of the containing class is defined, GOOPS should
658 create a new storage for the slot that is shared by all @emph{direct}
659 instances of the subclass. In other words, a slot with allocation
660 @code{#:each-subclass} is shared by all instances with the same
661 @code{class-of}.
662
663 @item @code{#:virtual}
664
665 Indicates that GOOPS should not allocate storage for this slot. The
666 slot definition must also include the @code{#:slot-ref} and
667 @code{#:slot-set!} options to specify how to reference and set the value
668 for this slot.
669 @end itemize
670
671 The default value is @code{#:instance}.
672
673 Slot allocation options are processed when defining a new class by the
674 generic function @code{compute-get-n-set}, which is specialized by the
675 class's metaclass. Hence new types of slot allocation can be
676 implemented by defining a new metaclass and a method for
677 @code{compute-get-n-set} that is specialized for the new metaclass. For
678 an example of how to do this, see @ref{Customizing Class Definition}.
679 @end deffn
680
681 @deffn {slot option} #:slot-ref getter
682 @deffnx {slot option} #:slot-set! setter
683 The @code{#:slot-ref} and @code{#:slot-set!} options must be specified
684 if the slot allocation is @code{#:virtual}, and are ignored otherwise.
685
686 @var{getter} should be a closure taking a single @var{instance} parameter
687 that returns the current slot value. @var{setter} should be a closure
688 taking two parameters - @var{instance} and @var{new-val} - that sets the
689 slot value to @var{new-val}.
690 @end deffn
691
692 @deffn {slot option} #:getter getter
693 @deffnx {slot option} #:setter setter
694 @deffnx {slot option} #:accessor accessor
695 These options, if present, tell GOOPS to create generic function and
696 method definitions that can be used to get and set the slot value more
697 conveniently than by using @code{slot-ref} and @code{slot-set!}.
698
699 @var{getter} specifies a generic function to which GOOPS will add a
700 method for getting the slot value. @var{setter} specifies a generic
701 function to which GOOPS will add a method for setting the slot value.
702 @var{accessor} specifies an accessor to which GOOPS will add methods for
703 both getting and setting the slot value.
704
705 So if a class includes a slot definition like this:
706
707 @example
708 (c #:getter get-count #:setter set-count #:accessor count)
709 @end example
710
711 GOOPS defines generic function methods such that the slot value can be
712 referenced using either the getter or the accessor -
713
714 @example
715 (let ((current-count (get-count obj))) @dots{})
716 (let ((current-count (count obj))) @dots{})
717 @end example
718
719 - and set using either the setter or the accessor -
720
721 @example
722 (set-count obj (+ 1 current-count))
723 (set! (count obj) (+ 1 current-count))
724 @end example
725
726 Note that
727
728 @itemize @bullet
729 @item
730 with an accessor, the slot value is set using the generalized
731 @code{set!} syntax
732
733 @item
734 in practice, it is unusual for a slot to use all three of these options:
735 read-only, write-only and read-write slots would typically use only
736 @code{#:getter}, @code{#:setter} and @code{#:accessor} options
737 respectively.
738 @end itemize
739
740 If the specified names are already bound in the top-level environment to
741 values that cannot be upgraded to generic functions, those values are
742 overwritten during evaluation of the @code{define-class} that contains
743 the slot definition. For details, see @ref{Generic Function Internals,,
744 ensure-generic}.
745 @end deffn
746
747 @deffn {slot option} #:init-value init-value
748 @deffnx {slot option} #:init-form init-form
749 @deffnx {slot option} #:init-thunk init-thunk
750 @deffnx {slot option} #:init-keyword init-keyword
751 These options provide various ways to specify how to initialize the
752 slot's value at instance creation time. @var{init-value} is a fixed
753 value (shared across all new instances of the class).
754 @var{init-thunk} is a procedure of no arguments that is called
755 when a new instance is created and should return the desired initial
756 slot value. @var{init-form} is an unevaluated expression that gets
757 evaluated when a new instance is created and should return the desired
758 initial slot value. @var{init-keyword} is a keyword that can be used
759 to pass an initial slot value to @code{make} when creating a new
760 instance.
761
762 Note that, since an @code{init-value} value is shared across all
763 instances of a class, you should only use it when the initial value is
764 an immutable value, like a constant. If you want to initialize a slot
765 with a fresh, independently mutable value, you should use
766 @code{init-thunk} or @code{init-form} instead. Consider the following
767 example.
768
769 @example
770 (define-class <chbouib> ()
771 (hashtab #:init-value (make-hash-table)))
772 @end example
773
774 @noindent
775 Here only one hash table is created and all instances of
776 @code{<chbouib>} have their @code{hashtab} slot refer to it. In order
777 to have each instance of @code{<chbouib>} refer to a new hash table, you
778 should instead write:
779
780 @example
781 (define-class <chbouib> ()
782 (hashtab #:init-thunk make-hash-table))
783 @end example
784
785 @noindent
786 or:
787
788 @example
789 (define-class <chbouib> ()
790 (hashtab #:init-form (make-hash-table)))
791 @end example
792
793 If more than one of these options is specified for the same slot, the
794 order of precedence, highest first is
795
796 @itemize @bullet
797 @item
798 @code{#:init-keyword}, if @var{init-keyword} is present in the options
799 passed to @code{make}
800
801 @item
802 @code{#:init-thunk}, @code{#:init-form} or @code{#:init-value}.
803 @end itemize
804
805 If the slot definition contains more than one initialization option of
806 the same precedence, the later ones are ignored. If a slot is not
807 initialized at all, its value is unbound.
808
809 In general, slots that are shared between more than one instance are
810 only initialized at new instance creation time if the slot value is
811 unbound at that time. However, if the new instance creation specifies
812 a valid init keyword and value for a shared slot, the slot is
813 re-initialized regardless of its previous value.
814
815 Note, however, that the power of GOOPS' metaobject protocol means that
816 everything written here may be customized or overridden for particular
817 classes! The slot initializations described here are performed by the least
818 specialized method of the generic function @code{initialize}, whose
819 signature is
820
821 @example
822 (define-method (initialize (object <object>) initargs) ...)
823 @end example
824
825 The initialization of instances of any given class can be customized by
826 defining a @code{initialize} method that is specialized for that class,
827 and the author of the specialized method may decide to call
828 @code{next-method} - which will result in a call to the next less
829 specialized @code{initialize} method - at any point within the
830 specialized code, or maybe not at all. In general, therefore, the
831 initialization mechanisms described here may be modified or overridden by
832 more specialized code, or may not be supported at all for particular
833 classes.
834 @end deffn
835
836 @node Class Definition Internals
837 @subsubsection Class Definition Internals
838
839 Implementation notes: @code{define-class} expands to an expression which
840
841 @itemize @bullet
842 @item
843 checks that it is being evaluated only at top level
844
845 @item
846 defines any accessors that are implied by the @var{slot-definition}s
847
848 @item
849 uses @code{class} to create the new class (@pxref{Class Definition
850 Internals,, class})
851
852 @item
853 checks for a previous class definition for @var{name} and, if found,
854 handles the redefinition by invoking @code{class-redefinition}
855 (@pxref{Redefining a Class}).
856 @end itemize
857
858 @deffn syntax class name (super @dots{}) slot-definition @dots{} . options
859 Return a newly created class that inherits from @var{super}s, with
860 direct slots defined by @var{slot-definition}s and class options
861 @var{options}. For the format of @var{slot-definition}s and
862 @var{options}, see @ref{Basic Class Definition,, define-class}.
863 @end deffn
864
865 Implementation notes: @code{class} expands to an expression which
866
867 @itemize @bullet
868 @item
869 processes the class and slot definition options to check that they are
870 well-formed, to convert the @code{#:init-form} option to an
871 @code{#:init-thunk} option, to supply a default environment parameter
872 (the current top-level environment) and to evaluate all the bits that
873 need to be evaluated
874
875 @item
876 calls @code{make-class} to create the class with the processed and
877 evaluated parameters.
878 @end itemize
879
880 @deffn procedure make-class supers slots . options
881 Return a newly created class that inherits from @var{supers}, with
882 direct slots defined by @var{slots} and class options @var{options}.
883 For the format of @var{slots} and @var{options}, see @ref{Basic Class
884 Definition,, define-class}, except note that for @code{make-class},
885 @var{slots} and @var{options} are separate list parameters: @var{slots}
886 here is a list of slot definitions.
887 @end deffn
888
889 Implementation notes: @code{make-class}
890
891 @itemize @bullet
892 @item
893 adds @code{<object>} to the @var{supers} list if @var{supers} is empty
894 or if none of the classes in @var{supers} have @code{<object>} in their
895 class precedence list
896
897 @item
898 defaults the @code{#:environment}, @code{#:name} and @code{#:metaclass}
899 options, if they are not specified by @var{options}, to the current
900 top-level environment, the unbound value, and @code{(ensure-metaclass
901 @var{supers})} respectively (@pxref{Class Definition Internals,,
902 ensure-metaclass})
903
904 @item
905 checks for duplicate classes in @var{supers} and duplicate slot names in
906 @var{slots}, and signals an error if there are any duplicates
907
908 @item
909 calls @code{make}, passing the metaclass as the first parameter and all
910 other parameters as option keywords with values.
911 @end itemize
912
913 @deffn procedure ensure-metaclass supers env
914 Return a metaclass suitable for a class that inherits from the list of
915 classes in @var{supers}. The returned metaclass is the union by
916 inheritance of the metaclasses of the classes in @var{supers}.
917
918 In the simplest case, where all the @var{supers} are straightforward
919 classes with metaclass @code{<class>}, the returned metaclass is just
920 @code{<class>}.
921
922 For a more complex example, suppose that @var{supers} contained one
923 class with metaclass @code{<operator-class>} and one with metaclass
924 @code{<foreign-object-class>}. Then the returned metaclass would be a
925 class that inherits from both @code{<operator-class>} and
926 @code{<foreign-object-class>}.
927
928 If @var{supers} is the empty list, @code{ensure-metaclass} returns the
929 default GOOPS metaclass @code{<class>}.
930
931 GOOPS keeps a list of the metaclasses created by
932 @code{ensure-metaclass}, so that each required type of metaclass only
933 has to be created once.
934
935 The @code{env} parameter is ignored.
936 @end deffn
937
938 @deffn procedure ensure-metaclass-with-supers meta-supers
939 @code{ensure-metaclass-with-supers} is an internal procedure used by
940 @code{ensure-metaclass} (@pxref{Class Definition Internals,,
941 ensure-metaclass}). It returns a metaclass that is the union by
942 inheritance of the metaclasses in @var{meta-supers}.
943 @end deffn
944
945 The internals of @code{make}, which is ultimately used to create the new
946 class object, are described in @ref{Customizing Instance Creation},
947 which covers the creation and initialization of instances in general.
948
949 @node Customizing Class Definition
950 @subsubsection Customizing Class Definition
951
952 During the initialization of a new class, GOOPS calls a number of generic
953 functions with the newly allocated class instance as the first
954 argument. Specifically, GOOPS calls the generic function
955
956 @itemize @bullet
957 @item
958 (initialize @var{class} @dots{})
959 @end itemize
960
961 where @var{class} is the newly allocated class instance, and the default
962 @code{initialize} method for arguments of type @code{<class>} calls the
963 generic functions
964
965 @itemize @bullet
966 @item
967 (compute-cpl @var{class})
968
969 @item
970 (compute-slots @var{class})
971
972 @item
973 (compute-get-n-set @var{class} @var{slot-def}), for each of the slot
974 definitions returned by @code{compute-slots}
975
976 @item
977 (compute-getter-method @var{class} @var{slot-def}), for each of the
978 slot definitions returned by @code{compute-slots} that includes a
979 @code{#:getter} or @code{#:accessor} slot option
980
981 @item
982 (compute-setter-method @var{class} @var{slot-def}), for each of the
983 slot definitions returned by @code{compute-slots} that includes a
984 @code{#:setter} or @code{#:accessor} slot option.
985 @end itemize
986
987 If the metaclass of the new class is something more specialized than the
988 default @code{<class>}, then the type of @var{class} in the calls above
989 is more specialized than @code{<class>}, and hence it becomes possible
990 to define generic function methods, specialized for the new class's
991 metaclass, that can modify or override the default behaviour of
992 @code{initialize}, @code{compute-cpl} or @code{compute-get-n-set}.
993
994 @code{compute-cpl} computes the class precedence list (``CPL'') for the
995 new class (@pxref{Class precedence list}), and returns it as a list of
996 class objects. The CPL is important because it defines a superclass
997 ordering that is used, when a generic function is invoked upon an
998 instance of the class, to decide which of the available generic function
999 methods is the most specific. Hence @code{compute-cpl} could be
1000 customized in order to modify the CPL ordering algorithm for all classes
1001 with a special metaclass.
1002
1003 The default CPL algorithm is encapsulated by the @code{compute-std-cpl}
1004 procedure, which is in turn called by the default @code{compute-cpl}
1005 method.
1006
1007 @deffn procedure compute-std-cpl class
1008 Compute and return the class precedence list for @var{class} according
1009 to the algorithm described in @ref{Class precedence list}.
1010 @end deffn
1011
1012 @code{compute-slots} computes and returns a list of all slot definitions
1013 for the new class. By default, this list includes the direct slot
1014 definitions from the @code{define-class} form, plus the slot definitions
1015 that are inherited from the new class's superclasses. The default
1016 @code{compute-slots} method uses the CPL computed by @code{compute-cpl}
1017 to calculate this union of slot definitions, with the rule that slots
1018 inherited from superclasses are shadowed by direct slots with the same
1019 name. One possible reason for customizing @code{compute-slots} would be
1020 to implement an alternative resolution strategy for slot name conflicts.
1021
1022 @code{compute-get-n-set} computes the low-level closures that will be
1023 used to get and set the value of a particular slot, and returns them in
1024 a list with two elements.
1025
1026 The closures returned depend on how storage for that slot is allocated.
1027 The standard @code{compute-get-n-set} method, specialized for classes of
1028 type @code{<class>}, handles the standard GOOPS values for the
1029 @code{#:allocation} slot option (@pxref{Slot Options,, allocation}). By
1030 defining a new @code{compute-get-n-set} method for a more specialized
1031 metaclass, it is possible to support new types of slot allocation.
1032
1033 Suppose you wanted to create a large number of instances of some class
1034 with a slot that should be shared between some but not all instances of
1035 that class - say every 10 instances should share the same slot storage.
1036 The following example shows how to implement and use a new type of slot
1037 allocation to do this.
1038
1039 @example
1040 (define-class <batched-allocation-metaclass> (<class>))
1041
1042 (let ((batch-allocation-count 0)
1043 (batch-get-n-set #f))
1044 (define-method (compute-get-n-set
1045 (class <batched-allocation-metaclass>) s)
1046 (case (slot-definition-allocation s)
1047 ((#:batched)
1048 ;; If we've already used the same slot storage for 10 instances,
1049 ;; reset variables.
1050 (if (= batch-allocation-count 10)
1051 (begin
1052 (set! batch-allocation-count 0)
1053 (set! batch-get-n-set #f)))
1054 ;; If we don't have a current pair of get and set closures,
1055 ;; create one. make-closure-variable returns a pair of closures
1056 ;; around a single Scheme variable - see goops.scm for details.
1057 (or batch-get-n-set
1058 (set! batch-get-n-set (make-closure-variable)))
1059 ;; Increment the batch allocation count.
1060 (set! batch-allocation-count (+ batch-allocation-count 1))
1061 batch-get-n-set)
1062
1063 ;; Call next-method to handle standard allocation types.
1064 (else (next-method)))))
1065
1066 (define-class <class-using-batched-slot> ()
1067 ...
1068 (c #:allocation #:batched)
1069 ...
1070 #:metaclass <batched-allocation-metaclass>)
1071 @end example
1072
1073 The usage of @code{compute-getter-method} and @code{compute-setter-method}
1074 is described in @ref{MOP Specification}.
1075
1076 @code{compute-cpl} and @code{compute-get-n-set} are called by the
1077 standard @code{initialize} method for classes whose metaclass is
1078 @code{<class>}. But @code{initialize} itself can also be modified, by
1079 defining an @code{initialize} method specialized to the new class's
1080 metaclass. Such a method could complete override the standard
1081 behaviour, by not calling @code{(next-method)} at all, but more
1082 typically it would perform additional class initialization steps before
1083 and/or after calling @code{(next-method)} for the standard behaviour.
1084
1085 @node STKlos Compatibility
1086 @subsubsection STKlos Compatibility
1087
1088 If the STKlos compatibility module is loaded, @code{define-class} is
1089 overwritten by a STKlos-specific definition; the standard GOOPS
1090 definition of @code{define-class} remains available in
1091 @code{standard-define-class}.
1092
1093 @deffn syntax standard-define-class name (super @dots{}) slot-definition @dots{} . options
1094 @code{standard-define-class} is equivalent to the standard GOOPS
1095 @code{define-class}.
1096 @end deffn
1097
1098 @node Creating Instances
1099 @subsection Creating Instances
1100
1101 @menu
1102 * Basic Instance Creation::
1103 * Customizing Instance Creation::
1104 @end menu
1105
1106 @node Basic Instance Creation
1107 @subsubsection Basic Instance Creation
1108
1109 To create a new instance of any GOOPS class, use the generic function
1110 @code{make} or @code{make-instance}, passing the required class and any
1111 appropriate instance initialization arguments as keyword and value
1112 pairs. Note that @code{make} and @code{make-instances} are aliases for
1113 each other - their behaviour is identical.
1114
1115 @deffn generic make
1116 @deffnx method make (class <class>) . initargs
1117 Create and return a new instance of class @var{class}, initialized using
1118 @var{initargs}.
1119
1120 In theory, @var{initargs} can have any structure that is understood by
1121 whatever methods get applied when the @code{initialize} generic function
1122 is applied to the newly allocated instance.
1123
1124 In practice, specialized @code{initialize} methods would normally call
1125 @code{(next-method)}, and so eventually the standard GOOPS
1126 @code{initialize} methods are applied. These methods expect
1127 @var{initargs} to be a list with an even number of elements, where
1128 even-numbered elements (counting from zero) are keywords and
1129 odd-numbered elements are the corresponding values.
1130
1131 GOOPS processes initialization argument keywords automatically for slots
1132 whose definition includes the @code{#:init-keyword} option (@pxref{Slot
1133 Options,, init-keyword}). Other keyword value pairs can only be
1134 processed by an @code{initialize} method that is specialized for the new
1135 instance's class. Any unprocessed keyword value pairs are ignored.
1136 @end deffn
1137
1138 @deffn generic make-instance
1139 @deffnx method make-instance (class <class>) . initargs
1140 @code{make-instance} is an alias for @code{make}.
1141 @end deffn
1142
1143 @node Customizing Instance Creation
1144 @subsubsection Customizing Instance Creation
1145
1146 @code{make} itself is a generic function. Hence the @code{make}
1147 invocation itself can be customized in the case where the new instance's
1148 metaclass is more specialized than the default @code{<class>}, by
1149 defining a @code{make} method that is specialized to that metaclass.
1150
1151 Normally, however, the method for classes with metaclass @code{<class>}
1152 will be applied. This method calls two generic functions:
1153
1154 @itemize @bullet
1155 @item
1156 (allocate-instance @var{class} . @var{initargs})
1157
1158 @item
1159 (initialize @var{instance} . @var{initargs})
1160 @end itemize
1161
1162 @code{allocate-instance} allocates storage for and returns the new
1163 instance, uninitialized. You might customize @code{allocate-instance},
1164 for example, if you wanted to provide a GOOPS wrapper around some other
1165 object programming system.
1166
1167 To do this, you would create a specialized metaclass, which would act as
1168 the metaclass for all classes and instances from the other system. Then
1169 define an @code{allocate-instance} method, specialized to that
1170 metaclass, which calls a Guile primitive C function, which in turn
1171 allocates the new instance using the interface of the other object
1172 system.
1173
1174 In this case, for a complete system, you would also need to customize a
1175 number of other generic functions like @code{make} and
1176 @code{initialize}, so that GOOPS knows how to make classes from the
1177 other system, access instance slots, and so on.
1178
1179 @code{initialize} initializes the instance that is returned by
1180 @code{allocate-instance}. The standard GOOPS methods perform
1181 initializations appropriate to the instance class.
1182
1183 @itemize @bullet
1184 @item
1185 At the least specialized level, the method for instances of type
1186 @code{<object>} performs internal GOOPS instance initialization, and
1187 initializes the instance's slots according to the slot definitions and
1188 any slot initialization keywords that appear in @var{initargs}.
1189
1190 @item
1191 The method for instances of type @code{<class>} calls
1192 @code{(next-method)}, then performs the class initializations described
1193 in @ref{Customizing Class Definition}.
1194
1195 @item
1196 and so on for generic functions, method, operator classes @dots{}
1197 @end itemize
1198
1199 Similarly, you can customize the initialization of instances of any
1200 application-defined class by defining an @code{initialize} method
1201 specialized to that class.
1202
1203 Imagine a class whose instances' slots need to be initialized at
1204 instance creation time by querying a database. Although it might be
1205 possible to achieve this a combination of @code{#:init-thunk} keywords
1206 and closures in the slot definitions, it is neater to write an
1207 @code{initialize} method for the class that queries the database once
1208 and initializes all the dependent slot values according to the results.
1209
1210 @node Accessing Slots
1211 @subsection Accessing Slots
1212
1213 The definition of a slot contains at the very least a slot name, and may
1214 also contain various slot options, including getter, setter and/or
1215 accessor functions for the slot.
1216
1217 It is always possible to access slots by name, using the various
1218 ``slot-ref'' and ``slot-set!'' procedures described in the following
1219 subsubsections. For example,
1220
1221 @example
1222 (define-class <my-class> () ;; Define a class with slots
1223 (count #:init-value 0) ;; named "count" and "cache".
1224 (cache #:init-value '())
1225 @dots{})
1226
1227 (define inst (make <my-class>)) ;; Make an instance of this class.
1228
1229 (slot-set! inst 'count 5) ;; Set the value of the "count"
1230 ;; slot to 5.
1231
1232 (slot-set! inst 'cache ;; Modify the value of the
1233 (cons (cons "^it" "It") ;; "cache" slot.
1234 (slot-ref inst 'cache)))
1235 @end example
1236
1237 If a slot definition includes a getter, setter or accessor function,
1238 these can be used instead of @code{slot-ref} and @code{slot-set!} to
1239 access the slot.
1240
1241 @example
1242 (define-class <adv-class> () ;; Define a new class whose slots
1243 (count #:setter set-count) ;; use a getter, a setter and
1244 (cache #:accessor cache) ;; an accessor.
1245 (csize #:getter cache-size)
1246 @dots{})
1247
1248 (define inst (make <adv-class>)) ;; Make an instance of this class.
1249
1250 (set-count inst 5) ;; Set the value of the "count"
1251 ;; slot to 5.
1252
1253 (set! (cache inst) ;; Modify the value of the
1254 (cons (cons "^it" "It") ;; "cache" slot.
1255 (cache inst)))
1256
1257 (let ((size (cache-size inst))) ;; Get the value of the "csize"
1258 @dots{}) ;; slot.
1259 @end example
1260
1261 Whichever of these methods is used to access slots, GOOPS always calls
1262 the low-level @dfn{getter} and @dfn{setter} closures for the slot to get
1263 and set its value. These closures make sure that the slot behaves
1264 according to the @code{#:allocation} type that was specified in the slot
1265 definition (@pxref{Slot Options,, allocation}). (For more about these
1266 closures, see @ref{Customizing Class Definition,, compute-get-n-set}.)
1267
1268 @menu
1269 * Instance Slots::
1270 * Class Slots::
1271 * Handling Slot Access Errors::
1272 @end menu
1273
1274 @node Instance Slots
1275 @subsubsection Instance Slots
1276
1277 Any slot, regardless of its allocation, can be queried, referenced and
1278 set using the following four primitive procedures.
1279
1280 @deffn {primitive procedure} slot-exists? obj slot-name
1281 Return @code{#t} if @var{obj} has a slot with name @var{slot-name},
1282 otherwise @code{#f}.
1283 @end deffn
1284
1285 @deffn {primitive procedure} slot-bound? obj slot-name
1286 Return @code{#t} if the slot named @var{slot-name} in @var{obj} has a
1287 value, otherwise @code{#f}.
1288
1289 @code{slot-bound?} calls the generic function @code{slot-missing} if
1290 @var{obj} does not have a slot called @var{slot-name} (@pxref{Handling
1291 Slot Access Errors, slot-missing}).
1292 @end deffn
1293
1294 @deffn {primitive procedure} slot-ref obj slot-name
1295 Return the value of the slot named @var{slot-name} in @var{obj}.
1296
1297 @code{slot-ref} calls the generic function @code{slot-missing} if
1298 @var{obj} does not have a slot called @var{slot-name} (@pxref{Handling
1299 Slot Access Errors, slot-missing}).
1300
1301 @code{slot-ref} calls the generic function @code{slot-unbound} if the
1302 named slot in @var{obj} does not have a value (@pxref{Handling Slot
1303 Access Errors, slot-unbound}).
1304 @end deffn
1305
1306 @deffn {primitive procedure} slot-set! obj slot-name value
1307 Set the value of the slot named @var{slot-name} in @var{obj} to @var{value}.
1308
1309 @code{slot-set!} calls the generic function @code{slot-missing} if
1310 @var{obj} does not have a slot called @var{slot-name} (@pxref{Handling
1311 Slot Access Errors, slot-missing}).
1312 @end deffn
1313
1314 GOOPS stores information about slots in class metaobjects. Internally,
1315 all of these procedures work by looking up the slot definition for the
1316 slot named @var{slot-name} in the class metaobject for @code{(class-of
1317 @var{obj})}, and then using the slot definition's ``getter'' and
1318 ``setter'' closures to get and set the slot value.
1319
1320 The next four procedures differ from the previous ones in that they take
1321 the class metaobject as an explicit argument, rather than assuming
1322 @code{(class-of @var{obj})}. Therefore they allow you to apply the
1323 ``getter'' and ``setter'' closures of a slot definition in one class to
1324 an instance of a different class.
1325
1326 [ *fixme* I have no idea why this is useful! Perhaps when a slot in
1327 @code{(class-of @var{obj})} shadows a slot with the same name in one of
1328 its superclasses? There should be an enlightening example here. ]
1329
1330 @deffn {primitive procedure} slot-exists-using-class? class obj slot-name
1331 Return @code{#t} if the class metaobject @var{class} has a slot
1332 definition for a slot with name @var{slot-name}, otherwise @code{#f}.
1333 @end deffn
1334
1335 @deffn {primitive procedure} slot-bound-using-class? class obj slot-name
1336 Return @code{#t} if applying @code{slot-ref-using-class} to the same
1337 arguments would call the generic function @code{slot-unbound}, otherwise
1338 @code{#f}.
1339
1340 @code{slot-bound-using-class?} calls the generic function
1341 @code{slot-missing} if @var{class} does not have a slot definition for a
1342 slot called @var{slot-name} (@pxref{Handling Slot Access Errors,
1343 slot-missing}).
1344 @end deffn
1345
1346 @deffn {primitive procedure} slot-ref-using-class class obj slot-name
1347 Apply the ``getter'' closure for the slot named @var{slot-name} in
1348 @var{class} to @var{obj}, and return its result.
1349
1350 @code{slot-ref-using-class} calls the generic function
1351 @code{slot-missing} if @var{class} does not have a slot definition for a
1352 slot called @var{slot-name} (@pxref{Handling Slot Access Errors,
1353 slot-missing}).
1354
1355 @code{slot-ref-using-class} calls the generic function
1356 @code{slot-unbound} if the application of the ``getter'' closure to
1357 @var{obj} returns an unbound value (@pxref{Handling Slot Access Errors,
1358 slot-unbound}).
1359 @end deffn
1360
1361 @deffn {primitive procedure} slot-set-using-class! class obj slot-name value
1362 Apply the ``setter'' closure for the slot named @var{slot-name} in
1363 @var{class} to @var{obj} and @var{value}.
1364
1365 @code{slot-set-using-class!} calls the generic function
1366 @code{slot-missing} if @var{class} does not have a slot definition for a
1367 slot called @var{slot-name} (@pxref{Handling Slot Access Errors,
1368 slot-missing}).
1369 @end deffn
1370
1371 @node Class Slots
1372 @subsubsection Class Slots
1373
1374 Slots whose allocation is per-class rather than per-instance can be
1375 referenced and set without needing to specify any particular instance.
1376
1377 @deffn procedure class-slot-ref class slot-name
1378 Return the value of the slot named @var{slot-name} in class @var{class}.
1379 The named slot must have @code{#:class} or @code{#:each-subclass}
1380 allocation (@pxref{Slot Options,, allocation}).
1381
1382 If there is no such slot with @code{#:class} or @code{#:each-subclass}
1383 allocation, @code{class-slot-ref} calls the @code{slot-missing} generic
1384 function with arguments @var{class} and @var{slot-name}. Otherwise, if
1385 the slot value is unbound, @code{class-slot-ref} calls the
1386 @code{slot-missing} generic function, with the same arguments.
1387 @end deffn
1388
1389 @deffn procedure class-slot-set! class slot-name value
1390 Set the value of the slot named @var{slot-name} in class @var{class} to
1391 @var{value}. The named slot must have @code{#:class} or
1392 @code{#:each-subclass} allocation (@pxref{Slot Options,, allocation}).
1393
1394 If there is no such slot with @code{#:class} or @code{#:each-subclass}
1395 allocation, @code{class-slot-ref} calls the @code{slot-missing} generic
1396 function with arguments @var{class} and @var{slot-name}.
1397 @end deffn
1398
1399 @node Handling Slot Access Errors
1400 @subsubsection Handling Slot Access Errors
1401
1402 GOOPS calls one of the following generic functions when a ``slot-ref''
1403 or ``slot-set!'' call specifies a non-existent slot name, or tries to
1404 reference a slot whose value is unbound.
1405
1406 @deffn generic slot-missing
1407 @deffnx method slot-missing (class <class>) slot-name
1408 @deffnx method slot-missing (class <class>) (object <object>) slot-name
1409 @deffnx method slot-missing (class <class>) (object <object>) slot-name value
1410 When an application attempts to reference or set a class or instance
1411 slot by name, and the slot name is invalid for the specified @var{class}
1412 or @var{object}, GOOPS calls the @code{slot-missing} generic function.
1413
1414 The default methods all call @code{goops-error} with an appropriate
1415 message.
1416 @end deffn
1417
1418 @deffn generic slot-unbound
1419 @deffnx method slot-unbound (object <object>)
1420 @deffnx method slot-unbound (class <class>) slot-name
1421 @deffnx method slot-unbound (class <class>) (object <object>) slot-name
1422 When an application attempts to reference a class or instance slot, and
1423 the slot's value is unbound, GOOPS calls the @code{slot-unbound} generic
1424 function.
1425
1426 The default methods all call @code{goops-error} with an appropriate
1427 message.
1428 @end deffn
1429
1430 @node Creating Generic Functions
1431 @subsection Creating Generic Functions
1432
1433 A generic function is a collection of methods, with rules for
1434 determining which of the methods should be applied for any given
1435 invocation of the generic function.
1436
1437 GOOPS represents generic functions as metaobjects of the class
1438 @code{<generic>} (or one of its subclasses).
1439
1440 @menu
1441 * Basic Generic Function Creation::
1442 * Generic Function Internals::
1443 * Extending Guiles Primitives::
1444 @end menu
1445
1446 @node Basic Generic Function Creation
1447 @subsubsection Basic Generic Function Creation
1448
1449 The following forms may be used to bind a variable to a generic
1450 function. Depending on that variable's pre-existing value, the generic
1451 function may be created empty - with no methods - or it may contain
1452 methods that are inferred from the pre-existing value.
1453
1454 It is not, in general, necessary to use @code{define-generic} or
1455 @code{define-accessor} before defining methods for the generic function
1456 using @code{define-method}, since @code{define-method} will
1457 automatically interpolate a @code{define-generic} call, or upgrade an
1458 existing generic to an accessor, if that is implied by the
1459 @code{define-method} call. Note in particular that,
1460 if the specified variable already has a @emph{generic function} value,
1461 @code{define-generic} and @code{define-accessor} will @emph{discard} it!
1462 Obviously it is application-dependent whether this is desirable or not.
1463
1464 If, for example, you wanted to extend @code{+} for a class representing
1465 a new numerical type, you probably want to inherit any existing methods
1466 for @code{+} and so should not use @code{define-generic}. If, on the
1467 other hand, you do not want to risk inheriting methods whose behaviour
1468 might surprise you, you can use @code{define-generic} or
1469 @code{define-accessor} to wipe the slate clean.
1470
1471 @deffn syntax define-generic symbol
1472 Create a generic function with name @var{symbol} and bind it to the
1473 variable @var{symbol}.
1474
1475 If the variable @var{symbol} was previously bound to a Scheme procedure
1476 (or procedure-with-setter), the old procedure (and setter) is
1477 incorporated into the new generic function as its default procedure (and
1478 setter). Any other previous value that was bound to @var{symbol},
1479 including an existing generic function, is overwritten by the new
1480 generic function.
1481 @end deffn
1482
1483 @deffn syntax define-accessor symbol
1484 Create an accessor with name @var{symbol} and bind it to the variable
1485 @var{symbol}.
1486
1487 If the variable @var{symbol} was previously bound to a Scheme procedure
1488 (or procedure-with-setter), the old procedure (and setter) is
1489 incorporated into the new accessor as its default procedure (and
1490 setter). Any other previous value that was bound to @var{symbol},
1491 including an existing generic function or accessor, is overwritten by
1492 the new definition.
1493 @end deffn
1494
1495 It is sometimes tempting to use GOOPS accessors with short names. For
1496 example, it is tempting to use the name @code{x} for the x-coordinate
1497 in vector packages.
1498
1499 Assume that we work with a graphical package which needs to use two
1500 independent vector packages for 2D and 3D vectors respectively. If
1501 both packages export @code{x} we will encounter a name collision.
1502
1503 This can be resolved automagically with the duplicates handler
1504 @code{merge-generics} which gives the module system license to merge
1505 all generic functions sharing a common name:
1506
1507 @smalllisp
1508 (define-module (math 2D-vectors)
1509 :use-module (oop goops)
1510 :export (x y ...))
1511
1512 (define-module (math 3D-vectors)
1513 :use-module (oop goops)
1514 :export (x y z ...))
1515
1516 (define-module (my-module)
1517 :use-module (math 2D-vectors)
1518 :use-module (math 3D-vectors)
1519 :duplicates merge-generics)
1520 @end smalllisp
1521
1522 The generic function @code{x} in @code{(my-module)} will now share
1523 methods with @code{x} in both imported modules.
1524
1525 There will, in fact, now be three distinct generic functions named
1526 @code{x}: @code{x} in @code{(2D-vectors)}, @code{x} in
1527 @code{(3D-vectors)}, and @code{x} in @code{(my-module)}. The last
1528 function will be an @code{<extended-generic>}, extending the previous
1529 two functions.
1530
1531 Let's call the imported generic functions the "ancestor functions".
1532 The generic function @code{x} in @code{(my-module)} is, in turn, a
1533 "descendant function" of the imported functions, extending its
1534 ancestors.
1535
1536 For any generic function G, the applicable methods are selected from
1537 the union of the methods of the descendant functions, the methods of G
1538 itself and the methods of the ancestor functions.
1539
1540 This, ancestor functions share methods with their descendants and vice
1541 versa. This implies that @code{x} in @code{(math 2D-vectors)} will
1542 share the methods of @code{x} in @code{(my-module)} and vice versa,
1543 while @code{x} in @code{(math 2D-vectors)} doesn't share the methods
1544 of @code{x} in @code{(math 3D-vectors)}, thus preserving modularity.
1545
1546 Sharing is dynamic, so that adding new methods to a descendant implies
1547 adding it to the ancestor.
1548
1549 If duplicates checking is desired in the above example, the following
1550 form of the @code{:duplicates} option can be used instead:
1551
1552 @smalllisp
1553 :duplicates (merge-generics check)
1554 @end smalllisp
1555
1556 @node Generic Function Internals
1557 @subsubsection Generic Function Internals
1558
1559 @code{define-generic} calls @code{ensure-generic} to upgrade a
1560 pre-existing procedure value, or @code{make} with metaclass
1561 @code{<generic>} to create a new generic function.
1562
1563 @code{define-accessor} calls @code{ensure-accessor} to upgrade a
1564 pre-existing procedure value, or @code{make-accessor} to create a new
1565 accessor.
1566
1567 @deffn procedure ensure-generic old-definition [name]
1568 Return a generic function with name @var{name}, if possible by using or
1569 upgrading @var{old-definition}. If unspecified, @var{name} defaults to
1570 @code{#f}.
1571
1572 If @var{old-definition} is already a generic function, it is returned
1573 unchanged.
1574
1575 If @var{old-definition} is a Scheme procedure or procedure-with-setter,
1576 @code{ensure-generic} returns a new generic function that uses
1577 @var{old-definition} for its default procedure and setter.
1578
1579 Otherwise @code{ensure-generic} returns a new generic function with no
1580 defaults and no methods.
1581 @end deffn
1582
1583 @deffn procedure make-generic [name]
1584 Return a new generic function with name @code{(car @var{name})}. If
1585 unspecified, @var{name} defaults to @code{#f}.
1586 @end deffn
1587
1588 @code{ensure-generic} calls @code{make} with metaclasses
1589 @code{<generic>} and @code{<generic-with-setter>}, depending on the
1590 previous value of the variable that it is trying to upgrade.
1591
1592 @code{make-generic} is a simple wrapper for @code{make} with metaclass
1593 @code{<generic>}.
1594
1595 @deffn procedure ensure-accessor proc [name]
1596 Return an accessor with name @var{name}, if possible by using or
1597 upgrading @var{proc}. If unspecified, @var{name} defaults to @code{#f}.
1598
1599 If @var{proc} is already an accessor, it is returned unchanged.
1600
1601 If @var{proc} is a Scheme procedure, procedure-with-setter or generic
1602 function, @code{ensure-accessor} returns an accessor that reuses the
1603 reusable elements of @var{proc}.
1604
1605 Otherwise @code{ensure-accessor} returns a new accessor with no defaults
1606 and no methods.
1607 @end deffn
1608
1609 @deffn procedure make-accessor [name]
1610 Return a new accessor with name @code{(car @var{name})}. If
1611 unspecified, @var{name} defaults to @code{#f}.
1612 @end deffn
1613
1614 @code{ensure-accessor} calls @code{make} with
1615 metaclass @code{<generic-with-setter>}, as well as calls to
1616 @code{ensure-generic}, @code{make-accessor} and (tail recursively)
1617 @code{ensure-accessor}.
1618
1619 @code{make-accessor} calls @code{make} twice, first
1620 with metaclass @code{<generic>} to create a generic function for the
1621 setter, then with metaclass @code{<generic-with-setter>} to create the
1622 accessor, passing the setter generic function as the value of the
1623 @code{#:setter} keyword.
1624
1625 @node Extending Guiles Primitives
1626 @subsubsection Extending Guile's Primitives
1627
1628 When GOOPS is loaded, many of Guile's primitive procedures can be
1629 extended by giving them a generic function definition that operates
1630 in conjunction with their normal C-coded implementation. For
1631 primitives that are extended in this way, the result from the user-
1632 or application-level point of view is that the extended primitive
1633 behaves exactly like a generic function with the C-coded implementation
1634 as its default method.
1635
1636 The @code{generic-capability?} predicate should be used to determine
1637 whether a particular primitive is extensible in this way.
1638
1639 @deffn {primitive procedure} generic-capability? primitive
1640 Return @code{#t} if @var{primitive} can be extended by giving it a
1641 generic function definition, otherwise @code{#f}.
1642 @end deffn
1643
1644 Even when a primitive procedure is extensible like this, its generic
1645 function definition is not created until it is needed by a call to
1646 @code{define-method}, or until the application explicitly requests it
1647 by calling @code{enable-primitive-generic!}.
1648
1649 @deffn {primitive procedure} enable-primitive-generic! primitive
1650 Force the creation of a generic function definition for
1651 @var{primitive}.
1652 @end deffn
1653
1654 Once the generic function definition for a primitive has been created,
1655 it can be retrieved using @code{primitive-generic-generic}.
1656
1657 @deffn {primitive procedure} primitive-generic-generic primitive
1658 Return the generic function definition of @var{primitive}.
1659
1660 @code{primitive-generic-generic} raises an error if @var{primitive}
1661 is not a primitive with generic capability, or if its generic capability
1662 has not yet been enabled, whether implicitly (by @code{define-method})
1663 or explicitly (by @code{enable-primitive-generic!}).
1664 @end deffn
1665
1666 Note that the distinction between, on the one hand, primitives with
1667 additional generic function definitions and, on the other hand, generic
1668 functions with a default method, may disappear when GOOPS is fully
1669 integrated into the core of Guile. Consequently, the
1670 procedures described in this section may disappear as well.
1671
1672 @node Adding Methods to Generic Functions
1673 @subsection Adding Methods to Generic Functions
1674
1675 @menu
1676 * Basic Method Definition::
1677 * Method Definition Internals::
1678 @end menu
1679
1680 @node Basic Method Definition
1681 @subsubsection Basic Method Definition
1682
1683 To add a method to a generic function, use the @code{define-method} form.
1684
1685 @deffn syntax define-method (generic parameter @dots{}) . body
1686 Define a method for the generic function or accessor @var{generic} with
1687 parameters @var{parameter}s and body @var{body}.
1688
1689 @var{generic} is a generic function. If @var{generic} is a variable
1690 which is not yet bound to a generic function object, the expansion of
1691 @code{define-method} will include a call to @code{define-generic}. If
1692 @var{generic} is @code{(setter @var{generic-with-setter})}, where
1693 @var{generic-with-setter} is a variable which is not yet bound to a
1694 generic-with-setter object, the expansion will include a call to
1695 @code{define-accessor}.
1696
1697 Each @var{parameter} must be either a symbol or a two-element list
1698 @code{(@var{symbol} @var{class})}. The symbols refer to variables in
1699 the @var{body} that will be bound to the parameters supplied by the
1700 caller when calling this method. The @var{class}es, if present,
1701 specify the possible combinations of parameters to which this method
1702 can be applied.
1703
1704 @var{body} is the body of the method definition.
1705 @end deffn
1706
1707 @code{define-method} expressions look a little like normal Scheme
1708 procedure definitions of the form
1709
1710 @example
1711 (define (name formals @dots{}) . body)
1712 @end example
1713
1714 The most important difference is that each formal parameter, apart from the
1715 possible ``rest'' argument, can be qualified by a class name:
1716 @code{@var{formal}} becomes @code{(@var{formal} @var{class})}. The
1717 meaning of this qualification is that the method being defined
1718 will only be applicable in a particular generic function invocation if
1719 the corresponding argument is an instance of @code{@var{class}} (or one of
1720 its subclasses). If more than one of the formal parameters is qualified
1721 in this way, then the method will only be applicable if each of the
1722 corresponding arguments is an instance of its respective qualifying class.
1723
1724 Note that unqualified formal parameters act as though they are qualified
1725 by the class @code{<top>}, which GOOPS uses to mean the superclass of
1726 all valid Scheme types, including both primitive types and GOOPS classes.
1727
1728 For example, if a generic function method is defined with
1729 @var{parameter}s @code{((s1 <square>) (n <number>))}, that method is
1730 only applicable to invocations of its generic function that have two
1731 parameters where the first parameter is an instance of the
1732 @code{<square>} class and the second parameter is a number.
1733
1734 If a generic function is invoked with a combination of parameters for which
1735 there is no applicable method, GOOPS raises an error. For more about
1736 invocation error handling, and generic function invocation in general,
1737 see @ref{Invoking Generic Functions}.
1738
1739 @node Method Definition Internals
1740 @subsubsection Method Definition Internals
1741
1742 @code{define-method}
1743
1744 @itemize @bullet
1745 @item
1746 checks the form of the first parameter, and applies the following steps
1747 to the accessor's setter if it has the @code{(setter @dots{})} form
1748
1749 @item
1750 interpolates a call to @code{define-generic} or @code{define-accessor}
1751 if a generic function is not already defined with the supplied name
1752
1753 @item
1754 calls @code{method} with the @var{parameter}s and @var{body}, to make a
1755 new method instance
1756
1757 @item
1758 calls @code{add-method!} to add this method to the relevant generic
1759 function.
1760 @end itemize
1761
1762 @deffn syntax method (parameter @dots{}) . body
1763 Make a method whose specializers are defined by the classes in
1764 @var{parameter}s and whose procedure definition is constructed from the
1765 @var{parameter} symbols and @var{body} forms.
1766
1767 The @var{parameter} and @var{body} parameters should be as for
1768 @code{define-method} (@pxref{Basic Method Definition,, define-method}).
1769 @end deffn
1770
1771 @code{method}
1772
1773 @itemize @bullet
1774 @item
1775 extracts formals and specializing classes from the @var{parameter}s,
1776 defaulting the class for unspecialized parameters to @code{<top>}
1777
1778 @item
1779 creates a closure using the formals and the @var{body} forms
1780
1781 @item
1782 calls @code{make} with metaclass @code{<method>} and the specializers
1783 and closure using the @code{#:specializers} and @code{#:procedure}
1784 keywords.
1785 @end itemize
1786
1787 @deffn procedure make-method specializers procedure
1788 Make a method using @var{specializers} and @var{procedure}.
1789
1790 @var{specializers} should be a list of classes that specifies the
1791 parameter combinations to which this method will be applicable.
1792
1793 @var{procedure} should be the closure that will applied to the generic
1794 function parameters when this method is invoked.
1795 @end deffn
1796
1797 @code{make-method} is a simple wrapper around @code{make} with metaclass
1798 @code{<method>}.
1799
1800 @deffn generic add-method! target method
1801 Generic function for adding method @var{method} to @var{target}.
1802 @end deffn
1803
1804 @deffn method add-method! (generic <generic>) (method <method>)
1805 Add method @var{method} to the generic function @var{generic}.
1806 @end deffn
1807
1808 @deffn method add-method! (proc <procedure>) (method <method>)
1809 If @var{proc} is a procedure with generic capability (@pxref{Extending
1810 Guiles Primitives,, generic-capability?}), upgrade it to a
1811 primitive generic and add @var{method} to its generic function
1812 definition.
1813 @end deffn
1814
1815 @deffn method add-method! (pg <primitive-generic>) (method <method>)
1816 Add method @var{method} to the generic function definition of @var{pg}.
1817
1818 Implementation: @code{(add-method! (primitive-generic-generic pg) method)}.
1819 @end deffn
1820
1821 @deffn method add-method! (whatever <top>) (method <method>)
1822 Raise an error indicating that @var{whatever} is not a valid generic
1823 function.
1824 @end deffn
1825
1826 @node Invoking Generic Functions
1827 @subsection Invoking Generic Functions
1828
1829 When a variable with a generic function definition appears as the first
1830 element of a list that is being evaluated, the Guile evaluator tries
1831 to apply the generic function to the arguments obtained by evaluating
1832 the remaining elements of the list. [ *fixme* How do I put this in a
1833 more Schemely and less Lispy way? ]
1834
1835 Usually a generic function contains several method definitions, with
1836 varying degrees of formal parameter specialization (@pxref{Basic
1837 Method Definition,, define-method}). So it is necessary to sort these
1838 methods by specificity with respect to the supplied arguments, and then
1839 apply the most specific method definition. Less specific methods
1840 may be applied subsequently if a method that is being applied calls
1841 @code{next-method}.
1842
1843 @menu
1844 * Determining Which Methods to Apply::
1845 * Handling Invocation Errors::
1846 @end menu
1847
1848 @node Determining Which Methods to Apply
1849 @subsubsection Determining Which Methods to Apply
1850
1851 [ *fixme* Sorry - this is the area of GOOPS that I understand least of
1852 all, so I'm afraid I have to pass on this section. Would some other
1853 kind person consider filling it in? ]
1854
1855 @deffn generic apply-generic
1856 @deffnx method apply-generic (gf <generic>) args
1857 @end deffn
1858
1859 @deffn generic compute-applicable-methods
1860 @deffnx method compute-applicable-methods (gf <generic>) args
1861 @end deffn
1862
1863 @deffn generic sort-applicable-methods
1864 @deffnx method sort-applicable-methods (gf <generic>) methods args
1865 @end deffn
1866
1867 @deffn generic method-more-specific?
1868 @deffnx method method-more-specific? (m1 <method>) (m2 <method>) args
1869 @end deffn
1870
1871 @deffn generic apply-method
1872 @deffnx method apply-method (gf <generic>) methods build-next args
1873 @end deffn
1874
1875 @deffn generic apply-methods
1876 @deffnx method apply-methods (gf <generic>) (l <list>) args
1877 @end deffn
1878
1879 @node Handling Invocation Errors
1880 @subsubsection Handling Invocation Errors
1881
1882 @deffn generic no-method
1883 @deffnx method no-method (gf <generic>) args
1884 When an application invokes a generic function, and no methods at all
1885 have been defined for that generic function, GOOPS calls the
1886 @code{no-method} generic function. The default method calls
1887 @code{goops-error} with an appropriate message.
1888 @end deffn
1889
1890 @deffn generic no-applicable-method
1891 @deffnx method no-applicable-method (gf <generic>) args
1892 When an application applies a generic function to a set of arguments,
1893 and no methods have been defined for those argument types, GOOPS calls
1894 the @code{no-applicable-method} generic function. The default method
1895 calls @code{goops-error} with an appropriate message.
1896 @end deffn
1897
1898 @deffn generic no-next-method
1899 @deffnx method no-next-method (gf <generic>) args
1900 When a generic function method calls @code{(next-method)} to invoke the
1901 next less specialized method for that generic function, and no less
1902 specialized methods have been defined for the current generic function
1903 arguments, GOOPS calls the @code{no-next-method} generic function. The
1904 default method calls @code{goops-error} with an appropriate message.
1905 @end deffn
1906
1907 @node Redefining a Class
1908 @subsection Redefining a Class
1909
1910 Suppose that a class @code{<my-class>} is defined using @code{define-class}
1911 (@pxref{Basic Class Definition,, define-class}), with slots that have
1912 accessor functions, and that an application has created several instances
1913 of @code{<my-class>} using @code{make} (@pxref{Basic Instance Creation,,
1914 make}). What then happens if @code{<my-class>} is redefined by calling
1915 @code{define-class} again?
1916
1917 @menu
1918 * Default Class Redefinition Behaviour::
1919 * Customizing Class Redefinition::
1920 @end menu
1921
1922 @node Default Class Redefinition Behaviour
1923 @subsubsection Default Class Redefinition Behaviour
1924
1925 GOOPS' default answer to this question is as follows.
1926
1927 @itemize @bullet
1928 @item
1929 All existing direct instances of @code{<my-class>} are converted to be
1930 instances of the new class. This is achieved by preserving the values
1931 of slots that exist in both the old and new definitions, and initializing the
1932 values of new slots in the usual way (@pxref{Basic Instance Creation,,
1933 make}).
1934
1935 @item
1936 All existing subclasses of @code{<my-class>} are redefined, as though
1937 the @code{define-class} expressions that defined them were re-evaluated
1938 following the redefinition of @code{<my-class>}, and the class
1939 redefinition process described here is applied recursively to the
1940 redefined subclasses.
1941
1942 @item
1943 Once all of its instances and subclasses have been updated, the class
1944 metaobject previously bound to the variable @code{<my-class>} is no
1945 longer needed and so can be allowed to be garbage collected.
1946 @end itemize
1947
1948 To keep things tidy, GOOPS also needs to do a little housekeeping on
1949 methods that are associated with the redefined class.
1950
1951 @itemize @bullet
1952 @item
1953 Slot accessor methods for slots in the old definition should be removed
1954 from their generic functions. They will be replaced by accessor methods
1955 for the slots of the new class definition.
1956
1957 @item
1958 Any generic function method that uses the old @code{<my-class>} metaobject
1959 as one of its formal parameter specializers must be updated to refer to
1960 the new @code{<my-class>} metaobject. (Whenever a new generic function
1961 method is defined, @code{define-method} adds the method to a list stored
1962 in the class metaobject for each class used as a formal parameter
1963 specializer, so it is easy to identify all the methods that must be
1964 updated when a class is redefined.)
1965 @end itemize
1966
1967 If this class redefinition strategy strikes you as rather counter-intuitive,
1968 bear in mind that it is derived from similar behaviour in other object
1969 systems such as CLOS, and that experience in those systems has shown it to be
1970 very useful in practice.
1971
1972 Also bear in mind that, like most of GOOPS' default behaviour, it can
1973 be customized@dots{}
1974
1975 @node Customizing Class Redefinition
1976 @subsubsection Customizing Class Redefinition
1977
1978 When @code{define-class} notices that a class is being redefined,
1979 it constructs the new class metaobject as usual, and then invokes the
1980 @code{class-redefinition} generic function with the old and new classes
1981 as arguments. Therefore, if the old or new classes have metaclasses
1982 other than the default @code{<class>}, class redefinition behaviour can
1983 be customized by defining a @code{class-redefinition} method that is
1984 specialized for the relevant metaclasses.
1985
1986 @deffn generic class-redefinition
1987 Handle the class redefinition from @var{old-class} to @var{new-class},
1988 and return the new class metaobject that should be bound to the
1989 variable specified by @code{define-class}'s first argument.
1990 @end deffn
1991
1992 @deffn method class-redefinition (old-class <class>) (new-class <class>)
1993 Implements GOOPS' default class redefinition behaviour, as described in
1994 @ref{Default Class Redefinition Behaviour}. Returns the metaobject
1995 for the new class definition.
1996 @end deffn
1997
1998 An alternative class redefinition strategy could be to leave all
1999 existing instances as instances of the old class, but accepting that the
2000 old class is now ``nameless'', since its name has been taken over by the
2001 new definition. In this strategy, any existing subclasses could also
2002 be left as they are, on the understanding that they inherit from a nameless
2003 superclass.
2004
2005 This strategy is easily implemented in GOOPS, by defining a new metaclass,
2006 that will be used as the metaclass for all classes to which the strategy
2007 should apply, and then defining a @code{class-redefinition} method that
2008 is specialized for this metaclass:
2009
2010 @example
2011 (define-class <can-be-nameless> (<class>))
2012
2013 (define-method (class-redefinition (old <can-be-nameless>)
2014 (new <class>))
2015 new)
2016 @end example
2017
2018 When customization can be as easy as this, aren't you glad that GOOPS
2019 implements the far more difficult strategy as its default!
2020
2021 Finally, note that, if @code{class-redefinition} itself is not customized,
2022 the default @code{class-redefinition} method invokes three further
2023 generic functions that could be individually customized:
2024
2025 @itemize @bullet
2026 @item
2027 (remove-class-accessors! @var{old-class})
2028
2029 @item
2030 (update-direct-method! @var{method} @var{old-class} @var{new-class})
2031
2032 @item
2033 (update-direct-subclass! @var{subclass} @var{old-class} @var{new-class})
2034 @end itemize
2035
2036 and the default methods for these generic functions invoke further
2037 generic functions, and so on@dots{} The detailed protocol for all of these
2038 is described in @ref{MOP Specification}.
2039
2040 @node Changing the Class of an Instance
2041 @subsection Changing the Class of an Instance
2042
2043 You can change the class of an existing instance by invoking the
2044 generic function @code{change-class} with two arguments: the instance
2045 and the new class.
2046
2047 @deffn generic change-class
2048 @end deffn
2049
2050 The default method for @code{change-class} decides how to implement the
2051 change of class by looking at the slot definitions for the instance's
2052 existing class and for the new class. If the new class has slots with
2053 the same name as slots in the existing class, the values for those slots
2054 are preserved. Slots that are present only in the existing class are
2055 discarded. Slots that are present only in the new class are initialized
2056 using the corresponding slot definition's init function (@pxref{Classes,,
2057 slot-init-function}).
2058
2059 @deffn {method} change-class (obj <object>) (new <class>)
2060 Modify instance @var{obj} to make it an instance of class @var{new}.
2061
2062 The value of each of @var{obj}'s slots is preserved only if a similarly named
2063 slot exists in @var{new}; any other slot values are discarded.
2064
2065 The slots in @var{new} that do not correspond to any of @var{obj}'s
2066 pre-existing slots are initialized according to @var{new}'s slot definitions'
2067 init functions.
2068 @end deffn
2069
2070 Customized change of class behaviour can be implemented by defining
2071 @code{change-class} methods that are specialized either by the class
2072 of the instances to be modified or by the metaclass of the new class.
2073
2074 When a class is redefined (@pxref{Redefining a Class}), and the default
2075 class redefinition behaviour is not overridden, GOOPS (eventually)
2076 invokes the @code{change-class} generic function for each existing
2077 instance of the redefined class.
2078
2079 @node Introspection
2080 @subsection Introspection
2081
2082 @dfn{Introspection}, also known as @dfn{reflection}, is the name given
2083 to the ability to obtain information dynamically about GOOPS metaobjects.
2084 It is perhaps best illustrated by considering an object oriented language
2085 that does not provide any introspection, namely C++.
2086
2087 Nothing in C++ allows a running program to obtain answers to the following
2088 types of question:
2089
2090 @itemize @bullet
2091 @item
2092 What are the data members of this object or class?
2093
2094 @item
2095 What classes does this class inherit from?
2096
2097 @item
2098 Is this method call virtual or non-virtual?
2099
2100 @item
2101 If I invoke @code{Employee::adjustHoliday()}, what class contains the
2102 @code{adjustHoliday()} method that will be applied?
2103 @end itemize
2104
2105 In C++, answers to such questions can only be determined by looking at
2106 the source code, if you have access to it. GOOPS, on the other hand,
2107 includes procedures that allow answers to these questions --- or their
2108 GOOPS equivalents --- to be obtained dynamically, at run time.
2109
2110 @menu
2111 * Classes::
2112 * Slots::
2113 * Instances::
2114 * Generic Functions::
2115 * Generic Function Methods::
2116 @end menu
2117
2118 @node Classes
2119 @subsubsection Classes
2120
2121 @deffn {primitive procedure} class-name class
2122 Return the name of class @var{class}.
2123 This is the value of the @var{class} metaobject's @code{name} slot.
2124 @end deffn
2125
2126 @deffn {primitive procedure} class-direct-supers class
2127 Return a list containing the direct superclasses of @var{class}.
2128 This is the value of the @var{class} metaobject's
2129 @code{direct-supers} slot.
2130 @end deffn
2131
2132 @deffn {primitive procedure} class-direct-slots class
2133 Return a list containing the slot definitions of the direct slots of
2134 @var{class}.
2135 This is the value of the @var{class} metaobject's @code{direct-slots}
2136 slot.
2137 @end deffn
2138
2139 @deffn {primitive procedure} class-direct-subclasses class
2140 Return a list containing the direct subclasses of @var{class}.
2141 This is the value of the @var{class} metaobject's
2142 @code{direct-subclasses} slot.
2143 @end deffn
2144
2145 @deffn {primitive procedure} class-direct-methods class
2146 Return a list of all the generic function methods that use @var{class}
2147 as a formal parameter specializer.
2148 This is the value of the @var{class} metaobject's @code{direct-methods}
2149 slot.
2150 @end deffn
2151
2152 @deffn {primitive procedure} class-precedence-list class
2153 Return the class precedence list for class @var{class} (@pxref{Class
2154 precedence list}).
2155 This is the value of the @var{class} metaobject's @code{cpl} slot.
2156 @end deffn
2157
2158 @deffn {primitive procedure} class-slots class
2159 Return a list containing the slot definitions for all @var{class}'s slots,
2160 including any slots that are inherited from superclasses.
2161 This is the value of the @var{class} metaobject's @code{slots} slot.
2162 @end deffn
2163
2164 @deffn {primitive procedure} class-environment class
2165 Return the value of @var{class}'s @code{environment} slot.
2166 [ *fixme* I don't know what this value is used for. ]
2167 @end deffn
2168
2169 @deffn procedure class-subclasses class
2170 Return a list of all subclasses of @var{class}.
2171 @end deffn
2172
2173 @deffn procedure class-methods class
2174 Return a list of all methods that use @var{class} or a subclass of
2175 @var{class} as one of its formal parameter specializers.
2176 @end deffn
2177
2178 @node Slots
2179 @subsubsection Slots
2180
2181 @deffn procedure class-slot-definition class slot-name
2182 Return the slot definition for the slot named @var{slot-name} in class
2183 @var{class}. @var{slot-name} should be a symbol.
2184 @end deffn
2185
2186 @deffn procedure slot-definition-name slot-def
2187 Extract and return the slot name from @var{slot-def}.
2188 @end deffn
2189
2190 @deffn procedure slot-definition-options slot-def
2191 Extract and return the slot options from @var{slot-def}.
2192 @end deffn
2193
2194 @deffn procedure slot-definition-allocation slot-def
2195 Extract and return the slot allocation option from @var{slot-def}. This
2196 is the value of the @code{#:allocation} keyword (@pxref{Slot Options,,
2197 allocation}), or @code{#:instance} if the @code{#:allocation} keyword is
2198 absent.
2199 @end deffn
2200
2201 @deffn procedure slot-definition-getter slot-def
2202 Extract and return the slot getter option from @var{slot-def}. This is
2203 the value of the @code{#:getter} keyword (@pxref{Slot Options,,
2204 getter}), or @code{#f} if the @code{#:getter} keyword is absent.
2205 @end deffn
2206
2207 @deffn procedure slot-definition-setter slot-def
2208 Extract and return the slot setter option from @var{slot-def}. This is
2209 the value of the @code{#:setter} keyword (@pxref{Slot Options,,
2210 setter}), or @code{#f} if the @code{#:setter} keyword is absent.
2211 @end deffn
2212
2213 @deffn procedure slot-definition-accessor slot-def
2214 Extract and return the slot accessor option from @var{slot-def}. This
2215 is the value of the @code{#:accessor} keyword (@pxref{Slot Options,,
2216 accessor}), or @code{#f} if the @code{#:accessor} keyword is absent.
2217 @end deffn
2218
2219 @deffn procedure slot-definition-init-value slot-def
2220 Extract and return the slot init-value option from @var{slot-def}. This
2221 is the value of the @code{#:init-value} keyword (@pxref{Slot Options,,
2222 init-value}), or the unbound value if the @code{#:init-value} keyword is
2223 absent.
2224 @end deffn
2225
2226 @deffn procedure slot-definition-init-form slot-def
2227 Extract and return the slot init-form option from @var{slot-def}. This
2228 is the value of the @code{#:init-form} keyword (@pxref{Slot Options,,
2229 init-form}), or the unbound value if the @code{#:init-form} keyword is
2230 absent.
2231 @end deffn
2232
2233 @deffn procedure slot-definition-init-thunk slot-def
2234 Extract and return the slot init-thunk option from @var{slot-def}. This
2235 is the value of the @code{#:init-thunk} keyword (@pxref{Slot Options,,
2236 init-thunk}), or @code{#f} if the @code{#:init-thunk} keyword is absent.
2237 @end deffn
2238
2239 @deffn procedure slot-definition-init-keyword slot-def
2240 Extract and return the slot init-keyword option from @var{slot-def}.
2241 This is the value of the @code{#:init-keyword} keyword (@pxref{Slot
2242 Options,, init-keyword}), or @code{#f} if the @code{#:init-keyword}
2243 keyword is absent.
2244 @end deffn
2245
2246 @deffn procedure slot-init-function class slot-name
2247 Return the initialization function for the slot named @var{slot-name} in
2248 class @var{class}. @var{slot-name} should be a symbol.
2249
2250 The returned initialization function incorporates the effects of the
2251 standard @code{#:init-thunk}, @code{#:init-form} and @code{#:init-value}
2252 slot options. These initializations can be overridden by the
2253 @code{#:init-keyword} slot option or by a specialized @code{initialize}
2254 method, so, in general, the function returned by
2255 @code{slot-init-function} may be irrelevant. For a fuller discussion,
2256 see @ref{Slot Options,, init-value}.
2257 @end deffn
2258
2259 @node Instances
2260 @subsubsection Instances
2261
2262 @deffn {primitive procedure} class-of value
2263 Return the GOOPS class of any Scheme @var{value}.
2264 @end deffn
2265
2266 @deffn {primitive procedure} instance? object
2267 Return @code{#t} if @var{object} is any GOOPS instance, otherwise
2268 @code{#f}.
2269 @end deffn
2270
2271 @deffn procedure is-a? object class
2272 Return @code{#t} if @var{object} is an instance of @var{class} or one of
2273 its subclasses.
2274 @end deffn
2275
2276 Implementation notes: @code{is-a?} uses @code{class-of} and
2277 @code{class-precedence-list} to obtain the class precedence list for
2278 @var{object}.
2279
2280 @node Generic Functions
2281 @subsubsection Generic Functions
2282
2283 @deffn {primitive procedure} generic-function-name gf
2284 Return the name of generic function @var{gf}.
2285 @end deffn
2286
2287 @deffn {primitive procedure} generic-function-methods gf
2288 Return a list of the methods of generic function @var{gf}.
2289 This is the value of the @var{gf} metaobject's @code{methods} slot.
2290 @end deffn
2291
2292 @node Generic Function Methods
2293 @subsubsection Generic Function Methods
2294
2295 @deffn {primitive procedure} method-generic-function method
2296 Return the generic function that @var{method} belongs to.
2297 This is the value of the @var{method} metaobject's
2298 @code{generic-function} slot.
2299 @end deffn
2300
2301 @deffn {primitive procedure} method-specializers method
2302 Return a list of @var{method}'s formal parameter specializers .
2303 This is the value of the @var{method} metaobject's
2304 @code{specializers} slot.
2305 @end deffn
2306
2307 @deffn {primitive procedure} method-procedure method
2308 Return the procedure that implements @var{method}.
2309 This is the value of the @var{method} metaobject's
2310 @code{procedure} slot.
2311 @end deffn
2312
2313 @deffn generic method-source
2314 @deffnx method method-source (m <method>)
2315 Return an expression that prints to show the definition of method
2316 @var{m}.
2317
2318 @example
2319 (define-generic cube)
2320
2321 (define-method (cube (n <number>))
2322 (* n n n))
2323
2324 (map method-source (generic-function-methods cube))
2325 @result{}
2326 ((method ((n <number>)) (* n n n)))
2327 @end example
2328 @end deffn
2329
2330 @node Miscellaneous Functions
2331 @subsection Miscellaneous Functions
2332
2333 @menu
2334 * Administrative Functions::
2335 * GOOPS Error Handling::
2336 * Object Comparisons::
2337 * Cloning Objects::
2338 * Write and Display::
2339 @end menu
2340
2341 @node Administrative Functions
2342 @subsubsection Administration Functions
2343
2344 This section describes administrative, non-technical GOOPS functions.
2345
2346 @deffn primitive goops-version
2347 Return the current GOOPS version as a string, for example ``0.2''.
2348 @end deffn
2349
2350 @node GOOPS Error Handling
2351 @subsubsection Error Handling
2352
2353 The procedure @code{goops-error} is called to raise an appropriate error
2354 by the default methods of the following generic functions:
2355
2356 @itemize @bullet
2357 @item
2358 @code{slot-missing} (@pxref{Handling Slot Access Errors,, slot-missing})
2359
2360 @item
2361 @code{slot-unbound} (@pxref{Handling Slot Access Errors,, slot-unbound})
2362
2363 @item
2364 @code{no-method} (@pxref{Handling Invocation Errors,, no-method})
2365
2366 @item
2367 @code{no-applicable-method} (@pxref{Handling Invocation Errors,,
2368 no-applicable-method})
2369
2370 @item
2371 @code{no-next-method} (@pxref{Handling Invocation Errors,,
2372 no-next-method})
2373 @end itemize
2374
2375 If you customize these functions for particular classes or metaclasses,
2376 you may still want to use @code{goops-error} to signal any error
2377 conditions that you detect.
2378
2379 @deffn procedure goops-error format-string . args
2380 Raise an error with key @code{goops-error} and error message constructed
2381 from @var{format-string} and @var{args}. Error message formatting is
2382 as done by @code{scm-error}.
2383 @end deffn
2384
2385 @node Object Comparisons
2386 @subsubsection Object Comparisons
2387
2388 @deffn generic eqv?
2389 @deffnx method eqv? ((x <top>) (y <top>))
2390 @deffnx generic equal?
2391 @deffnx method equal? ((x <top>) (y <top>))
2392 @deffnx generic =
2393 @deffnx method = ((x <number>) (y <number>))
2394 Generic functions and default (unspecialized) methods for comparing two
2395 GOOPS objects.
2396
2397 The default method for @code{eqv?} returns @code{#t} for all values
2398 that are equal in the sense defined by R5RS and the Guile reference
2399 manual, otherwise @code{#f}. The default method for @code{equal?}
2400 returns @code{#t} or @code{#f} in the sense defined by R5RS and the
2401 Guile reference manual. If no such comparison is defined,
2402 @code{equal?} returns the result of a call to @code{eqv?}. The
2403 default method for = returns @code{#t} if @var{x} and @var{y} are
2404 numerically equal, otherwise @code{#f}.
2405
2406 Application class authors may wish to define specialized methods for
2407 @code{eqv?}, @code{equal?} and @code{=} that compare instances of the
2408 same class for equality in whatever sense is useful to the
2409 application. Such methods will only be called if the arguments have
2410 the same class and the result of the comparison isn't defined by R5RS
2411 and the Guile reference manual.
2412 @end deffn
2413
2414 @node Cloning Objects
2415 @subsubsection Cloning Objects
2416
2417 @deffn generic shallow-clone
2418 @deffnx method shallow-clone (self <object>)
2419 Return a ``shallow'' clone of @var{self}. The default method makes a
2420 shallow clone by allocating a new instance and copying slot values from
2421 self to the new instance. Each slot value is copied either as an
2422 immediate value or by reference.
2423 @end deffn
2424
2425 @deffn generic deep-clone
2426 @deffnx method deep-clone (self <object>)
2427 Return a ``deep'' clone of @var{self}. The default method makes a deep
2428 clone by allocating a new instance and copying or cloning slot values
2429 from self to the new instance. If a slot value is an instance
2430 (satisfies @code{instance?}), it is cloned by calling @code{deep-clone}
2431 on that value. Other slot values are copied either as immediate values
2432 or by reference.
2433 @end deffn
2434
2435 @node Write and Display
2436 @subsubsection Write and Display
2437
2438 @deffn {primitive generic} write object port
2439 @deffnx {primitive generic} display object port
2440 When GOOPS is loaded, @code{write} and @code{display} become generic
2441 functions with special methods for printing
2442
2443 @itemize @bullet
2444 @item
2445 objects - instances of the class @code{<object>}
2446
2447 @item
2448 foreign objects - instances of the class @code{<foreign-object>}
2449
2450 @item
2451 classes - instances of the class @code{<class>}
2452
2453 @item
2454 generic functions - instances of the class @code{<generic>}
2455
2456 @item
2457 methods - instances of the class @code{<method>}.
2458 @end itemize
2459
2460 @code{write} and @code{display} print non-GOOPS values in the same way
2461 as the Guile primitive @code{write} and @code{display} functions.
2462 @end deffn
2463
2464 @node MOP Specification
2465 @section MOP Specification
2466
2467 For an introduction to metaobjects and the metaobject protocol,
2468 see @ref{Metaobjects and the Metaobject Protocol}.
2469
2470 The aim of the MOP specification in this chapter is to specify all the
2471 customizable generic function invocations that can be made by the standard
2472 GOOPS syntax, procedures and methods, and to explain the protocol for
2473 customizing such invocations.
2474
2475 A generic function invocation is customizable if the types of the arguments
2476 to which it is applied are not all determined by the lexical context in
2477 which the invocation appears. For example,
2478
2479 @itemize @bullet
2480 @item
2481 the @code{(initialize @var{instance} @var{initargs})} invocation in the
2482 default @code{make-instance} method is customizable, because the type of the
2483 @code{@var{instance}} argument is determined by the class that was passed to
2484 @code{make-instance}.
2485
2486 @item
2487 the @code{(make <generic> #:name ',name)} invocation in @code{define-generic}
2488 is not customizable, because all of its arguments have lexically determined
2489 types.
2490 @end itemize
2491
2492 When using this rule to decide whether a given generic function invocation
2493 is customizable, we ignore arguments that are expected to be handled in
2494 method definitions as a single ``rest'' list argument.
2495
2496 For each customizable generic function invocation, the @dfn{invocation
2497 protocol} is explained by specifying
2498
2499 @itemize @bullet
2500 @item
2501 what, conceptually, the applied method is intended to do
2502
2503 @item
2504 what assumptions, if any, the caller makes about the applied method's side
2505 effects
2506
2507 @item
2508 what the caller expects to get as the applied method's return value.
2509 @end itemize
2510
2511 @menu
2512 * Class Definition::
2513 * Instance Creation::
2514 * Class Redefinition::
2515 * Method Definition::
2516 * Generic Function Invocation::
2517 @end menu
2518
2519 @node Class Definition
2520 @subsection Class Definition
2521
2522 @code{define-class} (syntax)
2523
2524 @itemize @bullet
2525 @item
2526 @code{class} (syntax)
2527
2528 @itemize @bullet
2529 @item
2530 @code{make-class} (procedure)
2531
2532 @itemize @bullet
2533 @item
2534 @code{make @var{metaclass} @dots{}} (generic)
2535
2536 @var{metaclass} is the metaclass of the class being defined, either
2537 taken from the @code{#:metaclass} class option or computed by
2538 @code{ensure-metaclass}. The applied method must create and return the
2539 fully initialized class metaobject for the new class definition.
2540 @end itemize
2541
2542 @end itemize
2543
2544 @item
2545 @code{class-redefinition @var{old-class} @var{new-class}} (generic)
2546
2547 @code{define-class} calls @code{class-redefinition} if the variable
2548 specified by its first argument already held a GOOPS class definition.
2549 @var{old-class} and @var{new-class} are the old and new class metaobjects.
2550 The applied method should perform whatever is necessary to handle the
2551 redefinition, and should return the class metaobject that is to be bound
2552 to @code{define-class}'s variable. The default class redefinition
2553 protocol is described in @ref{Class Redefinition}.
2554 @end itemize
2555
2556 The @code{(make @var{metaclass} @dots{})} invocation above will create
2557 an class metaobject with metaclass @var{metaclass}. By default, this
2558 metaobject will be initialized by the @code{initialize} method that is
2559 specialized for instances of type @code{<class>}.
2560
2561 @code{initialize <class> @var{initargs}} (method)
2562
2563 @itemize @bullet
2564 @item
2565 @code{compute-cpl @var{class}} (generic)
2566
2567 The applied method should compute and return the class precedence list
2568 for @var{class} as a list of class metaobjects. When @code{compute-cpl}
2569 is called, the following @var{class} metaobject slots have all been
2570 initialized: @code{name}, @code{direct-supers}, @code{direct-slots},
2571 @code{direct-subclasses} (empty), @code{direct-methods}. The value
2572 returned by @code{compute-cpl} will be stored in the @code{cpl} slot.
2573
2574 @item
2575 @code{compute-slots @var{class}} (generic)
2576
2577 The applied method should compute and return the slots (union of direct
2578 and inherited) for @var{class} as a list of slot definitions. When
2579 @code{compute-slots} is called, all the @var{class} metaobject slots
2580 mentioned for @code{compute-cpl} have been initialized, plus the
2581 following: @code{cpl}, @code{redefined} (@code{#f}), @code{environment}.
2582 The value returned by @code{compute-slots} will be stored in the
2583 @code{slots} slot.
2584
2585 @item
2586 @code{compute-get-n-set @var{class} @var{slot-def}} (generic)
2587
2588 @code{initialize} calls @code{compute-get-n-set} for each slot computed
2589 by @code{compute-slots}. The applied method should compute and return a
2590 pair of closures that, respectively, get and set the value of the specified
2591 slot. The get closure should have arity 1 and expect a single argument
2592 that is the instance whose slot value is to be retrieved. The set closure
2593 should have arity 2 and expect two arguments, where the first argument is
2594 the instance whose slot value is to be set and the second argument is the
2595 new value for that slot. The closures should be returned in a two element
2596 list: @code{(list @var{get} @var{set})}.
2597
2598 The closures returned by @code{compute-get-n-set} are stored as part of
2599 the value of the @var{class} metaobject's @code{getters-n-setters} slot.
2600 Specifically, the value of this slot is a list with the same number of
2601 elements as there are slots in the class, and each element looks either like
2602
2603 @example
2604 @code{(@var{slot-name-symbol} @var{init-function} . @var{index})}
2605 @end example
2606
2607 or like
2608
2609 @example
2610 @code{(@var{slot-name-symbol} @var{init-function} @var{get} @var{set})}
2611 @end example
2612
2613 Where the get and set closures are replaced by @var{index}, the slot is
2614 an instance slot and @var{index} is the slot's index in the underlying
2615 structure: GOOPS knows how to get and set the value of such slots and so
2616 does not need specially constructed get and set closures. Otherwise,
2617 @var{get} and @var{set} are the closures returned by @code{compute-get-n-set}.
2618
2619 The structure of the @code{getters-n-setters} slot value is important when
2620 understanding the next customizable generic functions that @code{initialize}
2621 calls@dots{}
2622
2623 @item
2624 @code{compute-getter-method @var{class} @var{gns}} (generic)
2625
2626 @code{initialize} calls @code{compute-getter-method} for each of the class's
2627 slots (as determined by @code{compute-slots}) that includes a
2628 @code{#:getter} or @code{#:accessor} slot option. @var{gns} is the
2629 element of the @var{class} metaobject's @code{getters-n-setters} slot that
2630 specifies how the slot in question is referenced and set, as described
2631 above under @code{compute-get-n-set}. The applied method should create
2632 and return a method that is specialized for instances of type @var{class}
2633 and uses the get closure to retrieve the slot's value. [ *fixme Need
2634 to insert something here about checking that the value is not unbound. ]
2635 @code{initialize} uses @code{add-method!} to add the returned method to
2636 the generic function named by the slot definition's @code{#:getter} or
2637 @code{#:accessor} option.
2638
2639 @item
2640 @code{compute-setter-method @var{class} @var{gns}} (generic)
2641
2642 @code{compute-setter-method} is invoked with the same arguments as
2643 @code{compute-getter-method}, for each of the class's slots that includes
2644 a @code{#:setter} or @code{#:accessor} slot option. The applied method
2645 should create and return a method that is specialized for instances of
2646 type @var{class} and uses the set closure to set the slot's value.
2647 @code{initialize} then uses @code{add-method!} to add the returned method
2648 to the generic function named by the slot definition's @code{#:setter}
2649 or @code{#:accessor} option.
2650 @end itemize
2651
2652 @node Instance Creation
2653 @subsection Instance Creation
2654
2655 @code{make <class> . @var{initargs}} (method)
2656
2657 @itemize @bullet
2658 @item
2659 @code{allocate-instance @var{class} @var{initargs}} (generic)
2660
2661 The applied @code{allocate-instance} method should allocate storage for
2662 a new instance of class @var{class} and return the uninitialized instance.
2663
2664 @item
2665 @code{initialize @var{instance} @var{initargs}} (generic)
2666
2667 @var{instance} is the uninitialized instance returned by
2668 @code{allocate-instance}. The applied method should initialize the new
2669 instance in whatever sense is appropriate for its class. The method's
2670 return value is ignored.
2671 @end itemize
2672
2673 @node Class Redefinition
2674 @subsection Class Redefinition
2675
2676 The default @code{class-redefinition} method, specialized for classes
2677 with the default metaclass @code{<class>}, has the following internal
2678 protocol.
2679
2680 @code{class-redefinition (@var{old <class>}) (@var{new <class>})}
2681 (method)
2682
2683 @itemize @bullet
2684 @item
2685 @code{remove-class-accessors! @var{old}} (generic)
2686
2687 @item
2688 @code{update-direct-method! @var{method} @var{old} @var{new}} (generic)
2689
2690 @item
2691 @code{update-direct-subclass! @var{subclass} @var{old} @var{new}} (generic)
2692 @end itemize
2693
2694 This protocol cleans up things that the definition of the old class
2695 once changed and modifies things to work with the new class.
2696
2697 The default @code{remove-class-accessors!} method removes the
2698 accessor methods of the old class from all classes which they
2699 specialize.
2700
2701 The default @code{update-direct-method!} method substitutes the new
2702 class for the old in all methods specialized to the old class.
2703
2704 The default @code{update-direct-subclass!} method invokes
2705 @code{class-redefinition} recursively to handle the redefinition of
2706 subclasses.
2707
2708 When a class is redefined, any existing instance of the redefined class
2709 will be modified for the new class definition before the next time that
2710 any of the instance's slot is referenced or set. GOOPS modifies each
2711 instance by calling the generic function @code{change-class}.
2712
2713 The default @code{change-class} method copies slot values from the old
2714 to the modified instance, and initializes new slots, as described in
2715 @ref{Changing the Class of an Instance}. After doing so, it makes a
2716 generic function invocation that can be used to customize the instance
2717 update algorithm.
2718
2719 @code{change-class (@var{old-instance <object>}) (@var{new <class>})} (method)
2720
2721 @itemize @bullet
2722 @item
2723 @code{update-instance-for-different-class @var{old-instance} @var{new-instance}} (generic)
2724
2725 @code{change-class} invokes @code{update-instance-for-different-class}
2726 as the last thing that it does before returning. The applied method can
2727 make any further adjustments to @var{new-instance} that are required to
2728 complete or modify the change of class. The return value from the
2729 applied method is ignored.
2730
2731 The default @code{update-instance-for-different-class} method does
2732 nothing.
2733 @end itemize
2734
2735 @node Method Definition
2736 @subsection Method Definition
2737
2738 @code{define-method} (syntax)
2739
2740 @itemize @bullet
2741 @item
2742 @code{add-method! @var{target} @var{method}} (generic)
2743
2744 @code{define-method} invokes the @code{add-method!} generic function to
2745 handle adding the new method to a variety of possible targets. GOOPS
2746 includes methods to handle @var{target} as
2747
2748 @itemize @bullet
2749 @item
2750 a generic function (the most common case)
2751
2752 @item
2753 a procedure
2754
2755 @item
2756 a primitive generic (@pxref{Extending Guiles Primitives})
2757 @end itemize
2758
2759 By defining further methods for @code{add-method!}, you can
2760 theoretically handle adding methods to further types of target.
2761 @end itemize
2762
2763 @node Generic Function Invocation
2764 @subsection Generic Function Invocation
2765
2766 [ *fixme* Description required here. ]
2767
2768 @code{apply-generic}
2769
2770 @itemize @bullet
2771 @item
2772 @code{no-method}
2773
2774 @item
2775 @code{compute-applicable-methods}
2776
2777 @item
2778 @code{sort-applicable-methods}
2779
2780 @item
2781 @code{apply-methods}
2782
2783 @item
2784 @code{no-applicable-method}
2785 @end itemize
2786
2787 @code{sort-applicable-methods}
2788
2789 @itemize @bullet
2790 @item
2791 @code{method-more-specific?}
2792 @end itemize
2793
2794 @code{apply-methods}
2795
2796 @itemize @bullet
2797 @item
2798 @code{apply-method}
2799 @end itemize
2800
2801 @code{next-method}
2802
2803 @itemize @bullet
2804 @item
2805 @code{no-next-method}
2806 @end itemize
2807
2808 @node Tutorial
2809 @section Tutorial
2810 @include goops-tutorial.texi