chiark / gitweb /
src/module-parse.lisp: Don't explicitly ask for default behaviour.
[sod] / src / module-parse.lisp
1 ;;; -*-lisp-*-
2 ;;;
3 ;;; Top-level parser for module syntax
4 ;;;
5 ;;; (c) 2010 Straylight/Edgeware
6 ;;;
7
8 ;;;----- Licensing notice ---------------------------------------------------
9 ;;;
10 ;;; This file is part of the Sensible Object Design, an object system for C.
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
31 ;;; Type names.
32
33 (define-pluggable-parser module typename (scanner pset)
34   ;; `typename' list[id] `;'
35   (declare (ignore pset))
36   (with-parser-context (token-scanner-context :scanner scanner)
37     (parse (and "typename"
38                 (skip-many ()
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
50 (define-pluggable-parser module code (scanner pset)
51   ;; `code' id `:' item-name [constraints] `{' c-fragment `}'
52   ;;
53   ;; constraints ::= `[' list[constraint] `]'
54   ;; constraint ::= item-name+
55   ;; item-name ::= id | `(' id+ `)'
56   (declare (ignore pset))
57   (with-parser-context (token-scanner-context :scanner scanner)
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)))))
65       (parse (seq ("code"
66                    (reason (kw))
67                    #\:
68                    (name (item))
69                    (constraints (? (seq (#\[
70                                          (constraints (list (:min 1)
71                                                         (list (:min 1)
72                                                           (item))
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)))))))
83
84 ;;; External files.
85
86 (export 'read-module)
87 (defun read-module (pathname &key (truename nil truep) location)
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
98   (setf pathname (merge-pathnames pathname
99                                   (make-pathname :type "SOD" :case :common)))
100   (unless truep (setf truename (truename pathname)))
101   (define-module (pathname :location location :truename truename)
102     (with-open-file (f-stream pathname :direction :input)
103       (let* ((*readtable* (copy-readtable))
104              (*package* (find-package '#:sod-user))
105              (char-scanner (make-instance 'charbuf-scanner
106                                           :stream f-stream))
107              (scanner (make-instance 'sod-token-scanner
108                                      :char-scanner char-scanner)))
109         (with-default-error-location (scanner)
110           (with-parser-context (token-scanner-context :scanner scanner)
111             (multiple-value-bind (result winp consumedp)
112                 (parse (skip-many ()
113                           (seq ((pset (parse-property-set scanner))
114                                 (nil (error ()
115                                        (plug module scanner pset))))
116                             (check-unused-properties pset))))
117               (declare (ignore consumedp))
118               (unless winp (syntax-error scanner result)))))))))
119
120 (define-pluggable-parser module test (scanner pset)
121   ;; `demo' string `;'
122   (declare (ignore pset))
123   (with-parser-context (token-scanner-context :scanner scanner)
124     (parse (seq ("demo" (string :string) #\;)
125              (format t ";; DEMO ~S~%" string)))))
126
127 (define-pluggable-parser module file (scanner pset)
128   ;; `import' string `;'
129   ;; `load' string `;'
130   (declare (ignore pset))
131   (flet ((common (name type what thunk)
132            (find-file scanner
133                       (merge-pathnames name
134                                        (make-pathname :type type
135                                                       :case :common))
136                       what
137                       thunk)))
138     (with-parser-context (token-scanner-context :scanner scanner)
139       (parse (or (seq ("import" (name :string) #\;)
140                    (common name "SOD" "module"
141                            (lambda (path true)
142                              (handler-case
143                                  (let ((module (read-module path
144                                                             :truename true)))
145                                    (when module
146                                      (module-import module)
147                                      (pushnew module
148                                               (module-dependencies
149                                                *module*))))
150                                (file-error (error)
151                                  (cerror* "Error reading module ~S: ~A"
152                                           path error))))))
153                  (seq ("load" (name :string) #\;)
154                    (common name "LISP" "Lisp file"
155                            (lambda (path true)
156                              (handler-case
157                                  (load true :verbose nil :print nil)
158                                (error (error)
159                                  (cerror* "Error loading Lisp file ~S: ~A"
160                                           path error)))))))))))
161
162 ;;; Setting properties.
163
164 (define-pluggable-parser module set (scanner pset)
165   ;; `set' list[property] `;'
166   (with-parser-context (token-scanner-context :scanner scanner)
167     (parse (and "set"
168                 (lisp (let ((module-pset (module-pset *module*)))
169                         (when pset
170                           (pset-map (lambda (prop)
171                                       (add-property
172                                        module-pset
173                                        (p-name prop) (p-value prop)
174                                        :type (p-type prop)
175                                        :location (p-location prop))
176                                       (setf (p-seenp prop) t))
177                                     pset))
178                         (parse (skip-many (:min 0)
179                                  (error (:ignore-unconsumed t)
180                                      (parse-property scanner module-pset)
181                                    (skip-until () #\, #\;))
182                                  #\,))))
183                 #\;))))
184
185 ;;; Lisp escape.
186
187 (define-pluggable-parser module lisp (scanner pset)
188   ;; `lisp' s-expression `;'
189   (declare (ignore pset))
190   (with-parser-context (token-scanner-context :scanner scanner)
191     (parse (seq ((sexp (if (and (eql (token-type scanner) :id)
192                                 (string= (token-value scanner) "lisp"))
193                            (let* ((stream (make-scanner-stream scanner))
194                                   (sexp (read stream t)))
195                              (scanner-step scanner)
196                              (values sexp t t))
197                            (values '((:id "lisp")) nil nil)))
198                  #\;)
199              (eval sexp)))))
200
201 ;;;--------------------------------------------------------------------------
202 ;;; Class declarations.
203
204 (export 'class-item)
205
206 (define-pluggable-parser class-item initfrags (scanner class pset)
207   ;; raw-class-item ::= frag-keyword `{' c-fragment `}'
208   ;; frag-keyword ::= `init' | `teardown'
209   (with-parser-context (token-scanner-context :scanner scanner)
210     (parse (seq ((make (or (seq ("init") #'make-sod-class-initfrag)
211                            (seq ("teardown") #'make-sod-class-tearfrag)))
212                  (frag (parse-delimited-fragment scanner #\{ #\})))
213              (funcall make class frag pset scanner)))))
214
215 (define-pluggable-parser class-item initargs (scanner class pset)
216   ;; initarg-item ::= `initarg' declspec+ list[init-declarator]
217   ;; init-declarator ::= declarator [`=' initializer]
218   (with-parser-context (token-scanner-context :scanner scanner)
219     (parse (seq ("initarg"
220                  (base-type (parse-c-type scanner))
221                  (nil (skip-many (:min 1)
222                         (seq ((declarator (parse-declarator scanner
223                                                             base-type))
224                               (init (? (parse-delimited-fragment
225                                         scanner #\= (list #\; #\,)
226                                         :keep-end t))))
227                           (make-sod-user-initarg class
228                                                  (cdr declarator)
229                                                  (car declarator)
230                                                  pset init scanner))
231                         #\,))
232                    #\;)))))
233
234 (defun parse-class-body (scanner pset name supers)
235   ;; class-body ::= `{' class-item* `}'
236   ;;
237   ;; class-item ::= property-set raw-class-item
238   (with-parser-context (token-scanner-context :scanner scanner)
239     (make-class-type name)
240     (let* ((duff nil)
241            (class (make-sod-class name
242                                   (restart-case
243                                       (mapcar #'find-sod-class supers)
244                                     (continue ()
245                                       (setf duff t)
246                                       (list (find-sod-class "SodObject"))))
247                                   pset scanner))
248            (nick (sod-class-nickname class)))
249
250       (labels ((parse-maybe-dotted-declarator (base-type)
251                  ;; Parse a declarator or dotted-declarator, i.e., one whose
252                  ;; centre is
253                  ;;
254                  ;; maybe-dotted-identifier ::= [id `.'] id
255                  ;;
256                  ;; A plain identifier is returned as a string, as usual; a
257                  ;; dotted identifier is returned as a cons cell of the two
258                  ;; names.
259                  (parse-declarator
260                   scanner base-type
261                   :keywordp t
262                   :kernel (parser ()
263                             (seq ((name-a :id)
264                                   (name-b (? (seq (#\. (id :id)) id))))
265                               (if name-b (cons name-a name-b)
266                                   name-a)))))
267
268                (parse-message-item (sub-pset type name)
269                  ;; message-item ::=
270                  ;;     declspec+ declarator -!- (method-body | `;')
271                  ;;
272                  ;; Don't allow a method-body here if the message takes a
273                  ;; varargs list, because we don't have a name for the
274                  ;; `va_list' parameter.
275                  (let ((message (make-sod-message class name type
276                                                   sub-pset scanner)))
277                    (if (varargs-message-p message)
278                        (parse #\;)
279                        (parse (or #\; (parse-method-item sub-pset
280                                                          type nick name))))))
281
282                (parse-method-item (sub-pset type sub-nick name)
283                  ;; method-item ::=
284                  ;;     declspec+ dotted-declarator -!- method-body
285                  ;;
286                  ;; method-body ::= `{' c-fragment `}' | `extern' `;'
287                  (parse (seq ((body (or (seq ("extern" #\;) nil)
288                                         (parse-delimited-fragment
289                                          scanner #\{ #\}))))
290                           (make-sod-method class sub-nick name type
291                                            body sub-pset scanner))))
292
293                (parse-initializer ()
294                  ;; initializer ::= `=' c-fragment
295                  ;;
296                  ;; Return a VALUE, ready for passing to a `sod-initializer'
297                  ;; constructor.
298                  (parse-delimited-fragment scanner #\= (list #\, #\;)
299                                            :keep-end t))
300
301                (parse-slot-item (sub-pset base-type type name)
302                  ;; slot-item ::=
303                  ;;     declspec+ declarator -!- [initializer]
304                  ;;             [`,' list[init-declarator]] `;'
305                  ;;
306                  ;; init-declarator ::= declarator [initializer]
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 init sub-pset scanner)))
313                              (skip-many ()
314                                (seq (#\,
315                                      (ds (parse-declarator scanner
316                                                            base-type))
317                                      (init (? (parse-initializer))))
318                                  (make-sod-slot class (cdr ds) (car ds)
319                                                 sub-pset scanner)
320                                  (when init
321                                    (make-sod-instance-initializer
322                                     class nick (cdr ds) init
323                                     sub-pset scanner))))
324                              #\;)))
325
326                (parse-initializer-item (sub-pset must-init-p constructor)
327                  ;; initializer-item ::=
328                  ;;     [`class'] -!- list[slot-initializer] `;'
329                  ;;
330                  ;; slot-initializer ::= id `.' id [initializer]
331                  (let ((parse-init (if must-init-p #'parse-initializer
332                                        (parser () (? (parse-initializer))))))
333                    (parse (and (skip-many ()
334                                  (seq ((name-a :id) #\. (name-b :id)
335                                        (init (funcall parse-init)))
336                                    (funcall constructor class
337                                             name-a name-b init
338                                             sub-pset scanner))
339                                  #\,)
340                                #\;))))
341
342                (class-item-dispatch (sub-pset base-type type name)
343                  ;; Logically part of `parse-raw-class-item', but the
344                  ;; indentation was getting crazy.  We're currently at
345                  ;;
346                  ;; raw-class-item ::=
347                  ;;     declspec+ (declarator | dotted-declarator) -!- ...
348                  ;;   | other-items
349                  ;;
350                  ;; If the declarator is dotted then this must be a method
351                  ;; definition; otherwise it might be a message or slot.
352                  (cond ((not (typep type 'c-function-type))
353                         (when (consp name)
354                           (cerror*
355                            "Method declarations must have function type")
356                           (setf name (cdr name)))
357                         (parse-slot-item sub-pset base-type type name))
358                        ((consp name)
359                         (parse-method-item sub-pset type
360                                            (car name) (cdr name)))
361                        (t
362                         (parse-message-item sub-pset type name))))
363
364                (parse-raw-class-item (sub-pset)
365                  ;; raw-class-item ::=
366                  ;;     message-item
367                  ;;   | method-item
368                  ;;   | slot-item
369                  ;;   | initializer-item
370                  ;;   | initfrag-item
371                  ;;
372                  ;; Most of the above begin with declspecs and a declarator
373                  ;; (which might be dotted).  So we parse that here and
374                  ;; dispatch based on what we find.
375                  (parse (or (plug class-item scanner class sub-pset)
376                             (peek
377                              (seq ((ds (parse-c-type scanner))
378                                    (dc (parse-maybe-dotted-declarator ds))
379                                    (nil (commit))
380                                    (nil (class-item-dispatch sub-pset
381                                                              ds
382                                                              (car dc)
383                                                              (cdr dc))))))
384                             (and "class"
385                                  (parse-initializer-item sub-pset t
386                                   #'make-sod-class-initializer))
387                             (parse-initializer-item sub-pset nil
388                              #'make-sod-instance-initializer)))))
389
390         (parse (seq (#\{
391                      (nil (skip-many ()
392                             (seq ((sub-pset (parse-property-set scanner))
393                                   (nil (parse-raw-class-item sub-pset)))
394                               (check-unused-properties sub-pset))))
395                      (nil (error () #\})))
396                  (unless (finalize-sod-class class)
397                    (setf duff t))
398                  (unless duff
399                    (add-to-module *module* class))))))))
400
401 (define-pluggable-parser module class (scanner pset)
402   ;; `class' id `:' list[id] class-body
403   ;; `class' id `;'
404   (with-parser-context (token-scanner-context :scanner scanner)
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
415 ;;;----- That's all, folks --------------------------------------------------