-
Notifications
You must be signed in to change notification settings - Fork 15
/
match.go
218 lines (191 loc) · 3.76 KB
/
match.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
package rel
import "fmt"
type Matcher interface {
Match(Value) bool
}
type Let func(Value)
func (m Let) Match(v Value) bool {
m(v)
return true
}
type BindMatcher struct {
target interface{}
}
func Bind(target interface{}) BindMatcher {
return BindMatcher{target: target}
}
func (m BindMatcher) Match(v Value) bool {
ok := false
switch target := m.target.(type) {
case *float64:
if n, ok := v.(Number); ok {
*target = n.Float64()
return true
}
return false
case *int:
if n, ok := v.(Number); ok {
f := n.Float64()
*target = int(f)
return float64(*target) == f
}
return false
case *string:
*target = v.String()
return true
case *Number:
*target, ok = v.(Number)
case *Tuple:
*target, ok = v.(Tuple)
case *Set:
*target, ok = v.(Set)
case *Value:
*target = v
return true
default:
panic(fmt.Errorf("%v %[1]T unsupported", target))
}
return ok
}
type MatchFirst []Matcher
func (m MatchFirst) Match(v Value) bool {
for _, o := range m {
if o.Match(v) {
return true
}
}
return false
}
type MatchAll []Matcher
func (m MatchAll) Match(v Value) bool {
for _, o := range m {
if !o.Match(v) {
return false
}
}
return true
}
type LiteralMatcher struct {
value Value
}
func Lit(value Value) LiteralMatcher {
return LiteralMatcher{value: value}
}
func (m LiteralMatcher) Match(v Value) bool {
return v.Equal(m.value)
}
type MatchNum func(n Number)
func (m MatchNum) Match(v Value) bool {
if n, ok := v.(Number); ok {
m(n)
return true
}
return false
}
type MatchInt func(i int)
func (m MatchInt) Match(v Value) bool {
if n, ok := v.(Number); ok {
if i, is := n.Int(); is {
m(i)
return true
}
}
return false
}
type TupleMatcher struct {
attrs map[string]Matcher
rest Matcher
}
func NewTupleMatcher(attrs map[string]Matcher, rest Matcher) TupleMatcher {
return TupleMatcher{attrs: attrs, rest: rest}
}
func (m TupleMatcher) Match(v Value) bool {
if t, ok := v.(Tuple); ok {
for name, matcher := range m.attrs {
if a, has := t.Get(name); has {
if matcher.Match(a) {
continue
}
}
return false
}
rest := EmptyTuple
for e := t.Enumerator(); e.MoveNext(); {
name, attr := e.Current()
if _, has := m.attrs[name]; !has {
rest = rest.With(name, attr)
}
}
return m.rest.Match(rest)
}
return false
}
type SetMatcher struct {
elem Matcher
}
func NewSetMatcher(elem Matcher) SetMatcher {
return SetMatcher{elem: elem}
}
func (m SetMatcher) Match(v Value) bool {
if s, ok := v.(Set); ok {
for e := s.Enumerator(); e.MoveNext(); {
if !m.elem.Match(e.Current()) {
return false
}
}
return true
}
return false
}
type FuncMatcher struct {
tuples [][2]Matcher
rest Matcher
}
func MatchFunc(tuples [][2]Matcher, rest Matcher) FuncMatcher {
return FuncMatcher{tuples: tuples, rest: rest}
}
func (m FuncMatcher) Match(v Value) bool {
if s, ok := v.(Set); ok {
e := s.Enumerator()
if !e.MoveNext() {
return false
}
el0 := e.Current()
t, ok := el0.(Tuple)
if !ok {
return false
}
if t.Count() != 2 {
return false
}
var at, other Value
tms := map[string]Matcher{}
for te := t.Enumerator(); te.MoveNext(); {
if name, _ := te.Current(); name == "@" {
tms[name] = Let(func(v Value) { at = v })
} else {
tms[name] = Let(func(v Value) { other = v })
}
}
tm := NewTupleMatcher(tms, Lit(EmptyTuple))
tuples := append([][2]Matcher{}, m.tuples...)
rest := None
tuple:
for e = s.Enumerator(); e.MoveNext(); {
residue := tuples[:0]
if !tm.Match(e.Current()) {
return false
}
for _, m := range tuples {
if m[0].Match(at) && m[1].Match(other) {
continue tuple
}
residue = append(residue, m)
}
rest = rest.With(e.Current())
tuples = residue
}
return m.rest.Match(rest)
}
return false
}