7b7518b24cd1ef77462dd0d788073a3e6d7883bb
[jscl.git] / src / read.lisp
1 ;;; read.lisp --- 
2
3 ;; Copyright (C) 2012, 2013 David Vazquez
4 ;; Copyright (C) 2012 Raimon Grau
5
6 ;; JSCL is free software: you can redistribute it and/or
7 ;; modify it under the terms of the GNU General Public License as
8 ;; published by the Free Software Foundation, either version 3 of the
9 ;; License, or (at your option) any later version.
10 ;;
11 ;; JSCL is distributed in the hope that it will be useful, but
12 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
13 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 ;; General Public License for more details.
15 ;;
16 ;; You should have received a copy of the GNU General Public License
17 ;; along with JSCL.  If not, see <http://www.gnu.org/licenses/>.
18
19
20 ;;;; Reader
21
22 ;;; The Lisp reader, parse strings and return Lisp objects. The main
23 ;;; entry points are `ls-read' and `ls-read-from-string'.
24
25 (defun make-string-stream (string)
26   (cons string 0))
27
28 (defun %peek-char (stream)
29   (and (< (cdr stream) (length (car stream)))
30        (char (car stream) (cdr stream))))
31
32 (defun %read-char (stream)
33   (and (< (cdr stream) (length (car stream)))
34        (prog1 (char (car stream) (cdr stream))
35          (rplacd stream (1+ (cdr stream))))))
36
37 (defun whitespacep (ch)
38   (or (char= ch #\space) (char= ch #\newline) (char= ch #\tab)))
39
40 (defun skip-whitespaces (stream)
41   (let (ch)
42     (setq ch (%peek-char stream))
43     (while (and ch (whitespacep ch))
44       (%read-char stream)
45       (setq ch (%peek-char stream)))))
46
47 (defun terminalp (ch)
48   (or (null ch) (whitespacep ch) (char= #\" ch) (char= #\) ch) (char= #\( ch)))
49
50 (defun read-until (stream func)
51   (let ((string "")
52         (ch))
53     (setq ch (%peek-char stream))
54     (while (and ch (not (funcall func ch)))
55       (setq string (concat string (string ch)))
56       (%read-char stream)
57       (setq ch (%peek-char stream)))
58     string))
59
60 (defun read-escaped-until (stream func)
61   (let ((string "")
62         (ch (%peek-char stream))
63         (multi-escape nil))
64     (while (and ch (or multi-escape (not (funcall func ch))))
65       (cond
66         ((char= ch #\|)
67          (if multi-escape
68              (setf multi-escape nil)
69              (setf multi-escape t)))
70         ((char= ch #\\)
71          (%read-char stream)
72          (setf ch (%peek-char stream))
73          (setf string (concat string "\\" (string ch))))
74         (t
75          (if multi-escape
76              (setf string (concat string "\\" (string ch)))
77              (setf string (concat string (string ch))))))
78       (%read-char stream)
79       (setf ch (%peek-char stream)))
80     string))
81
82 (defun skip-whitespaces-and-comments (stream)
83   (let (ch)
84     (skip-whitespaces stream)
85     (setq ch (%peek-char stream))
86     (while (and ch (char= ch #\;))
87       (read-until stream (lambda (x) (char= x #\newline)))
88       (skip-whitespaces stream)
89       (setq ch (%peek-char stream)))))
90
91 (defun discard-char (stream expected)
92   (let ((ch (%read-char stream)))
93     (when (null ch)
94       (error "End of file when character ~S was expected." expected))
95     (unless (char= ch expected)
96       (error "Character ~S was found but ~S was expected." ch expected))))
97
98 (defun %read-list (stream)
99   (skip-whitespaces-and-comments stream)
100   (let ((ch (%peek-char stream)))
101     (cond
102       ((null ch)
103        (error "Unspected EOF"))
104       ((char= ch #\))
105        (discard-char stream #\))
106        nil)
107       (t
108        (let* ((eof (gensym))
109               (next (ls-read stream nil eof)))
110          (skip-whitespaces-and-comments stream)
111          (cond
112            ((eq next eof)
113             (discard-char stream #\)))
114            (t
115             (cons next
116                   (if (char= (%peek-char stream) #\.)
117                       (progn
118                         (discard-char stream #\.)
119                         (if (terminalp (%peek-char stream))
120                             (prog1 (ls-read stream) ; Dotted pair notation
121                               (skip-whitespaces-and-comments stream)
122                               (let ((ch (%peek-char stream)))
123                                 (if (or (null ch) (char= #\) ch))
124                                     (discard-char stream #\))
125                                     (error "Multiple objects following . in a list"))))
126                             (let ((token (concat "." (read-escaped-until stream #'terminalp))))
127                               (cons (interpret-token token)
128                                     (%read-list stream)))))
129                       (%read-list stream))))))))))
130
131 (defun read-string (stream)
132   (let ((string "")
133         (ch nil))
134     (setq ch (%read-char stream))
135     (while (not (eql ch #\"))
136       (when (null ch)
137         (error "Unexpected EOF"))
138       (when (eql ch #\\)
139         (setq ch (%read-char stream)))
140       (setq string (concat string (string ch)))
141       (setq ch (%read-char stream)))
142     string))
143
144 (defun read-sharp (stream &optional eof-error-p eof-value)
145   (%read-char stream)
146   (ecase (%read-char stream)
147     (#\'
148      (list 'function (ls-read stream)))
149     (#\( (list-to-vector (%read-list stream)))
150     (#\: (make-symbol
151           (unescape-token
152            (string-upcase-noescaped
153             (read-escaped-until stream #'terminalp)))))
154     (#\\
155      (let ((cname
156             (concat (string (%read-char stream))
157                     (read-until stream #'terminalp))))
158        (cond
159          ((string= cname "space") #\space)
160          ((string= cname "tab") #\tab)
161          ((string= cname "newline") #\newline)
162          (t (char cname 0)))))
163     (#\+
164      (let ((feature (let ((symbol (ls-read stream)))
165                       (unless (symbolp symbol)
166                         (error "Invalid feature ~S" symbol))
167                       (intern (string symbol) "KEYWORD"))))
168        (ecase feature
169          (:common-lisp
170           (ls-read stream)
171           (ls-read stream eof-error-p eof-value))
172          (:jscl
173           (ls-read stream eof-error-p eof-value)))))))
174
175 (defun unescape-token (x)
176   (let ((result ""))
177     (dotimes (i (length x))
178       (unless (char= (char x i) #\\)
179         (setq result (concat result (string (char x i))))))
180     result))
181
182 (defun string-upcase-noescaped (s)
183   (let ((result "")
184         (last-escape nil))
185     (dotimes (i (length s))
186       (let ((ch (char s i)))
187         (if last-escape
188            (progn
189               (setf last-escape nil)
190               (setf result (concat result (string ch))))
191             (if (char= ch #\\)
192                 (setf last-escape t)
193                 (setf result (concat result (string-upcase (string ch))))))))
194     result))
195
196 ;;; Parse a string of the form NAME, PACKAGE:NAME or
197 ;;; PACKAGE::NAME and return the name. If the string is of the
198 ;;; form 1) or 3), but the symbol does not exist, it will be created
199 ;;; and interned in that package.
200 (defun read-symbol (string)
201   (let ((size (length string))
202         package name internalp index)
203     (setq index 0)
204     (while (and (< index size)
205                 (not (char= (char string index) #\:)))
206       (when (char= (char string index) #\\)
207         (incf index))
208       (incf index))
209     (cond
210       ;; No package prefix
211       ((= index size)
212        (setq name string)
213        (setq package *package*)
214        (setq internalp t))
215       (t
216        ;; Package prefix
217        (if (zerop index)
218            (setq package "KEYWORD")
219            (setq package (string-upcase-noescaped (subseq string 0 index))))
220        (incf index)
221        (when (char= (char string index) #\:)
222          (setq internalp t)
223          (incf index))
224        (setq name (subseq string index))))
225     ;; Canonalize symbol name and package
226     (setq name (if (equal package "JS")
227                    (setq name (unescape-token name))
228                    (setq name (string-upcase-noescaped name))))
229     (setq package (find-package package))
230     (if (or internalp
231             (eq package (find-package "KEYWORD"))
232             (eq package (find-package "JS")))
233         (intern name package)
234         (multiple-value-bind (symbol external)
235             (find-symbol name package)
236           (if (eq external :external)
237               symbol
238               (error "The symbol `~S' is not external in the package ~S." name package))))))
239
240 (defun read-integer (string)
241   (let ((sign 1)
242         (number nil)
243         (size (length string)))
244     (dotimes (i size)
245       (let ((elt (char string i)))
246         (cond
247           ((digit-char-p elt)
248            (setq number (+ (* (or number 0) 10) (digit-char-p elt))))
249           ((zerop i)
250            (case elt
251              (#\+ nil)
252              (#\- (setq sign -1))
253              (t (return-from read-integer))))
254           ((and (= i (1- size)) (char= elt #\.)) nil)
255           (t (return-from read-integer)))))
256     (and number (* sign number))))
257
258 (defun read-float (string)
259   (block nil
260     (let ((sign 1)
261           (integer-part nil)
262           (fractional-part nil)
263           (number 0)
264           (divisor 1)
265           (exponent-sign 1)
266           (exponent 0)
267           (size (length string))
268           (index 0))
269       (when (zerop size) (return))
270       ;; Optional sign
271       (case (char string index)
272         (#\+ (incf index))
273         (#\- (setq sign -1)
274              (incf index)))
275       (unless (< index size) (return))
276       ;; Optional integer part
277       (awhen (digit-char-p (char string index))
278         (setq integer-part t)
279         (while (and (< index size)
280                     (setq it (digit-char-p (char string index))))
281           (setq number (+ (* number 10) it))
282           (incf index)))
283       (unless (< index size) (return))
284       ;; Decimal point is mandatory if there's no integer part
285       (unless (or integer-part (char= #\. (char string index))) (return))
286       ;; Optional fractional part
287       (when (char= #\. (char string index))
288         (incf index)
289         (unless (< index size) (return))
290         (awhen (digit-char-p (char string index))
291           (setq fractional-part t)
292           (while (and (< index size)
293                       (setq it (digit-char-p (char string index))))
294             (setq number (+ (* number 10) it))
295             (setq divisor (* divisor 10))
296             (incf index))))
297       ;; Either left or right part of the dot must be present
298       (unless (or integer-part fractional-part) (return))
299       ;; Exponent is mandatory if there is no fractional part
300       (when (and (= index size) (not fractional-part)) (return))
301       ;; Optional exponent part
302       (when (< index size)
303         ;; Exponent-marker
304         (unless (member (string-upcase (string (char string index)))
305                         '("E" "S" "F" "D" "L"))
306           (return))
307         (incf index)
308         (unless (< index size) (return))
309         ;; Optional exponent sign
310         (case (char string index)
311           (#\+ (incf index))
312           (#\- (setq exponent-sign -1)
313                (incf index)))
314         (unless (< index size) (return))
315         ;; Exponent digits
316         (let ((value (digit-char-p (char string index))))
317           (unless value (return))
318           (while (and (< index size)
319                       (setq value (digit-char-p (char string index))))
320             (setq exponent (+ (* exponent 10) value))
321             (incf index))))
322       (unless (= index size) (return))
323       ;; Everything went ok, we have a float
324       ;; XXX: Use FLOAT when implemented.
325       (/ (* sign (expt 10.0 (* exponent-sign exponent)) number) divisor))))
326
327 (defun !parse-integer (string junk-allow)
328   (block nil
329     (let ((value 0)
330           (index 0)
331           (size (length string))
332           (sign 1))
333       ;; Leading whitespace
334       (while (and (< index size)
335                   (whitespacep (char string index)))
336         (incf index))
337       (unless (< index size) (return (values nil 0)))
338       ;; Optional sign
339       (case (char string 0)
340         (#\+ (incf index))
341         (#\- (setq sign -1)
342              (incf index)))
343       ;; First digit
344       (unless (and (< index size)
345                    (setq value (digit-char-p (char string index))))
346         (return (values nil index)))
347       (incf index)
348       ;; Other digits
349       (while (< index size)
350         (let ((digit (digit-char-p (char string index))))
351           (unless digit (return))
352           (setq value (+ (* value 10) digit))
353           (incf index)))
354       ;; Trailing whitespace
355       (do ((i index (1+ i)))
356           ((or (= i size) (not (whitespacep (char string i))))
357            (and (= i size) (setq index i))))
358       (if (or junk-allow
359               (= index size))
360           (values (* sign value) index)
361           (values nil index)))))
362
363 #+jscl
364 (defun parse-integer (string &key junk-allowed)
365   (multiple-value-bind (num index)
366       (!parse-integer string junk-allowed)
367     (if num
368         (values num index)
369         (error "Junk detected."))))
370
371
372 (defun interpret-token (string)
373   (or (read-integer string)
374       (read-float string)
375       (read-symbol string)))
376
377 (defun ls-read (stream  &optional (eof-error-p t) eof-value)
378   (skip-whitespaces-and-comments stream)
379   (let ((ch (%peek-char stream)))
380     (cond
381       ((or (null ch) (char= ch #\)))
382        (if eof-error-p
383            (error "End of file")
384            eof-value))
385       ((char= ch #\()
386        (%read-char stream)
387        (%read-list stream))
388       ((char= ch #\')
389        (%read-char stream)
390        (list 'quote (ls-read stream)))
391       ((char= ch #\`)
392        (%read-char stream)
393        (list 'backquote (ls-read stream)))
394       ((char= ch #\")
395        (%read-char stream)
396        (read-string stream))
397       ((char= ch #\,)
398        (%read-char stream)
399        (if (eql (%peek-char stream) #\@)
400            (progn (%read-char stream) (list 'unquote-splicing (ls-read stream)))
401            (list 'unquote (ls-read stream))))
402       ((char= ch #\#)
403        (read-sharp stream))
404       (t
405        (let ((string (read-escaped-until stream #'terminalp)))
406          (interpret-token string))))))
407
408 (defun ls-read-from-string (string &optional (eof-error-p t) eof-value)
409   (ls-read (make-string-stream string) eof-error-p eof-value))
410
411 #+jscl
412 (defun read-from-string (string &optional (eof-errorp t) eof-value)
413   (ls-read-from-string string eof-errorp eof-value))