3 ;;; Top-level parser for module syntax
5 ;;; (c) 2010 Straylight/Edgeware
8 ;;;----- Licensing notice ---------------------------------------------------
10 ;;; This file is part of the Sensible 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 ;;;--------------------------------------------------------------------------
33 (define-pluggable-parser module typename (scanner pset)
34 ;; `typename' id ( `,' id )* `;'
35 (declare (ignore pset))
36 (with-parser-context (token-scanner-context :scanner scanner)
37 (parse (and "typename"
40 (if (gethash id *module-type-map*)
41 (cerror* "Type `~A' already defined" id)
42 (add-to-module *module*
43 (make-instance 'type-item
50 (define-pluggable-parser module code (scanner pset)
51 ;; `code' id `:' id [constraints] `{' c-fragment `}'
53 ;; constrains ::= `[' constraint-list `]'
55 (declare (ignore pset))
56 (with-parser-context (token-scanner-context :scanner scanner)
58 (parse (seq ((kw :id))
59 (intern (frob-identifier kw) 'keyword)))))
64 (constraints (? (seq (#\[
65 (constraints (list (:min 1)
70 (fragment (parse-delimited-fragment scanner #\{ #\})))
71 (add-to-module *module*
72 (make-instance 'code-fragment-item
74 :constraints constraints
81 (defun read-module (pathname &key (truename nil truep) location)
82 "Parse the file at PATHNAME as a module, returning it.
84 This is the main entry point for parsing module files. You may well know
85 the file's TRUENAME already (e.g., because `probe-file' dropped it into
86 your lap) so you can avoid repeating the search by providing it.
88 The LOCATION is the thing which wanted the module imported -- usually a
89 `file-location' object, though it might be anything other than `t' which
90 can be printed in the event of circular imports."
92 (setf pathname (merge-pathnames pathname
93 (make-pathname :type "SOD" :case :common)))
94 (unless truep (setf truename (truename pathname)))
95 (define-module (pathname :location location :truename truename)
96 (with-open-file (f-stream pathname :direction :input)
97 (let* ((*readtable* (copy-readtable))
98 (char-scanner (make-instance 'charbuf-scanner
100 (scanner (make-instance 'sod-token-scanner
101 :char-scanner char-scanner)))
102 (with-default-error-location (scanner)
103 (with-parser-context (token-scanner-context :scanner scanner)
105 (seq ((pset (parse-property-set scanner))
107 (plug module scanner pset))))
108 (check-unused-properties pset))))))))))
110 (define-pluggable-parser module test (scanner pset)
112 (declare (ignore pset))
113 (with-parser-context (token-scanner-context :scanner scanner)
114 (parse (seq ("demo" (string :string) #\;)
115 (format t ";; DEMO ~S~%" string)))))
117 (define-pluggable-parser module file (scanner pset)
118 ;; `import' string `;'
120 (declare (ignore pset))
121 (flet ((common (name type what thunk)
123 (merge-pathnames name
124 (make-pathname :type type
128 (with-parser-context (token-scanner-context :scanner scanner)
129 (parse (or (seq ("import" (name :string) #\;)
130 (common name "SOD" "module"
133 (let ((module (read-module path
136 (module-import module)
141 (cerror* "Error reading module ~S: ~A"
143 (seq ("load" (name :string) #\;)
144 (common name "LISP" "Lisp file"
147 (load true :verbose nil :print nil)
149 (cerror* "Error loading Lisp file ~S: ~A"
150 path error)))))))))))
152 ;;; Setting properties.
154 (define-pluggable-parser module set (scanner pset)
155 ;; `set' property-list `;'
156 (with-parser-context (token-scanner-context :scanner scanner)
158 (lisp (let ((module-pset (module-pset *module*)))
160 (pset-map (lambda (prop)
161 (add-property module-pset
165 :location (p-location prop))
166 (setf (p-seenp prop) t))
168 (parse (skip-many (:min 0)
169 (error (:ignore-unconsumed t)
170 (parse-property scanner module-pset)
171 (skip-until (:keep-end t) #\, #\;))
177 (define-pluggable-parser module lisp (scanner pset)
178 ;; `lisp' s-expression `;'
179 (declare (ignore pset))
180 (with-parser-context (token-scanner-context :scanner scanner)
181 (parse (seq ((sexp (if (and (eql (token-type scanner) :id)
182 (string= (token-value scanner) "lisp"))
183 (let* ((stream (make-scanner-stream scanner))
184 (sexp (read stream t)))
185 (scanner-step scanner)
187 (values '((:id "lisp")) nil nil)))
191 ;;;--------------------------------------------------------------------------
192 ;;; Class declarations.
196 (defun parse-class-body (scanner pset name supers)
197 ;; class-body ::= `{' class-item* `}'
199 ;; class-item ::= property-set raw-class-item
200 (with-parser-context (token-scanner-context :scanner scanner)
201 (make-class-type name)
202 (let* ((class (make-sod-class name (mapcar #'find-sod-class supers)
204 (nick (sod-class-nickname class)))
206 (labels ((parse-maybe-dotted-declarator (base-type)
207 ;; Parse a declarator or dotted-declarator, i.e., one whose
210 ;; maybe-dotted-identifier ::= [id `.'] id
212 ;; A plain identifier is returned as a string, as usual; a
213 ;; dotted identifier is returned as a cons cell of the two
219 (name-b (? (seq (#\. (id :id)) id))))
220 (if name-b (cons name-a name-b)
223 (parse-message-item (sub-pset type name)
225 ;; declspec+ declarator -!- (method-body | `;')
227 ;; Don't allow a method-body here if the message takes a
228 ;; varargs list, because we don't have a name for the
229 ;; `va_list' parameter.
230 (let ((message (make-sod-message class name type
232 (if (varargs-message-p message)
234 (parse (or #\; (parse-method-item sub-pset
237 (parse-method-item (sub-pset type sub-nick name)
239 ;; declspec+ dotted-declarator -!- method-body
241 ;; method-body ::= `{' c-fragment `}' | `extern' `;'
242 (parse (seq ((body (or (seq ("extern" #\;) nil)
243 (parse-delimited-fragment
245 (make-sod-method class sub-nick name type
246 body sub-pset scanner))))
248 (parse-initializer ()
249 ;; initializer ::= `=' c-fragment | `=' `{' c-fragment `}'
251 ;; Return (VALUE-KIND . VALUE-FORM), ready for passing to a
252 ;; `sod-initializer' constructor.
254 ;; This is kind of tricky because we have to juggle both
255 ;; layers of the parsing machinery. The character scanner
256 ;; will already have consumed the lookahead token (which, if
257 ;; we're going to do anything, is `=').
258 (let ((char-scanner (token-scanner-char-scanner scanner)))
260 ;; First, skip the character-scanner past any whitespace.
261 ;; We don't record this consumption, which is a bit
262 ;; naughty, but nobody will actually mind.
264 (when (or (scanner-at-eof-p char-scanner)
265 (not (whitespace-char-p
266 (scanner-current-char char-scanner))))
268 (scanner-step char-scanner))
270 ;; Now maybe read an initializer.
271 (cond ((not (eql (token-type scanner) #\=))
272 ;; It's not an `=' after all. There's no
274 (values '(#\=) nil nil))
276 ((and (not (scanner-at-eof-p char-scanner))
277 (char= (scanner-current-char char-scanner)
279 ;; There's a brace after the `=', so we should
280 ;; consume the `=' here, and read a compound
281 ;; initializer enclosed in braces.
282 (parse (seq (#\= (frag (parse-delimited-fragment
284 (cons :compound frag))))
287 ;; No brace, so read from the `=' up to, but not
288 ;; including, the trailing `,' or `;' delimiter.
289 (parse (seq ((frag (parse-delimited-fragment
290 scanner #\= '(#\; #\,)
292 (cons :simple frag)))))))
294 (parse-slot-item (sub-pset base-type type name)
296 ;; declspec+ declarator -!- [initializer]
297 ;; [`,' init-declarator-list] `;'
299 ;; init-declarator-list ::=
300 ;; declarator [initializer] [`,' init-declarator-list]
301 (parse (and (seq ((init (? (parse-initializer))))
302 (make-sod-slot class name type
305 (make-sod-instance-initializer
306 class nick name (car init) (cdr init)
310 (ds (parse-declarator scanner
312 (init (? (parse-initializer))))
313 (make-sod-slot class (cdr ds) (car ds)
316 (make-sod-instance-initializer
318 (car init) (cdr init)
322 (parse-initializer-item (sub-pset constructor)
323 ;; initializer-item ::=
324 ;; [`class'] -!- slot-initializer-list `;'
326 ;; slot-initializer ::= id `.' id initializer
327 (parse (and (skip-many ()
328 (seq ((name-a :id) #\. (name-b :id)
329 (init (parse-initializer)))
330 (funcall constructor class
332 (car init) (cdr init)
337 (class-item-dispatch (sub-pset base-type type name)
338 ;; Logically part of `parse-raw-class-item', but the
339 ;; indentation was getting crazy. We're currently at
341 ;; raw-class-item ::=
342 ;; declspec+ (declarator | dotted-declarator) -!- ...
345 ;; If the declarator is dotted then this must be a method
346 ;; definition; otherwise it might be a message or slot.
347 (cond ((not (typep type 'c-function-type))
349 (cerror*-with-location
351 "Method declarations must have function type.")
352 (setf name (cdr name)))
353 (parse-slot-item sub-pset base-type type name))
355 (parse-method-item sub-pset type
356 (car name) (cdr name)))
358 (parse-message-item sub-pset type name))))
360 (parse-raw-class-item (sub-pset)
361 ;; raw-class-item ::=
365 ;; | initializer-item
367 ;; Most of the above begin with declspecs and a declarator
368 ;; (which might be dotted). So we parse that here and
369 ;; dispatch based on what we find.
370 (parse (or (plug class-item scanner class sub-pset)
372 (seq ((ds (parse-c-type scanner))
373 (dc (parse-maybe-dotted-declarator ds))
374 (nil (class-item-dispatch sub-pset
379 (parse-initializer-item
381 #'make-sod-class-initializer))
382 (parse-initializer-item
384 #'make-sod-instance-initializer)))))
388 (seq ((sub-pset (parse-property-set scanner))
389 (nil (parse-raw-class-item sub-pset)))
390 (check-unused-properties sub-pset))))
391 (nil (error () #\})))
392 (finalize-sod-class class)
393 (add-to-module *module* class)))))))
395 (define-pluggable-parser module class (scanner pset)
396 ;; `class' id [`:' id-list] class-body
398 (with-parser-context (token-scanner-context :scanner scanner)
402 (make-class-type name))
403 (seq ((supers (? (seq (#\: (ids (list () :id #\,)))
405 (nil (parse-class-body
407 pset name supers)))))))))))
409 ;;;----- That's all, folks --------------------------------------------------