3 ;;; Protocol for property sets
5 ;;; (c) 2009 Straylight/Edgeware
8 ;;;----- Licensing notice ---------------------------------------------------
10 ;;; This file is part of the Sensble Object Design, an object system for C.
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.
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.
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.
28 ;;;--------------------------------------------------------------------------
29 ;;; Property representation.
31 (export 'property-key)
32 (defun property-key (name)
33 "Convert NAME into a keyword.
35 If NAME isn't a symbol already, then flip its case (using
36 `frob-identifier'), and intern into the `keyword' package."
39 (string (intern (frob-identifier name) :keyword))))
41 (export '(property propertyp p-name p-value p-type p-key p-seenp))
43 (:predicate propertyp)
45 (:constructor %make-property
47 &key type location seenp
48 &aux (key (property-key name)))))
49 "A simple structure for holding a property in a property set.
51 The main useful feature is the ability to tick off properties which have
52 been used, so that we can complain about unrecognized properties.
54 An explicit type tag is necessary because we need to be able to talk
55 distinctly about identifiers, strings and symbols, and we've only got two
56 obvious Lisp types to play with. Sad, but true."
58 (name nil :type (or string symbol))
60 (type nil :type symbol)
61 (location (file-location nil) :type file-location)
62 (key nil :type symbol)
63 (seenp nil :type boolean))
65 (export 'decode-property)
66 (defgeneric decode-property (raw)
67 (:documentation "Decode a RAW value into a TYPE, VALUE pair.")
68 (:method ((raw symbol)) (values :symbol raw))
69 (:method ((raw integer)) (values :int raw))
70 (:method ((raw string)) (values :string raw))
71 (:method ((raw character)) (values :char raw))
72 (:method ((raw property)) (values (p-type raw) (p-value raw)))
73 (:method ((raw cons)) (values (car raw) (cdr raw)))
74 (:method ((raw function)) (values :func raw)))
76 (export 'make-property)
77 (defun make-property (name raw-value &key type location seenp)
78 (multiple-value-bind (type value)
80 (values type raw-value)
81 (decode-property raw-value))
82 (%make-property name value
84 :location (file-location location)
87 (defun string-to-symbol
88 (string &key (package *package*) (swap-case t) (swap-hyphen t))
89 "Convert STRING to a symbol in PACKAGE.
91 Parse off a `PACKAGE:' prefix from STRING if necessary, to identify the
92 package; PACKAGE is used if there isn't a prefix. A doubled colon allows
93 access to internal symbols, and will intern if necessary. Note that
94 escape characters are /not/ processed; don't put colons in package names
95 if you want to use them from SOD property sets.
97 The portions of the string are modified by `frob-identifier'; the
98 arguments SWAP-CASE and SWAP-HYPHEN are passed to `frob-identifier' to
99 control this process."
101 (let* ((length (length string))
102 (colon (position #\: string)))
103 (multiple-value-bind (start internalp)
104 (cond ((not colon) (values 0 t))
105 ((and (< (1+ colon) length)
106 (char= (char string (1+ colon)) #\:))
107 (values (+ colon 2) t))
109 (values (1+ colon) nil)))
111 (let* ((package-name (if (zerop colon) "KEYWORD"
112 (frob-identifier (subseq string 0 colon)
114 :swap-hyphen swap-hyphen)))
115 (found (find-package package-name)))
117 (error "Unknown package `~A'" package-name))
118 (setf package found)))
119 (let ((name (frob-identifier (subseq string start)
121 :swap-hyphen swap-hyphen)))
122 (multiple-value-bind (symbol status)
123 (funcall (if internalp #'intern #'find-symbol) name package)
124 (cond ((or internalp (eq status :external))
127 (error "Symbol `~A' not found in package `~A'"
128 name (package-name package)))
130 (error "Symbol `~A' not external in package `~A'"
131 name (package-name package)))))))))
133 (export 'coerce-property-value)
134 (defgeneric coerce-property-value (value type wanted)
136 "Convert VALUE, a property of type TYPE, to be of type WANTED.
138 It's sensible to add additional methods to this function, but there are
139 all the ones we need.")
141 ;; If TYPE matches WANTED, we'll assume that VALUE already has the right
142 ;; form. Otherwise, if nothing else matched, then I guess we'll have to
143 ;; say it didn't work.
144 (:method (value type wanted)
145 (if (eql type wanted) value
146 (error "Incorrect type: expected ~A but found ~A" wanted type)))
148 ;; If the caller asks for type T then give him the raw thing.
149 (:method (value type (wanted (eql t)))
150 (declare (ignore type))
153 ;;;--------------------------------------------------------------------------
154 ;;; Property set representation.
156 (export '(pset psetp))
157 (defstruct (pset (:predicate psetp)
158 (:constructor %make-pset)
162 Wrapped up in a structure so that we can define a print function."
163 (hash (make-hash-table) :type hash-table))
165 (export '(make-pset pset-get pset-store pset-map))
166 (declaim (inline make-pset pset-get pset-store pset-map))
169 "Constructor for property sets."
172 (defun pset-get (pset key)
173 "Look KEY up in PSET and return what we find.
175 If there's no property by that name, return NIL."
176 (values (gethash key (%pset-hash pset))))
178 (defun pset-store (pset prop)
179 "Store property PROP in PSET.
181 Overwrite or replace any previous property with the same name. Mutates
183 (setf (gethash (p-key prop) (%pset-hash pset)) prop))
185 (defun pset-map (func pset)
186 "Call FUNC for each property in PSET."
187 (maphash (lambda (key value) (declare (ignore key)) (funcall func value))
190 (export 'with-pset-iterator)
191 (defmacro with-pset-iterator ((name pset) &body body)
192 "Evaluate BODY with NAME bound to a macro returning properties from PSET.
194 Evaluating (NAME) returns a property object or nil if all properties have
196 (with-gensyms (next win key value)
197 `(with-hash-table-iterator (,next (%pset-hash ,pset))
199 `(multiple-value-bind (,',win ,',key ,',value) (,',next)
200 (declare (ignore ,',key))
201 (and ,',win ,',value))))
204 ;;;--------------------------------------------------------------------------
205 ;;; `Cooked' property set operations.
207 (export 'store-property)
208 (defun store-property
209 (pset name value &key type location)
210 "Store a property in PSET."
212 (make-property name value :type type :location location)))
214 (export 'get-property)
215 (defun get-property (pset name type &optional default)
216 "Fetch a property from a property set.
218 If a property NAME is not found in PSET, or if a property is found, but
219 its type doesn't match TYPE, then return DEFAULT and nil; otherwise return
220 the value and its file location. In the latter case, mark the property as
223 The value returned depends on the TYPE argument provided. If you pass
224 `nil' then you get back the entire `property' object. If you pass `t',
225 then you get whatever was left in the property set, uninterpreted.
226 Otherwise the value is coerced to the right kind of thing (where possible)
229 The file location at which the property was defined is returned as a
232 If PSET is nil, then return DEFAULT and nil."
234 (let ((prop (and pset (pset-get pset (property-key name)))))
235 (with-default-error-location ((and prop (p-location prop)))
237 (values default nil))
239 (setf (p-seenp prop) t)
240 (values prop (p-location prop)))
242 (setf (p-seenp prop) t)
243 (values (coerce-property-value (p-value prop)
246 (p-location prop)))))))
248 (export 'add-property)
249 (defun add-property (pset name value &key type location)
250 "Add a property to PSET.
252 If a property with the same NAME already exists, report an error."
254 (with-default-error-location (location)
255 (let ((existing (get-property pset name nil)))
257 (error "Property ~S already defined~@[ at ~A~]"
258 name (p-location existing)))
259 (store-property pset name value :type type :location location))))
261 (export 'make-property-set)
262 (defun make-property-set (&rest plist)
263 "Make a new property set, with given properties.
265 This isn't the way to make properties when parsing, but it works well for
266 programmatic generation. The arguments should form a property list
267 (alternating keywords and values is good).
269 An attempt is made to guess property types from the Lisp types of the
270 values. This isn't always successful but it's not too bad. The
271 alternative is manufacturing a `property-value' object by hand and
272 stuffing it into the set."
274 (property-set plist))
276 (export 'property-set)
277 (defgeneric property-set (thing)
279 "Convert THING into a property set.")
280 (:method ((pset pset)) pset)
281 (:method ((list list))
282 "Convert a list into a property set. This works for alists and plists."
283 (multiple-value-bind (next name value)
284 (if (and list (consp (car list)))
285 (values #'cdr #'caar #'cdar)
286 (values #'cddr #'car #'cadr))
287 (do ((pset (make-pset))
288 (list list (funcall next list)))
290 (add-property pset (funcall name list) (funcall value list))))))
292 (export 'check--unused-properties)
293 (defun check-unused-properties (pset)
294 "Issue errors about unused properties in PSET."
296 (pset-map (lambda (prop)
297 (unless (p-seenp prop)
298 (cerror*-with-location (p-location prop)
299 "Unknown property `~A'"
301 (setf (p-seenp prop) t)))
304 ;;;--------------------------------------------------------------------------
307 (defmacro default-slot-from-property
308 ((instance slot slot-names)
310 &optional (pvar (gensym "PROP-"))
313 "Initialize a slot from a property.
315 We initialize SLOT in INSTANCE. In full: if PSET contains a property
316 called NAME, then convert it to TYPE, bind the value to PVAR and evaluate
317 CONVERT-FORMS -- these default to just using the property value. If
318 there's no property, and the slot is named in SLOT-NAMES and currently
319 unbound, then evaluate DEFAULT-FORMS and use their value to compute the
322 (once-only (instance slot slot-names pset property type)
324 `(multiple-value-bind (,pvar ,floc)
325 (get-property ,pset ,property ,type)
327 (setf (slot-value ,instance ,slot)
328 (with-default-error-location (,floc)
329 ,@(or convert-forms `(,pvar))))
330 (default-slot (,instance ,slot ,slot-names)
331 ,@default-forms))))))
333 ;;;----- That's all, folks --------------------------------------------------