-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
execute.go
79 lines (64 loc) · 1.31 KB
/
execute.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
package hype
import (
"context"
)
type ExecutableNode interface {
Node
Execute(ctx context.Context, d *Document) error
}
type ExecuteFn func(ctx context.Context, d *Document) error
func (fn ExecuteFn) Execute(ctx context.Context, d *Document) error {
return fn(ctx, d)
}
type WaitGrouper interface {
Go(fn func() error)
}
func (list Nodes) Execute(wg WaitGrouper, ctx context.Context, d *Document) (err error) {
if d == nil {
return ErrIsNil("document")
}
for _, n := range list {
if nodes, ok := n.(Nodes); ok {
err := nodes.Execute(wg, ctx, d)
if err != nil {
return err
}
continue
}
name := d.Filename
if n, ok := n.(interface{ FileName() string }); ok {
name = n.FileName()
}
cn, ok := n.(ExecutableNode)
if ok {
wg.Go(func() error {
err := cn.Execute(ctx, d)
if err != nil {
var contents []byte
if d.Parser != nil {
contents = d.Parser.Contents
}
return ExecuteError{
Contents: contents,
Document: d,
Err: err,
Filename: name,
Root: d.Root,
}
}
return nil
})
}
err := n.Children().Execute(wg, ctx, d)
if err != nil {
return ExecuteError{
Contents: d.Parser.Contents,
Document: d,
Err: err,
Filename: name,
Root: d.Root,
}
}
}
return nil
}