-
Notifications
You must be signed in to change notification settings - Fork 131
/
ast_type.go
249 lines (221 loc) · 6.52 KB
/
ast_type.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
package ast
import (
"bytes"
"io"
"github.com/wundergraph/graphql-go-tools/pkg/internal/unsafebytes"
"github.com/wundergraph/graphql-go-tools/pkg/lexer/literal"
"github.com/wundergraph/graphql-go-tools/pkg/lexer/position"
)
type TypeKind int
const (
TypeKindUnknown TypeKind = 14 + iota
TypeKindNamed
TypeKindList
TypeKindNonNull
)
type Type struct {
TypeKind TypeKind // one of Named,List,NonNull
Name ByteSliceReference // e.g. String (only on NamedType)
Position position.Position
Open position.Position // [ (only on ListType)
Close position.Position // ] (only on ListType)
Bang position.Position // ! (only on NonNullType)
OfType int
}
func (d *Document) TypeNameBytes(ref int) ByteSlice {
return d.Input.ByteSlice(d.Types[ref].Name)
}
func (d *Document) TypeNameString(ref int) string {
return unsafebytes.BytesToString(d.Input.ByteSlice(d.Types[ref].Name))
}
func (d *Document) PrintType(ref int, w io.Writer) error {
switch d.Types[ref].TypeKind {
case TypeKindNonNull:
err := d.PrintType(d.Types[ref].OfType, w)
if err != nil {
return err
}
_, err = w.Write(literal.BANG)
return err
case TypeKindNamed:
_, err := w.Write(d.Input.ByteSlice(d.Types[ref].Name))
return err
case TypeKindList:
_, err := w.Write(literal.LBRACK)
if err != nil {
return err
}
err = d.PrintType(d.Types[ref].OfType, w)
if err != nil {
return err
}
_, err = w.Write(literal.RBRACK)
return err
}
return nil
}
func (d *Document) PrintTypeBytes(ref int, buf []byte) ([]byte, error) {
if buf == nil {
buf = make([]byte, 0, 24)
}
b := bytes.NewBuffer(buf)
err := d.PrintType(ref, b)
return b.Bytes(), err
}
func (d *Document) AddType(t Type) (ref int) {
d.Types = append(d.Types, t)
return len(d.Types) - 1
}
func (d *Document) AddNamedTypeWithPosition(nameRef ByteSliceReference, position position.Position) (ref int) {
return d.AddType(Type{
TypeKind: TypeKindNamed,
Name: nameRef,
OfType: -1,
Position: position,
})
}
func (d *Document) AddNamedType(name []byte) (ref int) {
nameRef := d.Input.AppendInputBytes(name)
return d.AddNamedTypeWithPosition(nameRef, position.Position{})
}
func (d *Document) AddListType(ofType int) (ref int) {
return d.AddListTypeWithPosition(ofType, position.Position{}, position.Position{})
}
func (d *Document) AddListTypeWithPosition(ofType int, open position.Position, close position.Position) (ref int) {
return d.AddType(Type{
TypeKind: TypeKindList,
Open: open,
Close: close,
OfType: ofType,
Position: open,
})
}
func (d *Document) AddNonNullType(ofType int) (ref int) {
return d.AddNonNullTypeWithBangPosition(ofType, position.Position{})
}
func (d *Document) AddNonNullTypeWithBangPosition(ofType int, bang position.Position) (ref int) {
return d.AddType(Type{
TypeKind: TypeKindNonNull,
Bang: bang,
OfType: ofType,
Position: d.Types[ofType].Position,
})
}
func (d *Document) AddNonNullNamedType(name []byte) (ref int) {
namedRef := d.AddNamedType(name)
return d.AddNonNullType(namedRef)
}
func (d *Document) TypesAreEqualDeep(left int, right int) bool {
for {
if left == -1 || right == -1 {
return false
}
if d.Types[left].TypeKind != d.Types[right].TypeKind {
return false
}
if d.Types[left].TypeKind == TypeKindNamed {
leftName := d.TypeNameBytes(left)
rightName := d.TypeNameBytes(right)
return bytes.Equal(leftName, rightName)
}
left = d.Types[left].OfType
right = d.Types[right].OfType
}
}
func (d *Document) TypeIsScalar(ref int, definition *Document) bool {
switch d.Types[ref].TypeKind {
case TypeKindNamed:
typeName := d.TypeNameBytes(ref)
node, _ := definition.Index.FirstNodeByNameBytes(typeName)
return node.Kind == NodeKindScalarTypeDefinition
case TypeKindNonNull:
return d.TypeIsScalar(d.Types[ref].OfType, definition)
}
return false
}
func (d *Document) TypeIsEnum(ref int, definition *Document) bool {
switch d.Types[ref].TypeKind {
case TypeKindNamed:
typeName := d.TypeNameBytes(ref)
node, _ := definition.Index.FirstNodeByNameBytes(typeName)
return node.Kind == NodeKindEnumTypeDefinition
case TypeKindNonNull:
return d.TypeIsEnum(d.Types[ref].OfType, definition)
}
return false
}
func (d *Document) TypeIsNonNull(ref int) bool {
return d.Types[ref].TypeKind == TypeKindNonNull
}
func (d *Document) TypeIsList(ref int) bool {
switch d.Types[ref].TypeKind {
case TypeKindList:
return true
case TypeKindNonNull:
return d.TypeIsList(d.Types[ref].OfType)
default:
return false
}
}
func (d *Document) TypesAreCompatibleDeep(left int, right int) bool {
for {
if left == -1 || right == -1 {
return false
}
if d.Types[left].TypeKind != d.Types[right].TypeKind {
return false
}
if d.Types[left].TypeKind == TypeKindNamed {
leftName := d.TypeNameBytes(left)
rightName := d.TypeNameBytes(right)
if bytes.Equal(leftName, rightName) {
return true
}
leftNode, _ := d.Index.FirstNodeByNameBytes(leftName)
rightNode, _ := d.Index.FirstNodeByNameBytes(rightName)
if leftNode.Kind == rightNode.Kind {
return false
}
if leftNode.Kind == NodeKindInterfaceTypeDefinition && rightNode.Kind == NodeKindObjectTypeDefinition {
return d.NodeImplementsInterface(rightNode, leftNode)
}
if leftNode.Kind == NodeKindObjectTypeDefinition && rightNode.Kind == NodeKindInterfaceTypeDefinition {
return d.NodeImplementsInterface(leftNode, rightNode)
}
if leftNode.Kind == NodeKindUnionTypeDefinition && rightNode.Kind == NodeKindObjectTypeDefinition {
return d.NodeIsUnionMember(rightNode, leftNode)
}
if leftNode.Kind == NodeKindObjectTypeDefinition && rightNode.Kind == NodeKindUnionTypeDefinition {
return d.NodeIsUnionMember(leftNode, rightNode)
}
return false
}
left = d.Types[left].OfType
right = d.Types[right].OfType
}
}
func (d *Document) ResolveTypeNameBytes(ref int) ByteSlice {
resolvedTypeRef := d.ResolveUnderlyingType(ref)
return d.TypeNameBytes(resolvedTypeRef)
}
func (d *Document) ResolveTypeNameString(ref int) string {
return unsafebytes.BytesToString(d.ResolveTypeNameBytes(ref))
}
func (d *Document) ResolveUnderlyingType(ref int) (typeRef int) {
typeRef = ref
graphqlType := d.Types[ref]
for graphqlType.TypeKind != TypeKindNamed {
typeRef = graphqlType.OfType
graphqlType = d.Types[typeRef]
}
return
}
func (d *Document) ResolveListOrNameType(ref int) (typeRef int) {
typeRef = ref
graphqlType := d.Types[ref]
for (graphqlType.TypeKind != TypeKindNamed) && (graphqlType.TypeKind != TypeKindList) {
typeRef = graphqlType.OfType
graphqlType = d.Types[typeRef]
}
return
}