2016-12-17 21:34:43 +00:00
|
|
|
;;; nyacc/lex.scm
|
|
|
|
;;;
|
|
|
|
;;; Copyright (C) 2015,2016 - Matthew R.Wette
|
|
|
|
;;;
|
|
|
|
;;; This library is free software; you can redistribute it and/or modify it
|
|
|
|
;;; under the terms of the GNU Lesser General Public License as published by
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
;;; your option) any later version.
|
|
|
|
;;;
|
|
|
|
;;; This library is distributed in the hope that it will be useful, but
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
;;; Lesser General Public License for more details.
|
|
|
|
;;;
|
|
|
|
;;; You should have received a copy of the GNU Lesser General Public License
|
|
|
|
;;; along with this library; if not, see <http://www.gnu.org/licenses/>
|
|
|
|
|
|
|
|
;; A module providing procedures for constructing lexical analyzers.
|
|
|
|
|
|
|
|
;; '$fixed '$float '$string '$chlit '$ident
|
|
|
|
|
|
|
|
;; todo: change lexer to return @code{cons-source} instead of @code{cons}
|
|
|
|
;; todo: to be fully compliant, C readers need to deal with \ at end of line
|
|
|
|
|
|
|
|
;; todo: figure out what readers return atoms and which pairs
|
|
|
|
;; tokens: read-c-ident
|
|
|
|
;; pairs: num-reader read-c-num read-c-string
|
|
|
|
;; issue: if returning pairs we need this for hashed parsers:
|
|
|
|
;; (define (assc-$ pair) (cons (assq-ref symbols (car pair)) (cdr pair)))
|
|
|
|
;; read-comm changed to (read-comm ch bol) where bol is begin-of-line cond
|
|
|
|
;;
|
|
|
|
;; read-c-ident
|
|
|
|
|
|
|
|
(define-module (nyacc lex)
|
|
|
|
#:export (make-lexer-generator
|
|
|
|
make-ident-reader
|
|
|
|
make-comm-reader
|
|
|
|
make-string-reader
|
|
|
|
make-chseq-reader
|
|
|
|
make-num-reader
|
|
|
|
eval-reader
|
|
|
|
make-like-ident-p
|
|
|
|
read-c-ident
|
|
|
|
read-c-comm
|
|
|
|
read-c-string
|
|
|
|
read-c-chlit
|
|
|
|
read-c-num
|
|
|
|
read-oct read-hex
|
|
|
|
like-c-ident?
|
|
|
|
filter-mt remove-mt map-mt make-ident-like-p
|
|
|
|
c:ws c:if c:ir)
|
2016-12-18 21:16:14 +00:00
|
|
|
#:use-module (ice-9 optargs)
|
|
|
|
#:use-module (ice-9 syncase)
|
2016-12-17 21:34:43 +00:00
|
|
|
#:use-module ((srfi srfi-1) #:select (remove append-reverse))
|
|
|
|
#:use-module (ice-9 pretty-print)
|
|
|
|
)
|
|
|
|
|
|
|
|
;; @section Constructing Lexical Analyzers
|
|
|
|
;; The @code{lex} module provides a set of procedures to build lexical
|
|
|
|
;; analyzers. The approach is to first build a set of @defn{readers} for
|
|
|
|
;; MORE TO COME
|
|
|
|
;;
|
|
|
|
;; Readers are procecures that take one character (presumably from the
|
|
|
|
;; current-input-port) and determine try to make a match. If a match is
|
|
|
|
;; made something is returned, with any lookaheads pushed back into the
|
|
|
|
;; input port. If no match is made @code{#f} is returned and the input
|
|
|
|
;; argument is still the character to work on.
|
|
|
|
;;
|
|
|
|
;; Here are the procedures used:
|
|
|
|
;; @table @code
|
|
|
|
|
|
|
|
(define digit "0123456789")
|
|
|
|
(define ucase "ABCDEFGHIJKLMNOPQRSTUVWXYZ")
|
|
|
|
(define lcase "abcdefghijklmnopqrstuvwxyz")
|
|
|
|
|
|
|
|
;; C lexemes are popular so include those.
|
|
|
|
;;(define c:ws (list->char-set '(#\space #\tab #\newline #\return )))
|
|
|
|
(define c:ws char-set:whitespace)
|
|
|
|
(define c:if (let ((cs (char-set #\_))) ; ident, first char
|
|
|
|
(string->char-set! ucase cs)
|
|
|
|
(string->char-set! lcase cs)))
|
|
|
|
(define c:ir (string->char-set digit c:if)) ; ident, rest chars
|
|
|
|
(define c:nx (string->char-set "eEdD")) ; number exponent
|
|
|
|
(define c:hx (string->char-set "abcdefABCDEF"))
|
|
|
|
|
|
|
|
;; @deffn eval-reader reader string => result
|
|
|
|
;; For test and debug, this procedure will evaluate a reader on a string.
|
|
|
|
;; A reader is a procedure that accepts a single character argument intended
|
|
|
|
;; to match a specific character sequence. A reader will read more characters
|
|
|
|
;; by evaluating @code{read-char} until it matches or fails. If it fails, it
|
|
|
|
;; will pushback all characters read via @code{read-char} and return @code{#f}.
|
|
|
|
;; If it succeeds the input pointer will be at the position following the
|
|
|
|
;; last matched character.
|
|
|
|
(define (eval-reader reader string)
|
|
|
|
(with-input-from-string string
|
|
|
|
(lambda () (reader (read-char)))))
|
|
|
|
|
|
|
|
;; @deffn make-space-skipper chset => proc
|
|
|
|
;; This routine will generate a reader to skip whitespace.
|
|
|
|
(define (make-space-skipper chset)
|
|
|
|
(lambda (ch)
|
|
|
|
(if (char-set-contains? chset ch)
|
|
|
|
(let iter ((ch (read-char)))
|
|
|
|
(cond
|
|
|
|
((char-set-contains? chset ch)
|
|
|
|
(iter (read-char)))
|
|
|
|
(else
|
|
|
|
(unread-char ch)
|
|
|
|
#t)))
|
|
|
|
#f)))
|
|
|
|
|
|
|
|
;; @deffn skip-c-space ch => #f|#t
|
|
|
|
;; If @code{ch} is space, skip all spaces, then return @code{#t}, else
|
|
|
|
;; return @code{#f}.
|
|
|
|
(define skip-c-space (make-space-skipper c:ws))
|
|
|
|
|
|
|
|
|
|
|
|
;; @deffn make-ident-reader cs-first cs-rest => ch -> #f|string
|
|
|
|
;; For identifiers, given the char-set for first character and the char-set
|
|
|
|
;; for following characters, return a return a reader for identifiers.
|
|
|
|
;; The reader takes a character as input and returns @code{#f} or @code{string}.
|
|
|
|
(define (make-ident-reader cs-first cs-rest)
|
|
|
|
(lambda (ch)
|
|
|
|
(if (char-set-contains? cs-first ch)
|
|
|
|
(let iter ((chl (list ch)) (ch (read-char)))
|
|
|
|
(cond
|
|
|
|
((eof-object? ch)
|
|
|
|
(if (null? chl) #f
|
|
|
|
(list->string (reverse chl))))
|
|
|
|
((char-set-contains? cs-rest ch)
|
|
|
|
(iter (cons ch chl) (read-char)))
|
|
|
|
(else (unread-char ch)
|
|
|
|
(list->string (reverse chl)))))
|
|
|
|
#f)))
|
|
|
|
|
|
|
|
;; @deffn read-c-ident ch => #f|string
|
|
|
|
;; If ident pointer at following char, else (if #f) ch still last-read.
|
|
|
|
(define read-c-ident (make-ident-reader c:if c:ir))
|
|
|
|
|
|
|
|
;; @deffn make-ident-like-p ident-reader
|
|
|
|
;; Generate a predicate, from a reader, that determines if a string qualifies
|
|
|
|
;; as an identifier.
|
|
|
|
(define (make-like-ident-p reader)
|
|
|
|
(lambda (s) (and (string? s) (eval-reader reader s))))
|
|
|
|
(define make-ident-like-p make-like-ident-p)
|
|
|
|
(define like-c-ident? (make-like-ident-p read-c-ident))
|
|
|
|
|
|
|
|
|
|
|
|
;; @deffn make-string-reader delim
|
|
|
|
;; Generate a reader that uses @code{delim} as delimiter for strings.
|
|
|
|
;; TODO: need to handle matlab-type strings.
|
|
|
|
;; TODO: need to handle multiple delim's (like python)
|
|
|
|
(define (make-string-reader delim) ;; #:xxx
|
|
|
|
(lambda (ch)
|
|
|
|
(if (eq? ch delim)
|
|
|
|
(let iter ((cl '()) (ch (read-char)))
|
|
|
|
(cond ((eq? ch #\\)
|
|
|
|
(let ((c1 (read-char)))
|
|
|
|
(if (eq? c1 #\newline)
|
|
|
|
(iter cl (read-char))
|
|
|
|
(iter (cons* c1 cl) (read-char)))))
|
|
|
|
((eq? ch delim) (cons '$string (list->string (reverse cl))))
|
|
|
|
(else (iter (cons ch cl) (read-char)))))
|
|
|
|
#f)))
|
|
|
|
|
|
|
|
;; @deffn read-oct ch => "0123"|#f
|
|
|
|
;; Read octal number.
|
|
|
|
(define read-oct
|
|
|
|
(let ((cs:oct (string->char-set "01234567")))
|
|
|
|
(lambda (ch)
|
|
|
|
(let iter ((cv 0) (ch ch) (n 1))
|
|
|
|
(cond
|
|
|
|
((eof-object? ch) cv)
|
|
|
|
((> n 3) (unread-char ch) cv)
|
|
|
|
((char-set-contains? cs:oct ch)
|
|
|
|
(iter (+ (* 8 cv) (- (char->integer ch) 48)) (read-char) (1+ n)))
|
|
|
|
(else
|
|
|
|
(unread-char ch)
|
|
|
|
cv))))))
|
|
|
|
|
|
|
|
;; @deffn read-hex ch => "0x7f"|#f
|
|
|
|
;; Read octal number.
|
|
|
|
(define read-hex
|
|
|
|
(let ((cs:dig (string->char-set "0123456789"))
|
|
|
|
(cs:uhx (string->char-set "ABCDEF"))
|
|
|
|
(cs:lhx (string->char-set "abcdef")))
|
|
|
|
(lambda (ch) ;; ch == #\x always
|
|
|
|
(let iter ((cv 0) (ch (read-char)) (n 0))
|
|
|
|
(simple-format #t "ch=~S\n" ch)
|
|
|
|
(cond
|
|
|
|
((eof-object? ch) cv)
|
|
|
|
((> n 2) (unread-char ch) cv)
|
|
|
|
((char-set-contains? cs:dig ch)
|
|
|
|
(iter (+ (* 16 cv) (- (char->integer ch) 48)) (read-char) (1+ n)))
|
|
|
|
((char-set-contains? cs:uhx ch)
|
|
|
|
(iter (+ (* 16 cv) (- (char->integer ch) 55)) (read-char) (1+ n)))
|
|
|
|
((char-set-contains? cs:lhx ch)
|
|
|
|
(iter (+ (* 16 cv) (- (char->integer ch) 87)) (read-char) (1+ n)))
|
|
|
|
(else (unread-char ch) cv))))))
|
|
|
|
|
|
|
|
;; @deffn read-c-string ch => ($string . "foo")
|
|
|
|
;; Read a C-code string. Output to code is @code{write} not @code{display}.
|
|
|
|
;; Return #f if @var{ch} is not @code{"}.
|
|
|
|
(define (read-c-string ch)
|
|
|
|
(if (not (eq? ch #\")) #f
|
|
|
|
(let iter ((cl '()) (ch (read-char)))
|
|
|
|
(cond ((eq? ch #\\)
|
|
|
|
(let ((c1 (read-char)))
|
|
|
|
(iter
|
|
|
|
(case c1
|
|
|
|
((#\newline) cl)
|
|
|
|
((#\\) (cons #\\ cl))
|
|
|
|
((#\") (cons #\" cl))
|
|
|
|
((#\') (cons #\' cl))
|
|
|
|
((#\n) (cons #\newline cl))
|
|
|
|
((#\r) (cons #\return cl))
|
|
|
|
((#\b) (cons #\backspace cl))
|
|
|
|
((#\t) (cons #\tab cl))
|
|
|
|
((#\f) (cons #\page cl))
|
|
|
|
((#\a) (cons #\alarm cl))
|
|
|
|
((#\v) (cons #\vtab cl))
|
|
|
|
((#\x) (cons (integer->char (read-hex ch)) cl))
|
|
|
|
(else
|
|
|
|
(if (char-numeric? ch)
|
|
|
|
(cons (integer->char (read-oct ch)) cl)
|
|
|
|
(cons c1 cl))))
|
|
|
|
(read-char))))
|
|
|
|
((eq? ch #\") (cons '$string (list->string (reverse cl))))
|
|
|
|
(else (iter (cons ch cl) (read-char)))))))
|
|
|
|
|
|
|
|
;; @deffn make-chlit-reader
|
|
|
|
;; Generate a reader for character literals. NOT DONE.
|
|
|
|
;; For C, this reads @code{'c'} or @code{'\n'}.
|
|
|
|
(define (make-chlit-reader . rest) (error "NOT IMPLEMENTED"))
|
|
|
|
|
|
|
|
;; @deffn read-c-chlit ch
|
|
|
|
;; @example
|
|
|
|
;; ... 'c' ... => (read-c-chlit #\') => '($ch-lit . #\c)
|
|
|
|
;; @end example
|
|
|
|
(define (read-c-chlit ch)
|
|
|
|
(if (not (eqv? ch #\')) #f
|
|
|
|
(let ((c1 (read-char)) (c2 (read-char)))
|
|
|
|
(if (eqv? c1 #\\)
|
|
|
|
(let ((c3 (read-char)))
|
|
|
|
(cons '$chlit
|
|
|
|
(case c2
|
|
|
|
((#\0) "\0;") ; nul U+0000 (#\U+...)
|
|
|
|
((#\a) "\a") ; alert U+0007
|
|
|
|
((#\b) "\b") ; backspace U+0008
|
|
|
|
((#\t) "\t") ; horizontal tab U+0009
|
|
|
|
((#\n) "\n") ; newline U+000A
|
|
|
|
((#\v) "\v") ; verticle tab U+000B
|
|
|
|
((#\f) "\f") ; formfeed U+000C
|
|
|
|
((#\\) "\\") ; backslash
|
|
|
|
((#\' #\" #\?) (string c2))
|
|
|
|
(else (error "bad escape sequence")))))
|
|
|
|
(cons '$chlit (string c1))))))
|
|
|
|
|
|
|
|
;; @deffn make-num-reader => (proc ch) => #f|($fixed . "1")|($float . "1.0")
|
|
|
|
;; This routine will clean by adding "0" before or after dot.
|
|
|
|
;; TODO: add arg to specify alternate syntaxes (e.g. "0x123")
|
|
|
|
;; may want to replace "eEdD" w/ "e"
|
|
|
|
;; integer decimal(#t/#f) fraction exponent looking-at
|
|
|
|
;; i, f and e are lists of characters
|
|
|
|
(define (make-num-reader)
|
|
|
|
;; 0: start; 1: p-i; 2: p-f; 3: p-e-sign; 4: p-e-d; 5: packup
|
|
|
|
;; Removed support for leading '.' to be a number.
|
|
|
|
(let ((fix-dot (lambda (l) (if (char=? #\. (car l)) (cons #\0 l) l))))
|
|
|
|
(lambda (ch1)
|
|
|
|
;; chl: char list; ty: '$fixed or '$float; st: state; ch: input char
|
|
|
|
(let iter ((chl '()) (ty #f) (st 0) (ch ch1))
|
|
|
|
(case st
|
|
|
|
((0)
|
|
|
|
(cond
|
|
|
|
((eof-object? ch) (iter chl ty 5 ch))
|
|
|
|
((char=? #\0 ch) (iter (cons ch chl) '$fixed 10 (read-char)))
|
|
|
|
((char-numeric? ch) (iter chl '$fixed 1 ch))
|
|
|
|
(else #f)))
|
|
|
|
((10) ;; allow x after 0
|
|
|
|
(cond
|
|
|
|
((eof-object? ch) (iter chl ty 5 ch))
|
|
|
|
((char=? #\x ch) (iter (cons ch chl) ty 1 (read-char)))
|
|
|
|
(else (iter chl ty 1 ch))))
|
|
|
|
((1)
|
|
|
|
(cond
|
|
|
|
((eof-object? ch) (iter chl ty 5 ch))
|
|
|
|
((char-numeric? ch) (iter (cons ch chl) ty 1 (read-char)))
|
|
|
|
((char=? #\. ch) (iter (cons #\. chl) '$float 2 (read-char)))
|
|
|
|
((char-set-contains? c:hx ch)
|
|
|
|
(iter (cons ch chl) ty 1 (read-char)))
|
|
|
|
((char-set-contains? c:if ch) (error "reading number st=1"))
|
|
|
|
(else (iter chl '$fixed 5 ch))))
|
|
|
|
((2)
|
|
|
|
(cond
|
|
|
|
((eof-object? ch) (iter chl ty 5 ch))
|
|
|
|
((char-numeric? ch) (iter (cons ch chl) ty 2 (read-char)))
|
|
|
|
((char-set-contains? c:nx ch)
|
|
|
|
(iter (cons ch (fix-dot chl)) ty 3 (read-char)))
|
|
|
|
((char-set-contains? c:if ch) (error "reading number st=2"))
|
|
|
|
(else (iter (fix-dot chl) ty 5 ch))))
|
|
|
|
((3)
|
|
|
|
(cond
|
|
|
|
((eof-object? ch) (iter chl ty 5 ch))
|
|
|
|
((or (char=? #\+ ch) (char=? #\- ch))
|
|
|
|
(iter (cons ch chl) ty 4 (read-char)))
|
|
|
|
((char-numeric? ch) (iter chl ty 4 ch))
|
|
|
|
(else (error "syntax3"))))
|
|
|
|
((4)
|
|
|
|
(cond
|
|
|
|
((eof-object? ch) (iter chl ty 5 ch))
|
|
|
|
((char-numeric? ch) (iter (cons ch chl) ty 4 (read-char)))
|
|
|
|
((char-set-contains? c:if ch) (error "reading number st=4"))
|
|
|
|
(else (iter chl ty 5 ch))))
|
|
|
|
((5)
|
|
|
|
(unless (eof-object? ch) (unread-char ch))
|
|
|
|
(cons ty (list->string (reverse chl)))))))))
|
|
|
|
|
|
|
|
;; @deffn read-c-num ch => #f|string
|
|
|
|
;; Reader for unsigned numbers as used in C (or close to it).
|
|
|
|
(define read-c-num (make-num-reader))
|
|
|
|
|
|
|
|
;;.@deffn si-map string-list ix => a-list
|
|
|
|
;; Convert list of strings to alist of char at ix and strings.
|
|
|
|
;; This is a helper for make-tree.
|
|
|
|
(define (si-map string-list ix)
|
|
|
|
(let iter ((sal '()) (sl string-list))
|
|
|
|
(cond
|
|
|
|
((null? sl) sal)
|
|
|
|
((= ix (string-length (car sl)))
|
|
|
|
(iter (reverse (acons 'else (car sl) sal)) (cdr sl)))
|
|
|
|
((assq (string-ref (car sl) ix) sal) =>
|
|
|
|
(lambda (pair)
|
|
|
|
(set-cdr! pair (cons (car sl) (cdr pair)))
|
|
|
|
(iter sal (cdr sl))))
|
|
|
|
(else ;; Add (#\? . string) to alist.
|
|
|
|
(iter (cons (cons (string-ref (car sl) ix) (list (car sl))) sal)
|
|
|
|
(cdr sl))))))
|
|
|
|
|
|
|
|
;;.@deffn make-tree strtab -> tree
|
|
|
|
;; This routine takes an alist of strings and symbols and makes a tree
|
|
|
|
;; that parses one char at a time and provide @code{'else} entry for
|
|
|
|
;; signaling sequence found. That is, if @code{("ab" . 1)} is an entry
|
|
|
|
;; then a chseq-reader (see below) would stop at @code{"ab"} and
|
|
|
|
;; return @code{1}.
|
|
|
|
(define (make-tree strtab)
|
|
|
|
(define (si-cnvt string-list ix)
|
|
|
|
(map (lambda (pair)
|
|
|
|
(if (pair? (cdr pair))
|
|
|
|
(cons (car pair) (si-cnvt (cdr pair) (1+ ix)))
|
|
|
|
(cons (car pair) (assq-ref strtab (cdr pair)))))
|
|
|
|
(si-map string-list ix)))
|
|
|
|
(si-cnvt (map car strtab) 0))
|
|
|
|
|
|
|
|
;; @deffn make-chseq-reader strtab
|
|
|
|
;; Given alist of pairs (string, token) return a function that eats chars
|
|
|
|
;; until (token . string) is returned or @code{#f} if no match is found.
|
|
|
|
(define (make-chseq-reader strtab)
|
|
|
|
;; This code works on the assumption that the else-part is always last
|
|
|
|
;; in the list of transitions.
|
|
|
|
(let ((tree (make-tree strtab)))
|
|
|
|
(lambda (ch)
|
|
|
|
(let iter ((cl (list ch)) (node tree))
|
|
|
|
(cond
|
|
|
|
((assq-ref node (car cl)) => ;; accept or shift next character
|
|
|
|
(lambda (n)
|
|
|
|
(if (eq? (caar n) 'else) ; if only else, accept, else read on
|
|
|
|
(cons (cdar n) (list->string (reverse cl)))
|
|
|
|
(iter (cons (read-char) cl) n))))
|
|
|
|
((assq-ref node 'else) => ; else exists, accept
|
|
|
|
(lambda (tok)
|
|
|
|
(unread-char (car cl))
|
|
|
|
(cons tok (list->string (reverse (cdr cl))))))
|
|
|
|
(else ;; reject
|
|
|
|
(let pushback ((cl cl))
|
|
|
|
(unless (null? (cdr cl))
|
|
|
|
(unread-char (car cl))
|
|
|
|
(pushback (cdr cl))))
|
|
|
|
#f))))))
|
|
|
|
|
|
|
|
;; @deffn make-comm-reader comm-table [#:eat-newline #t] => \
|
|
|
|
;; ch bol -> ('$code-comm "..")|('$lone-comm "..")|#f
|
|
|
|
;; comm-table is list of cons for (start . end) comment.
|
|
|
|
;; e.g. ("--" "\n") ("/*" "*/")
|
|
|
|
;; test with "/* hello **/"
|
|
|
|
;; If @code{eat-newline} is specified as true then for read comments
|
|
|
|
;; ending with a newline a newline swallowed with the comment.
|
|
|
|
;; Note: assumes backslash is never part of the end
|
|
|
|
(define* (make-comm-reader comm-table #:key (eat-newline #f))
|
|
|
|
|
|
|
|
(define (mc-read-char)
|
|
|
|
(let ((ch (read-char)))
|
|
|
|
(if (eqv? ch #\\)
|
|
|
|
(let ((ch (read-char)))
|
|
|
|
(if (eqv? ch #\newline)
|
|
|
|
(read-char)
|
|
|
|
(begin (unread-char ch) #\\)))
|
|
|
|
ch)))
|
|
|
|
|
|
|
|
(let ((tree (make-tree comm-table)))
|
|
|
|
(lambda (ch bol)
|
|
|
|
(letrec
|
|
|
|
((tval (if bol '$lone-comm '$code-comm))
|
|
|
|
(match-beg ;; match start of comment, return end-string
|
|
|
|
(lambda (cl node)
|
|
|
|
(cond
|
|
|
|
((assq-ref node (car cl)) => ;; shift next character
|
|
|
|
(lambda (n) (match-beg (cons (mc-read-char) cl) n)))
|
|
|
|
((assq-ref node 'else) =>
|
|
|
|
(lambda (res) (unread-char (car cl)) res)) ; yuck?
|
|
|
|
(else
|
|
|
|
(let pushback ((cl cl))
|
|
|
|
(unless (null? (cdr cl))
|
|
|
|
(unread-char (car cl))
|
|
|
|
(pushback (cdr cl))))
|
|
|
|
#f))))
|
|
|
|
(find-end ;; find end of comment, return comment
|
|
|
|
;; cl: comm char list; sl: shift list; il: input list;
|
|
|
|
;; ps: pattern string; px: pattern index
|
|
|
|
(lambda (cl sl il ps px)
|
|
|
|
(cond
|
|
|
|
((eq? px (string-length ps))
|
|
|
|
(if (and (not eat-newline) (eq? #\newline (car sl)))
|
|
|
|
(unread-char #\newline))
|
2016-12-18 14:39:36 +00:00
|
|
|
(if (and (pair? cl) (eqv? (car cl) #\return)) ;; rem trailing \r
|
2016-12-17 21:34:43 +00:00
|
|
|
(cons tval (list->string (reverse (cdr cl))))
|
|
|
|
(cons tval (list->string (reverse cl)))))
|
|
|
|
((null? il) (find-end cl sl (cons (mc-read-char) il) ps px))
|
|
|
|
((eof-object? (car il)) (error "open comment"))
|
|
|
|
((eqv? (car il) (string-ref ps px))
|
|
|
|
(find-end cl (cons (car il) sl) (cdr il) ps (1+ px)))
|
|
|
|
(else
|
|
|
|
(let ((il1 (append-reverse sl il)))
|
|
|
|
(find-end (cons (car il1) cl) '() (cdr il1) ps 0)))))))
|
|
|
|
(let ((ep (match-beg (list ch) tree)))
|
|
|
|
(if ep (find-end '() '() (list (mc-read-char)) ep 0) #f))))))
|
|
|
|
|
|
|
|
(define read-c-comm (make-comm-reader '(("/*" . "*/") ("//" . "\n"))))
|
|
|
|
|
|
|
|
;; @deffn filter-mt p? al => al
|
|
|
|
;; Filter match-table based on cars of al.
|
|
|
|
(define (filter-mt p? al) (filter (lambda (x) (p? (car x))) al))
|
|
|
|
|
|
|
|
;; @deffn remove-mt p? al => al
|
|
|
|
;; Remove match-table based on cars of al.
|
|
|
|
(define (remove-mt p? al) (remove (lambda (x) (p? (car x))) al))
|
|
|
|
|
|
|
|
;; @deffn map-mt f al => al
|
|
|
|
;; Map cars of al.
|
|
|
|
(define (map-mt f al) (map (lambda (x) (cons (f (car x)) (cdr x))) al))
|
|
|
|
|
|
|
|
;; @deffn make-lexer-generator match-table => lexer-generator
|
|
|
|
;; @example
|
|
|
|
;; (define gen-lexer (make-lexer-generator #:ident-reader my-id-rdr))
|
|
|
|
;; (with-input-from-file "foo" (parse (gen-lexer)))
|
|
|
|
;; @end example
|
|
|
|
;;
|
|
|
|
;; Return a thunk that returns tokens.
|
|
|
|
;; Change this to have user pass the following routines (optionally?)
|
|
|
|
;; read-num, read-ident, read-comm
|
|
|
|
;; reztab = reserved ($ident, $fixed, $float ...
|
|
|
|
;; chrtab = characters
|
|
|
|
;; comm-reader : if parser does not deal with comments must return #f
|
|
|
|
;; but problem with character ..
|
|
|
|
;; match-table:
|
|
|
|
;; @enumerate
|
|
|
|
;; symbol -> (string . symbol)
|
|
|
|
;; reserved -> (symbol . symbol)
|
|
|
|
;; char -> (char . char)
|
|
|
|
;; @end enumerate
|
|
|
|
;; todo: add bol status
|
|
|
|
(define* (make-lexer-generator match-table
|
|
|
|
#:key ident-reader num-reader
|
|
|
|
string-reader chlit-reader
|
|
|
|
comm-reader comm-skipper
|
|
|
|
space-chars)
|
|
|
|
(let* ((read-ident (or ident-reader (make-ident-reader c:if c:ir)))
|
|
|
|
(read-num (or num-reader (make-num-reader)))
|
|
|
|
(read-string (or string-reader (make-string-reader #\")))
|
|
|
|
(read-chlit (or chlit-reader (lambda (ch) #f)))
|
|
|
|
(read-comm (or comm-reader (lambda (ch bol) #f)))
|
|
|
|
(skip-comm (or comm-skipper (lambda (ch) #f)))
|
|
|
|
(spaces (or space-chars " \t\r\n"))
|
|
|
|
(space-cs (cond ((string? spaces) (string->char-set spaces))
|
|
|
|
((list? spaces) (list->char-set spaces))
|
|
|
|
((char-set? spaces) spaces)
|
|
|
|
(else (error "expecting string list or char-set"))))
|
|
|
|
;;
|
|
|
|
(ident-like? (make-ident-like-p read-ident))
|
|
|
|
;;
|
|
|
|
(strtab (filter-mt string? match-table)) ; strings in grammar
|
|
|
|
(kwstab (filter-mt ident-like? strtab)) ; keyword strings =>
|
|
|
|
(keytab (map-mt string->symbol kwstab)) ; keywords in grammar
|
|
|
|
(chrseq (remove-mt ident-like? strtab)) ; character sequences
|
|
|
|
(symtab (filter-mt symbol? match-table)) ; symbols in grammar
|
|
|
|
(chrtab (filter-mt char? match-table)) ; characters in grammar
|
|
|
|
;;
|
|
|
|
(read-chseq (make-chseq-reader chrseq))
|
|
|
|
(assc-$ (lambda (pair) (cons (assq-ref symtab (car pair)) (cdr pair))))
|
|
|
|
)
|
|
|
|
(lambda ()
|
|
|
|
(let ((bol #f))
|
|
|
|
(lambda ()
|
|
|
|
(let iter ((ch (read-char)))
|
|
|
|
(cond
|
|
|
|
((eof-object? ch) (assc-$ (cons '$end ch)))
|
|
|
|
;;((eq? ch #\newline) (set! bol #t) (iter (read-char)))
|
|
|
|
((char-set-contains? space-cs ch) (iter (read-char)))
|
|
|
|
((and (eqv? ch #\newline) (set! bol #t) #f))
|
|
|
|
((read-comm ch bol) =>
|
|
|
|
(lambda (p) (set! bol #f) (assc-$ p)))
|
|
|
|
((skip-comm ch) (iter (read-char)))
|
|
|
|
((read-ident ch) =>
|
|
|
|
(lambda (s) (or (and=> (assq-ref keytab (string->symbol s))
|
|
|
|
(lambda (tval) (cons tval s)))
|
|
|
|
(assc-$ (cons '$ident s)))))
|
|
|
|
((read-num ch) => assc-$) ; => $fixed or $float
|
|
|
|
((read-string ch) => assc-$) ; => $string
|
|
|
|
((read-chlit ch) => assc-$) ; => $chlit
|
|
|
|
((read-chseq ch) => identity)
|
|
|
|
((assq-ref chrtab ch) => (lambda (t) (cons t (string ch))))
|
|
|
|
(else (cons ch ch))))))))) ; should be error
|
|
|
|
|
|
|
|
;; @end table
|
|
|
|
|
|
|
|
;; --- last line ---
|