-
Notifications
You must be signed in to change notification settings - Fork 3
/
parse.go
238 lines (217 loc) · 5.2 KB
/
parse.go
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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
// Copyright (C) 2017 JT Olds
// See LICENSE for copying information.
package sheepda
import (
"bytes"
"fmt"
"io"
"unicode"
)
var (
Lambdas = map[rune]bool{
'Λ': true, 'λ': true, 'ᴧ': true, 'Ⲗ': true, 'ⲗ': true, '𝚲': true,
'𝛌': true, '𝛬': true, '𝜆': true, '𝜦': true, '𝝀': true, '𝝠': true,
'𝝺': true, '𝞚': true, '𝞴': true, '\\': true,
}
)
// IsVariableRune will return if the rune could be part of a variable name.
func IsVariableRune(ch rune) bool {
return !unicode.IsSpace(ch) && ch != '(' && ch != ')' && ch != '.' &&
ch != '=' && !Lambdas[ch]
}
// ParseVariable will parse a variable out of a stream. It assumes the stream
// has been advanced to the beginning of the variable.
func ParseVariable(s *Stream) (name string, err error) {
for {
ch, err := s.Peek()
if err != nil {
if err == io.EOF && name != "" {
break
}
return "", err
}
if !IsVariableRune(ch) {
break
}
name += string(ch)
s.Next()
}
if name == "" {
return "", fmt.Errorf("variable expected, not found")
}
return name, s.SwallowWhitespace()
}
// Expr represents a parsed expression. Eval only knows how to deal with
// LambdaExprs, ApplicationExprs, VariableExprs, and ProgramExprs.
type Expr interface {
String() string
}
// LambdaExpr represents a function definition.
type LambdaExpr struct {
Arg string
Body Expr
}
func (e *LambdaExpr) String() string {
return fmt.Sprintf("λ%s.%s", e.Arg, e.Body)
}
// ParseLambda parses a LambdaExpr out of a stream. It assumes the stream
// has been advanced to the beginning of the expression.
func ParseLambda(s *Stream) (*LambdaExpr, error) {
err := s.AssertMatch(Lambdas)
if err != nil {
return nil, err
}
arg, err := ParseVariable(s)
if err != nil {
return nil, err
}
err = s.AssertMatch(map[rune]bool{'.': true})
if err != nil {
return nil, err
}
body, err := ParseExpr(s)
if err != nil {
return nil, err
}
return &LambdaExpr{Arg: arg, Body: body}, nil
}
// ApplicationExpr represents a function application
type ApplicationExpr struct {
Func Expr
Arg Expr
}
func (e *ApplicationExpr) String() string {
if l, ok := e.Func.(*LambdaExpr); ok {
return fmt.Sprintf("((%s) %s)", l, e.Arg)
}
return fmt.Sprintf("(%s %s)", e.Func, e.Arg)
}
// ParseSubexpression will parse a parenthetical expression. If only one value
// is found in parentheses, it is simply an informational subexpression. If
// multiple values are found, a function application is assumed.
func ParseSubexpression(s *Stream) (Expr, error) {
err := s.AssertMatch(map[rune]bool{'(': true})
if err != nil {
return nil, err
}
fn, err := ParseExpr(s)
if err != nil {
return nil, err
}
result := fn
for {
r, err := s.Peek()
if err != nil {
return nil, err
}
if r == ')' {
s.Next()
return result, s.SwallowWhitespace()
}
next, err := ParseExpr(s)
if err != nil {
return nil, err
}
result = &ApplicationExpr{Func: result, Arg: next}
}
}
// VariableExpr represents a variable reference.
type VariableExpr struct {
Name string
}
func (e *VariableExpr) String() string {
return e.Name
}
// ParseExpr will parse the next full expression. It does not know how to
// handle assignment syntax sugar, nor does it make sure the stream has been
// completely processed.
func ParseExpr(s *Stream) (Expr, error) {
r, err := s.Peek()
if err != nil {
return nil, err
}
if Lambdas[r] {
return ParseLambda(s)
}
if r == '(' {
return ParseSubexpression(s)
}
if IsVariableRune(r) {
name, err := ParseVariable(s)
return &VariableExpr{Name: name}, err
}
return nil, fmt.Errorf("expression not found")
}
type assignment struct {
LHS string
RHS Expr
}
// ProgramExpr represents a full program.
type ProgramExpr struct {
Expr
}
// String will regenerate a list of newline-delimited assignments to place at
// the beginning, unlike ProgramExpr.Expr.String() which is otherwise
// equivalent.
func (e *ProgramExpr) String() string {
var out bytes.Buffer
expr := e.Expr
applications := false
for {
if t, ok := expr.(*ApplicationExpr); ok {
if fn, ok := t.Func.(*LambdaExpr); ok {
fmt.Fprintf(&out, "%s = %s\n", fn.Arg, t.Arg)
expr = fn.Body
applications = true
continue
}
}
if applications {
fmt.Fprintln(&out)
}
fmt.Fprint(&out, expr)
return out.String()
}
}
// Parse will parse a full lambda calculus program out of the stream. It
// understands assignment syntax sugar, such as
//
// var = \x.\y.x
//
// (do-something var)
//
func Parse(s *Stream) (*ProgramExpr, error) {
err := s.SwallowWhitespace()
if err != nil {
return nil, err
}
var assignments []assignment
for {
expr, err := ParseExpr(s)
if err != nil {
return nil, err
}
if s.EOF() {
for i := len(assignments) - 1; i >= 0; i-- {
expr = &ApplicationExpr{
Func: &LambdaExpr{Arg: assignments[i].LHS, Body: expr},
Arg: assignments[i].RHS,
}
}
return &ProgramExpr{Expr: expr}, nil
}
t, ok := expr.(*VariableExpr)
if !ok {
return nil, fmt.Errorf("unparsed code remaining")
}
err = s.AssertMatch(map[rune]bool{'=': true})
if err != nil {
return nil, err
}
rhs, err := ParseExpr(s)
if err != nil {
return nil, err
}
assignments = append(assignments, assignment{LHS: t.Name, RHS: rhs})
}
}