5 ;;; (c) 2009 Straylight/Edgeware
8 ;;;----- Licensing notice ---------------------------------------------------
10 ;;; This file is part of the Sensble 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.
26 (cl:in-package #:sod-parser)
28 ;;;--------------------------------------------------------------------------
29 ;;; Token scanner implementation.
31 (defmethod shared-initialize :after
32 ((scanner token-scanner) slot-names &key)
33 (declare (ignore slot-names))
34 (scanner-step scanner))
36 (defmethod scanner-at-eof-p ((scanner token-scanner))
37 (with-slots (type) scanner
40 (defmethod scanner-step ((scanner token-scanner))
41 (with-slots (type value tail captures line column) scanner
43 (let ((next (token-scanner-place-next tail)))
44 (setf type (token-scanner-place-type next)
45 value (token-scanner-place-value next)
46 line (token-scanner-place-line next)
47 column (token-scanner-place-column next)
50 (multiple-value-bind (ty val) (scanner-token scanner)
53 (when (plusp captures)
54 (let ((next (make-token-scanner-place
55 :type ty :value val :line line :column column)))
56 (setf (token-scanner-place-next tail) next
59 (defmethod scanner-capture-place ((scanner token-scanner))
60 (with-slots (type value captures tail line column) scanner
63 (setf tail (make-token-scanner-place
64 :type type :value value :line line :column column)))))
66 (defmethod scanner-restore-place ((scanner token-scanner) place)
67 (with-slots (type value tail line column) scanner
68 (setf type (token-scanner-place-type place)
69 value (token-scanner-place-value place)
70 line (token-scanner-place-line place)
71 column (token-scanner-place-column place)
74 (defmethod scanner-release-place ((scanner token-scanner) place)
75 (with-slots (captures) scanner
78 ;;;----- That's all, folks --------------------------------------------------