summaryrefslogtreecommitdiff
path: root/parser.lisp
blob: 5470523032b8beaa806ddf4793450afa1d16d97c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
(in-package #:parser)

(defun run (p input)
  (let ((result (funcall p input)))
    (if (parsing-p result)
      (parsing-tree result)
      result)))

(defstruct parsing
  tree
  left)

(defstruct failure
  place
  message)

(defmethod print-object ((obj failure) stream)
  (let ((file (input:file (failure-place obj))))
    (if file
      (multiple-value-bind (line column) (input:line-and-column (failure-place obj))
        (format stream "~a:~a:~a: ~a" line column file (failure-message obj)))
      (format stream "~a: ~a" (input:cursor (failure-place obj)) (failure-message obj)))))

(defun new (tree)
  (lambda (input)
    (make-parsing :tree tree :left input)))

(defun bind-with-input (p f)
  (declare (optimize (speed 3)))
  (declare (type function p f))
  (lambda (input)
    (let ((r (funcall p input)))
      (if (parsing-p r)
        (funcall (the function (funcall f (parsing-tree r) input))
                 (parsing-left r))
        r))))

(defun bind (p f)
  (declare (optimize (speed 3)))
  (declare (type function p f))
  (lambda (input)
    (let ((r (funcall p input)))
      (if (parsing-p r)
        (funcall (the function (funcall f (parsing-tree r)))
                 (parsing-left r))
        r))))

(defun discarding-bind (p f)
  (declare (optimize (speed 3)))
  (declare (type function p f))
  (lambda (input)
    (let ((r (funcall p input)))
      (if (parsing-p r)
        (funcall (the function (funcall f))
                 (parsing-left r))
        r))))

(defmacro comp (bindings &body body)
  (if (null bindings)
    `(new (progn ,@body))
    (let ((v (first (car bindings)))
          (p (second (car bindings))))
      (if (eq 'symbol (type-of v))
        (if (string= (symbol-name v) "_")
          `(discarding-bind ,p (lambda () (comp ,(cdr bindings) ,@body)))
          `(bind ,p (lambda (,v) (comp ,(cdr bindings) ,@body))))
        (if (and (eq 'cons (type-of v))
                 (eq 'symbol (type-of (car v)))
                 (eq 'symbol (type-of (cdr v))))
          `(bind-with-input ,p (lambda (,(car v) ,(cdr v)) (comp ,(cdr bindings) ,@body)))
          (error "Binding name/(name,input) must be either a symbol or a cons of symbols."))))))

(defun crit (p)
  (lambda (input)
    (let ((r (funcall p input)))
      (if (parsing-p r)
        r
        (error (format nil "~a" r))))))

(defun one-of (first-parser second-parser &rest other-parsers)
  (lambda (input)
    (labels ((one-of-rec (parsers failures)
                         (if (car parsers)
                           (let ((r (funcall (car parsers) input)))
                             (cond ((failure-p r)
                                    (one-of-rec (cdr parsers) (cons r failures)))
                                   ((listp r)
                                    (one-of-rec (cdr parsers) (append r failures)))
                                   (t r)))
                           failures)))
      (one-of-rec (cons first-parser (cons second-parser other-parsers)) nil))))

(defmacro unit (&optional predicate)
  (cond ((null predicate)
         (setf predicate '(characterp it)))
        ((symbolp predicate)
         (setf predicate `(,predicate it)))
        ((characterp predicate)
         (setf predicate `(char-equal ,predicate it)))
        (t (setf predicate
                 (nsubst-if 'it
                            (lambda (x)
                              (and (symbolp x)
                                   (string-equal (symbol-name x) "IT"))) predicate))))
  `(lambda (input)
     (if (input:has-data? input)
       (let ((it (input:peek input)))
         (if ,predicate
           (make-parsing :tree it :left (input:advance input))
           (make-failure :place input
                         :message (format nil "Expected: ~a, Got: ~a" ',predicate it))))
       (make-failure :place input :message "Reached end of input."))))

(defun literal (target)
  (lambda (input)
    (if (input:has-data? input)
      (if (input:prefix? target input)
        (make-parsing :tree target :left (input:advance input (length target)))
        (make-failure :place input :message "Predicate not satisfied."))
      (make-failure :place input :message "Reached end of input."))))

(defparameter nothing
  (new nil))

(defun optional (p)
  (one-of p nothing))

(defun many (p)
  (comp ((x p)
         (xs (optional (many p))))
    (cons x xs)))

(defparameter whitespace
  (comp ((_ (optional (many (unit char:whitespace?)))))
    nil))

(defun separated-list (p separator &key include-separator)
  (comp ((v p)
         (sep (optional separator))
         (vn (if sep
               (crit (separated-list p separator))
               nothing)))
    (if include-separator
      (cons v (cons sep vn))
      (cons v vn))))