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)))
152 ;;;--------------------------------------------------------------------------
153 ;;; Property set representation.
155 (export '(pset psetp))
156 (defstruct (pset (:predicate psetp)
157 (:constructor %make-pset)
161 Wrapped up in a structure so that we can define a print function."
162 (hash (make-hash-table) :type hash-table))
164 (export '(make-pset pset-get pset-store pset-map))
165 (declaim (inline make-pset pset-get pset-store pset-map))
168 "Constructor for property sets."
171 (defun pset-get (pset key)
172 "Look KEY up in PSET and return what we find.
174 If there's no property by that name, return NIL."
175 (values (gethash key (%pset-hash pset))))
177 (defun pset-store (pset prop)
178 "Store property PROP in PSET.
180 Overwrite or replace any previous property with the same name. Mutates
182 (setf (gethash (p-key prop) (%pset-hash pset)) prop))
184 (defun pset-map (func pset)
185 "Call FUNC for each property in PSET."
186 (maphash (lambda (key value) (declare (ignore key)) (funcall func value))
189 (export 'with-pset-iterator)
190 (defmacro with-pset-iterator ((name pset) &body body)
191 "Evaluate BODY with NAME bound to a macro returning properties from PSET.
193 Evaluating (NAME) returns a property object or nil if all properties have
195 (with-gensyms (next win key value)
196 `(with-hash-table-iterator (,next (%pset-hash ,pset))
198 `(multiple-value-bind (,',win ,',key ,',value) (,',next)
199 (declare (ignore ,',key))
200 (and ,',win ,',value))))
203 ;;;--------------------------------------------------------------------------
204 ;;; `Cooked' property set operations.
206 (export 'store-property)
207 (defun store-property
208 (pset name value &key type location)
209 "Store a property in PSET."
211 (make-property name value :type type :location location)))
213 (export 'get-property)
214 (defun get-property (pset name type &optional default)
215 "Fetch a property from a property set.
217 If a property NAME is not found in PSET, or if a property is found, but
218 its type doesn't match TYPE, then return DEFAULT and nil; otherwise return
219 the value and its file location. In the latter case, mark the property as
222 The value returned depends on the TYPE argument provided. If you pass
223 `nil' then you get back the entire `property' object. If you pass `t',
224 then you get whatever was left in the property set, uninterpreted.
225 Otherwise the value is coerced to the right kind of thing (where possible)
228 The file location at which the property was defined is returned as a
231 If PSET is nil, then return DEFAULT and nil."
233 (let ((prop (and pset (pset-get pset (property-key name)))))
234 (with-default-error-location ((and prop (p-location prop)))
236 (values default nil))
238 (setf (p-seenp prop) t)
239 (values prop (p-location prop)))
241 (setf (p-seenp prop) t)
242 (values (coerce-property-value (p-value prop)
245 (p-location prop)))))))
247 (export 'add-property)
248 (defun add-property (pset name value &key type location)
249 "Add a property to PSET.
251 If a property with the same NAME already exists, report an error."
253 (with-default-error-location (location)
254 (let ((existing (get-property pset name nil)))
256 (error "Property ~S already defined~@[ at ~A~]"
257 name (p-location existing)))
258 (store-property pset name value :type type :location location))))
260 (export 'make-property-set)
261 (defun make-property-set (&rest plist)
262 "Make a new property set, with given properties.
264 This isn't the way to make properties when parsing, but it works well for
265 programmatic generation. The arguments should form a property list
266 (alternating keywords and values is good).
268 An attempt is made to guess property types from the Lisp types of the
269 values. This isn't always successful but it's not too bad. The
270 alternative is manufacturing a `property-value' object by hand and
271 stuffing it into the set."
273 (property-set plist))
275 (export 'property-set)
276 (defgeneric property-set (thing)
278 "Convert THING into a property set.")
279 (:method ((pset pset)) pset)
280 (:method ((list list))
281 "Convert a list into a property set. This works for alists and plists."
282 (multiple-value-bind (next name value)
283 (if (and list (consp (car list)))
284 (values #'cdr #'caar #'cdar)
285 (values #'cddr #'car #'cadr))
286 (do ((pset (make-pset))
287 (list list (funcall next list)))
289 (add-property pset (funcall name list) (funcall value list))))))
291 (export 'check--unused-properties)
292 (defun check-unused-properties (pset)
293 "Issue errors about unused properties in PSET."
295 (pset-map (lambda (prop)
296 (unless (p-seenp prop)
297 (cerror*-with-location (p-location prop)
298 "Unknown property `~A'"
300 (setf (p-seenp prop) t)))
303 ;;;--------------------------------------------------------------------------
306 (defmacro default-slot-from-property
307 ((instance slot slot-names)
309 &optional (pvar (gensym "PROP-"))
312 "Initialize a slot from a property.
314 We initialize SLOT in INSTANCE. In full: if PSET contains a property
315 called NAME, then convert it to TYPE, bind the value to PVAR and evaluate
316 CONVERT-FORMS -- these default to just using the property value. If
317 there's no property, and the slot is named in SLOT-NAMES and currently
318 unbound, then evaluate DEFAULT-FORMS and use their value to compute the
321 (once-only (instance slot slot-names pset property type)
323 `(multiple-value-bind (,pvar ,floc)
324 (get-property ,pset ,property ,type)
326 (setf (slot-value ,instance ,slot)
327 (with-default-error-location (,floc)
328 ,@(or convert-forms `(,pvar))))
329 (default-slot (,instance ,slot ,slot-names)
330 ,@default-forms))))))
332 ;;;----- That's all, folks --------------------------------------------------