chiark / gitweb /
Daily work in progress.
[sod] / src / pset-parse.lisp
1 ;;; -*-lisp-*-
2 ;;;
3 ;;; Parsing property sets
4 ;;;
5 ;;; (c) 2012 Straylight/Edgeware
6 ;;;
7
8 ;;;----- Licensing notice ---------------------------------------------------
9 ;;;
10 ;;; This file is part of the Sensble 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 ;;; The expression parser.
30
31 (flet ((dispatch (name args &rest spec)
32          (acond ((find :invalid args :key #'car)
33                  (cons :invalid nil))
34                 ((find-if (lambda (item)
35                             (every (lambda (type arg)
36                                      (eql type (car arg)))
37                                    (cddr item)
38                                    args))
39                           spec)
40                  (cons (car it) (apply (cadr it)
41                                        (mapcar #'cdr args))))
42                 (t
43                  (cerror* "Type mismatch: operator `~A' applied to ~
44                                types ~{~(~A~)~#[~; and ~;, ~]~}"
45                           name
46                           (mapcar #'car args))
47                  (cons :invalid nil)))))
48   (let ((add (binop "+" (x y 5)
49                (dispatch "+" (list x y) (list :int #'+ :int :int))))
50         (sub (binop "-" (x y 5)
51                (dispatch "-" (list x y) (list :int #'- :int :int))))
52         (mul (binop "*" (x y 7)
53                (dispatch "*" (list x y) (list :int #'* :int :int))))
54         (div (binop "/" (x y 7)
55                (dispatch "/" (list x y)
56                          (list :int
57                                (lambda (x y)
58                                  (cond ((zerop y)
59                                         (cerror*
60                                          "Division by zero")
61                                         (cons :invalid nil))
62                                        (t
63                                         (floor x y))))
64                                :int :int))))
65         (nop (preop "+" (x 9)
66                (dispatch "+" (list x) (list :int #'+ :int))))
67         (neg (preop "-" (x 9)
68                (dispatch "-" (list x) (list :int #'- :int))))
69         (lp (lparen #\)))
70         (rp (rparen #\))))
71
72     (defun parse-expression (scanner)
73       "Parse and evaluate a simple expression.
74
75    The result is a pair (TYPE . VALUE).  Currently, type types are `:id',
76    `:int', `:string', and `:char'.  If an error prevented a sane value from
77    being produced, the type `:invalid' is returned.
78
79    The syntax of expressions is rather limited at the moment, but more may be
80    added later.
81
82    expression: term | expression `+' term | expression `-' term
83    term: factor | term `*' factor | term `/' factor
84    factor: primary | `+' factor | `-' factor
85    primary: int | id | string | `(' expression `)' | `?' lisp-expression
86
87    Only operators for dealing with integers are provided."
88       (with-parser-context (token-scanner-context :scanner scanner)
89         (parse (expr (:nestedp nestedp)
90                  (lisp (flet ((prop (type value)
91                                 (scanner-step scanner)
92                                 (values (cons type value) t t)))
93                          (case (token-type scanner)
94                            ((:int :id :char :string)
95                             (prop (token-type scanner)
96                                   (token-value scanner)))
97                            (#\?
98                             (let* ((stream (make-scanner-stream scanner))
99                                    (sexp (read stream t)))
100                               (scanner-step scanner)
101                               (values (cons (property-type sexp) sexp)
102                                       t t)))
103                            (t
104                             (values (list :int :id :char :string #\?)
105                                     nil nil)))))
106                  (or (seq (#\+) add)
107                      (seq (#\-) sub)
108                      (seq (#\*) mul)
109                      (seq (#\/) div))
110                  (or (seq (#\() lp)
111                      (seq (#\+) nop)
112                      (seq (#\-) neg))
113                  (when nestedp (seq (#\)) rp))))))))
114
115 ;;;--------------------------------------------------------------------------
116 ;;; Parsing property sets.
117
118 (defun parse-property (scanner pset)
119   "Parse a single property using the SCANNER; add it to the PSET."
120   ;; property ::= id `=' expression
121   (with-parser-context (token-scanner-context :scanner scanner)
122     (parse (seq ((name :id) #\= (result (parse-expression scanner)))
123              (let ((type (car result))
124                    (value (cdr result)))
125                (unless (eq type :invalid)
126                  (add-property pset name value
127                                :type type
128                                :location scanner)))))))
129
130 (export 'parse-property-set)
131 (defun parse-property-set (scanner)
132   "Parse an optional property set from the SCANNER and return it."
133   ;; property-set ::= `[' property-list `]'
134   (with-parser-context (token-scanner-context :scanner scanner)
135     (parse (seq (#\[
136                  (pset (many (pset (make-property-set) pset)
137                          (parse-property scanner pset)
138                          #\,))
139                  #\])
140              pset))))
141
142 ;;;----- That's all, folks --------------------------------------------------