Fix imenu--sort-by-position for non-pairs parameters (bug#26457)
[emacs.git] / lisp / emacs-lisp / eieio.el
blobe21d46e52895f49eb9b73aba3af2a7d071a6127e
1 ;;; eieio.el --- Enhanced Implementation of Emacs Interpreted Objects -*- lexical-binding:t -*-
2 ;;; or maybe Eric's Implementation of Emacs Interpreted Objects
4 ;; Copyright (C) 1995-1996, 1998-2017 Free Software Foundation, Inc.
6 ;; Author: Eric M. Ludlam <zappo@gnu.org>
7 ;; Version: 1.4
8 ;; Keywords: OO, lisp
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software: you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation, either version 3 of the License, or
15 ;; (at your option) any later version.
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
25 ;;; Commentary:
27 ;; EIEIO is a series of Lisp routines which implements a subset of
28 ;; CLOS, the Common Lisp Object System. In addition, EIEIO also adds
29 ;; a few new features which help it integrate more strongly with the
30 ;; Emacs running environment.
32 ;; See eieio.texi for complete documentation on using this package.
34 ;; Note: the implementation of the c3 algorithm is based on:
35 ;; Kim Barrett et al.: A Monotonic Superclass Linearization for Dylan
36 ;; Retrieved from:
37 ;; http://192.220.96.201/dylan/linearization-oopsla96.html
39 ;; @TODO - fix :initform to be a form, not a quoted value
40 ;; @TODO - Prefix non-clos functions with `eieio-'.
42 ;; TODO: better integrate CL's defstructs and classes. E.g. make it possible
43 ;; to create a new class that inherits from a struct.
45 ;;; Code:
47 (defvar eieio-version "1.4"
48 "Current version of EIEIO.")
50 (defun eieio-version ()
51 "Display the current version of EIEIO."
52 (interactive)
53 (message eieio-version))
55 (require 'eieio-core)
58 ;;; Defining a new class
60 (defmacro defclass (name superclasses slots &rest options-and-doc)
61 "Define NAME as a new class derived from SUPERCLASS with SLOTS.
62 OPTIONS-AND-DOC is used as the class' options and base documentation.
63 SUPERCLASSES is a list of superclasses to inherit from, with SLOTS
64 being the slots residing in that class definition. Supported tags are:
66 :initform - Initializing form.
67 :initarg - Tag used during initialization.
68 :accessor - Tag used to create a function to access this slot.
69 :allocation - Specify where the value is stored.
70 Defaults to `:instance', but could also be `:class'.
71 :writer - A function symbol which will `write' an object's slot.
72 :reader - A function symbol which will `read' an object.
73 :type - The type of data allowed in this slot (see `typep').
74 :documentation
75 - A string documenting use of this slot.
77 The following are extensions on CLOS:
78 :custom - When customizing an object, the custom :type. Public only.
79 :label - A text string label used for a slot when customizing.
80 :group - Name of a customization group this slot belongs in.
81 :printer - A function to call to print the value of a slot.
82 See `eieio-override-prin1' as an example.
84 A class can also have optional options. These options happen in place
85 of documentation (including a :documentation tag), in addition to
86 documentation, or not at all. Supported options are:
88 :documentation - The doc-string used for this class.
90 Options added to EIEIO:
92 :allow-nil-initform - Non-nil to skip typechecking of null initforms.
93 :custom-groups - List of custom group names. Organizes slots into
94 reasonable groups for customizations.
95 :abstract - Non-nil to prevent instances of this class.
96 If a string, use as an error string if someone does
97 try to make an instance.
98 :method-invocation-order
99 - Control the method invocation order if there is
100 multiple inheritance. Valid values are:
101 :breadth-first - The default.
102 :depth-first
104 Options in CLOS not supported in EIEIO:
106 :metaclass - Class to use in place of `standard-class'
107 :default-initargs - Initargs to use when initializing new objects of
108 this class.
110 Due to the way class options are set up, you can add any tags you wish,
111 and reference them using the function `class-option'."
112 (declare (doc-string 4))
113 (cl-check-type superclasses list)
115 (cond ((and (stringp (car options-and-doc))
116 (/= 1 (% (length options-and-doc) 2)))
117 (error "Too many arguments to `defclass'"))
118 ((and (symbolp (car options-and-doc))
119 (/= 0 (% (length options-and-doc) 2)))
120 (error "Too many arguments to `defclass'")))
122 (if (stringp (car options-and-doc))
123 (setq options-and-doc
124 (cons :documentation options-and-doc)))
126 ;; Make sure the method invocation order is a valid value.
127 (let ((io (eieio--class-option-assoc options-and-doc
128 :method-invocation-order)))
129 (when (and io (not (member io '(:depth-first :breadth-first :c3))))
130 (error "Method invocation order %s is not allowed" io)))
132 (let ((testsym1 (intern (concat (symbol-name name) "-p")))
133 (testsym2 (intern (format "%s--eieio-childp" name)))
134 (accessors ()))
136 ;; Collect the accessors we need to define.
137 (pcase-dolist (`(,sname . ,soptions) slots)
138 (let* ((acces (plist-get soptions :accessor))
139 (initarg (plist-get soptions :initarg))
140 (reader (plist-get soptions :reader))
141 (writer (plist-get soptions :writer))
142 (alloc (plist-get soptions :allocation))
143 (label (plist-get soptions :label)))
145 ;; Update eieio--known-slot-names already in case we compile code which
146 ;; uses this before the class is loaded.
147 (cl-pushnew sname eieio--known-slot-names)
149 (if eieio-error-unsupported-class-tags
150 (let ((tmp soptions))
151 (while tmp
152 (if (not (member (car tmp) '(:accessor
153 :initform
154 :initarg
155 :documentation
156 :protection
157 :reader
158 :writer
159 :allocation
160 :type
161 :custom
162 :label
163 :group
164 :printer
165 :allow-nil-initform
166 :custom-groups)))
167 (signal 'invalid-slot-type (list (car tmp))))
168 (setq tmp (cdr (cdr tmp))))))
170 ;; Make sure the :allocation parameter has a valid value.
171 (if (not (memq alloc '(nil :class :instance)))
172 (signal 'invalid-slot-type (list :allocation alloc)))
174 ;; Label is nil, or a string
175 (if (not (or (null label) (stringp label)))
176 (signal 'invalid-slot-type (list :label label)))
178 ;; Is there an initarg, but allocation of class?
179 (if (and initarg (eq alloc :class))
180 (message "Class allocated slots do not need :initarg"))
182 ;; Anyone can have an accessor function. This creates a function
183 ;; of the specified name, and also performs a `defsetf' if applicable
184 ;; so that users can `setf' the space returned by this function.
185 (when acces
186 (push `(cl-defmethod (setf ,acces) (value (this ,name))
187 (eieio-oset this ',sname value))
188 accessors)
189 (push `(cl-defmethod ,acces ((this ,name))
190 ,(format
191 "Retrieve the slot `%S' from an object of class `%S'."
192 sname name)
193 ;; FIXME: Why is this different from the :reader case?
194 (if (slot-boundp this ',sname) (eieio-oref this ',sname)))
195 accessors)
196 (when (and eieio-backward-compatibility (eq alloc :class))
197 ;; FIXME: How could I declare this *method* as obsolete.
198 (push `(cl-defmethod ,acces ((this (subclass ,name)))
199 ,(format
200 "Retrieve the class slot `%S' from a class `%S'.
201 This method is obsolete."
202 sname name)
203 (if (slot-boundp this ',sname)
204 (eieio-oref-default this ',sname)))
205 accessors)))
207 ;; If a writer is defined, then create a generic method of that
208 ;; name whose purpose is to set the value of the slot.
209 (if writer
210 (push `(cl-defmethod ,writer ((this ,name) value)
211 ,(format "Set the slot `%S' of an object of class `%S'."
212 sname name)
213 (setf (slot-value this ',sname) value))
214 accessors))
215 ;; If a reader is defined, then create a generic method
216 ;; of that name whose purpose is to access this slot value.
217 (if reader
218 (push `(cl-defmethod ,reader ((this ,name))
219 ,(format "Access the slot `%S' from object of class `%S'."
220 sname name)
221 (slot-value this ',sname))
222 accessors))
225 `(progn
226 ;; This test must be created right away so we can have self-
227 ;; referencing classes. ei, a class whose slot can contain only
228 ;; pointers to itself.
230 ;; Create the test functions.
231 (defalias ',testsym1 (eieio-make-class-predicate ',name))
232 (defalias ',testsym2 (eieio-make-child-predicate ',name))
234 ,@(when eieio-backward-compatibility
235 (let ((f (intern (format "%s-child-p" name))))
236 `((defalias ',f ',testsym2)
237 (make-obsolete
238 ',f ,(format "use (cl-typep ... '%s) instead" name)
239 "25.1"))))
241 ;; When using typep, (typep OBJ 'myclass) returns t for objects which
242 ;; are subclasses of myclass. For our predicates, however, it is
243 ;; important for EIEIO to be backwards compatible, where
244 ;; myobject-p, and myobject-child-p are different.
245 ;; "cl" uses this technique to specify symbols with specific typep
246 ;; test, so we can let typep have the CLOS documented behavior
247 ;; while keeping our above predicate clean.
249 (put ',name 'cl-deftype-satisfies #',testsym2)
251 (eieio-defclass-internal ',name ',superclasses ',slots ',options-and-doc)
253 ,@accessors
255 ;; Create the constructor function
256 ,(if (eieio--class-option-assoc options-and-doc :abstract)
257 ;; Abstract classes cannot be instantiated. Say so.
258 (let ((abs (eieio--class-option-assoc options-and-doc :abstract)))
259 (if (not (stringp abs))
260 (setq abs (format "Class %s is abstract" name)))
261 `(defun ,name (&rest _)
262 ,(format "You cannot create a new object of type `%S'." name)
263 (error ,abs)))
265 ;; Non-abstract classes need a constructor.
266 `(defun ,name (&rest slots)
267 ,(format "Create a new object of class type `%S'." name)
268 (declare (compiler-macro
269 (lambda (whole)
270 (if (not (stringp (car slots)))
271 whole
272 (macroexp--warn-and-return
273 (format "Obsolete name arg %S to constructor %S"
274 (car slots) (car whole))
275 ;; Keep the name arg, for backward compatibility,
276 ;; but hide it so we don't trigger indefinitely.
277 `(,(car whole) (identity ,(car slots))
278 ,@(cdr slots)))))))
279 (apply #'make-instance ',name slots))))))
282 ;;; Get/Set slots in an object.
284 (defmacro oref (obj slot)
285 "Retrieve the value stored in OBJ in the slot named by SLOT.
286 Slot is the name of the slot when created by `defclass' or the label
287 created by the :initarg tag."
288 (declare (debug (form symbolp)))
289 `(eieio-oref ,obj (quote ,slot)))
291 (defalias 'slot-value 'eieio-oref)
292 (defalias 'set-slot-value 'eieio-oset)
293 (make-obsolete 'set-slot-value "use (setf (slot-value ..) ..) instead" "25.1")
295 (defmacro oref-default (obj slot)
296 "Get the default value of OBJ (maybe a class) for SLOT.
297 The default value is the value installed in a class with the :initform
298 tag. SLOT can be the slot name, or the tag specified by the :initarg
299 tag in the `defclass' call."
300 (declare (debug (form symbolp)))
301 `(eieio-oref-default ,obj (quote ,slot)))
303 ;;; Handy CLOS macros
305 (defmacro with-slots (spec-list object &rest body)
306 "Bind SPEC-LIST lexically to slot values in OBJECT, and execute BODY.
307 This establishes a lexical environment for referring to the slots in
308 the instance named by the given slot-names as though they were
309 variables. Within such a context the value of the slot can be
310 specified by using its slot name, as if it were a lexically bound
311 variable. Both setf and setq can be used to set the value of the
312 slot.
314 SPEC-LIST is of a form similar to `let'. For example:
316 ((VAR1 SLOT1)
317 SLOT2
318 SLOTN
319 (VARN+1 SLOTN+1))
321 Where each VAR is the local variable given to the associated
322 SLOT. A slot specified without a variable name is given a
323 variable name of the same name as the slot."
324 (declare (indent 2) (debug (sexp sexp def-body)))
325 (require 'cl-lib)
326 ;; Transform the spec-list into a cl-symbol-macrolet spec-list.
327 (macroexp-let2 nil object object
328 `(cl-symbol-macrolet
329 ,(mapcar (lambda (entry)
330 (let ((var (if (listp entry) (car entry) entry))
331 (slot (if (listp entry) (cadr entry) entry)))
332 (list var `(slot-value ,object ',slot))))
333 spec-list)
334 ,@body)))
336 ;; Keep it as a non-inlined function, so the internals of object don't get
337 ;; hard-coded in random .elc files.
338 (defun eieio-pcase-slot-index-table (obj)
339 "Return some data structure from which can be extracted the slot offset."
340 (eieio--class-index-table (eieio--object-class obj)))
342 (defun eieio-pcase-slot-index-from-index-table (index-table slot)
343 "Find the index to pass to `aref' to access SLOT."
344 (let ((index (gethash slot index-table)))
345 (if index (+ (eval-when-compile eieio--object-num-slots)
346 index))))
348 (pcase-defmacro eieio (&rest fields)
349 "Pcase patterns to match EIEIO objects.
350 Elements of FIELDS can be of the form (NAME PAT) in which case the contents of
351 field NAME is matched against PAT, or they can be of the form NAME which
352 is a shorthand for (NAME NAME)."
353 (declare (debug (&rest [&or (sexp pcase-PAT) sexp])))
354 (let ((is (make-symbol "table")))
355 ;; FIXME: This generates a horrendous mess of redundant let bindings.
356 ;; `pcase' needs to be improved somehow to introduce let-bindings more
357 ;; sparingly, or the byte-compiler needs to be taught to optimize
358 ;; them away.
359 ;; FIXME: `pcase' does not do a good job here of sharing tests&code among
360 ;; various branches.
361 `(and (pred eieio-object-p)
362 (app eieio-pcase-slot-index-table ,is)
363 ,@(mapcar (lambda (field)
364 (let* ((name (if (consp field) (car field) field))
365 (pat (if (consp field) (cadr field) field))
366 (i (make-symbol "index")))
367 `(and (let (and ,i (pred natnump))
368 (eieio-pcase-slot-index-from-index-table
369 ,is ',name))
370 (app (pcase--flip aref ,i) ,pat))))
371 fields))))
373 ;;; Simple generators, and query functions. None of these would do
374 ;; well embedded into an object.
377 (define-obsolete-function-alias
378 'object-class-fast #'eieio-object-class "24.4")
380 (cl-defgeneric eieio-object-name-string (obj)
381 "Return a string which is OBJ's name."
382 (declare (obsolete eieio-named "25.1")))
384 (defun eieio-object-name (obj &optional extra)
385 "Return a printed representation for object OBJ.
386 If EXTRA, include that in the string returned to represent the symbol."
387 (cl-check-type obj eieio-object)
388 (format "#<%s %s%s>" (eieio-object-class obj)
389 (eieio-object-name-string obj) (or extra "")))
390 (define-obsolete-function-alias 'object-name #'eieio-object-name "24.4")
392 (defconst eieio--object-names (make-hash-table :test #'eq :weakness 'key))
394 ;; In the past, every EIEIO object had a `name' field, so we had the two method
395 ;; below "for free". Since this field is very rarely used, we got rid of it
396 ;; and instead we keep it in a weak hash-tables, for those very rare objects
397 ;; that use it.
398 (cl-defmethod eieio-object-name-string (obj)
399 (or (gethash obj eieio--object-names)
400 (symbol-name (eieio-object-class obj))))
401 (define-obsolete-function-alias
402 'object-name-string #'eieio-object-name-string "24.4")
404 (cl-defmethod eieio-object-set-name-string (obj name)
405 "Set the string which is OBJ's NAME."
406 (declare (obsolete eieio-named "25.1"))
407 (cl-check-type name string)
408 (setf (gethash obj eieio--object-names) name))
409 (define-obsolete-function-alias
410 'object-set-name-string 'eieio-object-set-name-string "24.4")
412 (defun eieio-object-class (obj)
413 "Return the class struct defining OBJ."
414 ;; FIXME: We say we return a "struct" but we return a symbol instead!
415 (cl-check-type obj eieio-object)
416 (eieio--class-name (eieio--object-class obj)))
417 (define-obsolete-function-alias 'object-class #'eieio-object-class "24.4")
418 ;; CLOS name, maybe?
419 (define-obsolete-function-alias 'class-of #'eieio-object-class "24.4")
421 (defun eieio-object-class-name (obj)
422 "Return a Lisp like symbol name for OBJ's class."
423 (cl-check-type obj eieio-object)
424 (eieio-class-name (eieio--object-class obj)))
425 (define-obsolete-function-alias
426 'object-class-name 'eieio-object-class-name "24.4")
428 (defun eieio-class-parents (class)
429 "Return parent classes to CLASS. (overload of variable).
431 The CLOS function `class-direct-superclasses' is aliased to this function."
432 (eieio--class-parents (eieio--class-object class)))
434 (define-obsolete-function-alias 'class-parents #'eieio-class-parents "24.4")
436 (defun eieio-class-children (class)
437 "Return child classes to CLASS.
438 The CLOS function `class-direct-subclasses' is aliased to this function."
439 (cl-check-type class class)
440 (eieio--class-children (cl--find-class class)))
441 (define-obsolete-function-alias
442 'class-children #'eieio-class-children "24.4")
444 ;; Official CLOS functions.
445 (define-obsolete-function-alias
446 'class-direct-superclasses #'eieio-class-parents "24.4")
447 (define-obsolete-function-alias
448 'class-direct-subclasses #'eieio-class-children "24.4")
450 (defmacro eieio-class-parent (class)
451 "Return first parent class to CLASS. (overload of variable)."
452 `(car (eieio-class-parents ,class)))
453 (define-obsolete-function-alias 'class-parent 'eieio-class-parent "24.4")
455 (defun same-class-p (obj class)
456 "Return t if OBJ is of class-type CLASS."
457 (setq class (eieio--class-object class))
458 (cl-check-type class eieio--class)
459 (cl-check-type obj eieio-object)
460 (eq (eieio--object-class obj) class))
462 (defun object-of-class-p (obj class)
463 "Return non-nil if OBJ is an instance of CLASS or CLASS' subclasses."
464 (cl-check-type obj eieio-object)
465 ;; class will be checked one layer down
466 (child-of-class-p (eieio--object-class obj) class))
467 ;; Backwards compatibility
468 (defalias 'obj-of-class-p 'object-of-class-p)
470 (defun child-of-class-p (child class)
471 "Return non-nil if CHILD class is a subclass of CLASS."
472 (setq child (eieio--class-object child))
473 (cl-check-type child eieio--class)
474 ;; `eieio-default-superclass' is never mentioned in eieio--class-parents,
475 ;; so we have to special case it here.
476 (or (eq class 'eieio-default-superclass)
477 (let ((p nil))
478 (setq class (eieio--class-object class))
479 (cl-check-type class eieio--class)
480 (while (and child (not (eq child class)))
481 (setq p (append p (eieio--class-parents child))
482 child (pop p)))
483 (if child t))))
485 (defun eieio-slot-descriptor-name (slot)
486 (cl--slot-descriptor-name slot))
488 (defun eieio-class-slots (class)
489 "Return list of slots available in instances of CLASS."
490 ;; FIXME: This only gives the instance slots and ignores the
491 ;; class-allocated slots.
492 (setq class (eieio--class-object class))
493 (cl-check-type class eieio--class)
494 (mapcar #'identity (eieio--class-slots class)))
496 (defun object-slots (obj)
497 "Return list of slot names available in OBJ."
498 (declare (obsolete eieio-class-slots "25.1"))
499 (cl-check-type obj eieio-object)
500 (mapcar #'cl--slot-descriptor-name
501 (eieio-class-slots (eieio--object-class obj))))
503 (defun eieio--class-slot-initarg (class slot)
504 "Fetch from CLASS, SLOT's :initarg."
505 (cl-check-type class eieio--class)
506 (let ((ia (eieio--class-initarg-tuples class))
507 (f nil))
508 (while (and ia (not f))
509 (if (eq (cdr (car ia)) slot)
510 (setq f (car (car ia))))
511 (setq ia (cdr ia)))
514 ;;; Object Set macros
516 (defmacro oset (obj slot value)
517 "Set the value in OBJ for slot SLOT to VALUE.
518 SLOT is the slot name as specified in `defclass' or the tag created
519 with in the :initarg slot. VALUE can be any Lisp object."
520 (declare (debug (form symbolp form)))
521 `(eieio-oset ,obj (quote ,slot) ,value))
523 (defmacro oset-default (class slot value)
524 "Set the default slot in CLASS for SLOT to VALUE.
525 The default value is usually set with the :initform tag during class
526 creation. This allows users to change the default behavior of classes
527 after they are created."
528 (declare (debug (form symbolp form)))
529 `(eieio-oset-default ,class (quote ,slot) ,value))
531 ;;; CLOS queries into classes and slots
533 (defun slot-boundp (object slot)
534 "Return non-nil if OBJECT's SLOT is bound.
535 Setting a slot's value makes it bound. Calling `slot-makeunbound' will
536 make a slot unbound.
537 OBJECT can be an instance or a class."
538 ;; Skip typechecking while retrieving this value.
539 (let ((eieio-skip-typecheck t))
540 ;; Return nil if the magic symbol is in there.
541 (not (eq (cond
542 ((eieio-object-p object) (eieio-oref object slot))
543 ((symbolp object) (eieio-oref-default object slot))
544 (t (signal 'wrong-type-argument (list 'eieio-object-p object))))
545 eieio-unbound))))
547 (defun slot-makeunbound (object slot)
548 "In OBJECT, make SLOT unbound."
549 (eieio-oset object slot eieio-unbound))
551 (defun slot-exists-p (object-or-class slot)
552 "Return non-nil if OBJECT-OR-CLASS has SLOT."
553 (let ((cv (cond ((eieio-object-p object-or-class)
554 (eieio--object-class object-or-class))
555 ((eieio--class-p object-or-class) object-or-class)
556 (t (find-class object-or-class 'error)))))
557 (or (gethash slot (eieio--class-index-table cv))
558 ;; FIXME: We could speed this up by adding class slots into the
559 ;; index-table (e.g. with a negative index?).
560 (let ((cs (eieio--class-class-slots cv))
561 found)
562 (dotimes (i (length cs))
563 (if (eq slot (cl--slot-descriptor-name (aref cs i)))
564 (setq found t)))
565 found))))
567 (defun find-class (symbol &optional errorp)
568 "Return the class that SYMBOL represents.
569 If there is no class, nil is returned if ERRORP is nil.
570 If ERRORP is non-nil, `wrong-argument-type' is signaled."
571 (let ((class (cl--find-class symbol)))
572 (cond
573 ((eieio--class-p class) class)
574 (errorp (signal 'wrong-type-argument (list 'class-p symbol))))))
576 ;;; Slightly more complex utility functions for objects
578 (defun object-assoc (key slot list)
579 "Return an object if KEY is `equal' to SLOT's value of an object in LIST.
580 LIST is a list of objects whose slots are searched.
581 Objects in LIST do not need to have a slot named SLOT, nor does
582 SLOT need to be bound. If these errors occur, those objects will
583 be ignored."
584 (cl-check-type list list)
585 (while (and list (not (condition-case nil
586 ;; This prevents errors for missing slots.
587 (equal key (eieio-oref (car list) slot))
588 (error nil))))
589 (setq list (cdr list)))
590 (car list))
592 (defun object-assoc-list (slot list)
593 "Return an association list with the contents of SLOT as the key element.
594 LIST must be a list of objects with SLOT in it.
595 This is useful when you need to do completing read on an object group."
596 (cl-check-type list list)
597 (let ((assoclist nil))
598 (while list
599 (setq assoclist (cons (cons (eieio-oref (car list) slot)
600 (car list))
601 assoclist))
602 (setq list (cdr list)))
603 (nreverse assoclist)))
605 (defun object-assoc-list-safe (slot list)
606 "Return an association list with the contents of SLOT as the key element.
607 LIST must be a list of objects, but those objects do not need to have
608 SLOT in it. If it does not, then that element is left out of the association
609 list."
610 (cl-check-type list list)
611 (let ((assoclist nil))
612 (while list
613 (if (slot-exists-p (car list) slot)
614 (setq assoclist (cons (cons (eieio-oref (car list) slot)
615 (car list))
616 assoclist)))
617 (setq list (cdr list)))
618 (nreverse assoclist)))
620 (defun object-add-to-list (object slot item &optional append)
621 "In OBJECT's SLOT, add ITEM to the list of elements.
622 Optional argument APPEND indicates we need to append to the list.
623 If ITEM already exists in the list in SLOT, then it is not added.
624 Comparison is done with `equal' through the `member' function call.
625 If SLOT is unbound, bind it to the list containing ITEM."
626 (let (ov)
627 ;; Find the originating list.
628 (if (not (slot-boundp object slot))
629 (setq ov (list item))
630 (setq ov (eieio-oref object slot))
631 ;; turn it into a list.
632 (unless (listp ov)
633 (setq ov (list ov)))
634 ;; Do the combination
635 (if (not (member item ov))
636 (setq ov
637 (if append
638 (append ov (list item))
639 (cons item ov)))))
640 ;; Set back into the slot.
641 (eieio-oset object slot ov)))
643 (defun object-remove-from-list (object slot item)
644 "In OBJECT's SLOT, remove occurrences of ITEM.
645 Deletion is done with `delete', which deletes by side effect,
646 and comparisons are done with `equal'.
647 If SLOT is unbound, do nothing."
648 (if (not (slot-boundp object slot))
650 (eieio-oset object slot (delete item (eieio-oref object slot)))))
652 ;;; Here are some CLOS items that need the CL package
655 ;; FIXME: Shouldn't this be a more complex gv-expander which extracts the
656 ;; common code between oref and oset, so as to reduce the redundant work done
657 ;; in (push foo (oref bar baz)), like we do for the `nth' expander?
658 (gv-define-simple-setter eieio-oref eieio-oset)
662 ;; We want all objects created by EIEIO to have some default set of
663 ;; behaviors so we can create object utilities, and allow various
664 ;; types of error checking. To do this, create the default EIEIO
665 ;; class, and when no parent class is specified, use this as the
666 ;; default. (But don't store it in the other classes as the default,
667 ;; allowing for transparent support.)
670 (defclass eieio-default-superclass nil
672 "Default parent class for classes with no specified parent class.
673 Its slots are automatically adopted by classes with no specified parents.
674 This class is not stored in the `parent' slot of a class vector."
675 :abstract t)
677 (setq eieio-default-superclass (cl--find-class 'eieio-default-superclass))
679 (define-obsolete-function-alias 'standard-class
680 'eieio-default-superclass "26.1")
682 (cl-defgeneric make-instance (class &rest initargs)
683 "Make a new instance of CLASS based on INITARGS.
684 For example:
686 (make-instance \\='foo)
688 INITARGS is a property list with keywords based on the `:initarg'
689 for each slot. For example:
691 (make-instance \\='foo :slot1 value1 :slotN valueN)")
693 (define-obsolete-function-alias 'constructor #'make-instance "25.1")
695 (cl-defmethod make-instance
696 ((class (subclass eieio-default-superclass)) &rest slots)
697 "Default constructor for CLASS `eieio-default-superclass'.
698 SLOTS are the initialization slots used by `initialize-instance'.
699 This static method is called when an object is constructed.
700 It allocates the vector used to represent an EIEIO object, and then
701 calls `initialize-instance' on that object."
702 (let* ((new-object (copy-sequence (eieio--class-default-object-cache
703 (eieio--class-object class)))))
704 (if (and slots
705 (let ((x (car slots)))
706 (or (stringp x) (null x))))
707 (funcall (if eieio-backward-compatibility #'ignore #'message)
708 "Obsolete name %S passed to %S constructor"
709 (pop slots) class))
710 ;; Call the initialize method on the new object with the slots
711 ;; that were passed down to us.
712 (initialize-instance new-object slots)
713 ;; Return the created object.
714 new-object))
716 ;; FIXME: CLOS uses "&rest INITARGS" instead.
717 (cl-defgeneric shared-initialize (obj slots)
718 "Set slots of OBJ with SLOTS which is a list of name/value pairs.
719 Called from the constructor routine.")
721 (cl-defmethod shared-initialize ((obj eieio-default-superclass) slots)
722 "Set slots of OBJ with SLOTS which is a list of name/value pairs.
723 Called from the constructor routine."
724 (while slots
725 (let ((rn (eieio--initarg-to-attribute (eieio--object-class obj)
726 (car slots))))
727 (if (not rn)
728 (slot-missing obj (car slots) 'oset (car (cdr slots)))
729 (eieio-oset obj rn (car (cdr slots)))))
730 (setq slots (cdr (cdr slots)))))
732 ;; FIXME: CLOS uses "&rest INITARGS" instead.
733 (cl-defgeneric initialize-instance (this &optional slots)
734 "Construct the new object THIS based on SLOTS.")
736 (cl-defmethod initialize-instance ((this eieio-default-superclass)
737 &optional slots)
738 "Construct the new object THIS based on SLOTS.
739 SLOTS is a tagged list where odd numbered elements are tags, and
740 even numbered elements are the values to store in the tagged slot.
741 If you overload the `initialize-instance', there you will need to
742 call `shared-initialize' yourself, or you can call `call-next-method'
743 to have this constructor called automatically. If these steps are
744 not taken, then new objects of your class will not have their values
745 dynamically set from SLOTS."
746 ;; First, see if any of our defaults are `lambda', and
747 ;; re-evaluate them and apply the value to our slots.
748 (let* ((this-class (eieio--object-class this))
749 (slots (eieio--class-slots this-class)))
750 (dotimes (i (length slots))
751 ;; For each slot, see if we need to evaluate it.
753 ;; Paul Landes said in an email:
754 ;; > CL evaluates it if it can, and otherwise, leaves it as
755 ;; > the quoted thing as you already have. This is by the
756 ;; > Sonya E. Keene book and other things I've look at on the
757 ;; > web.
758 (let* ((slot (aref slots i))
759 (initform (cl--slot-descriptor-initform slot))
760 (dflt (eieio-default-eval-maybe initform)))
761 (when (not (eq dflt initform))
762 ;; FIXME: We should be able to just do (aset this (+ i <cst>) dflt)!
763 (eieio-oset this (cl--slot-descriptor-name slot) dflt)))))
764 ;; Shared initialize will parse our slots for us.
765 (shared-initialize this slots))
767 (cl-defgeneric slot-missing (object slot-name _operation &optional _new-value)
768 "Method invoked when an attempt to access a slot in OBJECT fails.
769 SLOT-NAME is the name of the failed slot, OPERATION is the type of access
770 that was requested, and optional NEW-VALUE is the value that was desired
771 to be set.
773 This method is called from `oref', `oset', and other functions which
774 directly reference slots in EIEIO objects."
775 (signal 'invalid-slot-name
776 (list (if (eieio-object-p object) (eieio-object-name object) object)
777 slot-name)))
779 (cl-defgeneric slot-unbound (object class slot-name fn)
780 "Slot unbound is invoked during an attempt to reference an unbound slot.")
782 (cl-defmethod slot-unbound ((object eieio-default-superclass)
783 class slot-name fn)
784 "Slot unbound is invoked during an attempt to reference an unbound slot.
785 OBJECT is the instance of the object being reference. CLASS is the
786 class of OBJECT, and SLOT-NAME is the offending slot. This function
787 throws the signal `unbound-slot'. You can overload this function and
788 return the value to use in place of the unbound value.
789 Argument FN is the function signaling this error.
790 Use `slot-boundp' to determine if a slot is bound or not.
792 In CLOS, the argument list is (CLASS OBJECT SLOT-NAME), but
793 EIEIO can only dispatch on the first argument, so the first two are swapped."
794 (signal 'unbound-slot (list (eieio-class-name class)
795 (eieio-object-name object)
796 slot-name fn)))
798 (cl-defgeneric clone (obj &rest params)
799 "Make a copy of OBJ, and then supply PARAMS.
800 PARAMS is a parameter list of the same form used by `initialize-instance'.
802 When overloading `clone', be sure to call `call-next-method'
803 first and modify the returned object.")
805 (cl-defmethod clone ((obj eieio-default-superclass) &rest params)
806 "Make a copy of OBJ, and then apply PARAMS."
807 (let ((nobj (copy-sequence obj)))
808 (if (stringp (car params))
809 (funcall (if eieio-backward-compatibility #'ignore #'message)
810 "Obsolete name %S passed to clone" (pop params)))
811 (if params (shared-initialize nobj params))
812 nobj))
814 (cl-defgeneric destructor (_this &rest _params)
815 "Destructor for cleaning up any dynamic links to our object."
816 (declare (obsolete nil "26.1"))
817 ;; No cleanup... yet.
818 nil)
820 (cl-defgeneric object-print (this &rest _strings)
821 "Pretty printer for object THIS.
823 It is sometimes useful to put a summary of the object into the
824 default #<notation> string when using EIEIO browsing tools.
825 Implement this method to customize the summary."
826 (declare (obsolete cl-print-object "26.1"))
827 (format "%S" this))
829 (cl-defmethod object-print ((this eieio-default-superclass) &rest strings)
830 "Pretty printer for object THIS. Call function `object-name' with STRINGS.
831 The default method for printing object THIS is to use the
832 function `object-name'.
834 It is sometimes useful to put a summary of the object into the
835 default #<notation> string when using EIEIO browsing tools.
837 Implement this function and specify STRINGS in a call to
838 `call-next-method' to provide additional summary information.
839 When passing in extra strings from child classes, always remember
840 to prepend a space."
841 (eieio-object-name this (apply #'concat strings)))
844 (cl-defmethod cl-print-object ((object eieio-default-superclass) stream)
845 "Default printer for EIEIO objects."
846 ;; Fallback to the old `object-print'.
847 (princ (object-print object) stream))
849 (defvar eieio-print-depth 0
850 "When printing, keep track of the current indentation depth.")
852 (cl-defgeneric object-write (this &optional comment)
853 "Write out object THIS to the current stream.
854 Optional COMMENT will add comments to the beginning of the output.")
856 (cl-defmethod object-write ((this eieio-default-superclass) &optional comment)
857 "Write object THIS out to the current stream.
858 This writes out the vector version of this object. Complex and recursive
859 object are discouraged from being written.
860 If optional COMMENT is non-nil, include comments when outputting
861 this object."
862 (when comment
863 (princ ";; Object ")
864 (princ (eieio-object-name-string this))
865 (princ "\n")
866 (princ comment)
867 (princ "\n"))
868 (let* ((cl (eieio-object-class this))
869 (cv (cl--find-class cl)))
870 ;; Now output readable lisp to recreate this object
871 ;; It should look like this:
872 ;; (<constructor> <name> <slot> <slot> ... )
873 ;; Each slot's slot is writen using its :writer.
874 (princ (make-string (* eieio-print-depth 2) ? ))
875 (princ "(")
876 (princ (symbol-name (eieio--class-constructor (eieio-object-class this))))
877 (princ " ")
878 (prin1 (eieio-object-name-string this))
879 (princ "\n")
880 ;; Loop over all the public slots
881 (let ((slots (eieio--class-slots cv))
882 (eieio-print-depth (1+ eieio-print-depth)))
883 (dotimes (i (length slots))
884 (let ((slot (aref slots i)))
885 (when (slot-boundp this (cl--slot-descriptor-name slot))
886 (let ((i (eieio--class-slot-initarg
887 cv (cl--slot-descriptor-name slot)))
888 (v (eieio-oref this (cl--slot-descriptor-name slot))))
889 (unless (or (not i) (equal v (cl--slot-descriptor-initform slot)))
890 (unless (bolp)
891 (princ "\n"))
892 (princ (make-string (* eieio-print-depth 2) ? ))
893 (princ (symbol-name i))
894 (if (alist-get :printer (cl--slot-descriptor-props slot))
895 ;; Use our public printer
896 (progn
897 (princ " ")
898 (funcall (alist-get :printer
899 (cl--slot-descriptor-props slot))
901 ;; Use our generic override prin1 function.
902 (princ (if (or (eieio-object-p v)
903 (eieio-object-p (car-safe v)))
904 "\n" " "))
905 (eieio-override-prin1 v))))))))
906 (princ ")")
907 (when (= eieio-print-depth 0)
908 (princ "\n"))))
910 (defun eieio-override-prin1 (thing)
911 "Perform a `prin1' on THING taking advantage of object knowledge."
912 (cond ((eieio-object-p thing)
913 (object-write thing))
914 ((consp thing)
915 (eieio-list-prin1 thing))
916 ((eieio--class-p thing)
917 (princ (eieio--class-print-name thing)))
918 (t (prin1 thing))))
920 (defun eieio-list-prin1 (list)
921 "Display LIST where list may contain objects."
922 (if (not (eieio-object-p (car list)))
923 (progn
924 (princ "'")
925 (prin1 list))
926 (princ (make-string (* eieio-print-depth 2) ? ))
927 (princ "(list")
928 (let ((eieio-print-depth (1+ eieio-print-depth)))
929 (while list
930 (princ "\n")
931 (if (eieio-object-p (car list))
932 (object-write (car list))
933 (princ (make-string (* eieio-print-depth 2) ? ))
934 (eieio-override-prin1 (car list)))
935 (setq list (cdr list))))
936 (princ ")")))
939 ;;; Unimplemented functions from CLOS
941 (defun eieio-change-class (_obj _class)
942 "Change the class of OBJ to type CLASS.
943 This may create or delete slots, but does not affect the return value
944 of `eq'."
945 (error "EIEIO: `change-class' is unimplemented"))
946 (define-obsolete-function-alias 'change-class 'eieio-change-class "26.1")
948 ;; Hook ourselves into help system for describing classes and methods.
949 ;; FIXME: This is not actually needed any more since we can click on the
950 ;; hyperlink from the constructor's docstring to see the type definition.
951 (add-hook 'help-fns-describe-function-functions 'eieio-help-constructor)
953 (provide 'eieio)
955 ;;; eieio ends here