* lisp/svg.el (svg--encode-text): Fix off-by-one error in previous patch.
[emacs.git] / doc / misc / eieio.texi
blob7076c24422284f42ef73599ca42b36ad93ee59a8
1 \input texinfo
2 @setfilename ../../info/eieio.info
3 @set TITLE Enhanced Implementation of Emacs Interpreted Objects
4 @set AUTHOR Eric M. Ludlam
5 @settitle @value{TITLE}
6 @include docstyle.texi
8 @c *************************************************************************
9 @c @ Header
10 @c *************************************************************************
12 @copying
13 This manual documents EIEIO, an object framework for Emacs Lisp.
15 Copyright @copyright{} 2007--2017 Free Software Foundation, Inc.
17 @quotation
18 Permission is granted to copy, distribute and/or modify this document
19 under the terms of the GNU Free Documentation License, Version 1.3 or
20 any later version published by the Free Software Foundation; with no
21 Invariant Sections, with the Front-Cover Texts being ``A GNU Manual,''
22 and with the Back-Cover Texts as in (a) below.  A copy of the license
23 is included in the section entitled ``GNU Free Documentation License.''
25 (a) The FSF's Back-Cover Text is: ``You have the freedom to copy and
26 modify this GNU manual.''
27 @end quotation
28 @end copying
30 @dircategory Emacs misc features
31 @direntry
32 * EIEIO: (eieio).               An objects system for Emacs Lisp.
33 @end direntry
35 @titlepage
36 @center @titlefont{@value{TITLE}}
37 @sp 4
38 @center by @value{AUTHOR}
39 @page
40 @vskip 0pt plus 1filll
41 @insertcopying
42 @end titlepage
44 @macro eieio{}
45 @i{EIEIO}
46 @end macro
48 @node Top
49 @top EIEIO
51 @eieio{} (``Enhanced Implementation of Emacs Interpreted Objects'')
52 provides an Object Oriented layer for Emacs Lisp, following the basic
53 concepts of the Common Lisp Object System (CLOS).  It provides a
54 framework for writing object-oriented applications in Emacs.
56 @ifnottex
57 @insertcopying
58 @end ifnottex
60 @menu
61 * Quick Start::           Quick start for EIEIO.
62 * Introduction::          Why use @eieio{}?  Basic overview, samples list.
63 * Building Classes::      How to write new class structures.
64 * Making New Objects::    How to construct new objects.
65 * Accessing Slots::       How to access a slot.
66 * Writing Methods::       How to write a method.
67 * Method Invocation::     How methods are invoked.
68 * Predicates::            Class-p, Object-p, etc-p.
69 * Association Lists::     List of objects as association lists.
70 * Customizing::           Customizing objects.
71 * Introspection::         Looking inside a class.
72 * Base Classes::          Additional classes you can inherit from.
73 * Browsing::              Browsing your class lists.
74 * Class Values::          Displaying information about a class or object.
75 * Default Superclass::    The root superclasses.
76 * Signals::               When you make errors.
77 * Naming Conventions::    Name your objects in an Emacs friendly way.
78 * CLOS compatibility::    What are the differences?
79 * Wish List::             Things about EIEIO that could be improved.
80 * GNU Free Documentation License::  The license for this documentation.
81 * Function Index::
82 @end menu
84 @node Quick Start
85 @chapter Quick Start
87 @eieio{} provides an Object Oriented layer for Emacs Lisp.  You can
88 use @eieio{} to create classes, methods for those classes, and
89 instances of classes.
91 Here is a simple example of a class named @code{record}, containing
92 three slots named @code{name}, @code{birthday}, and @code{phone}:
94 @example
95 (defclass record () ; No superclasses
96   ((name :initarg :name
97          :initform ""
98          :type string
99          :custom string
100          :documentation "The name of a person.")
101    (birthday :initarg :birthday
102              :initform "Jan 1, 1970"
103              :custom string
104              :type string
105              :documentation "The person's birthday.")
106    (phone :initarg :phone
107           :initform ""
108           :documentation "Phone number."))
109   "A single record for tracking people I know.")
110 @end example
112 Each class can have methods, which are defined like this:
114 @example
115 (cl-defmethod call-record ((rec record) &optional scriptname)
116   "Dial the phone for the record REC.
117 Execute the program SCRIPTNAME to dial the phone."
118   (message "Dialing the phone for %s"  (oref rec name))
119   (shell-command (concat (or scriptname "dialphone.sh")
120                          " "
121                          (oref rec phone))))
122 @end example
124 @noindent
125 In this example, the first argument to @code{call-record} is a list,
126 of the form (@var{varname} @var{classname}).  @var{varname} is the
127 name of the variable used for the first argument; @var{classname} is
128 the name of the class that is expected as the first argument for this
129 method.
131 @eieio{} dispatches methods based on the type of the first argument.
132 You can have multiple methods with the same name for different classes
133 of object.  When the @code{call-record} method is called, the first
134 argument is examined to determine the class of that argument, and the
135 method matching the input type is then executed.
137 Once the behavior of a class is defined, you can create a new
138 object of type @code{record}.  Objects are created by calling the
139 constructor.  The constructor is a function with the same name as your
140 class which returns a new instance of that class.  Here is an example:
142 @example
143 (setq rec (record :name "Eric" :birthday "June" :phone "555-5555"))
144 @end example
146 @noindent
147 For backward compatibility reasons, the first argument can be a string (a name
148 given to this instance).  Each instance used to be given a name, so different
149 instances could be easily distinguished when debugging.
151 It can be a bit repetitive to also have a :name slot.  To avoid doing
152 this, it is sometimes handy to use the base class @code{eieio-named}.
153 @xref{eieio-named}.
155 Calling methods on an object is a lot like calling any function.  The
156 first argument should be an object of a class which has had this
157 method defined for it.  In this example it would look like this:
159 @example
160 (call-record rec)
161 @end example
163 @noindent
166 @example
167 (call-record rec "my-call-script")
168 @end example
170 In these examples, @eieio{} automatically examines the class of
171 @code{rec}, and ensures that the method defined above is called.  If
172 @code{rec} is some other class lacking a @code{call-record} method, or
173 some other data type, Emacs signals a @code{cl-no-applicable-method}
174 error.  @ref{Signals}.
176 @node Introduction
177 @chapter Introduction
179 First off, please note that this manual cannot serve as a complete
180 introduction to object oriented programming and generic functions in
181 LISP@.  Although EIEIO is not a complete implementation of the Common
182 Lisp Object System (CLOS) and also differs from it in several aspects,
183 it follows the same basic concepts.  Therefore, it is highly
184 recommended to learn those from a textbook or tutorial first,
185 especially if you only know OOP from languages like C++ or Java.  If
186 on the other hand you are already familiar with CLOS, you should be
187 aware that @eieio{} does not implement the full CLOS specification and
188 also differs in some other aspects which are mentioned below (also
189 @pxref{CLOS compatibility}).
191 @eieio{} supports the following features:
193 @enumerate
194 @item
195 A structured framework for the creation of basic classes with attributes
196 and methods using singular inheritance similar to CLOS.
197 @item
198 Type checking, and slot unbinding.
199 @item
200 Method definitions similar to CLOS.
201 @item
202 Simple and complex class browsers.
203 @item
204 Edebug support for methods.
205 @item
206 Imenu updates.
207 @item
208 Byte compilation support of methods.
209 @item
210 Help system extensions for classes and methods.
211 @item
212 Several base classes for interesting tasks.
213 @item
214 Simple test suite.
215 @item
216 Public and private classifications for slots (extensions to CLOS)
217 @item
218 Customization support in a class (extension to CLOS)
219 @end enumerate
221 Due to restrictions in the Emacs Lisp language, CLOS cannot be
222 completely supported, and a few functions have been added in place of
223 setf.  Here are some important CLOS features that @eieio{} presently
224 lacks:
226 @table @asis
228 @item Method dispatch
229 EIEO does not support method dispatch for built-in types and multiple
230 arguments types.  In other words, method dispatch only looks at the
231 first argument, and this one must be an @eieio{} type.
233 @item Support for metaclasses
234 There is just one default metaclass, @code{eieio-default-superclass},
235 and you cannot define your own.  The @code{:metaclass} tag in
236 @code{defclass} is ignored.  Also, functions like @code{find-class}, which
237 should return instances of the metaclass, behave differently in
238 @eieio{} in that they return symbols or plain structures instead.
240 @item EQL specialization
241 EIEIO does not support it.
243 @item @code{:around} method tag
244 This CLOS method tag is non-functional.
246 @item :default-initargs in @code{defclass}
247 Each slot can have an @code{:initform} tag, so this is not really necessary.
249 @item Mock object initializers
250 Each class contains a mock object used for fast initialization of
251 instantiated objects.  Using functions with side effects on object slot
252 values can potentially cause modifications in the mock object.  @eieio{}
253 should use a deep copy but currently does not.
255 @end table
257 @node Building Classes
258 @chapter Building Classes
260 A @dfn{class} is a definition for organizing data and methods
261 together.  An @eieio{} class has structures similar to the classes
262 found in other object-oriented (OO) languages.
264 To create a new class, use the @code{defclass} macro:
266 @defmac defclass class-name superclass-list slot-list &rest options-and-doc
268 Create a new class named @var{class-name}.  The class is represented
269 by a symbol with the name @var{class-name}.  @eieio{} stores the structure of
270 the class as a symbol property of @var{class-name} (@pxref{Symbol
271 Components,,,elisp,GNU Emacs Lisp Reference Manual}).
273 The @var{class-name} symbol's variable documentation string is a
274 modified version of the doc string found in @var{options-and-doc}.
275 Each time a method is defined, the symbol's documentation string is
276 updated to include the methods documentation as well.
278 The parent classes for @var{class-name} is @var{superclass-list}.
279 Each element of @var{superclass-list} must be a class.  These classes
280 are the parents of the class being created.  Every slot that appears
281 in each parent class is replicated in the new class.
283 If two parents share the same slot name, the parent which appears in
284 the @var{superclass-list} first sets the tags for that slot.  If the
285 new class has a slot with the same name as the parent, the new slot
286 overrides the parent's slot.
288 When overriding a slot, some slot attributes cannot be overridden
289 because they break basic OO rules.  You cannot override @code{:type}
290 or @code{:protection}.
291 @end defmac
293 @noindent
294 Whenever defclass is used to create a new class, a predicate is
295 created for it, named @code{@var{CLASS-NAME}-p}:
297 @defun CLASS-NAME-p object
298 Return non-@code{nil} if and only if @var{OBJECT} is of the class
299 @var{CLASS-NAME}.
300 @end defun
302 @defvar eieio-error-unsupported-class-tags
303 If non-@code{nil}, @code{defclass} signals an error if a tag in a slot
304 specifier is unsupported.
306 This option is here to support programs written with older versions of
307 @eieio{}, which did not produce such errors.
308 @end defvar
310 @menu
311 * Inheritance::         How to specify parents classes.
312 * Slot Options::        How to specify features of a slot.
313 * Class Options::       How to specify features for this class.
314 @end menu
316 @node Inheritance
317 @section Inheritance
319 @dfn{Inheritance} is a basic feature of an object-oriented language.
320 In @eieio{}, a defined class specifies the super classes from which it
321 inherits by using the second argument to @code{defclass}.  Here is an
322 example:
324 @example
325 (defclass my-baseclass ()
326    ((slot-A :initarg :slot-A)
327     (slot-B :initarg :slot-B))
328   "My Baseclass.")
329 @end example
331 @noindent
332 To subclass from @code{my-baseclass}, we specify it in the superclass
333 list:
335 @example
336 (defclass my-subclass (my-baseclass)
337    ((specific-slot-A :initarg specific-slot-A)
338     )
339    "My subclass of my-baseclass")
340 @end example
342 @indent
343 Instances of @code{my-subclass} will inherit @code{slot-A} and
344 @code{slot-B}, in addition to having @code{specific-slot-A} from the
345 declaration of @code{my-subclass}.
347 @eieio{} also supports multiple inheritance.  Suppose we define a
348 second baseclass, perhaps an ``interface'' class, like this:
350 @example
351 (defclass my-interface ()
352    ((interface-slot :initarg :interface-slot))
353    "An interface to special behavior."
354    :abstract t)
355 @end example
357 @noindent
358 The interface class defines a special @code{interface-slot}, and also
359 specifies itself as abstract.  Abstract classes cannot be
360 instantiated.  It is not required to make interfaces abstract, but it
361 is a good programming practice.
363 We can now modify our definition of @code{my-subclass} to use this
364 interface class, together with our original base class:
366 @example
367 (defclass my-subclass (my-baseclass my-interface)
368    ((specific-slot-A :initarg specific-slot-A)
369     )
370    "My subclass of my-baseclass")
371 @end example
373 @noindent
374 With this, @code{my-subclass} also has @code{interface-slot}.
376 If @code{my-baseclass} and @code{my-interface} had slots with the same
377 name, then the superclass showing up in the list first defines the
378 slot attributes.
380 Inheritance in @eieio{} is more than just combining different slots.
381 It is also important in method invocation.  @ref{Methods}.
383 If a method is called on an instance of @code{my-subclass}, and that
384 method only has an implementation on @code{my-baseclass}, or perhaps
385 @code{my-interface}, then the implementation for the baseclass is
386 called.
388 If there is a method implementation for @code{my-subclass}, and
389 another in @code{my-baseclass}, the implementation for
390 @code{my-subclass} can call up to the superclass as well.
392 @node Slot Options
393 @section Slot Options
395 The @var{slot-list} argument to @code{defclass} is a list of elements
396 where each element defines one slot.  Each slot is a list of the form
398 @example
399   (SLOT-NAME :TAG1 ATTRIB-VALUE1
400              :TAG2 ATTRIB-VALUE2
401              :TAGN ATTRIB-VALUEN)
402 @end example
404 @noindent
405 where @var{SLOT-NAME} is a symbol that will be used to refer to the
406 slot.  @var{:TAG} is a symbol that describes a feature to be set
407 on the slot.  @var{ATTRIB-VALUE} is a lisp expression that will be
408 used for @var{:TAG}.
410 Valid tags are:
412 @table @code
413 @item :initarg
414 A symbol that can be used in the argument list of the constructor to
415 specify a value for this slot of the new instance being created.
417 A good symbol to use for initarg is one that starts with a colon @code{:}.
419 The slot specified like this:
420 @example
421   (myslot :initarg :myslot)
422 @end example
423 could then be initialized to the number 1 like this:
424 @example
425   (myobject :myslot 1)
426 @end example
428 @xref{Making New Objects}.
430 @item :initform
431 An expression used as the default value for this slot.
433 If @code{:initform} is left out, that slot defaults to being unbound.
434 It is an error to reference an unbound slot, so if you need
435 slots to always be in a bound state, you should always use an
436 @code{:initform} specifier.
438 Use @code{slot-boundp} to test if a slot is unbound
439 (@pxref{Predicates}).  Use @code{slot-makeunbound} to set a slot to
440 being unbound after giving it a value (@pxref{Accessing Slots}).
442 The value passed to initform used to be automatically quoted.  Thus,
443 @example
444 :initform (1 2 3)
445 @end example
446 will use the list as a value.  This is incompatible with CLOS (which would
447 signal an error since 1 is not a valid function) and will likely change in the
448 future, so better quote your initforms if they're just values.
450 @item :type
451 An unquoted type specifier used to validate data set into this slot.
452 @xref{Type Predicates,,,cl,Common Lisp Extensions}.
453 Here are some examples:
454  @table @code
455  @item symbol
456  A symbol.
457  @item number
458  A number type
459  @item my-class-name
460  An object of your class type.
461  @item (or null symbol)
462  A symbol, or @code{nil}.
463  @end table
465 @item :allocation
466 Either :class or :instance (defaults to :instance) used to
467 specify how data is stored.  Slots stored per instance have unique
468 values for each object.  Slots stored per class have shared values for
469 each object.  If one object changes a :class allocated slot, then all
470 objects for that class gain the new value.
472 @item :documentation
473 Documentation detailing the use of this slot.  This documentation is
474 exposed when the user describes a class, and during customization of an
475 object.
477 @item :accessor
478 Name of a generic function which can be used to fetch the value of this slot.
479 You can call this function later on your object and retrieve the value
480 of the slot.
482 This option is in the CLOS spec, but is not fully compliant in @eieio{}.
484 @item :writer
485 Name of a generic function which will write this slot.
487 This option is in the CLOS spec, but is not fully compliant in @eieio{}.
489 @item :reader
490 Name of a generic function which will read this slot.
492 This option is in the CLOS spec, but is not fully compliant in @eieio{}.
494 @item :custom
495 A custom :type specifier used when editing an object of this type.
496 See documentation for @code{defcustom} for details.  This specifier is
497 equivalent to the :type spec of a @code{defcustom} call.
499 This option is specific to Emacs, and is not in the CLOS spec.
501 @item :label
502 When customizing an object, the value of :label will be used instead
503 of the slot name.  This enables better descriptions of the data than
504 would usually be afforded.
506 This option is specific to Emacs, and is not in the CLOS spec.
508 @item :group
509 Similar to @code{defcustom}'s :group command, this organizes different
510 slots in an object into groups.  When customizing an object, only the
511 slots belonging to a specific group need be worked with, simplifying the
512 size of the display.
514 This option is specific to Emacs, and is not in the CLOS spec.
516 @item :printer
517 This routine takes a symbol which is a function name.  The function
518 should accept one argument.  The argument is the value from the slot
519 to be printed.  The function in @code{object-write} will write the
520 slot value out to a printable form on @code{standard-output}.
522 The output format MUST be something that could in turn be interpreted
523 with @code{read} such that the object can be brought back in from the
524 output stream.  Thus, if you wanted to output a symbol, you would need
525 to quote the symbol.  If you wanted to run a function on load, you
526 can output the code to do the construction of the value.
528 @item :protection
529 This is an old option that is not supported any more.
531 When using a slot referencing function such as @code{slot-value}, and
532 the value behind @var{slot} is private or protected, then the current
533 scope of operation must be within a method of the calling object.
535 This protection is not enforced by the code any more, so it's only useful
536 as documentation.
538 Valid values are:
540 @table @code
541 @item :public
542 Access this slot from any scope.
543 @item :protected
544 Access this slot only from methods of the same class or a child class.
545 @item :private
546 Access this slot only from methods of the same class.
547 @end table
549 This option is specific to Emacs, and is not in the CLOS spec.
551 @end table
553 @node Class Options
554 @section Class Options
556 In the @var{options-and-doc} arguments to @code{defclass}, the
557 following class options may be specified:
559 @table @code
560 @item :documentation
561 A documentation string for this class.
563 If an Emacs-style documentation string is also provided, then this
564 option is ignored.  An Emacs-style documentation string is not
565 prefixed by the @code{:documentation} tag, and appears after the list
566 of slots, and before the options.
568 @item :allow-nil-initform
569 If this option is non-@code{nil}, and the @code{:initform} is @code{nil}, but
570 the @code{:type} is specifies something such as @code{string} then allow
571 this to pass.  The default is to have this option be off.  This is
572 implemented as an alternative to unbound slots.
574 This option is specific to Emacs, and is not in the CLOS spec.
576 @item :abstract
577 A class which is @code{:abstract} cannot be instantiated, and instead
578 is used to define an interface which subclasses should implement.
580 This option is specific to Emacs, and is not in the CLOS spec.
582 @item :custom-groups
583 This is a list of groups that can be customized within this class.  This
584 slot is auto-generated when a class is created and need not be
585 specified.  It can be retrieved with the @code{class-option} command,
586 however, to see what groups are available.
588 This option is specific to Emacs, and is not in the CLOS spec.
590 @item :method-invocation-order
591 This controls the order in which method resolution occurs for
592 methods in cases of multiple inheritance.  The order
593 affects which method is called first in a tree, and if
594 @code{cl-call-next-method} is used, it controls the order in which the
595 stack of methods are run.
597 Valid values are:
599 @table @code
600 @item :breadth-first
601 Search for methods in the class hierarchy in breadth first order.
602 This is the default.
603 @item :depth-first
604 Search for methods in the class hierarchy in a depth first order.
605 @item :c3
606 Searches for methods in a linearized way that most closely matches
607 what CLOS does when a monotonic class structure is defined.
608 @end table
610 @xref{Method Invocation}, for more on method invocation order.
612 @item :metaclass
613 Unsupported CLOS option.  Enables the use of a different base class other
614 than @code{standard-class}.
616 @item :default-initargs
617 Unsupported CLOS option.  Specifies a list of initargs to be used when
618 creating new objects.  As far as I can tell, this duplicates the
619 function of @code{:initform}.
620 @end table
622 @xref{CLOS compatibility}, for more details on CLOS tags versus
623 @eieio{}-specific tags.
625 @node Making New Objects
626 @chapter Making New Objects
628 Suppose we have a simple class is defined, such as:
630 @example
631 (defclass record ()
632    ( ) "Doc String")
633 @end example
635 @noindent
636 It is now possible to create objects of that class type.
638 Calling @code{defclass} has defined two new functions.  One is the
639 constructor @var{record}, and the other is the predicate,
640 @var{record}-p.
642 @defun record object-name &rest slots
644 This creates and returns a new object.  This object is not assigned to
645 anything, and will be garbage collected if not saved.  This object
646 will be given the string name @var{object-name}.  There can be
647 multiple objects of the same name, but the name slot provides a handy
648 way to keep track of your objects.  @var{slots} is just all the slots
649 you wish to preset.  Any slot set as such @emph{will not} get its
650 default value, and any side effects from a slot's @code{:initform}
651 that may be a function will not occur.
653 An example pair would appear simply as @code{:value 1}.  Of course you
654 can do any valid Lispy thing you want with it, such as
655 @code{:value (if (boundp 'special-symbol) special-symbol nil)}
657 Example of creating an object from a class:
659 @example
660 (record :value 3 :reference nil)
661 @end example
663 @end defun
665 To create an object from a class symbol, use @code{make-instance}.
667 @defun make-instance class &rest initargs
668 @anchor{make-instance}
669 Make a new instance of @var{class} based on @var{initargs}.
670 @var{class} is a class symbol.  For example:
672 @example
673   (make-instance 'foo)
674 @end example
676   @var{initargs} is a property list with keywords based on the @code{:initarg}
677 for each slot.  For example:
679 @example
680   (make-instance @code{'foo} @code{:slot1} value1 @code{:slotN} valueN)
681 @end example
683 @end defun
685 @node Accessing Slots
686 @chapter Accessing Slots
688 There are several ways to access slot values in an object.  The naming
689 and argument-order conventions are similar to those used for
690 referencing vectors (@pxref{Vectors,,,elisp,GNU Emacs Lisp Reference
691 Manual}).
693 @defmac oset object slot value
694 This macro sets the value behind @var{slot} to @var{value} in
695 @var{object}.  It returns @var{value}.
696 @end defmac
698 @defmac oset-default class slot value
699 This macro sets the value for the class-allocated @var{slot} in @var{class} to
700 @var{value}.
702 For example, if a user wanted all @code{data-objects} (@pxref{Building
703 Classes}) to inform a special object of his own devising when they
704 changed, this can be arranged by simply executing this bit of code:
706 @example
707 (oset-default data-object reference (list my-special-object))
708 @end example
709 @end defmac
711 @defmac oref obj slot
712 @anchor{oref}
713 Retrieve the value stored in @var{obj} in the slot named by @var{slot}.
714 Slot is the name of the slot when created by @dfn{defclass}.
715 @end defmac
717 @defmac oref-default class slot
718 @anchor{oref-default}
719 Get the value of the class-allocated @var{slot} from @var{class}.
720 @end defmac
722 The following accessors are defined by CLOS to reference or modify
723 slot values, and use the previously mentioned set/ref routines.
725 @defun slot-value object slot
726 @anchor{slot-value}
727 This function retrieves the value of @var{slot} from @var{object}.
728 Unlike @code{oref}, the symbol for @var{slot} must be quoted.
729 @end defun
731 @defun set-slot-value object slot value
732 @anchor{set-slot-value}
733 This is not a CLOS function, but is the setter for @code{slot-value}
734 used by the @code{setf} macro.  This
735 function sets the value of @var{slot} from @var{object}.  Unlike
736 @code{oset}, the symbol for @var{slot} must be quoted.
737 @end defun
739 @defun slot-makeunbound object slot
740 This function unbinds @var{slot} in @var{object}.  Referencing an
741 unbound slot can signal an error.
742 @end defun
744 @defun object-add-to-list object slot item &optional append
745 @anchor{object-add-to-list}
746 In OBJECT's @var{slot}, add @var{item} to the list of elements.
747 Optional argument @var{append} indicates we need to append to the list.
748 If @var{item} already exists in the list in @var{slot}, then it is not added.
749 Comparison is done with @dfn{equal} through the @dfn{member} function call.
750 If @var{slot} is unbound, bind it to the list containing @var{item}.
751 @end defun
753 @defun object-remove-from-list object slot item
754 @anchor{object-remove-from-list}
755 In OBJECT's @var{slot}, remove occurrences of @var{item}.
756 Deletion is done with @dfn{delete}, which deletes by side effect
757 and comparisons are done with @dfn{equal}.
758 If @var{slot} is unbound, do nothing.
759 @end defun
761 @defun with-slots spec-list object &rest body
762 @anchor{with-slots}
763 Bind @var{spec-list} lexically to slot values in @var{object}, and execute @var{body}.
764 This establishes a lexical environment for referring to the slots in
765 the instance named by the given slot-names as though they were
766 variables.  Within such a context the value of the slot can be
767 specified by using its slot name, as if it were a lexically bound
768 variable.  Both @code{setf} and @code{setq} can be used to set the value of the
769 slot.
771 @var{spec-list} is of a form similar to @dfn{let}.  For example:
773 @example
774   ((VAR1 SLOT1)
775     SLOT2
776     SLOTN
777    (VARN+1 SLOTN+1))
778 @end example
780 Where each @var{var} is the local variable given to the associated
781 @var{slot}.  A slot specified without a variable name is given a
782 variable name of the same name as the slot.
784 @example
785 (defclass myclass () (x :initform 1))
786 (setq mc (make-instance 'myclass))
787 (with-slots (x) mc x)                      => 1
788 (with-slots ((something x)) mc something)  => 1
789 @end example
790 @end defun
792 @node Writing Methods
793 @chapter Writing Methods
795 Writing a method in @eieio{} is similar to writing a function.  The
796 differences are that there are some extra options and there can be
797 multiple definitions under the same function symbol.
799 Where a method defines an implementation for a particular data type, a
800 @dfn{generic method} accepts any argument, but contains no code.  It
801 is used to provide the dispatching to the defined methods.  A generic
802 method has no body, and is merely a symbol upon which methods are
803 attached.  It also provides the base documentation for what methods
804 with that name do.
806 @menu
807 * Generics::
808 * Methods::
809 * Static Methods::
810 @end menu
812 @node Generics
813 @section Generics
815 Each @eieio{} method has one corresponding generic.  This generic
816 provides a function binding and the base documentation for the method
817 symbol (@pxref{Symbol Components,,,elisp,GNU Emacs Lisp Reference
818 Manual}).
820 @defmac cl-defgeneric method arglist [doc-string]
821 This macro turns the (unquoted) symbol @var{method} into a function.
822 @var{arglist} is the default list of arguments to use (not implemented
823 yet).  @var{doc-string} is the documentation used for this symbol.
825 A generic function acts as a placeholder for methods.  There is no
826 need to call @code{cl-defgeneric} yourself, as @code{cl-defmethod} will call
827 it if necessary.  Currently the argument list is unused.
829 @code{cl-defgeneric} signals an error if you attempt to turn an existing
830 Emacs Lisp function into a generic function.
832 You can also create a generic method with @code{cl-defmethod}
833 (@pxref{Methods}).  When a method is created and there is no generic
834 method in place with that name, then a new generic will be created,
835 and the new method will use it.
836 @end defmac
838 In CLOS, a generic call also be used to provide an argument list and
839 dispatch precedence for all the arguments.  In @eieio{}, dispatching
840 only occurs for the first argument, so the @var{arglist} is not used.
842 @node Methods
843 @section Methods
845 A method is a function that is executed if the arguments passed
846 to it matches the method's specializers.  Different @eieio{} classes may
847 share the same method names.
849 Methods are created with the @code{cl-defmethod} macro, which is similar
850 to @code{defun}.
852 @defmac cl-defmethod method [:before | :around | :after ] arglist [doc-string] forms
854 @var{method} is the name of the function to create.
856 @code{:before}, @code{:around}, and @code{:after} specify execution order
857 (i.e., when this form is called).  If none of these symbols are present, the
858 method is said to be a @emph{primary}.
860 @var{arglist} is the list of arguments to this method.  The mandatory arguments
861 in this list may have a type specializer (see the example below) which means
862 that the method will only apply when those arguments match the given type
863 specializer.  An argument with no type specializer means that the method
864 applies regardless of its value.
866 @var{doc-string} is the documentation attached to the implementation.
867 All method doc-strings are incorporated into the generic method's
868 function documentation.
870 @var{forms} is the body of the function.
872 @end defmac
874 @noindent
875 In the following example, we create a method @code{mymethod} for the
876 @code{classname} class:
878 @example
879 (cl-defmethod mymethod ((obj classname) secondarg)
880   "Doc string" )
881 @end example
883 @noindent
884 This method only executes if the @var{obj} argument passed to it is an
885 @eieio{} object of class @code{classname}.
887 A method with no type specializer is a @dfn{default method}.  If a given
888 class has no implementation, then the default method is called when
889 that method is used on a given object of that class.
891 Only one method per combination of specializers and qualifiers (@code{:before},
892 @code{:around}, or @code{:after}) is kept.  If two @code{cl-defmethod}s appear
893 with the same specializers and the same qualifiers, then the second
894 implementation replaces the first.
896 When a method is called on an object, but there is no method specified
897 for that object, but there is a method specified for object's parent
898 class, the parent class's method is called.  If there is a method
899 defined for both, only the child's method is called.  A child method
900 may call a parent's method using @code{cl-call-next-method}, described
901 below.
903 If multiple methods and default methods are defined for the same
904 method and class, they are executed in this order:
906 @enumerate
907 @item :around methods
908 The most specific @code{:around} method is called first, which may invoke the
909 less specific ones via @code{cl-call-next-method}.  If it doesn't invoke
910 @code{cl-call-next-method}, then no other methods will be executed.  When there
911 are no more @code{:around} methods to call, falls through to run the other
912 (non-@code{:around}) methods.
913 @item :before methods
914 Called in sequence from most specific to least specific.
915 @item primary methods
916 The most specific method is called, which may invoke the less specific
917 ones via @code{cl-call-next-method}.
918 @item :after methods
919 Called in sequence from least specific to most specific.
920 @end enumerate
922 If no methods exist, Emacs signals a @code{cl-no-applicable-method} error.
923 @xref{Signals}.  If methods exist but none of them are primary, Emacs
924 signals a @code{cl-no-primary-method} error.  @xref{Signals}.
926 @defun cl-call-next-method &rest replacement-args
927 @anchor{cl-call-next-method}
929 This function calls the superclass method from a subclass method.
930 This is the ``next method'' specified in the current method list.
932 If @var{replacement-args} is non-@code{nil}, then use them instead of the
933 arguments originally provided to the method.
935 Can only be used from within the lexical body of a primary or around method.
936 @end defun
938 @defun cl-next-method-p
939 @anchor{cl-next-method-p}
940 Non-@code{nil} if there is a next method.
942 Can only be used from within the lexical body of a primary or around method.
943 @end defun
945 @node Static Methods
946 @section Static Methods
948 Static methods do not depend on an object instance, but instead
949 operate on a class.  You can create a static method by using
950 the @code{subclass} specializer with @code{cl-defmethod}:
952 @example
953 (cl-defmethod make-instance ((class (subclass mychild)) &rest args)
954   (let ((new (cl-call-next-method)))
955     (push new all-my-children)
956     new))
957 @end example
959 The first argument of a static method will be a class rather than an
960 object.  Use the functions @code{oref-default} or @code{oset-default} which
961 will work on a class.
963 A class's @code{make-instance} method is defined as a static
964 method.
966 @b{Note:} The @code{subclass} specializer is unique to @eieio{}.
968 @c TODO - Write some more about static methods here
970 @node Method Invocation
971 @chapter Method Invocation
973 When classes are defined, you can specify the
974 @code{:method-invocation-order}.  This is a feature specific to EIEIO.
976 This controls the order in which method resolution occurs for
977 methods in cases of multiple inheritance.  The order
978 affects which method is called first in a tree, and if
979 @code{cl-call-next-method} is used, it controls the order in which the
980 stack of methods are run.
982 The original EIEIO order turned out to be broken for multiple
983 inheritance, but some programs depended on it.  As such this option
984 was added when the default invocation order was fixed to something
985 that made more sense in that case.
987 Valid values are:
989 @table @code
990 @item :breadth-first
991 Search for methods in the class hierarchy in breadth first order.
992 This is the default.
993 @item :depth-first
994 Search for methods in the class hierarchy in a depth first order.
995 @item :c3
996 Searches for methods in a linearized way that most closely matches
997 what CLOS does when a monotonic class structure is defined.
999 This is derived from the Dylan language documents by
1000 Kim Barrett et al.: A Monotonic Superclass Linearization for Dylan
1001 Retrieved from: http://192.220.96.201/dylan/linearization-oopsla96.html
1002 @end table
1004 @node Predicates
1005 @chapter Predicates and Utilities
1007 Now that we know how to create classes, access slots, and define
1008 methods, it might be useful to verify that everything is doing ok.  To
1009 help with this a plethora of predicates have been created.
1011 @defun find-class symbol &optional errorp
1012 @anchor{find-class}
1013 Return the class that @var{symbol} represents.
1014 If there is no class, @code{nil} is returned if @var{errorp} is @code{nil}.
1015 If @var{errorp} is non-@code{nil}, @code{wrong-argument-type} is signaled.
1016 @end defun
1018 @defun class-p class
1019 @anchor{class-p}
1020 Return @code{t} if @var{class} is a valid class object.
1021 @var{class} is a symbol.
1022 @end defun
1024 @defun slot-exists-p object-or-class slot
1025 @anchor{slot-exists-p}
1026 Non-@code{nil} if @var{object-or-class} has @var{slot}.
1027 @end defun
1029 @defun slot-boundp object slot
1030 @anchor{slot-boundp}
1031 Non-@code{nil} if OBJECT's @var{slot} is bound.
1032 Setting a slot's value makes it bound.  Calling @dfn{slot-makeunbound} will
1033 make a slot unbound.
1034 @var{object} can be an instance or a class.
1035 @end defun
1037 @defun eieio-class-name class
1038 Return a string of the form @samp{#<class myclassname>} which should look
1039 similar to other Lisp objects like buffers and processes.  Printing a
1040 class results only in a symbol.
1041 @end defun
1043 @defun class-option class option
1044 Return the value in @var{CLASS} of a given @var{OPTION}.
1045 For example:
1047 @example
1048 (class-option eieio-default-superclass :documentation)
1049 @end example
1051 Will fetch the documentation string for @code{eieio-default-superclass}.
1052 @end defun
1054 @defun eieio-object-name obj
1055 Return a string of the form @samp{#<object-class myobjname>} for @var{obj}.
1056 This should look like Lisp symbols from other parts of Emacs such as
1057 buffers and processes, and is shorter and cleaner than printing the
1058 object's record.  It is more useful to use @code{object-print} to get
1059 and object's print form, as this allows the object to add extra display
1060 information into the symbol.
1061 @end defun
1063 @defun eieio-object-class obj
1064 Returns the class symbol from @var{obj}.
1065 @end defun
1067 @defun eieio-object-class-name obj
1068 Returns the symbol of @var{obj}'s class.
1069 @end defun
1071 @defun eieio-class-parents class
1072 Returns the direct parents class of @var{class}.  Returns @code{nil} if
1073 it is a superclass.
1074 @end defun
1076 @defun eieio-class-parents-fast class
1077 Just like @code{eieio-class-parents} except it is a macro and no type checking
1078 is performed.
1079 @end defun
1081 @defun eieio-class-parent class
1082 Deprecated function which returns the first parent of @var{class}.
1083 @end defun
1085 @defun eieio-class-children class
1086 Return the list of classes inheriting from @var{class}.
1087 @end defun
1089 @defun eieio-class-children-fast class
1090 Just like @code{eieio-class-children}, but with no checks.
1091 @end defun
1093 @defun same-class-p obj class
1094 Returns @code{t} if @var{obj}'s class is the same as @var{class}.
1095 @end defun
1097 @defun same-class-fast-p obj class
1098 Same as @code{same-class-p} except this is a macro and no type checking
1099 is performed.
1100 @end defun
1102 @defun object-of-class-p obj class
1103 Returns @code{t} if @var{obj} inherits anything from @var{class}.  This
1104 is different from @code{same-class-p} because it checks for inheritance.
1105 @end defun
1107 @defun child-of-class-p child class
1108 Returns @code{t} if @var{child} is a subclass of @var{class}.
1109 @end defun
1111 @defun generic-p method-symbol
1112 Returns @code{t} if @code{method-symbol} is a generic function, as
1113 opposed to a regular Emacs Lisp function.
1114 @end defun
1116 @node Association Lists
1117 @chapter Association Lists
1119 Lisp offers the concept of association lists, with primitives such as
1120 @code{assoc} used to access them.  The following functions can be used
1121 to manage association lists of @eieio{} objects:
1123 @defun object-assoc key slot list
1124 @anchor{object-assoc}
1125 Return an object if @var{key} is @dfn{equal} to SLOT's value of an object in @var{list}.
1126 @var{list} is a list of objects whose slots are searched.
1127 Objects in @var{list} do not need to have a slot named @var{slot}, nor does
1128 @var{slot} need to be bound.  If these errors occur, those objects will
1129 be ignored.
1130 @end defun
1133 @defun object-assoc-list slot list
1134 Return an association list generated by extracting @var{slot} from all
1135 objects in @var{list}.  For each element of @var{list} the @code{car} is
1136 the value of @var{slot}, and the @code{cdr} is the object it was
1137 extracted from.  This is useful for generating completion tables.
1138 @end defun
1140 @defun eieio-build-class-alist &optional base-class
1141 Returns an alist of all currently defined classes.  This alist is
1142 suitable for completion lists used by interactive functions to select a
1143 class.  The optional argument @var{base-class} allows the programmer to
1144 select only a subset of classes which includes @var{base-class} and
1145 all its subclasses.
1146 @end defun
1148 @node Customizing
1149 @chapter Customizing Objects
1151 @eieio{} supports the Custom facility through two new widget types.
1152 If a variable is declared as type @code{object}, then full editing of
1153 slots via the widgets is made possible.  This should be used
1154 carefully, however, because modified objects are cloned, so if there
1155 are other references to these objects, they will no longer be linked
1156 together.
1158 If you want in place editing of objects, use the following methods:
1160 @defun eieio-customize-object object
1161 Create a custom buffer and insert a widget for editing @var{object}.  At
1162 the end, an @code{Apply} and @code{Reset} button are available.  This
1163 will edit the object "in place" so references to it are also changed.
1164 There is no effort to prevent multiple edits of a singular object, so
1165 care must be taken by the user of this function.
1166 @end defun
1168 @defun eieio-custom-widget-insert object flags
1169 This method inserts an edit object into the current buffer in place.
1170 It is implemented as @code{(widget-create 'object-edit :value object)}.
1171 This method is provided as a locale for adding tracking, or
1172 specializing the widget insert procedure for any object.
1173 @end defun
1175 To define a slot with an object in it, use the @code{object} tag.  This
1176 widget type will be automatically converted to @code{object-edit} if you
1177 do in place editing of you object.
1179 If you want to have additional actions taken when a user clicks on the
1180 @code{Apply} button, then overload the method @code{eieio-done-customizing}.
1181 This method does nothing by default, but that may change in the future.
1182 This would be the best way to make your objects persistent when using
1183 in-place editing.
1185 @section Widget extension
1187 When widgets are being created, one new widget extension has been added,
1188 called the @code{:slotofchoices}.  When this occurs in a widget
1189 definition, all elements after it are removed, and the slot is specifies
1190 is queried and converted into a series of constants.
1192 @example
1193 (choice (const :tag "None" nil)
1194         :slotofchoices morestuff)
1195 @end example
1197 and if the slot @code{morestuff} contains @code{(sym1 sym2 sym3)}, the
1198 above example is converted into:
1200 @example
1201 (choice (const :tag "None" nil)
1202         (const sym1)
1203         (const sym2)
1204         (const sym3))
1205 @end example
1207 This is useful when a given item needs to be selected from a list of
1208 items defined in this second slot.
1210 @node Introspection
1211 @chapter Introspection
1213 Introspection permits a programmer to peek at the contents of a class
1214 without any previous knowledge of that class.  While @eieio{} implements
1215 objects on top of records, and thus everything is technically visible,
1216 some functions have been provided.  None of these functions are a part
1217 of CLOS.
1219 @defun object-slots obj
1220 Return the list of public slots for @var{obj}.
1221 @end defun
1223 @defun class-slot-initarg class slot
1224 For the given @var{class} return an :initarg associated with
1225 @var{slot}.  Not all slots have initargs, so the return value can be
1226 @code{nil}.
1227 @end defun
1229 @node Base Classes
1230 @chapter Base Classes
1232 All defined classes, if created with no specified parent class,
1233 inherit from a special class called @code{eieio-default-superclass}.
1234 @xref{Default Superclass}.
1236 Often, it is more convenient to inherit from one of the other base
1237 classes provided by @eieio{}, which have useful pre-defined
1238 properties.  (Since @eieio{} supports multiple inheritance, you can
1239 even inherit from more than one of these classes at once.)
1241 @menu
1242 * eieio-instance-inheritor::    Enable value inheritance between instances.
1243 * eieio-instance-tracker::      Enable self tracking instances.
1244 * eieio-singleton::             Only one instance of a given class.
1245 * eieio-persistent::            Enable persistence for a class.
1246 * eieio-named::                 Use the object name as a :name slot.
1247 * eieio-speedbar::              Enable speedbar support in your objects.
1248 @end menu
1250 @node eieio-instance-inheritor
1251 @section @code{eieio-instance-inheritor}
1253 This class is defined in the package @file{eieio-base}.
1255 Instance inheritance is a mechanism whereby the value of a slot in
1256 object instance can reference the parent instance.  If the parent's slot
1257 value is changed, then the child instance is also changed.  If the
1258 child's slot is set, then the parent's slot is not modified.
1260 @deftp {Class} eieio-instance-inheritor parent-instance
1261 A class whose instances are enabled with instance inheritance.
1262 The @var{parent-instance} slot indicates the instance which is
1263 considered the parent of the current instance.  Default is @code{nil}.
1264 @end deftp
1266 @cindex clone
1267 To use this class, inherit from it with your own class.
1268 To make a new instance that inherits from and existing instance of your
1269 class, use the @code{clone} method with additional parameters
1270 to specify local values.
1272 @cindex slot-unbound
1273 The @code{eieio-instance-inheritor} class works by causing cloned
1274 objects to have all slots unbound.  This class' @code{slot-unbound}
1275 method will cause references to unbound slots to be redirected to the
1276 parent instance.  If the parent slot is also unbound, then
1277 @code{slot-unbound} will signal an error named @code{slot-unbound}.
1279 @node eieio-instance-tracker
1280 @section @code{eieio-instance-tracker}
1282 This class is defined in the package @file{eieio-base}.
1284 Sometimes it is useful to keep a master list of all instances of a given
1285 class.  The class @code{eieio-instance-tracker} performs this task.
1287 @deftp {Class} eieio-instance-tracker tracker-symbol
1288 Enable instance tracking for this class.
1289 The slot @var{tracker-symbol} should be initialized in inheritors of
1290 this class to a symbol created with @code{defvar}.  This symbol will
1291 serve as the variable used as a master list of all objects of the given
1292 class.
1293 @end deftp
1295 @defmethod eieio-instance-tracker initialize-instance obj slot
1296 This method is defined as an @code{:after} method.
1297 It adds new instances to the master list.
1298 @end defmethod
1300 @defmethod eieio-instance-tracker delete-instance obj
1301 Remove @var{obj} from the master list of instances of this class.
1302 This may let the garbage collector nab this instance.
1303 @end defmethod
1305 @deffn eieio-instance-tracker-find key slot list-symbol
1306 This convenience function lets you find instances.  @var{key} is the
1307 value to search for.  @var{slot} is the slot to compare @var{KEY}
1308 against.  The function @code{equal} is used for comparison.
1309 The parameter @var{list-symbol} is the variable symbol which contains the
1310 list of objects to be searched.
1311 @end deffn
1313 @node eieio-singleton
1314 @section @code{eieio-singleton}
1316 This class is defined in the package @file{eieio-base}.
1318 @deftp {Class} eieio-singleton
1319 Inheriting from the singleton class will guarantee that there will
1320 only ever be one instance of this class.  Multiple calls to
1321 @code{make-instance} will always return the same object.
1322 @end deftp
1324 @node eieio-persistent
1325 @section @code{eieio-persistent}
1327 This class is defined in the package @file{eieio-base}.
1329 If you want an object, or set of objects to be persistent, meaning the
1330 slot values are important to keep saved between sessions, then you will
1331 want your top level object to inherit from @code{eieio-persistent}.
1333 To make sure your persistent object can be moved, make sure all file
1334 names stored to disk are made relative with
1335 @code{eieio-persistent-path-relative}.
1337 @deftp {Class} eieio-persistent file file-header-line
1338 Enables persistence for instances of this class.
1339 Slot @var{file} with initarg @code{:file} is the file name in which this
1340 object will be saved.
1341 Class allocated slot @var{file-header-line} is used with method
1342 @code{object-write} as a header comment.
1343 @end deftp
1345 All objects can write themselves to a file, but persistent objects have
1346 several additional methods that aid in maintaining them.
1348 @defmethod eieio-persistent eieio-persistent-save obj &optional file
1349 Write the object @var{obj} to its file.
1350 If optional argument @var{file} is specified, use that file name
1351 instead.
1352 @end defmethod
1354 @defmethod eieio-persistent eieio-persistent-path-relative obj file
1355 Return a file name derived from @var{file} which is relative to the
1356 stored location of @var{OBJ}.  This method should be used to convert
1357 file names so that they are relative to the save file, making any system
1358 of files movable from one location to another.
1359 @end defmethod
1361 @defmethod eieio-persistent object-write obj &optional comment
1362 Like @code{object-write} for @code{standard-object}, but will derive
1363 a header line comment from the class allocated slot if one is not
1364 provided.
1365 @end defmethod
1367 @defun eieio-persistent-read filename &optional class allow-subclass
1368 Read a persistent object from @var{filename}, and return it.
1369 Signal an error if the object in @var{FILENAME} is not a constructor
1370 for @var{CLASS}.  Optional @var{allow-subclass} says that it is ok for
1371 @code{eieio-persistent-read} to load in subclasses of class instead of
1372 being pedantic.
1373 @end defun
1375 @node eieio-named
1376 @section @code{eieio-named}
1378 This class is defined in the package @file{eieio-base}.
1380 @deftp {Class} eieio-named
1381 Object with a name.
1382 Name storage already occurs in an object.  This object provides get/set
1383 access to it.
1384 @end deftp
1386 @node eieio-speedbar
1387 @section @code{eieio-speedbar}
1389 This class is in package @file{eieio-speedbar}.
1391 If a series of class instances map to a tree structure, it is possible
1392 to cause your classes to be displayable in Speedbar.  @xref{Top,,,speedbar}.
1393 Inheriting from these classes will enable a speedbar major display mode
1394 with a minimum of effort.
1396 @deftp {Class} eieio-speedbar buttontype buttonface
1397 Enables base speedbar display for a class.
1398 @cindex speedbar-make-tag-line
1399 The slot @var{buttontype} is any of the symbols allowed by the
1400 function @code{speedbar-make-tag-line} for the @var{exp-button-type}
1401 argument @xref{Extending,,,speedbar}.
1402 The slot @var{buttonface} is the face to use for the text of the string
1403 displayed in speedbar.
1404 The slots @var{buttontype} and @var{buttonface} are class allocated
1405 slots, and do not take up space in your instances.
1406 @end deftp
1408 @deftp {Class} eieio-speedbar-directory-button buttontype buttonface
1409 This class inherits from @code{eieio-speedbar} and initializes
1410 @var{buttontype} and @var{buttonface} to appear as directory level lines.
1411 @end deftp
1413 @deftp {Class} eieio-speedbar-file-button buttontype buttonface
1414 This class inherits from @code{eieio-speedbar} and initializes
1415 @var{buttontype} and @var{buttonface} to appear as file level lines.
1416 @end deftp
1418 To use these classes, inherit from one of them in you class.  You can
1419 use multiple inheritance with them safely.  To customize your class for
1420 speedbar display, override the default values for @var{buttontype} and
1421 @var{buttonface} to get the desired effects.
1423 Useful methods to define for your new class include:
1425 @defmethod eieio-speedbar eieio-speedbar-derive-line-path obj depth
1426 Return a string representing a directory associated with an instance
1427 of @var{obj}.  @var{depth} can be used to index how many levels of
1428 indentation have been opened by the user where @var{obj} is shown.
1429 @end defmethod
1432 @defmethod eieio-speedbar eieio-speedbar-description obj
1433 Return a string description of @var{OBJ}.
1434 This is shown in the minibuffer or tooltip when the mouse hovers over
1435 this instance in speedbar.
1436 @end defmethod
1438 @defmethod eieio-speedbar eieio-speedbar-child-description obj
1439 Return a string representing a description of a child node of @var{obj}
1440 when that child is not an object.  It is often useful to just use
1441 item info helper functions such as @code{speedbar-item-info-file-helper}.
1442 @end defmethod
1444 @defmethod eieio-speedbar eieio-speedbar-object-buttonname obj
1445 Return a string which is the text displayed in speedbar for @var{obj}.
1446 @end defmethod
1448 @defmethod eieio-speedbar eieio-speedbar-object-children obj
1449 Return a list of children of @var{obj}.
1450 @end defmethod
1452 @defmethod eieio-speedbar eieio-speedbar-child-make-tag-lines obj depth
1453 This method inserts a list of speedbar tag lines for @var{obj} to
1454 represent its children.  Implement this method for your class
1455 if your children are not objects themselves.  You still need to
1456 implement @code{eieio-speedbar-object-children}.
1458 In this method, use techniques specified in the Speedbar manual.
1459 @xref{Extending,,,speedbar}.
1460 @end defmethod
1462 Some other functions you will need to learn to use are:
1464 @deffn eieio-speedbar-create make-map key-map menu name toplevelfn
1465 Register your object display mode with speedbar.
1466 @var{make-map} is a function which initialized you keymap.
1467 @var{key-map} is a symbol you keymap is installed into.
1468 @var{menu} is an easy menu vector representing menu items specific to your
1469 object display.
1470 @var{name} is a short string to use as a name identifying you mode.
1471 @var{toplevelfn} is a function called which must return a list of
1472 objects representing those in the instance system you wish to browse in
1473 speedbar.
1475 Read the Extending chapter in the speedbar manual for more information
1476 on how speedbar modes work
1477 @xref{Extending,,,speedbar}.
1478 @end deffn
1480 @node Browsing
1481 @chapter Browsing class trees
1483 The command @kbd{M-x eieio-browse} displays a buffer listing all the
1484 currently loaded classes in Emacs.  The classes are listed in an
1485 indented tree structure, starting from @code{eieio-default-superclass}
1486 (@pxref{Default Superclass}).
1488 With a prefix argument, this command prompts for a class name; it then
1489 lists only that class and its subclasses.
1491 Here is a sample tree from our current example:
1493 @example
1494 eieio-default-superclass
1495   +--data-object
1496        +--data-object-symbol
1497 @end example
1499 Note: new classes are consed into the inheritance lists, so the tree
1500 comes out upside-down.
1502 @node Class Values
1503 @chapter Class Values
1505 You can use the normal @code{describe-function} command to retrieve
1506 information about a class.  Running it on constructors will show a
1507 full description of the generated class.  If you call it on a generic
1508 function, all implementations of that generic function will be listed,
1509 together with links through which you can directly jump to the source.
1511 @node Default Superclass
1512 @chapter Default Superclass
1514 All defined classes, if created with no specified parent class, will
1515 inherit from a special class stored in
1516 @code{eieio-default-superclass}.  This superclass is quite simple, but
1517 with it, certain default methods or attributes can be added to all
1518 objects.  In CLOS, this would be named @code{STANDARD-CLASS}, and that
1519 symbol is an alias to @code{eieio-default-superclass}.
1521 Currently, the default superclass is defined as follows:
1523 @example
1524 (defclass eieio-default-superclass nil
1525   nil
1526   "Default parent class for classes with no specified parent class.
1527 Its slots are automatically adopted by classes with no specified
1528 parents.  This class is not stored in the `parent' slot of a class object."
1529   :abstract t)
1530 @end example
1532 The default superclass implements several methods providing a default
1533 behavior for all objects created by @eieio{}.
1535 @menu
1536 * Initialization::      How objects are initialized
1537 * Basic Methods::       Clone, print, and write
1538 * Signal Handling::     Methods for managing signals.
1539 @end menu
1541 @node Initialization
1542 @section Initialization
1544 When creating an object of any type, you can use its constructor, or
1545 @code{make-instance}.  This, in turns calls the method
1546 @code{initialize-instance}, which then calls the method
1547 @code{shared-initialize}.
1549 These methods are all implemented on the default superclass so you do
1550 not need to write them yourself, unless you need to override one of
1551 their behaviors.
1553 Users should not need to call @code{initialize-instance} or
1554 @code{shared-initialize}, as these are used by @code{make-instance} to
1555 initialize the object.  They are instead provided so that users can
1556 augment these behaviors.
1558 @defun initialize-instance obj &rest slots
1559 Initialize @var{obj}.  Sets slots of @var{obj} with @var{slots} which
1560 is a list of name/value pairs.  These are actually just passed to
1561 @code{shared-initialize}.
1562 @end defun
1564 @defun shared-initialize obj &rest slots
1565 Sets slots of @var{obj} with @var{slots} which is a list of name/value
1566 pairs.
1568 This is called from the default constructor.
1569 @end defun
1571 @node Basic Methods
1572 @section Basic Methods
1574 Additional useful methods defined on the base subclass are:
1576 @defun clone obj &rest params
1577 @anchor{clone}
1578 Make a copy of @var{obj}, and then apply @var{params}.
1579 @var{params} is a parameter list of the same form as @var{initialize-instance}
1580 which are applied to change the object.  When overloading @dfn{clone}, be
1581 sure to call @dfn{cl-call-next-method} first and modify the returned object.
1582 @end defun
1584 @defun object-print this &rest strings
1585 @anchor{object-print}
1586 Pretty printer for object @var{this}.  Call function @dfn{eieio-object-name} with @var{strings}.
1587 The default method for printing object @var{this} is to use the
1588 function @dfn{eieio-object-name}.
1590 It is sometimes useful to put a summary of the object into the
1591 default #<notation> string when using eieio browsing tools.
1593 Implement this function and specify @var{strings} in a call to
1594 @dfn{cl-call-next-method} to provide additional summary information.
1595 When passing in extra strings from child classes, always remember
1596 to prepend a space.
1598 @example
1599 (defclass data-object ()
1600    (value)
1601    "Object containing one data slot.")
1603 (cl-defmethod object-print ((this data-object) &optional strings)
1604   "Return a string with a summary of the data object as part of the name."
1605   (apply #'cl-call-next-method this
1606          (format " value: %s" (render this))
1607          strings))
1608 @end example
1610 Here is what some output could look like:
1611 @example
1612 (object-print test-object)
1613    => #<data-object test-object value: 3>
1614 @end example
1615 @end defun
1617 @defun object-write obj &optional comment
1618 Write @var{obj} onto a stream in a readable fashion.  The resulting
1619 output will be Lisp code which can be used with @code{read} and
1620 @code{eval} to recover the object.  Only slots with @code{:initarg}s
1621 are written to the stream.
1622 @end defun
1624 @node Signal Handling
1625 @section Signal Handling
1627 The default superclass defines methods for managing error conditions.
1628 These methods all throw a signal for a particular error condition.
1630 By implementing one of these methods for a class, you can change the
1631 behavior that occurs during one of these error cases, or even ignore
1632 the error by providing some behavior.
1634 @defun slot-missing object slot-name operation &optional new-value
1635 @anchor{slot-missing}
1636 Method invoked when an attempt to access a slot in @var{object} fails.
1637 @var{slot-name} is the name of the failed slot, @var{operation} is the type of access
1638 that was requested, and optional @var{new-value} is the value that was desired
1639 to be set.
1641 This method is called from @code{oref}, @code{oset}, and other functions which
1642 directly reference slots in EIEIO objects.
1644 The default method signals an error of type @code{invalid-slot-name}.
1645 @xref{Signals}.
1647 You may override this behavior, but it is not expected to return in the
1648 current implementation.
1650 This function takes arguments in a different order than in CLOS.
1651 @end defun
1653 @defun slot-unbound object class slot-name fn
1654 @anchor{slot-unbound}
1655 Slot unbound is invoked during an attempt to reference an unbound slot.
1656 @var{object} is the instance of the object being reference.  @var{class} is the
1657 class of @var{object}, and @var{slot-name} is the offending slot.  This function
1658 throws the signal @code{unbound-slot}.  You can overload this function and
1659 return the value to use in place of the unbound value.
1660 Argument @var{fn} is the function signaling this error.
1661 Use @dfn{slot-boundp} to determine if a slot is bound or not.
1663 In @var{clos}, the argument list is (@var{class} @var{object} @var{slot-name}), but
1664 @var{eieio} can only dispatch on the first argument, so the first two are swapped.
1665 @end defun
1667 @defun cl-no-applicable-method generic &rest args
1668 @anchor{cl-no-applicable-method}
1669 Called if there are no methods applicable for @var{args} in the generic
1670 function @var{generic}.
1671 @var{args} are the arguments that were passed to @var{generic}.
1673 Implement this for a class to block this signal.  The return
1674 value becomes the return value of the original method call.
1675 @end defun
1677 @defun cl-no-primary-method generic &rest args
1678 @anchor{cl-no-primary-method}
1679 Called if there are methods applicable for @var{args} in the generic
1680 function @var{generic} but they are all qualified.
1681 @var{args} are the arguments that were passed to @var{generic}.
1683 Implement this for a class to block this signal.  The return
1684 value becomes the return value of the original method call.
1685 @end defun
1687 @defun cl-no-next-method generic method &rest args
1688 @anchor{cl-no-next-method}
1689 Called from @dfn{cl-call-next-method} when no additional methods are available.
1690 @var{generic} is the generic function being called on
1691 @dfn{cl-call-next-method}, @var{method} is the method where
1692 @dfn{cl-call-next-method} was called, and
1693 @var{args} are the arguments it is called by.
1694 This method signals @dfn{cl-no-next-method} by default.  Override this
1695 method to not throw an error, and its return value becomes the
1696 return value of @dfn{cl-call-next-method}.
1697 @end defun
1699 @node Signals
1700 @chapter Signals
1702 There are new condition names (signals) that can be caught when using
1703 @eieio{}.
1705 @deffn Signal invalid-slot-name obj-or-class slot
1706 This signal is called when an attempt to reference a slot in an
1707 @var{obj-or-class} is made, and the @var{slot} is not defined for
1709 @end deffn
1711 @deffn Signal cl-no-applicable-method generic arguments
1712 This signal is called when @var{generic} is called, with @var{arguments}
1713 and nothing is resolved.  This occurs when @var{generic} has been
1714 defined, but the arguments make it impossible for @eieio{} to determine
1715 which method body to run.
1717 To prevent this signal from occurring in your class, implement the
1718 method @code{cl-no-applicable-method} for your class.  This method is
1719 called when to throw this signal, so implementing this for your class
1720 allows you block the signal, and perform some work.
1721 @end deffn
1723 @deffn Signal cl-no-primary-method generic arguments
1724 Like @code{cl-no-applicable-method} but applies when there are some applicable
1725 methods, but none of them are primary.  You can similarly block it by
1726 implementing a @code{cl-no-primary-method} method.
1727 @end deffn
1729 @deffn Signal cl-no-next-method class arguments
1730 This signal is called if the function @code{cl-call-next-method} is called
1731 and there is no next method to be called.
1733 Overload the method @code{cl-no-next-method} to protect against this signal.
1734 @end deffn
1736 @deffn Signal invalid-slot-type slot spec value
1737 This signal is called when an attempt to set @var{slot} is made, and
1738 @var{value} doesn't match the specified type @var{spec}.
1740 In @eieio{}, this is also used if a slot specifier has an invalid value
1741 during a @code{defclass}.
1742 @end deffn
1744 @deffn Signal unbound-slot object class slot
1745 This signal is called when an attempt to reference @var{slot} in
1746 @var{object} is made, and that instance is currently unbound.
1747 @end deffn
1749 @node Naming Conventions
1750 @chapter Naming Conventions
1752 @xref{Tips,,Tips and Conventions,elisp,GNU Emacs Lisp Reference
1753 Manual}, for a description of Emacs Lisp programming conventions.
1754 These conventions help ensure that Emacs packages work nicely one
1755 another, so an @eieio{}-based program should follow them.  Here are
1756 some conventions that apply specifically to @eieio{}-based programs:
1758 @itemize
1760 @item Come up with a package prefix that is relatively short.  Prefix
1761 all classes, and methods with your prefix.  This is a standard
1762 convention for functions and variables in Emacs.
1764 @item Do not prefix method names with the class name.  All methods in
1765 @eieio{} are ``virtual'', and are dynamically dispatched.  Anyone can
1766 override your methods at any time.  Your methods should be prefixed
1767 with your package name.
1769 @item Do not prefix slots in your class.  The slots are always locally
1770 scoped to your class, and need no prefixing.
1772 @item If your library inherits from other libraries of classes, you
1773 must ``require'' that library with the @code{require} command.
1775 @end itemize
1777 @node CLOS compatibility
1778 @chapter CLOS compatibility
1780 Currently, the following functions should behave almost as expected from
1781 CLOS.
1783 @table @code
1785 @item defclass
1786 All slot keywords are available but not all work correctly.
1787 Slot keyword differences are:
1789 @table @asis
1791 @item :reader, and :writer tags
1792 Create methods that signal errors instead of creating an unqualified
1793 method.  You can still create new ones to do its business.
1795 @item :accessor
1796 This should create an unqualified method to access a slot, but
1797 instead pre-builds a method that gets the slot's value.
1799 @item :type
1800 Specifier uses the @code{typep} function from the @file{cl}
1801 package.  @xref{Type Predicates,,,cl,Common Lisp Extensions}.
1802 It therefore has the same issues as that package.  Extensions include
1803 the ability to provide object names.
1804 @end table
1806 defclass also supports class options, but does not currently use values
1807 of @code{:metaclass}, and @code{:default-initargs}.
1809 @item make-instance
1810 Make instance works as expected, however it just uses the @eieio{} instance
1811 creator automatically generated when a new class is created.
1812 @xref{Making New Objects}.
1814 @item cl-defgeneric
1815 Creates the desired symbol, and accepts most of the expected arguments of
1816 CLOS's @code{defgeneric}.
1818 @item cl-defmethod
1819 Accepts most of the expected arguments of CLOS's @code{defmethod}.  To type
1820 cast against a class, the class must exist before @code{cl-defmethod}
1821 is called.
1823 @item cl-call-next-method
1824 Works just like CLOS's @code{call-next-method}.
1825 @end table
1827 CLOS supports the @code{describe} command, but @eieio{} provides
1828 support for using the standard @code{describe-function} command on a
1829 constructor or generic function.
1831 When creating a new class (@pxref{Building Classes}) there are several
1832 new keywords supported by @eieio{}.
1834 In @eieio{} tags are in lower case, not mixed case.
1836 @node Wish List
1837 @chapter Wish List
1839 @eieio{} is an incomplete implementation of CLOS@.  Finding ways to
1840 improve the compatibility would help make CLOS style programs run
1841 better in Emacs.
1843 Some important compatibility features that would be good to add are:
1845 @enumerate
1846 @item
1847 Support for metaclasses.
1848 @item
1849 Improve integration with the @file{cl} package.
1850 @end enumerate
1852 There are also improvements to be made to allow @eieio{} to operate
1853 better in the Emacs environment.
1855 @enumerate
1856 @item
1857 Allow subclassing of Emacs built-in types, such as faces, markers, and
1858 buffers.
1859 @item
1860 Allow method overloading of method-like functions in Emacs.
1861 @end enumerate
1863 @node GNU Free Documentation License
1864 @appendix GNU Free Documentation License
1865 @include doclicense.texi
1867 @node Function Index
1868 @unnumbered Function Index
1870 @printindex fn
1872 @contents
1873 @bye