forked from cayleygraph/cayley
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathiterator.go
396 lines (356 loc) · 8.55 KB
/
iterator.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
// Copyright 2017 The Cayley Authors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package sql
import (
"context"
"database/sql"
"fmt"
"strings"
"github.com/aperturerobotics/cayley/graph"
"github.com/aperturerobotics/cayley/graph/iterator"
"github.com/aperturerobotics/cayley/graph/refs"
"github.com/aperturerobotics/cayley/quad"
"github.com/aperturerobotics/cayley/query/shape"
)
var _ shape.Optimizer = (*QuadStore)(nil)
func (qs *QuadStore) OptimizeShape(ctx context.Context, s shape.Shape) (shape.Shape, bool, error) {
return qs.opt.OptimizeShape(ctx, s)
}
func (qs *QuadStore) prepareQuery(s Shape) (string, []interface{}) {
args := s.Args()
vals := make([]interface{}, 0, len(args))
for _, a := range args {
vals = append(vals, a.SQLValue())
}
b := NewBuilder(qs.flavor.QueryDialect)
qu := s.SQL(b)
return qu, vals
}
func (qs *QuadStore) QueryRow(ctx context.Context, s Shape) *sql.Row {
qu, vals := qs.prepareQuery(s)
return qs.db.QueryRowContext(ctx, qu, vals...)
}
func (qs *QuadStore) Query(ctx context.Context, s Shape) (*sql.Rows, error) {
qu, vals := qs.prepareQuery(s)
rows, err := qs.db.QueryContext(ctx, qu, vals...)
if err != nil {
return nil, fmt.Errorf("sql query failed: %v\nquery: %v", err, qu)
}
return rows, nil
}
func (qs *QuadStore) newIterator(s Select) *Iterator {
return &Iterator{
qs: qs,
query: s,
}
}
type Iterator struct {
qs *QuadStore
query Select
err error
}
func (it *Iterator) Iterate(ctx context.Context) iterator.Scanner {
return it.qs.newIteratorNext(it.query)
}
func (it *Iterator) Lookup(ctx context.Context) iterator.Index {
return it.qs.newIteratorContains(it.query)
}
func (it *Iterator) Stats(ctx context.Context) (iterator.Costs, error) {
sz, err := it.getSize(ctx)
return iterator.Costs{
NextCost: 1,
ContainsCost: 10,
Size: sz,
}, err
}
func (it *Iterator) estimateSize(ctx context.Context) int64 {
if it.query.Limit > 0 {
return it.query.Limit
}
st, err := it.qs.Stats(ctx, false)
if err != nil && it.err == nil {
it.err = err
}
return st.Quads.Value
}
func (it *Iterator) getSize(ctx context.Context) (refs.Size, error) {
sz, err := it.qs.querySize(ctx, it.query)
if err != nil {
it.err = err
return refs.Size{Value: it.estimateSize(ctx), Exact: false}, err
}
return sz, nil
}
func (it *Iterator) Optimize(ctx context.Context) (iterator.Shape, bool, error) {
return it, false, nil
}
func (it *Iterator) SubIterators() []iterator.Shape {
return nil
}
func (it *Iterator) String() string {
return it.query.SQL(NewBuilder(it.qs.flavor.QueryDialect))
}
func newIteratorBase(qs *QuadStore, s Select) iteratorBase {
return iteratorBase{
qs: qs,
query: s,
}
}
type iteratorBase struct {
qs *QuadStore
query Select
cols []string
cind map[quad.Direction]int
err error
res graph.Ref
tags map[string]graph.Ref
}
func (it *iteratorBase) TagResults(ctx context.Context, m map[string]graph.Ref) error {
if err := it.Err(); err != nil {
return err
}
for tag, val := range it.tags {
m[tag] = val
}
return nil
}
func (it *iteratorBase) Result(ctx context.Context) (graph.Ref, error) {
return it.res, it.err
}
func (it *iteratorBase) ensureColumns() {
if it.cols != nil {
return
}
it.cols = it.query.Columns()
it.cind = make(map[quad.Direction]int, len(quad.Directions)+1)
for i, name := range it.cols {
if !strings.HasPrefix(name, tagPref) {
continue
}
if name == tagNode {
it.cind[quad.Any] = i
continue
}
name = name[len(tagPref):]
for _, d := range quad.Directions {
if name == d.String() {
it.cind[d] = i
break
}
}
}
}
func (it *iteratorBase) scanValue(r *sql.Rows) bool {
it.ensureColumns()
nodes := make([]NodeHash, len(it.cols))
pointers := make([]interface{}, len(nodes))
for i := range pointers {
pointers[i] = &nodes[i]
}
if err := r.Scan(pointers...); err != nil {
it.err = err
return false
}
it.tags = make(map[string]graph.Ref)
for i, name := range it.cols {
if !strings.Contains(name, tagPref) {
it.tags[name] = nodes[i].ValueHash
}
}
if len(it.cind) > 1 {
var q QuadHashes
for _, d := range quad.Directions {
i, ok := it.cind[d]
if !ok {
it.err = fmt.Errorf("cannot find quad %v in query output (columns: %v)", d, it.cols)
return false
}
q.Set(d, nodes[i].ValueHash)
}
it.res = q
return true
}
i, ok := it.cind[quad.Any]
if !ok {
it.err = fmt.Errorf("cannot find node hash in query output (columns: %v, cind: %v)", it.cols, it.cind)
return false
}
it.res = nodes[i]
return true
}
func (it *iteratorBase) Err() error {
return it.err
}
func (it *iteratorBase) String() string {
return it.query.SQL(NewBuilder(it.qs.flavor.QueryDialect))
}
func (qs *QuadStore) newIteratorNext(s Select) *iteratorNext {
return &iteratorNext{
iteratorBase: newIteratorBase(qs, s),
}
}
type iteratorNext struct {
iteratorBase
cursor *sql.Rows
// TODO(dennwc): nextPath workaround; remove when we get rid of NextPath in general
nextPathRes graph.Ref
nextPathTags map[string]graph.Ref
}
func (it *iteratorNext) Next(ctx context.Context) bool {
if it.err != nil {
return false
}
if it.cursor == nil {
it.cursor, it.err = it.qs.Query(ctx, it.query)
}
// TODO(dennwc): this loop exists only because of nextPath workaround
for {
if it.err != nil {
return false
}
if it.nextPathRes != nil {
it.res = it.nextPathRes
it.tags = it.nextPathTags
it.nextPathRes = nil
it.nextPathTags = nil
return true
}
if !it.cursor.Next() {
it.err = it.cursor.Err()
it.cursor.Close()
return false
}
prev := it.res
if !it.scanValue(it.cursor) {
return false
}
if !it.query.nextPath {
return true
}
if prev == nil || prev.Key() != it.res.Key() {
return true
}
// skip the same main key if in nextPath mode
// the user should receive accept those results via NextPath of the iterator
}
}
func (it *iteratorNext) NextPath(ctx context.Context) bool {
if it.err != nil {
return false
}
if !it.query.nextPath {
return false
}
if !it.cursor.Next() {
it.err = it.cursor.Err()
it.cursor.Close()
return false
}
prev := it.res
if !it.scanValue(it.cursor) {
return false
}
if prev.Key() == it.res.Key() {
return true
}
// different main keys - return false, but keep this results for the Next
it.nextPathRes = it.res
it.nextPathTags = it.tags
it.res = nil
it.tags = nil
return false
}
func (it *iteratorNext) Close() error {
if it.cursor != nil {
it.cursor.Close()
it.cursor = nil
}
return nil
}
func (qs *QuadStore) newIteratorContains(s Select) *iteratorContains {
return &iteratorContains{
iteratorBase: newIteratorBase(qs, s),
}
}
type iteratorContains struct {
iteratorBase
// TODO(dennwc): nextPath workaround; remove when we get rid of NextPath in general
nextPathRows *sql.Rows
}
func (it *iteratorContains) Contains(ctx context.Context, v graph.Ref) (bool, error) {
it.ensureColumns()
sel := it.query
sel.Where = append([]Where{}, sel.Where...)
switch v := v.(type) {
case NodeHash:
i, ok := it.cind[quad.Any]
if !ok {
return false, nil
}
f := it.query.Fields[i]
sel.WhereEq(f.Table, f.Name, v)
case QuadHashes:
for _, d := range quad.Directions {
i, ok := it.cind[d]
if !ok {
return false, nil
}
h := v.Get(d)
if !h.Valid() {
continue
}
f := it.query.Fields[i]
sel.WhereEq(f.Table, f.Name, NodeHash{h})
}
default:
return false, nil
}
rows, err := it.qs.Query(ctx, sel)
if err != nil {
it.err = err
return false, err
}
if it.query.nextPath {
if it.nextPathRows != nil {
_ = it.nextPathRows.Close()
}
it.nextPathRows = rows
} else {
defer rows.Close()
}
if !rows.Next() {
it.err = rows.Err()
return false, it.err
}
return it.scanValue(rows), it.err
}
func (it *iteratorContains) NextPath(ctx context.Context) bool {
if it.err != nil {
return false
}
if !it.query.nextPath {
return false
}
if !it.nextPathRows.Next() {
it.err = it.nextPathRows.Err()
return false
}
return it.scanValue(it.nextPathRows)
}
func (it *iteratorContains) Close() error {
if it.nextPathRows != nil {
return it.nextPathRows.Close()
}
return nil
}