chiark / gitweb /
Merge branch 'master' into doc
[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 `)' | `{' fragment `}'
86      | `?' lisp-expression
87
88    Only operators for dealing with integers are provided."
89       (with-parser-context (token-scanner-context :scanner scanner)
90         (parse (expr (:nestedp nestedp)
91                  (lisp (flet ((prop (type value)
92                                 (scanner-step scanner)
93                                 (values (cons type value) t t)))
94                          (case (token-type scanner)
95                            ((:int :id :char :string)
96                             (prop (token-type scanner)
97                                   (token-value scanner)))
98                            (#\?
99                             (let* ((stream (make-scanner-stream scanner))
100                                    (sexp (read stream t)))
101                               (scanner-step scanner)
102                               (multiple-value-bind (type value)
103                                   (decode-property sexp)
104                                 (values (cons type value) t t))))
105                            (#\{
106                             (values (cons :fragment
107                                           (parse-delimited-fragment scanner
108                                                                     #\{ #\}))
109                                           t t))
110                            (t
111                             (values (list :int :id :char :string #\?)
112                                     nil nil)))))
113                  (or (seq (#\+) add)
114                      (seq (#\-) sub)
115                      (seq (#\*) mul)
116                      (seq (#\/) div))
117                  (or (seq (#\() lp)
118                      (seq (#\+) nop)
119                      (seq (#\-) neg))
120                  (when nestedp (seq (#\)) rp))))))))
121
122 ;;;--------------------------------------------------------------------------
123 ;;; Parsing property sets.
124
125 (defun parse-property (scanner pset)
126   "Parse a single property using the SCANNER; add it to the PSET."
127   ;; property ::= id `=' expression
128   (with-parser-context (token-scanner-context :scanner scanner)
129     (parse (seq ((name :id) #\= (result (parse-expression scanner)))
130              (let ((type (car result))
131                    (value (cdr result)))
132                (unless (eq type :invalid)
133                  (add-property pset name value
134                                :type type
135                                :location scanner)))))))
136
137 (export 'parse-property-set)
138 (defun parse-property-set (scanner)
139   "Parse an optional property set from the SCANNER and return it."
140   ;; property-set ::= [`[' property-list `]']
141   (with-parser-context (token-scanner-context :scanner scanner)
142     (parse (? (seq (#\[
143                     (pset (many (pset (make-property-set) pset)
144                             (error ()
145                               (parse-property scanner pset)
146                               (skip-until () #\, #\]))
147                             #\,))
148                     #\])
149                 pset)))))
150
151 ;;;----- That's all, folks --------------------------------------------------