c-types-proto.lisp (canonify-qualifiers): Delete `nil' entries.
[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 33(define-pluggable-parser module typename (scanner pset)
ceed01af 34 ;; `typename' list[id] `;'
048d0b2d 35 (declare (ignore pset))
bf090e02
MW
36 (with-parser-context (token-scanner-context :scanner scanner)
37 (parse (and "typename"
65eebc3b 38 (skip-many ()
c41a95b1
MW
39 (error ()
40 (seq ((id :id))
41 (if (or (gethash id *module-type-map*)
42 (find-simple-c-type id))
43 (cerror* "Type `~A' already defined" id)
44 (add-to-module *module*
45 (make-instance 'type-item
46 :name id))))
47 (skip-until () #\, #\;))
bf090e02 48 #\,)
c41a95b1 49 (must #\;)))))
bf090e02
MW
50
51;;; Fragments.
52
048d0b2d 53(define-pluggable-parser module code (scanner pset)
4fc52153 54 ;; `code' id `:' item-name [constraints] `{' c-fragment `}'
54ea6ee8 55 ;; `code' id `:' constraints `;'
048d0b2d 56 ;;
ceed01af 57 ;; constraints ::= `[' list[constraint] `]'
4fc52153
MW
58 ;; constraint ::= item-name+
59 ;; item-name ::= id | `(' id+ `)'
048d0b2d 60 (declare (ignore pset))
bf090e02 61 (with-parser-context (token-scanner-context :scanner scanner)
4fc52153
MW
62 (labels ((kw ()
63 (parse (seq ((kw :id))
64 (intern (frob-identifier kw) 'keyword))))
65 (item ()
66 (parse (or (kw)
67 (seq (#\( (names (list (:min 1) (kw))) #\))
66c60924
MW
68 names))))
69 (constraints ()
70 (parse (seq (#\[
71 (constraints
72 (list ()
73 (list (:min 1)
74 (error (:ignore-unconsumed t) (item)
75 (skip-until () :id #\( #\, #\])))
76 #\,))
77 #\])
78 constraints)))
79 (fragment ()
80 (parse-delimited-fragment scanner #\{ #\})))
9ec578d9 81 (parse (seq ("code"
ea4843d5
MW
82 (reason (must (kw)))
83 (nil (must #\:))
54ea6ee8
MW
84 (item (or (seq ((constraints (constraints))
85 (nil (must #\;)))
86 (make-instance 'code-fragment-item
87 :reason reason
88 :constraints constraints))
89 (seq ((name (must (item)))
d018d6d8
MW
90 (constraints (? (constraints)))
91 (fragment (fragment)))
92 (and name
93 (make-instance 'code-fragment-item
94 :reason reason
95 :constraints constraints
96 :name name
97 :fragment fragment))))))
98 (when item (add-to-module *module* item)))))))
bf090e02
MW
99
100;;; External files.
101
9ec578d9
MW
102(export 'read-module)
103(defun read-module (pathname &key (truename nil truep) location)
bf090e02
MW
104 "Parse the file at PATHNAME as a module, returning it.
105
106 This is the main entry point for parsing module files. You may well know
107 the file's TRUENAME already (e.g., because `probe-file' dropped it into
108 your lap) so you can avoid repeating the search by providing it.
109
110 The LOCATION is the thing which wanted the module imported -- usually a
111 `file-location' object, though it might be anything other than `t' which
112 can be printed in the event of circular imports."
113
9ec578d9
MW
114 (setf pathname (merge-pathnames pathname
115 (make-pathname :type "SOD" :case :common)))
116 (unless truep (setf truename (truename pathname)))
bf090e02
MW
117 (define-module (pathname :location location :truename truename)
118 (with-open-file (f-stream pathname :direction :input)
a351d620 119 (let* ((char-scanner (make-instance 'charbuf-scanner
e783e65b
MW
120 :stream f-stream
121 :filename (namestring pathname)))
bf090e02
MW
122 (scanner (make-instance 'sod-token-scanner
123 :char-scanner char-scanner)))
124 (with-default-error-location (scanner)
125 (with-parser-context (token-scanner-context :scanner scanner)
300a3f0a
MW
126 (multiple-value-bind (result winp consumedp)
127 (parse (skip-many ()
128 (seq ((pset (parse-property-set scanner))
129 (nil (error ()
a8bc7831
MW
130 (plug module scanner pset)
131 (skip-until (:keep-end nil)
132 #\; #\}))))
300a3f0a
MW
133 (check-unused-properties pset))))
134 (declare (ignore consumedp))
135 (unless winp (syntax-error scanner result)))))))))
048d0b2d 136
048d0b2d
MW
137(define-pluggable-parser module file (scanner pset)
138 ;; `import' string `;'
139 ;; `load' string `;'
140 (declare (ignore pset))
bf090e02 141 (flet ((common (name type what thunk)
87fa582a 142 (when name
fbd5be64 143 (find-file (pathname (scanner-filename scanner))
87fa582a
MW
144 (merge-pathnames name
145 (make-pathname :type type
146 :case :common))
147 what
148 thunk))))
bf090e02 149 (with-parser-context (token-scanner-context :scanner scanner)
87fa582a 150 (parse (or (seq ("import" (name (must :string)) (nil (must #\;)))
bf090e02
MW
151 (common name "SOD" "module"
152 (lambda (path true)
153 (handler-case
154 (let ((module (read-module path
155 :truename true)))
156 (when module
157 (module-import module)
e05aabbb 158 (pushnew path (module-files *module*))
bf090e02
MW
159 (pushnew module
160 (module-dependencies
161 *module*))))
162 (file-error (error)
163 (cerror* "Error reading module ~S: ~A"
87fa582a
MW
164 path error))
165 (error (error)
166 (cerror* "Unexpected error reading ~
167 module ~S: ~A"
bf090e02 168 path error))))))
87fa582a 169 (seq ("load" (name (must :string)) (nil (must #\;)))
bf090e02
MW
170 (common name "LISP" "Lisp file"
171 (lambda (path true)
172 (handler-case
e05aabbb
MW
173 (progn
174 (pushnew path (module-files *module*))
175 (load true :verbose nil :print nil))
bf090e02
MW
176 (error (error)
177 (cerror* "Error loading Lisp file ~S: ~A"
178 path error)))))))))))
179
01e3faf9
MW
180;;; Setting properties.
181
182(define-pluggable-parser module set (scanner pset)
ceed01af 183 ;; `set' list[property] `;'
01e3faf9
MW
184 (with-parser-context (token-scanner-context :scanner scanner)
185 (parse (and "set"
186 (lisp (let ((module-pset (module-pset *module*)))
187 (when pset
188 (pset-map (lambda (prop)
5445420e
MW
189 (add-property
190 module-pset
191 (p-name prop) (p-value prop)
192 :type (p-type prop)
193 :location (p-location prop))
01e3faf9
MW
194 (setf (p-seenp prop) t))
195 pset))
99a74df1 196 (parse (skip-many (:min (if pset 0 1))
01e3faf9 197 (error (:ignore-unconsumed t)
5445420e 198 (parse-property scanner module-pset)
65eebc3b 199 (skip-until () #\, #\;))
01e3faf9
MW
200 #\,))))
201 #\;))))
202
bf090e02
MW
203;;; Lisp escape.
204
048d0b2d 205(define-pluggable-parser module lisp (scanner pset)
bf090e02 206 ;; `lisp' s-expression `;'
048d0b2d 207 (declare (ignore pset))
bf090e02
MW
208 (with-parser-context (token-scanner-context :scanner scanner)
209 (parse (seq ((sexp (if (and (eql (token-type scanner) :id)
210 (string= (token-value scanner) "lisp"))
211 (let* ((stream (make-scanner-stream scanner))
212 (sexp (read stream t)))
213 (scanner-step scanner)
214 (values sexp t t))
215 (values '((:id "lisp")) nil nil)))
634c11b0 216 (nil (must #\;)))
bf090e02
MW
217 (eval sexp)))))
218
219;;;--------------------------------------------------------------------------
220;;; Class declarations.
221
7f2917d2
MW
222(export 'class-item)
223
a42893dd
MW
224(define-pluggable-parser class-item initfrags (scanner class pset)
225 ;; raw-class-item ::= frag-keyword `{' c-fragment `}'
226 ;; frag-keyword ::= `init' | `teardown'
227 (with-parser-context (token-scanner-context :scanner scanner)
228 (parse (seq ((make (or (seq ("init") #'make-sod-class-initfrag)
229 (seq ("teardown") #'make-sod-class-tearfrag)))
230 (frag (parse-delimited-fragment scanner #\{ #\})))
81054f01 231 (funcall make class frag pset :location scanner)))))
a42893dd 232
b2983f35 233(define-pluggable-parser class-item initargs (scanner class pset)
ceed01af 234 ;; initarg-item ::= `initarg' declspec+ list[init-declarator]
b2983f35
MW
235 ;; init-declarator ::= declarator [`=' initializer]
236 (with-parser-context (token-scanner-context :scanner scanner)
237 (parse (seq ("initarg"
238 (base-type (parse-c-type scanner))
239 (nil (skip-many (:min 1)
240 (seq ((declarator (parse-declarator scanner
241 base-type))
242 (init (? (parse-delimited-fragment
243 scanner #\= (list #\; #\,)
244 :keep-end t))))
245 (make-sod-user-initarg class
246 (cdr declarator)
247 (car declarator)
81054f01
MW
248 pset
249 :default init
250 :location scanner))
b2983f35 251 #\,))
7dca21e9 252 (nil (must #\;)))))))
b2983f35 253
6362119e
MW
254(defun synthetic-name ()
255 "Return an obviously bogus synthetic not-identifier."
256 (let ((ix *temporary-index*))
257 (incf *temporary-index*)
258 (make-instance 'temporary-variable :tag (format nil "%%#~A" ix))))
259
048d0b2d 260(defun parse-class-body (scanner pset name supers)
c91b90c3 261 ;; class-body ::= `{' class-item* `}'
048d0b2d
MW
262 ;;
263 ;; class-item ::= property-set raw-class-item
c91b90c3 264 (with-parser-context (token-scanner-context :scanner scanner)
6362119e
MW
265 (when name (make-class-type name))
266 (let* ((duff (null name))
d1c01c33
MW
267 (superclasses
268 (let ((superclasses (restart-case
269 (mapcar #'find-sod-class
270 (or supers (list "SodObject")))
271 (continue ()
272 (setf duff t)
273 (list (find-sod-class "SodObject"))))))
0c289c54
MW
274 (find-duplicates (lambda (first second)
275 (declare (ignore second))
276 (setf duff t)
277 (cerror* "Class `~A' has duplicate ~
278 direct superclass `~A'"
279 name first))
280 superclasses)
281 (delete-duplicates superclasses)))
6362119e
MW
282 (synthetic-name (or name
283 (let ((var (synthetic-name)))
284 (unless pset
285 (setf pset (make-property-set)))
286 (unless (pset-get pset "nick")
287 (add-property pset "nick" var :type :id))
288 var)))
81054f01
MW
289 (class (make-sod-class synthetic-name superclasses pset
290 :location scanner))
c91b90c3
MW
291 (nick (sod-class-nickname class)))
292
8152ead4
MW
293 (labels ((must-id ()
294 (parse (must :id (progn (setf duff t) (synthetic-name)))))
295
296 (parse-maybe-dotted-name ()
002d481f 297 ;; maybe-dotted-name ::= [id `.'] id
c91b90c3
MW
298 ;;
299 ;; A plain identifier is returned as a string, as usual; a
300 ;; dotted identifier is returned as a cons cell of the two
301 ;; names.
8152ead4
MW
302 (parse (seq ((name-a (must-id))
303 (name-b (? (seq (#\. (id (must-id))) id))))
31114112
MW
304 (if name-b (cons name-a name-b)
305 name-a))))
306
307 (parse-maybe-dotted-declarator (base-type)
308 ;; Parse a declarator or dotted-declarator, i.e., one whose
309 ;; centre is maybe-dotted-name above.
310 (parse-declarator scanner base-type
311 :keywordp t
312 :kernel #'parse-maybe-dotted-name))
c91b90c3 313
c91b90c3
MW
314 (parse-message-item (sub-pset type name)
315 ;; message-item ::=
316 ;; declspec+ declarator -!- (method-body | `;')
2cbdee3d
MW
317 ;;
318 ;; Don't allow a method-body here if the message takes a
319 ;; varargs list, because we don't have a name for the
320 ;; `va_list' parameter.
81054f01
MW
321 (let ((message (make-sod-message class name type sub-pset
322 :location scanner)))
2cbdee3d
MW
323 (if (varargs-message-p message)
324 (parse #\;)
325 (parse (or #\; (parse-method-item sub-pset
326 type nick name))))))
c91b90c3
MW
327
328 (parse-method-item (sub-pset type sub-nick name)
329 ;; method-item ::=
330 ;; declspec+ dotted-declarator -!- method-body
331 ;;
332 ;; method-body ::= `{' c-fragment `}' | `extern' `;'
333 (parse (seq ((body (or (seq ("extern" #\;) nil)
334 (parse-delimited-fragment
335 scanner #\{ #\}))))
add6883c
MW
336 (restart-case
337 (make-sod-method class sub-nick name type
81054f01
MW
338 body sub-pset
339 :location scanner)
add6883c 340 (continue () :report "Continue")))))
c91b90c3
MW
341
342 (parse-initializer ()
a888e3ac 343 ;; initializer ::= `=' c-fragment
c91b90c3 344 ;;
a888e3ac
MW
345 ;; Return a VALUE, ready for passing to a `sod-initializer'
346 ;; constructor.
abfdb01c 347 (parse-delimited-fragment scanner #\= '(#\, #\;)
a888e3ac 348 :keep-end t))
c91b90c3
MW
349
350 (parse-slot-item (sub-pset base-type type name)
351 ;; slot-item ::=
352 ;; declspec+ declarator -!- [initializer]
ceed01af 353 ;; [`,' list[init-declarator]] `;'
c91b90c3 354 ;;
ceed01af 355 ;; init-declarator ::= declarator [initializer]
05d59b98 356 (flet ((make-it (name type init)
add6883c
MW
357 (restart-case
358 (progn
81054f01
MW
359 (make-sod-slot class name type sub-pset
360 :location scanner)
add6883c 361 (when init
81054f01
MW
362 (make-sod-instance-initializer
363 class nick name init sub-pset
364 :location scanner)))
add6883c 365 (continue () :report "Continue"))))
8152ead4
MW
366 (parse (and (error ()
367 (seq ((init (? (parse-initializer))))
368 (make-it name type init))
369 (skip-until () #\, #\;))
05d59b98 370 (skip-many ()
8152ead4
MW
371 (error (:ignore-unconsumed t)
372 (seq (#\,
373 (ds (parse-declarator scanner
374 base-type))
375 (init (? (parse-initializer))))
376 (make-it (cdr ds) (car ds) init))
377 (skip-until () #\, #\;)))
378 (must #\;)))))
c91b90c3 379
b2983f35 380 (parse-initializer-item (sub-pset must-init-p constructor)
c91b90c3 381 ;; initializer-item ::=
ceed01af 382 ;; [`class'] -!- list[slot-initializer] `;'
c91b90c3 383 ;;
b2983f35 384 ;; slot-initializer ::= id `.' id [initializer]
5445420e 385 (let ((parse-init (if must-init-p #'parse-initializer
b2983f35
MW
386 (parser () (? (parse-initializer))))))
387 (parse (and (skip-many ()
8152ead4
MW
388 (error (:ignore-unconsumed t)
389 (seq ((name-a :id) #\.
390 (name-b (must-id))
391 (init (funcall parse-init)))
392 (restart-case
393 (funcall constructor class
394 name-a name-b init
81054f01
MW
395 sub-pset
396 :location scanner)
8152ead4
MW
397 (continue () :report "Continue")))
398 (skip-until () #\, #\;))
b2983f35 399 #\,)
8152ead4 400 (must #\;)))))
c91b90c3
MW
401
402 (class-item-dispatch (sub-pset base-type type name)
403 ;; Logically part of `parse-raw-class-item', but the
404 ;; indentation was getting crazy. We're currently at
405 ;;
406 ;; raw-class-item ::=
407 ;; declspec+ (declarator | dotted-declarator) -!- ...
408 ;; | other-items
409 ;;
410 ;; If the declarator is dotted then this must be a method
411 ;; definition; otherwise it might be a message or slot.
412 (cond ((not (typep type 'c-function-type))
413 (when (consp name)
65eebc3b 414 (cerror*
a1985b3c 415 "Method declarations must have function type")
c91b90c3
MW
416 (setf name (cdr name)))
417 (parse-slot-item sub-pset base-type type name))
418 ((consp name)
419 (parse-method-item sub-pset type
420 (car name) (cdr name)))
421 (t
422 (parse-message-item sub-pset type name))))
423
424 (parse-raw-class-item (sub-pset)
425 ;; raw-class-item ::=
426 ;; message-item
427 ;; | method-item
428 ;; | slot-item
429 ;; | initializer-item
a42893dd 430 ;; | initfrag-item
c91b90c3
MW
431 ;;
432 ;; Most of the above begin with declspecs and a declarator
433 ;; (which might be dotted). So we parse that here and
434 ;; dispatch based on what we find.
048d0b2d 435 (parse (or (plug class-item scanner class sub-pset)
db2abd9d 436 (peek
c91b90c3
MW
437 (seq ((ds (parse-c-type scanner))
438 (dc (parse-maybe-dotted-declarator ds))
65b1d9d7 439 (nil (commit))
048d0b2d
MW
440 (nil (class-item-dispatch sub-pset
441 ds
442 (car dc)
db2abd9d 443 (cdr dc))))))
c91b90c3 444 (and "class"
5445420e 445 (parse-initializer-item sub-pset t
c91b90c3 446 #'make-sod-class-initializer))
5445420e 447 (parse-initializer-item sub-pset nil
c91b90c3
MW
448 #'make-sod-instance-initializer)))))
449
8152ead4 450 (parse (seq ((nil (must #\{))
048d0b2d
MW
451 (nil (skip-many ()
452 (seq ((sub-pset (parse-property-set scanner))
9ec578d9 453 (nil (parse-raw-class-item sub-pset)))
048d0b2d 454 (check-unused-properties sub-pset))))
8152ead4 455 (nil (must #\})))
e45a106d
MW
456 (unless (finalize-sod-class class)
457 (setf duff t))
70b33a78
MW
458 (unless duff
459 (add-to-module *module* class))))))))
048d0b2d
MW
460
461(define-pluggable-parser module class (scanner pset)
ceed01af 462 ;; `class' id `:' list[id] class-body
c91b90c3 463 ;; `class' id `;'
bf090e02 464 (with-parser-context (token-scanner-context :scanner scanner)
c91b90c3 465 (parse (seq ("class"
6362119e 466 (name (must :id))
c91b90c3 467 (nil (or (seq (#\;)
6362119e
MW
468 (when name (make-class-type name)))
469 (seq ((supers (must (seq (#\:
470 (ids (list () :id #\,)))
471 ids)))
c91b90c3
MW
472 (nil (parse-class-body
473 scanner
474 pset name supers)))))))))))
475
bf090e02 476;;;----- That's all, folks --------------------------------------------------