-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplan_execution.go
83 lines (68 loc) · 1.87 KB
/
plan_execution.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
package queryplanner
import (
"context"
"github.com/arquivei/foundationkit/errors"
"github.com/arquivei/foundationkit/trace"
)
type planExecution struct {
plan *plan
data *Payload
filledFields fieldNameSet
}
func (e *planExecution) start(ctx context.Context) error {
const op = errors.Op("planExecution.start")
ctx, span := trace.StartSpan(ctx, op.String())
defer span.End(nil)
for _, provider := range e.plan.providers {
err := e.executeProvider(ctx, provider)
if err != nil {
return errors.E(op, err)
}
}
e.clearNonRequestedFields()
return nil
}
func (e *planExecution) clearNonRequestedFields() {
requestedFields := e.plan.request.GetRequestedFields()
for _, document := range e.data.Documents {
e.clearNonRequestedFieldsFromDocument(document, requestedFields)
}
}
func (e *planExecution) executeProvider(ctx context.Context, provider FieldProvider) error {
const op = errors.Op("planExecution.executeProvider")
executionContext := ExecutionContext{
Context: ctx,
Request: e.plan.request,
Payload: e.data,
cache: newCache(),
}
for _, field := range provider.Provides() {
if e.filledFields.Exists(field.Name) {
continue
}
for index := range e.data.Documents {
err := field.Fill(index, executionContext)
if err != nil {
return errors.E(op, err)
}
e.filledFields.Add(field.Name)
}
}
return nil
}
func (e *planExecution) clearNonRequestedFieldsFromDocument(document Document, requestedFields []string) {
for _, field := range e.plan.indexProvider.Provides() {
isRequestedField := isInArray(string(field.Name), requestedFields)
if !isRequestedField {
field.Clear(document)
}
}
for _, provider := range e.plan.providers {
for _, field := range provider.Provides() {
isRequestedField := isInArray(string(field.Name), requestedFields)
if !isRequestedField {
field.Clear(document)
}
}
}
}