chiark / gitweb /
doc/runtime.tex: Demote the object-system support stuff to a section.
[sod] / src / module-parse.lisp
CommitLineData
bf090e02
MW
1;;; -*-lisp-*-
2;;;
3;;; Top-level parser for module syntax
4;;;
5;;; (c) 2010 Straylight/Edgeware
6;;;
7
8;;;----- Licensing notice ---------------------------------------------------
9;;;
e0808c47 10;;; This file is part of the Sensible Object Design, an object system for C.
bf090e02
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(in-package #:sod)
27
28;;;--------------------------------------------------------------------------
29;;; Toplevel syntax.
30
bf090e02
MW
31;;; Type names.
32
048d0b2d
MW
33(define-pluggable-parser module typename (scanner pset)
34 ;; `typename' id ( `,' id )* `;'
35 (declare (ignore pset))
bf090e02
MW
36 (with-parser-context (token-scanner-context :scanner scanner)
37 (parse (and "typename"
38 (skip-many (:min 1)
39 (seq ((id :id))
40 (if (gethash id *module-type-map*)
41 (cerror* "Type `~A' already defined" id)
42 (add-to-module *module*
43 (make-instance 'type-item
44 :name id))))
45 #\,)
46 #\;))))
47
48;;; Fragments.
49
048d0b2d 50(define-pluggable-parser module code (scanner pset)
4fc52153 51 ;; `code' id `:' item-name [constraints] `{' c-fragment `}'
048d0b2d
MW
52 ;;
53 ;; constrains ::= `[' constraint-list `]'
4fc52153
MW
54 ;; constraint ::= item-name+
55 ;; item-name ::= id | `(' id+ `)'
048d0b2d 56 (declare (ignore pset))
bf090e02 57 (with-parser-context (token-scanner-context :scanner scanner)
4fc52153
MW
58 (labels ((kw ()
59 (parse (seq ((kw :id))
60 (intern (frob-identifier kw) 'keyword))))
61 (item ()
62 (parse (or (kw)
63 (seq (#\( (names (list (:min 1) (kw))) #\))
64 names)))))
9ec578d9
MW
65 (parse (seq ("code"
66 (reason (kw))
67 #\:
4fc52153 68 (name (item))
9ec578d9
MW
69 (constraints (? (seq (#\[
70 (constraints (list (:min 1)
4fc52153
MW
71 (list (:min 1)
72 (item))
9ec578d9
MW
73 #\,))
74 #\])
75 constraints)))
76 (fragment (parse-delimited-fragment scanner #\{ #\})))
77 (add-to-module *module*
78 (make-instance 'code-fragment-item
79 :fragment fragment
80 :constraints constraints
81 :reason reason
82 :name name)))))))
bf090e02
MW
83
84;;; External files.
85
9ec578d9
MW
86(export 'read-module)
87(defun read-module (pathname &key (truename nil truep) location)
bf090e02
MW
88 "Parse the file at PATHNAME as a module, returning it.
89
90 This is the main entry point for parsing module files. You may well know
91 the file's TRUENAME already (e.g., because `probe-file' dropped it into
92 your lap) so you can avoid repeating the search by providing it.
93
94 The LOCATION is the thing which wanted the module imported -- usually a
95 `file-location' object, though it might be anything other than `t' which
96 can be printed in the event of circular imports."
97
9ec578d9
MW
98 (setf pathname (merge-pathnames pathname
99 (make-pathname :type "SOD" :case :common)))
100 (unless truep (setf truename (truename pathname)))
bf090e02
MW
101 (define-module (pathname :location location :truename truename)
102 (with-open-file (f-stream pathname :direction :input)
103 (let* ((*readtable* (copy-readtable))
104 (char-scanner (make-instance 'charbuf-scanner
105 :stream f-stream))
106 (scanner (make-instance 'sod-token-scanner
107 :char-scanner char-scanner)))
108 (with-default-error-location (scanner)
109 (with-parser-context (token-scanner-context :scanner scanner)
048d0b2d
MW
110 (parse (skip-many ()
111 (seq ((pset (parse-property-set scanner))
112 (nil (error ()
113 (plug module scanner pset))))
114 (check-unused-properties pset))))))))))
115
116(define-pluggable-parser module test (scanner pset)
117 ;; `demo' string `;'
118 (declare (ignore pset))
bf090e02
MW
119 (with-parser-context (token-scanner-context :scanner scanner)
120 (parse (seq ("demo" (string :string) #\;)
121 (format t ";; DEMO ~S~%" string)))))
122
048d0b2d
MW
123(define-pluggable-parser module file (scanner pset)
124 ;; `import' string `;'
125 ;; `load' string `;'
126 (declare (ignore pset))
bf090e02
MW
127 (flet ((common (name type what thunk)
128 (find-file scanner
129 (merge-pathnames name
130 (make-pathname :type type
131 :case :common))
132 what
133 thunk)))
134 (with-parser-context (token-scanner-context :scanner scanner)
135 (parse (or (seq ("import" (name :string) #\;)
136 (common name "SOD" "module"
137 (lambda (path true)
138 (handler-case
139 (let ((module (read-module path
140 :truename true)))
141 (when module
142 (module-import module)
143 (pushnew module
144 (module-dependencies
145 *module*))))
146 (file-error (error)
147 (cerror* "Error reading module ~S: ~A"
148 path error))))))
149 (seq ("load" (name :string) #\;)
150 (common name "LISP" "Lisp file"
151 (lambda (path true)
152 (handler-case
153 (load true :verbose nil :print nil)
154 (error (error)
155 (cerror* "Error loading Lisp file ~S: ~A"
156 path error)))))))))))
157
01e3faf9
MW
158;;; Setting properties.
159
160(define-pluggable-parser module set (scanner pset)
161 ;; `set' property-list `;'
162 (with-parser-context (token-scanner-context :scanner scanner)
163 (parse (and "set"
164 (lisp (let ((module-pset (module-pset *module*)))
165 (when pset
166 (pset-map (lambda (prop)
167 (add-property module-pset
168 (p-name prop)
169 (p-value prop)
170 :type (p-type prop)
171 :location (p-location prop))
172 (setf (p-seenp prop) t))
173 pset))
174 (parse (skip-many (:min 0)
175 (error (:ignore-unconsumed t)
176 (parse-property scanner module-pset)
177 (skip-until (:keep-end t) #\, #\;))
178 #\,))))
179 #\;))))
180
bf090e02
MW
181;;; Lisp escape.
182
048d0b2d 183(define-pluggable-parser module lisp (scanner pset)
bf090e02 184 ;; `lisp' s-expression `;'
048d0b2d 185 (declare (ignore pset))
bf090e02
MW
186 (with-parser-context (token-scanner-context :scanner scanner)
187 (parse (seq ((sexp (if (and (eql (token-type scanner) :id)
188 (string= (token-value scanner) "lisp"))
189 (let* ((stream (make-scanner-stream scanner))
190 (sexp (read stream t)))
191 (scanner-step scanner)
192 (values sexp t t))
193 (values '((:id "lisp")) nil nil)))
194 #\;)
195 (eval sexp)))))
196
197;;;--------------------------------------------------------------------------
198;;; Class declarations.
199
7f2917d2
MW
200(export 'class-item)
201
048d0b2d 202(defun parse-class-body (scanner pset name supers)
c91b90c3 203 ;; class-body ::= `{' class-item* `}'
048d0b2d
MW
204 ;;
205 ;; class-item ::= property-set raw-class-item
c91b90c3
MW
206 (with-parser-context (token-scanner-context :scanner scanner)
207 (make-class-type name)
048d0b2d 208 (let* ((class (make-sod-class name (mapcar #'find-sod-class supers)
c91b90c3
MW
209 pset scanner))
210 (nick (sod-class-nickname class)))
211
212 (labels ((parse-maybe-dotted-declarator (base-type)
213 ;; Parse a declarator or dotted-declarator, i.e., one whose
214 ;; centre is
215 ;;
216 ;; maybe-dotted-identifier ::= [id `.'] id
217 ;;
218 ;; A plain identifier is returned as a string, as usual; a
219 ;; dotted identifier is returned as a cons cell of the two
220 ;; names.
221 (parse-declarator
222 scanner base-type
ea578bb4 223 :kernel (parser ()
c91b90c3
MW
224 (seq ((name-a :id)
225 (name-b (? (seq (#\. (id :id)) id))))
226 (if name-b (cons name-a name-b)
227 name-a)))))
228
c91b90c3
MW
229 (parse-message-item (sub-pset type name)
230 ;; message-item ::=
231 ;; declspec+ declarator -!- (method-body | `;')
2cbdee3d
MW
232 ;;
233 ;; Don't allow a method-body here if the message takes a
234 ;; varargs list, because we don't have a name for the
235 ;; `va_list' parameter.
236 (let ((message (make-sod-message class name type
237 sub-pset scanner)))
238 (if (varargs-message-p message)
239 (parse #\;)
240 (parse (or #\; (parse-method-item sub-pset
241 type nick name))))))
c91b90c3
MW
242
243 (parse-method-item (sub-pset type sub-nick name)
244 ;; method-item ::=
245 ;; declspec+ dotted-declarator -!- method-body
246 ;;
247 ;; method-body ::= `{' c-fragment `}' | `extern' `;'
248 (parse (seq ((body (or (seq ("extern" #\;) nil)
249 (parse-delimited-fragment
250 scanner #\{ #\}))))
251 (make-sod-method class sub-nick name type
252 body sub-pset scanner))))
253
254 (parse-initializer ()
255 ;; initializer ::= `=' c-fragment | `=' `{' c-fragment `}'
256 ;;
257 ;; Return (VALUE-KIND . VALUE-FORM), ready for passing to a
258 ;; `sod-initializer' constructor.
9ec578d9
MW
259
260 ;; This is kind of tricky because we have to juggle both
261 ;; layers of the parsing machinery. The character scanner
262 ;; will already have consumed the lookahead token (which, if
263 ;; we're going to do anything, is `=').
264 (let ((char-scanner (token-scanner-char-scanner scanner)))
265
266 ;; First, skip the character-scanner past any whitespace.
267 ;; We don't record this consumption, which is a bit
268 ;; naughty, but nobody will actually mind.
269 (loop
270 (when (or (scanner-at-eof-p char-scanner)
271 (not (whitespace-char-p
272 (scanner-current-char char-scanner))))
273 (return))
274 (scanner-step char-scanner))
275
276 ;; Now maybe read an initializer.
277 (cond ((not (eql (token-type scanner) #\=))
278 ;; It's not an `=' after all. There's no
279 ;; initializer.
280 (values '(#\=) nil nil))
281
282 ((and (not (scanner-at-eof-p char-scanner))
283 (char= (scanner-current-char char-scanner)
284 #\{))
285 ;; There's a brace after the `=', so we should
286 ;; consume the `=' here, and read a compound
287 ;; initializer enclosed in braces.
288 (parse (seq (#\= (frag (parse-delimited-fragment
289 scanner #\{ #\})))
290 (cons :compound frag))))
291
292 (t
293 ;; No brace, so read from the `=' up to, but not
294 ;; including, the trailing `,' or `;' delimiter.
295 (parse (seq ((frag (parse-delimited-fragment
296 scanner #\= '(#\; #\,)
297 :keep-end t)))
298 (cons :simple frag)))))))
c91b90c3
MW
299
300 (parse-slot-item (sub-pset base-type type name)
301 ;; slot-item ::=
302 ;; declspec+ declarator -!- [initializer]
303 ;; [`,' init-declarator-list] `;'
304 ;;
305 ;; init-declarator-list ::=
306 ;; declarator [initializer] [`,' init-declarator-list]
307 (parse (and (seq ((init (? (parse-initializer))))
308 (make-sod-slot class name type
309 sub-pset scanner)
310 (when init
311 (make-sod-instance-initializer
312 class nick name (car init) (cdr init)
048d0b2d 313 sub-pset scanner)))
c91b90c3
MW
314 (skip-many ()
315 (seq (#\,
316 (ds (parse-declarator scanner
317 base-type))
318 (init (? (parse-initializer))))
319 (make-sod-slot class (cdr ds) (car ds)
320 sub-pset scanner)
321 (when init
322 (make-sod-instance-initializer
323 class nick (cdr ds)
324 (car init) (cdr init)
048d0b2d 325 sub-pset scanner))))
c91b90c3
MW
326 #\;)))
327
328 (parse-initializer-item (sub-pset constructor)
329 ;; initializer-item ::=
330 ;; [`class'] -!- slot-initializer-list `;'
331 ;;
332 ;; slot-initializer ::= id `.' id initializer
333 (parse (and (skip-many ()
334 (seq ((name-a :id) #\. (name-b :id)
335 (init (parse-initializer)))
336 (funcall constructor class
337 name-a name-b
338 (car init) (cdr init)
339 sub-pset scanner))
340 #\,)
341 #\;)))
342
343 (class-item-dispatch (sub-pset base-type type name)
344 ;; Logically part of `parse-raw-class-item', but the
345 ;; indentation was getting crazy. We're currently at
346 ;;
347 ;; raw-class-item ::=
348 ;; declspec+ (declarator | dotted-declarator) -!- ...
349 ;; | other-items
350 ;;
351 ;; If the declarator is dotted then this must be a method
352 ;; definition; otherwise it might be a message or slot.
353 (cond ((not (typep type 'c-function-type))
354 (when (consp name)
355 (cerror*-with-location
356 scanner
357 "Method declarations must have function type.")
358 (setf name (cdr name)))
359 (parse-slot-item sub-pset base-type type name))
360 ((consp name)
361 (parse-method-item sub-pset type
362 (car name) (cdr name)))
363 (t
364 (parse-message-item sub-pset type name))))
365
366 (parse-raw-class-item (sub-pset)
367 ;; raw-class-item ::=
368 ;; message-item
369 ;; | method-item
370 ;; | slot-item
371 ;; | initializer-item
372 ;;
373 ;; Most of the above begin with declspecs and a declarator
374 ;; (which might be dotted). So we parse that here and
375 ;; dispatch based on what we find.
048d0b2d 376 (parse (or (plug class-item scanner class sub-pset)
db2abd9d 377 (peek
c91b90c3
MW
378 (seq ((ds (parse-c-type scanner))
379 (dc (parse-maybe-dotted-declarator ds))
048d0b2d
MW
380 (nil (class-item-dispatch sub-pset
381 ds
382 (car dc)
db2abd9d 383 (cdr dc))))))
c91b90c3
MW
384 (and "class"
385 (parse-initializer-item
386 sub-pset
387 #'make-sod-class-initializer))
388 (parse-initializer-item
389 sub-pset
390 #'make-sod-instance-initializer)))))
391
048d0b2d
MW
392 (parse (seq (#\{
393 (nil (skip-many ()
394 (seq ((sub-pset (parse-property-set scanner))
9ec578d9 395 (nil (parse-raw-class-item sub-pset)))
048d0b2d 396 (check-unused-properties sub-pset))))
9ec578d9 397 (nil (error () #\})))
048d0b2d
MW
398 (finalize-sod-class class)
399 (add-to-module *module* class)))))))
400
401(define-pluggable-parser module class (scanner pset)
c91b90c3
MW
402 ;; `class' id [`:' id-list] class-body
403 ;; `class' id `;'
bf090e02 404 (with-parser-context (token-scanner-context :scanner scanner)
c91b90c3
MW
405 (parse (seq ("class"
406 (name :id)
407 (nil (or (seq (#\;)
408 (make-class-type name))
409 (seq ((supers (? (seq (#\: (ids (list () :id #\,)))
410 ids)))
411 (nil (parse-class-body
412 scanner
413 pset name supers)))))))))))
414
bf090e02 415;;;----- That's all, folks --------------------------------------------------