-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathcompose.go
463 lines (330 loc) · 7.98 KB
/
compose.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
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
package bpl
import (
"bufio"
"errors"
"io"
"io/ioutil"
"reflect"
"github.com/qiniu/x/bufiox"
)
var (
// ErrVarNotAssigned is returned when TypeVar.Elem is not assigned.
ErrVarNotAssigned = errors.New("variable is not assigned")
// ErrVarAssigned is returned when TypeVar.Elem is already assigned.
ErrVarAssigned = errors.New("variable is already assigned")
// ErrNotEOF is returned when current position is not at EOF.
ErrNotEOF = errors.New("current position is not at EOF")
)
// -----------------------------------------------------------------------------
type nilType int
func (p nilType) Match(in *bufio.Reader, ctx *Context) (v interface{}, err error) {
return nil, nil
}
func (p nilType) RetType() reflect.Type {
return TyInterface
}
func (p nilType) SizeOf() int {
return 0
}
// Nil is a matching unit that matches zero bytes.
//
var Nil Ruler = nilType(0)
// -----------------------------------------------------------------------------
type eof int
func (p eof) Match(in *bufio.Reader, ctx *Context) (v interface{}, err error) {
_, err = in.Peek(1)
if err == io.EOF {
return nil, nil
}
return nil, ErrNotEOF
}
func (p eof) RetType() reflect.Type {
return TyInterface
}
func (p eof) SizeOf() int {
return 0
}
// EOF is a matching unit that matches EOF.
//
var EOF Ruler = eof(0)
// -----------------------------------------------------------------------------
type done int
func (p done) Match(in *bufio.Reader, ctx *Context) (v interface{}, err error) {
_, err = in.WriteTo(ioutil.Discard)
return
}
func (p done) RetType() reflect.Type {
return TyInterface
}
func (p done) SizeOf() int {
return -1
}
// Done is a matching unit that seeks current position to EOF.
//
var Done Ruler = done(0)
// -----------------------------------------------------------------------------
type and struct {
rs []Ruler
}
func (p *and) Match(in *bufio.Reader, ctx *Context) (v interface{}, err error) {
for _, r := range p.rs {
_, err = r.Match(in, ctx)
if err != nil {
return
}
}
return ctx.Dom(), nil
}
func (p *and) RetType() reflect.Type {
return TyInterface
}
func (p *and) SizeOf() int {
return -1
}
// And returns a matching unit that matches R1 R2 ... RN
//
func And(rs ...Ruler) Ruler {
if len(rs) <= 1 {
if len(rs) == 1 {
return rs[0]
}
return Nil
}
return &and{rs: rs}
}
// -----------------------------------------------------------------------------
type seq struct {
rs []Ruler
}
func (p *seq) Match(in *bufio.Reader, ctx *Context) (v interface{}, err error) {
ret := ctx.requireVarSlice()
for _, r := range p.rs {
v, err = r.Match(in, ctx.NewSub())
if err != nil {
return
}
ret = append(ret, v)
}
ctx.dom = ret
return ret, nil
}
func (p *seq) RetType() reflect.Type {
return tyInterfaceSlice
}
func (p *seq) SizeOf() int {
return -1
}
// Seq returns a matching unit that matches R1 R2 ... RN and returns matching result.
//
func Seq(rs ...Ruler) Ruler {
return &seq{rs: rs}
}
// -----------------------------------------------------------------------------
type act struct {
fn func(ctx *Context) error
}
func (p *act) Match(in *bufio.Reader, ctx *Context) (v interface{}, err error) {
err = p.fn(ctx)
if err != nil {
return
}
return ctx.Dom(), nil
}
func (p *act) RetType() reflect.Type {
return TyInterface
}
func (p *act) SizeOf() int {
return -1
}
// Do returns a matching unit that executes action fn(ctx).
//
func Do(fn func(ctx *Context) error) Ruler {
return &act{fn: fn}
}
// -----------------------------------------------------------------------------
type dyntype struct {
r func(ctx *Context) (Ruler, error)
}
func (p *dyntype) Match(in *bufio.Reader, ctx *Context) (v interface{}, err error) {
r, err := p.r(ctx)
if err != nil {
return
}
if r != nil {
return r.Match(in, ctx)
}
return
}
func (p *dyntype) RetType() reflect.Type {
return TyInterface
}
func (p *dyntype) SizeOf() int {
return -1
}
// Dyntype returns a dynamic matching unit.
//
func Dyntype(r func(ctx *Context) (Ruler, error)) Ruler {
return &dyntype{r: r}
}
// -----------------------------------------------------------------------------
type read struct {
n func(ctx *Context) int
r Ruler
}
func (p *read) Match(in *bufio.Reader, ctx *Context) (v interface{}, err error) {
n := p.n(ctx)
b := make([]byte, n)
_, err = io.ReadFull(in, b)
if err != nil {
return
}
in = bufiox.NewReaderBuffer(b)
return MatchStream(p.r, in, ctx)
}
func (p *read) RetType() reflect.Type {
return p.r.RetType()
}
func (p *read) SizeOf() int {
return -1
}
// Read returns a matching unit that reads n(ctx) bytes and matches R.
//
func Read(n func(ctx *Context) int, r Ruler) Ruler {
return &read{r: r, n: n}
}
// -----------------------------------------------------------------------------
type skip struct {
n func(ctx *Context) int
}
func (p *skip) Match(in *bufio.Reader, ctx *Context) (v interface{}, err error) {
n := p.n(ctx)
v, err = in.Discard(n)
return
}
func (p *skip) RetType() reflect.Type {
return tyInt
}
func (p *skip) SizeOf() int {
return -1
}
// Skip returns a matching unit that skips n(ctx) bytes.
//
func Skip(n func(ctx *Context) int) Ruler {
return &skip{n: n}
}
// -----------------------------------------------------------------------------
type ifType struct {
cond func(ctx *Context) bool
r Ruler
}
func (p *ifType) Match(in *bufio.Reader, ctx *Context) (v interface{}, err error) {
if p.cond(ctx) {
return p.r.Match(in, ctx)
}
return
}
func (p *ifType) RetType() reflect.Type {
return TyInterface
}
func (p *ifType) SizeOf() int {
return -1
}
// If returns a matching unit that if cond(ctx) then matches it with R.
//
func If(cond func(ctx *Context) bool, r Ruler) Ruler {
return &ifType{r: r, cond: cond}
}
// -----------------------------------------------------------------------------
type eval struct {
expr func(ctx *Context) interface{}
r Ruler
}
func (p *eval) Match(in *bufio.Reader, ctx *Context) (v interface{}, err error) {
fclose := false
val := p.expr(ctx)
switch v := val.(type) {
case []byte:
in = bufiox.NewReaderBuffer(v)
case io.Reader:
in = bufio.NewReader(v)
fclose = true
default:
panic("eval <expr> must return []byte or io.Reader")
}
v, err = MatchStream(p.r, in, ctx)
if fclose {
if v, ok := val.(io.Closer); ok {
v.Close()
}
}
return
}
func (p *eval) RetType() reflect.Type {
return p.r.RetType()
}
func (p *eval) SizeOf() int {
return -1
}
// Eval returns a matching unit that eval expr(ctx) and matches it with R.
//
func Eval(expr func(ctx *Context) interface{}, r Ruler) Ruler {
return &eval{r: r, expr: expr}
}
// -----------------------------------------------------------------------------
type assert struct {
expr func(ctx *Context) bool
msg string
}
func (p *assert) Match(in *bufio.Reader, ctx *Context) (v interface{}, err error) {
if p.expr(ctx) {
return
}
panic(p.msg)
}
func (p *assert) RetType() reflect.Type {
return TyInterface
}
func (p *assert) SizeOf() int {
return -1
}
// Assert returns a matching unit that assert expr(ctx).
//
func Assert(expr func(ctx *Context) bool, msg string) Ruler {
return &assert{msg: msg, expr: expr}
}
// -----------------------------------------------------------------------------
// A TypeVar is typeinfo of a `Struct` member.
//
type TypeVar struct {
Name string
Elem Ruler
}
// Assign assigns TypeVar.Elem.
//
func (p *TypeVar) Assign(r Ruler) error {
if p.Elem != nil {
return ErrVarAssigned
}
p.Elem = r
return nil
}
// Match is required by a matching unit. see Ruler interface.
//
func (p *TypeVar) Match(in *bufio.Reader, ctx *Context) (v interface{}, err error) {
r := p.Elem
if r == nil {
return 0, ErrVarNotAssigned
}
return r.Match(in, ctx)
}
// RetType returns matching result type.
//
func (p *TypeVar) RetType() reflect.Type {
return p.Elem.RetType()
}
// SizeOf is required by a matching unit. see Ruler interface.
//
func (p *TypeVar) SizeOf() int {
return p.Elem.SizeOf()
}
// -----------------------------------------------------------------------------