forked from cayleygraph/cayley
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptimizer.go
566 lines (540 loc) · 12.7 KB
/
optimizer.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
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
// 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"
"fmt"
"sort"
"strings"
"github.com/aperturerobotics/cayley/graph/iterator"
"github.com/aperturerobotics/cayley/quad"
"github.com/aperturerobotics/cayley/query/shape"
)
func NewOptimizer() *Optimizer {
return &Optimizer{}
}
type Optimizer struct {
tableInd int
regexpOp CmpOp
noOffsetWithoutLimit bool // blame mysql
}
func (opt *Optimizer) SetRegexpOp(op CmpOp) {
opt.regexpOp = op
}
func (opt *Optimizer) NoOffsetWithoutLimit() {
opt.noOffsetWithoutLimit = true
}
func (opt *Optimizer) nextTable() string {
opt.tableInd++
return fmt.Sprintf("t_%d", opt.tableInd)
}
func (opt *Optimizer) ensureAliases(s *Select) {
for i, src := range s.From {
if t, ok := src.(Table); ok && t.Alias == "" {
t.Alias = opt.nextTable()
s.From[i] = t
// TODO: copy slice
for j := range s.Fields {
f := &s.Fields[j]
if f.Table == "" {
f.Table = t.Alias
}
}
for j := range s.Where {
w := &s.Where[j]
if w.Table == "" {
w.Table = t.Alias
}
}
}
}
}
func sortDirs(dirs []quad.Direction) {
sort.Slice(dirs, func(i, j int) bool {
return dirs[i] < dirs[j]
})
}
func (opt *Optimizer) OptimizeShape(ctx context.Context, s shape.Shape) (shape.Shape, bool, error) {
switch s := s.(type) {
case shape.AllNodes:
return AllNodes(), true, nil
case shape.Lookup:
return opt.optimizeLookup(s)
case shape.Filter:
return opt.optimizeFilters(s)
case shape.Intersect:
return opt.optimizeIntersect(s)
case shape.Quads:
return opt.optimizeQuads(s)
case shape.NodesFrom:
return opt.optimizeNodesFrom(s)
case shape.QuadsAction:
return opt.optimizeQuadsAction(s)
case shape.Save:
return opt.optimizeSave(s)
case shape.Page:
return opt.optimizePage(s)
default:
return s, false, nil
}
}
func selectValueQuery(v quad.Value, op CmpOp) ([]Where, []Value, bool) {
if op == OpEqual {
// we can use hash to check equality
return []Where{
{Field: "hash", Op: op, Value: Placeholder{}},
}, []Value{
HashOf(v),
}, true
}
var (
where []Where
params []Value
)
switch v := v.(type) {
case quad.IRI:
where = []Where{
{Field: "value_string", Op: op, Value: Placeholder{}},
{Field: "iri", Op: OpIsTrue},
}
params = []Value{
StringVal(v),
}
case quad.BNode:
where = []Where{
{Field: "value_string", Op: op, Value: Placeholder{}},
{Field: "bnode", Op: OpIsTrue},
}
params = []Value{
StringVal(v),
}
case quad.String:
where = []Where{
{Field: "value_string", Op: op, Value: Placeholder{}},
{Field: "iri", Op: OpIsNull},
{Field: "bnode", Op: OpIsNull},
{Field: "datatype", Op: OpIsNull},
{Field: "language", Op: OpIsNull},
}
params = []Value{
StringVal(v),
}
case quad.LangString:
where = []Where{
{Field: "value_string", Op: op, Value: Placeholder{}},
{Field: "language", Op: OpEqual, Value: Placeholder{}},
}
params = []Value{
StringVal(v.Value),
StringVal(v.Lang),
}
case quad.TypedString:
where = []Where{
{Field: "value_string", Op: op, Value: Placeholder{}},
{Field: "datatype", Op: OpEqual, Value: Placeholder{}},
}
params = []Value{
StringVal(v.Value),
StringVal(v.Type),
}
case quad.Int:
where = []Where{
{Field: "value_int", Op: op, Value: Placeholder{}},
}
params = []Value{
IntVal(v),
}
case quad.Float:
where = []Where{
{Field: "value_float", Op: op, Value: Placeholder{}},
}
params = []Value{
FloatVal(v),
}
case quad.Bool:
where = []Where{
{Field: "value_bool", Op: op, Value: Placeholder{}},
}
params = []Value{
BoolVal(v),
}
case quad.Time:
where = []Where{
{Field: "value_time", Op: op, Value: Placeholder{}},
}
params = []Value{
TimeVal(v),
}
default:
return nil, nil, false
}
return where, params, true
}
func SelectValue(v quad.Value, op CmpOp) *Select {
where, params, ok := selectValueQuery(v, op)
if !ok {
return nil
}
sel := Nodes(where, params)
return &sel
}
func (opt *Optimizer) optimizeLookup(s shape.Lookup) (shape.Shape, bool, error) {
if len(s) != 1 {
// TODO: support for IN
return s, false, nil
}
sel := SelectValue(s[0], OpEqual)
if sel == nil {
return s, false, nil
}
return *sel, true, nil
}
func convRegexp(re string) string {
return re // TODO: convert regular expression
}
func (opt *Optimizer) optimizeFilter(from shape.Shape, f shape.ValueFilter) ([]Where, []Value, bool) {
switch f := f.(type) {
case shape.Comparison:
var cmp CmpOp
switch f.Op {
case iterator.CompareGT:
cmp = OpGT
case iterator.CompareGTE:
cmp = OpGTE
case iterator.CompareLT:
cmp = OpLT
case iterator.CompareLTE:
cmp = OpLTE
default:
return nil, nil, false
}
return selectValueQuery(f.Val, cmp)
case shape.Wildcard:
if opt.regexpOp == "" {
return nil, nil, false
}
return []Where{
{Field: "value_string", Op: opt.regexpOp, Value: Placeholder{}},
}, []Value{
StringVal(convRegexp(f.Regexp())),
}, true
case shape.Regexp:
if opt.regexpOp == "" {
return nil, nil, false
}
where := []Where{
{Field: "value_string", Op: opt.regexpOp, Value: Placeholder{}},
}
if !f.Refs {
where = append(where, []Where{
{Field: "iri", Op: OpIsNull},
{Field: "bnode", Op: OpIsNull},
}...)
}
return where, []Value{
StringVal(convRegexp(f.Re.String())),
}, true
default:
return nil, nil, false
}
}
func (opt *Optimizer) optimizeFilters(s shape.Filter) (shape.Shape, bool, error) {
switch from := s.From.(type) {
case shape.AllNodes:
case Select:
if !from.isAll() {
return s, false, nil
}
t, ok := from.From[0].(Table)
if !ok || t.Name != "nodes" {
return s, false, nil
}
default:
return s, false, nil
}
var (
where []Where
params []Value
)
left := shape.Filter{
From: s.From,
}
for _, f := range s.Filters {
if w, p, ok := opt.optimizeFilter(s.From, f); ok {
where = append(where, w...)
params = append(params, p...)
} else {
left.Filters = append(left.Filters, f)
}
}
if len(where) == 0 {
return s, false, nil
}
sel := Nodes(where, params)
if len(left.Filters) == 0 {
return sel, true, nil
}
left.From = sel
return left, true, nil
}
func (opt *Optimizer) optimizeQuads(s shape.Quads) (shape.Shape, bool, error) {
t1 := opt.nextTable()
sel := AllQuads(t1)
for _, f := range s {
wr := Where{
Table: t1,
Field: dirField(f.Dir),
Op: OpEqual,
}
switch fv := f.Values.(type) {
case shape.Fixed:
if len(fv) != 1 {
// TODO: support IN, or generate SELECT equivalent
return s, false, nil
}
wr.Value = sel.AppendParam(fv[0].(Value))
sel.Where = append(sel.Where, wr)
case Select:
if len(fv.Fields) == 1 {
// simple case - just add subquery to FROM
tbl := opt.nextTable()
sel.From = append(sel.From, Subquery{
Query: fv,
Alias: tbl,
})
wr.Value = FieldName{
Name: fv.Fields[0].NameOrAlias(),
Table: tbl,
}
sel.Where = append(sel.Where, wr)
continue
} else if fv.onlyAsSubquery() {
// TODO: generic subquery: pass all tags to main query, set WHERE on specific direction, drop __* tags
return s, false, nil
}
opt.ensureAliases(&fv)
// add all tables from subquery to the main one, but skip __node field - we should add it to WHERE
var head Field
for _, f := range fv.Fields {
if f.Alias == tagNode {
for _, w := range fv.Where {
if w.Table == f.Table && w.Field == f.Alias {
// TODO: if __node was used in WHERE of subquery, we should rewrite it
return s, false, nil
}
}
f.Alias = ""
head = f
continue
}
sel.Fields = append(sel.Fields, f)
}
if head.Table == "" {
// something is wrong
return s, false, nil
}
sel.From = append(sel.From, fv.From...)
sel.Where = append(sel.Where, fv.Where...)
sel.Params = append(sel.Params, fv.Params...)
wr.Value = FieldName{
Name: head.Name,
Table: head.Table,
}
sel.Where = append(sel.Where, wr)
default:
return s, false, nil
}
}
return sel, true, nil
}
func (opt *Optimizer) optimizeNodesFrom(s shape.NodesFrom) (shape.Shape, bool, error) {
sel, ok := s.Quads.(Select)
if !ok {
return s, false, nil
}
sel.Fields = append([]Field{}, sel.Fields...)
// all we need is to remove all quad-related tags and preserve one with matching direction
dir := dirTag(s.Dir)
found := false
for i := 0; i < len(sel.Fields); i++ {
f := &sel.Fields[i]
if f.Alias == dir {
f.Alias = tagNode
found = true
} else if strings.HasPrefix(f.Alias, tagPref) {
sel.Fields = append(sel.Fields[:i], sel.Fields[i+1:]...)
i--
}
}
if !found {
return s, false, nil
}
// NodesFrom implies that the iterator will use NextPath
sel.nextPath = true
return sel, true, nil
}
func (opt *Optimizer) optimizeQuadsAction(s shape.QuadsAction) (shape.Shape, bool, error) {
sel := Select{
Fields: []Field{
{Name: dirField(s.Result), Alias: tagNode},
},
From: []Source{
Table{Name: "quads"},
},
// NodesFrom (that is a part of QuadsAction) implies that the iterator will use NextPath
nextPath: true,
}
var dirs []quad.Direction
for d := range s.Save {
dirs = append(dirs, d)
}
sortDirs(dirs)
for _, d := range dirs {
for _, t := range s.Save[d] {
sel.Fields = append(sel.Fields, Field{
Name: dirField(d), Alias: t,
})
}
}
dirs = nil
for d := range s.Filter {
dirs = append(dirs, d)
}
sortDirs(dirs)
for _, d := range dirs {
v := s.Filter[d]
sel.WhereEq("", dirField(d), v.(Value))
}
return sel, true, nil
}
func (opt *Optimizer) optimizeSave(s shape.Save) (shape.Shape, bool, error) {
sel, ok := s.From.(Select)
if !ok {
return s, false, nil
}
// find primary value used by iterators
fi := -1
for i, f := range sel.Fields {
if f.Alias == tagNode {
fi = i
break
}
}
if fi < 0 {
return s, false, nil
}
// add SELECT fields as aliases for primary field
f := sel.Fields[fi]
fields := make([]Field, 0, len(s.Tags)+len(sel.Fields))
for _, tag := range s.Tags {
f.Alias = tag
fields = append(fields, f)
}
// add other fields
fields = append(fields, sel.Fields...)
sel.Fields = fields
return sel, true, nil
}
func (opt *Optimizer) optimizePage(s shape.Page) (shape.Shape, bool, error) {
sel, ok := s.From.(Select)
if !ok {
return s, false, nil
}
// do not optimize if db only can use offset with limit, and we have no limits set
if opt.noOffsetWithoutLimit && sel.Limit == 0 && s.Limit == 0 {
return s, false, nil
}
// call shapes optimizer to calculate correct skip and limit
p := shape.Page{
Skip: sel.Offset,
Limit: sel.Limit,
}.ApplyPage(s)
if p == nil {
// no intersection - no results
return nil, true, nil
}
sel.Limit = p.Limit
sel.Offset = p.Skip
return sel, true, nil
}
func (opt *Optimizer) optimizeIntersect(s shape.Intersect) (shape.Shape, bool, error) {
var (
sels []Select
other shape.Intersect
)
// we will add our merged Select to this slot
other = append(other, nil)
for _, sub := range s {
// TODO: sort by onlySubquery flag first
if sel, ok := sub.(Select); ok && !sel.onlyAsSubquery() {
sels = append(sels, sel)
} else {
other = append(other, sub)
}
}
if len(sels) <= 1 {
return s, false, nil
}
for i := range sels {
sels[i] = sels[i].Clone()
opt.ensureAliases(&sels[i])
}
pri := sels[0]
var head *Field
for i, f := range pri.Fields {
if f.Alias == tagNode {
head = &pri.Fields[i]
break
}
}
if head == nil {
return s, false, nil
}
sec := sels[1:]
nextPath := false
for _, s2 := range sec {
// merge From, Where and Params
pri.From = append(pri.From, s2.From...)
pri.Where = append(pri.Where, s2.Where...)
pri.Params = append(pri.Params, s2.Params...)
nextPath = nextPath || s2.nextPath
// also find and remove primary tag, but add the same field to WHERE
ok := false
for _, f := range s2.Fields {
if f.Alias == tagNode {
ok = true
pri.Where = append(pri.Where, Where{
Table: head.Table,
Field: head.Name,
Op: OpEqual,
Value: FieldName{
Table: f.Table,
Name: f.Name,
},
})
} else {
pri.Fields = append(pri.Fields, f)
}
}
if !ok {
return s, false, nil
}
}
if len(other) == 1 {
pri.nextPath = pri.nextPath || nextPath
return pri, true, nil
}
other[0] = pri
return other, true, nil
}