-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathfunction_invocation.go
More file actions
190 lines (170 loc) · 5.38 KB
/
function_invocation.go
File metadata and controls
190 lines (170 loc) · 5.38 KB
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
package cypher
import (
errors "golang.org/x/xerrors"
)
type FunctionInvocation struct {
ExpressionContainer
functionName string
arguments FunctionArgumentList
key string
notNil bool
err error
}
func FunctionInvocationCreate1(definition FunctionDefinition) FunctionInvocation {
return FunctionInvocationCreateWithFunctionName(definition.getImplementationName(), nil)
}
func FunctionInvocationCreateWithFunctionName(functionName string, arguments ...Expression) FunctionInvocation {
if arguments != nil {
for _, expression := range arguments {
if expression.GetError() != nil {
return FunctionInvocationError(expression.GetError())
}
}
}
argumentVisitables := make([]Visitable, len(arguments))
for i := range arguments {
argumentVisitables[i] = arguments[i]
}
f := FunctionInvocation{
functionName: functionName,
arguments: FunctionArgumentListCreate(argumentVisitables...),
notNil: true,
}
f.key = getAddress(&f)
f.ExpressionContainer = ExpressionWrap(f)
return f
}
func FunctionInvocationCreate(definition FunctionDefinition, expressions ...Expression) FunctionInvocation {
if expressions != nil {
for _, expression := range expressions {
if expression.GetError() != nil {
return FunctionInvocationError(expression.GetError())
}
}
}
if len(expressions) == 0 || expressions[0] == nil || !expressions[0].isNotNil() {
return FunctionInvocationError(errors.Errorf("function invocation create: expression for %s is required", definition.getImplementationName()))
}
arguments := make([]Visitable, len(expressions))
for i := range expressions {
arguments[i] = expressions[i]
}
f := FunctionInvocation{
functionName: definition.getImplementationName(),
arguments: FunctionArgumentListCreate(arguments...),
notNil: true,
}
f.key = getAddress(&f)
f.ExpressionContainer = ExpressionWrap(f)
return f
}
func FunctionInvocationCreateWithPatternElement(definition FunctionDefinition, element PatternElement) FunctionInvocation {
if element != nil && element.GetError() != nil {
return FunctionInvocationError(element.GetError())
}
if element == nil || !element.isNotNil() {
return FunctionInvocationError(errors.Errorf("the pattern for %s is required", definition.getImplementationName()))
}
arguments := make([]Visitable, 0)
arguments = append(arguments, element)
f := FunctionInvocation{
functionName: definition.getImplementationName(),
arguments: FunctionArgumentListCreate(arguments...),
notNil: true,
}
f.key = getAddress(&f)
f.ExpressionContainer = ExpressionWrap(f)
return f
}
func FunctionInvocationCreateWithPattern(definition FunctionDefinition, pattern Pattern) FunctionInvocation {
if pattern.GetError() != nil {
return FunctionInvocationError(pattern.GetError())
}
if !pattern.isNotNil() {
return FunctionInvocationError(errors.Errorf("the pattern for %s is required", definition.getImplementationName()))
}
arguments := make([]Visitable, len(pattern.patternElements))
for i := range pattern.patternElements {
arguments[i] = pattern.patternElements[i]
}
f := FunctionInvocation{
functionName: definition.getImplementationName(),
arguments: FunctionArgumentListCreate(arguments...),
notNil: true,
}
f.key = getAddress(&f)
f.ExpressionContainer = ExpressionWrap(f)
return f
}
func FunctionInvocationCreateDistinct(definition FunctionDefinition, expressions ...Expression) FunctionInvocation {
if expressions != nil {
for _, expression := range expressions {
if expression.GetError() != nil {
return FunctionInvocationError(expression.GetError())
}
}
}
if !definition.isAggregate() {
return FunctionInvocationError(errors.New("the distinct operator can only be applied within aggregate functions"))
}
if len(expressions) == 0 || expressions[0] == nil || !expressions[0].isNotNil() {
return FunctionInvocationError(errors.Errorf("expression for %s is required", definition.getImplementationName()))
}
arguments := make([]Visitable, 0)
arguments = append(arguments, DistinctExpression{
delegate: expressions[0],
})
for _, expression := range expressions[1:] {
arguments = append(arguments, expression)
}
f := FunctionInvocation{
functionName: definition.getImplementationName(),
arguments: FunctionArgumentListCreate(arguments...),
notNil: true,
}
f.key = getAddress(&f)
f.ExpressionContainer = ExpressionWrap(f)
return f
}
func FunctionInvocationError(err error) FunctionInvocation {
return FunctionInvocation{
err: err,
}
}
func (f FunctionInvocation) GetError() error {
return f.err
}
func (f FunctionInvocation) isNotNil() bool {
return f.notNil
}
func (f FunctionInvocation) accept(visitor *CypherRenderer) {
visitor.enter(f)
f.arguments.accept(visitor)
visitor.leave(f)
}
func (f FunctionInvocation) enter(renderer *CypherRenderer) {
renderer.append(f.functionName)
renderer.append("(")
}
func (f FunctionInvocation) leave(renderer *CypherRenderer) {
renderer.append(")")
}
func (f FunctionInvocation) getKey() string {
return f.key
}
func (f FunctionInvocation) GetExpressionType() ExpressionType {
return EXPRESSION
}
type FunctionDefinition interface {
getImplementationName() string
isAggregate() bool
}
type FunctionDefinitionDefault struct {
functionName string
}
func (f FunctionDefinitionDefault) getImplementationName() string {
return f.functionName
}
func (f FunctionDefinitionDefault) isAggregate() bool {
return false
}