chiark / gitweb /
src/method-impl.lisp: Initialize `suppliedp' flags properly.
[sod] / src / class-layout-proto.lisp
CommitLineData
dea4d055
MW
1;;; -*-lisp-*-
2;;;
3;;; Class layout protocol
4;;;
5;;; (c) 2009 Straylight/Edgeware
6;;;
7
8;;;----- Licensing notice ---------------------------------------------------
9;;;
e0808c47 10;;; This file is part of the Sensible Object Design, an object system for C.
dea4d055
MW
11;;;
12;;; SOD 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 2 of the License, or
15;;; (at your option) any later version.
16;;;
17;;; SOD 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.
21;;;
22;;; You should have received a copy of the GNU General Public License
23;;; along with SOD; if not, write to the Free Software Foundation,
24;;; Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25
26(cl:in-package #:sod)
27
28;;;--------------------------------------------------------------------------
29;;; Effective slot objects.
30
31(export '(effective-slot effective-slot-class
32 effective-slot-direct-slot effective-slot-initializer))
33(defclass effective-slot ()
1645e433 34 ((%class :initarg :class :type sod-class :reader effective-slot-class)
dea4d055
MW
35 (slot :initarg :slot :type sod-slot :reader effective-slot-direct-slot)
36 (initializer :initarg :initializer :type (or sod-initializer null)
b2983f35
MW
37 :reader effective-slot-initializer)
38 (initargs :initarg :initargs :initform nil
39 :type list :reader effective-slot-initargs))
dea4d055
MW
40 (:documentation
41 "Describes a slot and how it's meant to be initialized.
42
43 Specifically, an effective slot object states that in an instance of
44 CLASS, a particular SLOT is initializd by a particular INITIALIZER. Note
45 that the CLASS is a subclass of the SLOT's defining class, and not
46 necessarily the same.
47
48 Effective slot objects are usually found in `islots' objects."))
49
50(export 'find-slot-initializer)
51(defgeneric find-slot-initializer (class slot)
52 (:documentation
53 "Return the most specific initializer for SLOT, starting from CLASS."))
54
b2983f35
MW
55(export 'find-slot-initargs)
56(defgeneric find-slot-initargs (class slot)
57 (:documentation
58 "Return as a list all of the initargs defined on CLASS to initialize SLOT.
59
60 The list is returned with initargs defined on more specific classes
61 first."))
62
dea4d055
MW
63(export 'compute-effective-slot)
64(defgeneric compute-effective-slot (class slot)
65 (:documentation
66 "Construct an effective slot from the supplied direct slot.
67
68 SLOT is a direct slot defined on CLASS or one of its superclasses.
69 (Metaclass initializers are handled using a different mechanism.)"))
70
71;;;--------------------------------------------------------------------------
72;;; Instance layout.
73
74;;; islots
75
76(export '(islots islots-class islots-subclass islots-slots))
77(defclass islots ()
4b8e5c03 78 ((%class :initarg :class :type sod-class :reader islots-class)
dea4d055
MW
79 (subclass :initarg :subclass :type sod-class :reader islots-subclass)
80 (slots :initarg :slots :type list :reader islots-slots))
81 (:documentation
82 "Contains effective slot definitions for a class's direct slots.
83
84 In detail: SLOTS is a list of effective slot objects corresponding to
85 CLASS's direct slots, and containing initializers computed relative to
86 SUBCLASS."))
87
88(export 'compute-islots)
89(defgeneric compute-islots (class subclass)
90 (:documentation
91 "Return `islots' for a particular CLASS and SUBCLASS.
92
93 Initializers for the slots should be taken from the most specific
94 superclass of SUBCLASS."))
95
96;;; vtable-pointer
97
98(export '(vtable-pointer vtable-pointer-class
99 vtable-pointer-chain-head vtable-pointer-chain-tail))
100(defclass vtable-pointer ()
4b8e5c03 101 ((%class :initarg :class :type sod-class :reader vtable-pointer-class)
dea4d055
MW
102 (chain-head :initarg :chain-head :type sod-class
103 :reader vtable-pointer-chain-head)
104 (chain-tail :initarg :chain-tail :type sod-class
105 :reader vtable-pointer-chain-tail))
106 (:documentation
107 "Represents a pointer to a class's vtable.
108
109 There's one of these for each of CLASS's chains. This particular one
110 belongs to the chain headed by CHAIN-HEAD; the most specific superclass of
111 CLASS on that chain is CHAIN-TAIL. (The tail is useful because we can --
112 and do -- use structure types defined by the tail class for non-primary
113 chains.)"))
114
115;;; ichain
116
117(export '(ichain ichain-class ichain-head ichain-tail ichain-body))
118(defclass ichain ()
4b8e5c03 119 ((%class :initarg :class :type sod-class :reader ichain-class)
dea4d055
MW
120 (chain-head :initarg :chain-head :type sod-class :reader ichain-head)
121 (chain-tail :initarg :chain-tail :type sod-class :reader ichain-tail)
122 (body :initarg :body :type list :reader ichain-body))
123 (:documentation
124 "Contains instance data for a particular chain of superclasses.
125
126 In detail: describes instance data for one of CLASS's chains, specifically
127 the chain headed by CHAIN-HEAD. The CHAIN-TAIL is the most specific
128 superclass of CLASS on the chain in question. The BODY is a list of
129 layout objects to be included.
130
131 An `ilayout' object maintains a list of `ichain' objects, one for each of
132 a class's chains."))
133
134(export 'compute-ichain)
135(defgeneric compute-ichain (class chain)
136 (:documentation
137 "Return an ICHAIN for a particular CHAIN of CLASS's superclasses.
138
139 The CHAIN is a list of classes, with the least specific first -- so the
140 chain head is the first element."))
141
142;;; ilayout
143
144(export '(ilayout ilayout-class ilayout-ichains))
145(defclass ilayout ()
4b8e5c03 146 ((%class :initarg :class :type sod-class :reader ilayout-class)
dea4d055
MW
147 (ichains :initarg :ichains :type list :reader ilayout-ichains))
148 (:documentation
149 "All of the instance layout for a class.
150
151 Describes the layout of an instance of CLASS. The list ICHAINS contains
152 an `ichain' object for each chain of CLASS."))
153
154(export 'compute-ilayout)
155(defgeneric compute-ilayout (class)
156 (:documentation
157 "Compute and return an instance layout for CLASS."))
158
159;;;--------------------------------------------------------------------------
160;;; Vtable layout.
161
162;;; vtmsgs
163
7f2917d2
MW
164(export '(vtmsgs vtmsgs-class vtmsgs-subclass
165 vtmsgs-chain-head vtmsgs-chain-tail vtmsgs-entries))
dea4d055 166(defclass vtmsgs ()
4b8e5c03 167 ((%class :initarg :class :type sod-class :reader vtmsgs-class)
dea4d055
MW
168 (subclass :initarg :subclass :type sod-class :reader vtmsgs-subclass)
169 (chain-head :initarg :chain-head :type sod-class
170 :reader vtmsgs-chain-head)
171 (chain-tail :initarg :chain-tail :type sod-class
172 :reader vtmsgs-chain-tail)
173 (entries :initarg :entries :type list :reader vtmsgs-entries))
174 (:documentation
175 "The message dispatch table for a particular class.
176
177 In detail, this lists the `method-entry' objects for the messages defined
178 by a particular CLASS, where the effective methods are specialized for the
179 SUBCLASS; the method entries adjust the instance pointer argument
180 appropriately for a call via the vtable for the chain headed by
181 CHAIN-HEAD. The CHAIN-TAIL is the most specific superclass of SUBCLASS on
182 this chain. The ENTRIES are a list of `method-entry' objects."))
183
93348ae9 184(export 'compute-vtmsgs)
dea4d055
MW
185(defgeneric compute-vtmsgs (class subclass chain-head chain-tail)
186 (:documentation
2aa51854 187 "Return a `vtmsgs' object containing method entries for CLASS.
dea4d055
MW
188
189 The CHAIN-HEAD describes which chain the method entries should be
190 constructed for.
191
2aa51854
MW
192 The default method simply calls `make-method-entry' for each of the
193 methods and wraps a `vtmsgs' object around them. This ought to be enough
194 for almost all purposes."))
dea4d055
MW
195
196;;; class-pointer
197
198(export '(class-pointer class-pointer-class class-pointer-chain-head
199 class-pointer-metaclass class-pointer-meta-chain-head))
200(defclass class-pointer ()
4b8e5c03 201 ((%class :initarg :class :type sod-class :reader class-pointer-class)
dea4d055
MW
202 (chain-head :initarg :chain-head :type sod-class
203 :reader class-pointer-chain-head)
204 (metaclass :initarg :metaclass :type sod-class
205 :reader class-pointer-metaclass)
206 (meta-chain-head :initarg :meta-chain-head :type sod-class
207 :reader class-pointer-meta-chain-head))
208 (:documentation
209 "Represents a pointer to a class object for the instance's class.
210
211 This is somewhat complicated because there are two degrees of freedom. An
212 instance of `class-pointer' is a pointer from a vtable to an `ichain' of
5608b1af 213 the the class's metaclass instance. In particular, a `class-pointer'
dea4d055
MW
214 instance represents a pointer in a vtable constructed for CLASS and
215 attached to the chain headed by CHAIN-HEAD; it points to an instance of
216 METACLASS, and specifically to the `ichain' substructure corresponding to
217 the chain headed by META-CHAIN-HEAD, which will be a superclass of
218 METACLASS.
219
220 I'm sorry if this is confusing."))
221
222(export 'make-class-pointer)
223(defgeneric make-class-pointer (class chain-head metaclass meta-chain-head)
224 (:documentation
225 "Return a class pointer to a metaclass chain."))
226
227;;; base-offset
228
229(export '(base-offset base-offset-class base-offset-chain-head))
230(defclass base-offset ()
4b8e5c03 231 ((%class :initarg :class :type sod-class :reader base-offset-class)
dea4d055
MW
232 (chain-head :initarg :chain-head :type sod-class
233 :reader base-offset-chain-head))
234 (:documentation
235 "The offset of this chain to the `ilayout' base.
236
237 We're generating a vtable for CLASS, attached to the chain headed by
238 CHAIN-HEAD. Fortunately (and unlike `class-pointer'), the chain head can
239 do double duty, since it also identifies the `ichain' substructure of the
240 class's `ilayout' whose offset we're interested in."))
241
242(export 'make-base-offset)
243(defgeneric make-base-offset (class chain-head)
244 (:documentation
245 "Return the base offset object for CHAIN-HEAD ichain."))
246
247;;; chain-offset
248
249(export '(chain-offset chain-offset-class
250 chain-offset-chain-head chain-offset-target-head))
251(defclass chain-offset ()
4b8e5c03 252 ((%class :initarg :class :type sod-class :reader chain-offset-class)
dea4d055
MW
253 (chain-head :initarg :chain-head :type sod-class
254 :reader chain-offset-chain-head)
255 (target-head :initarg :target-head :type sod-class
256 :reader chain-offset-target-head))
257 (:documentation
258 "The offset to a different `ichain'.
259
260 We're generating a vtable for CLASS, attached to the chain headed by
261 CHAIN-HEAD. This instance represents an offset to the (different) chain
262 headed by TARGET-HEAD.
263
264 This is, strictly speaking, redundant. We could do as well by using the
265 base offset and finding the offset to the target class in the class
266 object's metadata; but that would either require a search or we'd have to
267 be able work out the target chain's index in the table."))
268
269(defgeneric make-chain-offset (class chain-head target-head)
270 (:documentation
271 "Return the offset from CHAIN-HEAD to TARGET-HEAD."))
272
273;;; vtable
274
275(export '(vtable vtable-class vtable-body
276 vtable-chain-head vtable-chain-tail))
277(defclass vtable ()
4b8e5c03 278 ((%class :initarg :class :type sod-class :reader vtable-class)
dea4d055
MW
279 (chain-head :initarg :chain-head :type sod-class
280 :reader vtable-chain-head)
281 (chain-tail :initarg :chain-tail :type sod-class
282 :reader vtable-chain-tail)
283 (body :initarg :body :type list :reader vtable-body))
284 (:documentation
285 "A vtable holds all of the per-chain static information for a class.
286
287 Each chain of CLASS has its own vtable; the `vtable' object remembers the
288 least specific (CHAIN-HEAD) and most specific (CHAIN-TAIL) superclasses of
289 CLASS on that chain. (This is useful because we can reuse vtable
290 structure types from superclasses for chains other than the primary chain
291 -- i.e., the one in which CLASS itself appears.)
292
293 The BODY is a list of vtable items, including `vtmsgs' structures,
294 `chain-offset's, `class-pointers', and a `base-offset'."))
295
296(export 'compute-vtable-items)
297(defgeneric compute-vtable-items (class super chain-head chain-tail emit)
298 (:documentation
299 "Emit vtable items for a superclass of CLASS.
300
301 This function is called for each superclass SUPER of CLASS reached on the
302 chain headed by CHAIN-HEAD. The function should call EMIT for each
303 vtable item it wants to write.
304
305 The right way to check to see whether items have already been emitted
306 (e.g., has an offset to some other chain been emitted?) is as follows:
307
308 * In a method (ideally an `:around'-method) on `compute-vtable', bind a
309 special variable to an empty list or hash table.
310
311 * In a method on this function, check the variable or hash table.
312
313 This function is the real business end of `compute-vtable'."))
314
315(export 'compute-vtable)
316(defgeneric compute-vtable (class chain)
317 (:documentation
318 "Compute the vtable layout for a chain of CLASS.
319
320 The CHAIN is a list of classes, with the least specific first.
321
322 There is a default method which invokes `compute-vtable-items' to do the
323 difficult work."))
324
325(export 'compute-vtables)
326(defgeneric compute-vtables (class)
327 (:documentation
328 "Compute the vtable layouts for CLASS.
329
330 Returns a list of VTABLE objects in the order of CLASS's chains."))
331
332;;;----- That's all, folks --------------------------------------------------