-
Notifications
You must be signed in to change notification settings - Fork 72
/
query.go
318 lines (273 loc) · 7.96 KB
/
query.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
package kallax
import (
"errors"
"fmt"
"github.com/Masterminds/squirrel"
)
var (
// ErrManyToManyNotSupported is returned when a many to many relationship
// is added to a query.
ErrManyToManyNotSupported = errors.New("kallax: many to many relationships are not supported")
)
// Query is the common interface all queries must satisfy. The basic abilities
// of a query are compiling themselves to something executable and return
// some query settings.
type Query interface {
compile() ([]string, squirrel.SelectBuilder)
getRelationships() []Relationship
isReadOnly() bool
// Schema returns the schema of the query model.
Schema() Schema
// GetOffset returns the number of skipped rows in the query.
GetOffset() uint64
// GetLimit returns the max number of rows retrieved by the query.
GetLimit() uint64
// GetBatchSize returns the number of rows retrieved by the store per
// batch. This is only used and has effect on queries with 1:N
// relationships.
GetBatchSize() uint64
}
type columnSet []SchemaField
func (cs columnSet) contains(col SchemaField) bool {
for _, c := range cs {
if c.String() == col.String() {
return true
}
}
return false
}
func (cs *columnSet) add(cols ...SchemaField) {
for _, col := range cols {
cs.addCol(col)
}
}
func (cs *columnSet) addCol(col SchemaField) {
if !cs.contains(col) {
*cs = append(*cs, col)
}
}
func (cs *columnSet) remove(cols ...SchemaField) {
var newSet = make(columnSet, 0, len(*cs))
toRemove := columnSet(cols)
for _, col := range *cs {
if !toRemove.contains(col) {
newSet = append(newSet, col)
}
}
*cs = newSet
}
func (cs columnSet) copy() []SchemaField {
var result = make(columnSet, len(cs))
for i, col := range cs {
result[i] = col
}
return result
}
// BaseQuery is a generic query builder to build queries programmatically.
type BaseQuery struct {
schema Schema
columns columnSet
excludedColumns columnSet
// relationColumns contains the qualified names of the columns selected by the 1:1
// relationships
relationColumns []string
relationships []Relationship
builder squirrel.SelectBuilder
selectChanged bool
batchSize uint64
offset uint64
limit uint64
}
// NewBaseQuery creates a new BaseQuery for querying the table of the given schema.
func NewBaseQuery(schema Schema) *BaseQuery {
return &BaseQuery{
builder: squirrel.StatementBuilder.
PlaceholderFormat(squirrel.Dollar).
Select().
From(schema.Table() + " " + schema.Alias()),
columns: columnSet(schema.Columns()),
batchSize: 50,
schema: schema,
}
}
// Schema returns the Schema of the query.
func (q *BaseQuery) Schema() Schema {
return q.schema
}
func (q *BaseQuery) isReadOnly() bool {
return q.selectChanged
}
// Select adds the given columns to the list of selected columns in the query.
func (q *BaseQuery) Select(columns ...SchemaField) {
if !q.selectChanged {
q.columns = columnSet{}
q.selectChanged = true
}
q.excludedColumns.remove(columns...)
q.columns.add(columns...)
}
// SelectNot adds the given columns to the list of excluded columns in the query.
func (q *BaseQuery) SelectNot(columns ...SchemaField) {
q.excludedColumns.add(columns...)
}
// Copy returns an identical copy of the query. BaseQuery is mutable, that is
// why this method is provided.
func (q *BaseQuery) Copy() *BaseQuery {
return &BaseQuery{
builder: q.builder,
columns: q.columns.copy(),
excludedColumns: q.excludedColumns.copy(),
relationColumns: q.relationColumns[:],
relationships: q.relationships[:],
selectChanged: q.selectChanged,
batchSize: q.GetBatchSize(),
limit: q.GetLimit(),
offset: q.GetOffset(),
schema: q.schema,
}
}
func (q *BaseQuery) getRelationships() []Relationship {
return q.relationships
}
func (q *BaseQuery) selectedColumns() []SchemaField {
var result = make([]SchemaField, 0, len(q.columns))
for _, col := range q.columns {
if !q.excludedColumns.contains(col) {
result = append(result, col)
}
}
return result
}
// AddRelation adds a relationship if the given to the query, which is present
// in the given field of the query base schema. A condition to filter can also
// be passed in the case of one to many relationships.
func (q *BaseQuery) AddRelation(schema Schema, field string, typ RelationshipType, filter Condition) error {
if typ == ManyToMany {
return ErrManyToManyNotSupported
}
fk, ok := q.schema.ForeignKey(field)
if !ok {
return fmt.Errorf(
"kallax: cannot find foreign key to join tables %s and %s",
q.schema.Table(), schema.Table(),
)
}
schema = schema.WithAlias(field)
if typ == OneToOne {
q.join(schema, fk)
}
q.relationships = append(q.relationships, Relationship{typ, field, schema, filter})
return nil
}
func (q *BaseQuery) join(schema Schema, fk *ForeignKey) {
fkCol := fk.QualifiedName(schema)
idCol := q.schema.ID().QualifiedName(q.schema)
if fk.Inverse {
fkCol = schema.ID().QualifiedName(schema)
idCol = fk.QualifiedName(q.schema)
}
q.builder = q.builder.LeftJoin(fmt.Sprintf(
"%s %s ON (%s = %s)",
schema.Table(),
schema.Alias(),
fkCol,
idCol,
))
for _, col := range schema.Columns() {
q.relationColumns = append(
q.relationColumns,
col.QualifiedName(schema),
)
}
}
// Order adds the given order clauses to the list of columns to order the
// results by.
func (q *BaseQuery) Order(cols ...ColumnOrder) {
var c = make([]string, len(cols))
for i, v := range cols {
c[i] = v.ToSql(q.schema)
}
q.builder = q.builder.OrderBy(c...)
}
// BatchSize sets the batch size.
func (q *BaseQuery) BatchSize(size uint64) {
q.batchSize = size
}
// GetBatchSize returns the number of rows retrieved per batch while retrieving
// 1:N relationships.
func (q *BaseQuery) GetBatchSize() uint64 {
return q.batchSize
}
// Limit sets the max number of rows to retrieve.
func (q *BaseQuery) Limit(n uint64) {
q.limit = n
}
// GetLimit returns the max number of rows to retrieve.
func (q *BaseQuery) GetLimit() uint64 {
return q.limit
}
// Offset sets the number of rows to skip.
func (q *BaseQuery) Offset(n uint64) {
q.offset = n
}
// GetOffset returns the number of rows to skip.
func (q *BaseQuery) GetOffset() uint64 {
return q.offset
}
// Where adds a new condition to filter the query. All conditions added are
// concatenated with "and".
// q.Where(Eq(NameColumn, "foo"))
// q.Where(Gt(AgeColumn, 18))
// // ... WHERE name = "foo" AND age > 18
func (q *BaseQuery) Where(cond Condition) {
q.builder = q.builder.Where(cond(q.schema))
}
// compile returns the selected column names and the select builder.
func (q *BaseQuery) compile() ([]string, squirrel.SelectBuilder) {
columns := q.selectedColumns()
var (
qualifiedColumns = make([]string, len(columns))
columnNames = make([]string, len(columns))
)
for i := range columns {
qualifiedColumns[i] = columns[i].QualifiedName(q.schema)
columnNames[i] = columns[i].String()
}
return columnNames, q.builder.Columns(
append(qualifiedColumns, q.relationColumns...)...,
)
}
// String returns the SQL generated by the query. If the query is malformed,
// it will return an empty string, as errors compiling the SQL are ignored.
func (q *BaseQuery) String() string {
_, builder := q.compile()
sql, _, _ := builder.ToSql()
return sql
}
// ColumnOrder represents a column name with its order.
type ColumnOrder interface {
// ToSql returns the SQL representation of the column with its order.
ToSql(Schema) string
isColumnOrder()
}
type colOrder struct {
order string
col SchemaField
}
// ToSql returns the SQL representation of the column with its order.
func (o *colOrder) ToSql(schema Schema) string {
return fmt.Sprintf("%s %s", o.col.QualifiedName(schema), o.order)
}
func (colOrder) isColumnOrder() {}
const (
asc = "ASC"
desc = "DESC"
)
// Asc returns a column ordered by ascending order.
func Asc(col SchemaField) ColumnOrder {
return &colOrder{asc, col}
}
// Desc returns a column ordered by descending order.
func Desc(col SchemaField) ColumnOrder {
return &colOrder{desc, col}
}