-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcolumn.go
477 lines (391 loc) · 10.9 KB
/
column.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
package sqlbuilder
import (
sqldriver "database/sql/driver"
"reflect"
"time"
)
// ColumnConfig represents a config for table's column.
// This has a name, data type and some options.
type ColumnConfig interface {
serializable
toColumn(Table) Column
Name() string
Type() ColumnType
Option() *ColumnOption
}
// ColumnType reprecents a type of column.
// Dialects handle this for know column options.
type ColumnType int
const (
ColumnTypeAny ColumnType = iota
ColumnTypeInt
ColumnTypeString
ColumnTypeDate
ColumnTypeFloat
ColumnTypeBool
ColumnTypeBytes
)
func (t ColumnType) String() string {
switch t {
case ColumnTypeInt:
return "int"
case ColumnTypeString:
return "string"
case ColumnTypeDate:
return "date"
case ColumnTypeFloat:
return "float"
case ColumnTypeBool:
return "bool"
case ColumnTypeBytes:
return "bytes"
case ColumnTypeAny:
return "any"
}
panic(newError("unknown columnType"))
}
func (t ColumnType) CapableTypes() []reflect.Type {
switch t {
case ColumnTypeInt:
return []reflect.Type{
reflect.TypeOf(int(0)),
reflect.TypeOf(int8(0)),
reflect.TypeOf(int16(0)),
reflect.TypeOf(int32(0)),
reflect.TypeOf(int64(0)),
reflect.TypeOf(uint(0)),
reflect.TypeOf(uint8(0)),
reflect.TypeOf(uint16(0)),
reflect.TypeOf(uint32(0)),
reflect.TypeOf(uint64(0)),
}
case ColumnTypeString:
return []reflect.Type{
reflect.TypeOf(""),
}
case ColumnTypeDate:
return []reflect.Type{
reflect.TypeOf(time.Time{}),
}
case ColumnTypeFloat:
return []reflect.Type{
reflect.TypeOf(float32(0)),
reflect.TypeOf(float64(0)),
}
case ColumnTypeBool:
return []reflect.Type{
reflect.TypeOf(bool(true)),
}
case ColumnTypeBytes:
return []reflect.Type{
reflect.TypeOf([]byte{}),
}
case ColumnTypeAny:
return []reflect.Type{} // but accept all types
}
return []reflect.Type{}
}
// ColumnOption represents option for a column. ex: primary key.
type ColumnOption struct {
PrimaryKey bool
NotNull bool
Unique bool
AutoIncrement bool
Size int
SqlType string
Default interface{}
}
// ColumnList represents list of Column.
type ColumnList []Column
// Column represents a table column.
type Column interface {
serializable
column_name() string
config() ColumnConfig
acceptType(interface{}) bool
// As creates Column alias.
As(alias string) Column
// Eq creates Condition for "column==right". Type for right is column's one or other Column.
Eq(right interface{}) Condition
// NotEq creates Condition for "column<>right". Type for right is column's one or other Column.
NotEq(right interface{}) Condition
// GtEq creates Condition for "column>right". Type for right is column's one or other Column.
Gt(right interface{}) Condition
// GtEq creates Condition for "column>=right". Type for right is column's one or other Column.
GtEq(right interface{}) Condition
// Lt creates Condition for "column<right". Type for right is column's one or other Column.
Lt(right interface{}) Condition
// LtEq creates Condition for "column<=right". Type for right is column's one or other Column.
LtEq(right interface{}) Condition
// Like creates Condition for "column LIKE right". Type for right is column's one or other Column.
Like(right string) Condition
// Between creates Condition for "column BETWEEN lower AND higher". Type for lower/higher is int or time.Time.
Between(lower, higher interface{}) Condition
// In creates Condition for "column IN (values[0], values[1] ...)". Type for values is column's one or other Column.
In(values ...interface{}) Condition
}
type aliasedColumn interface {
Column
column_alias() string
source() Column
}
type columnConfigImpl struct {
name string
typ ColumnType
opt *ColumnOption
}
func (c *columnConfigImpl) Name() string {
return c.name
}
func (c *columnConfigImpl) Type() ColumnType {
return c.typ
}
func (c *columnConfigImpl) Option() *ColumnOption {
if c.opt == nil {
return &ColumnOption{}
}
return c.opt
}
func (m *columnConfigImpl) toColumn(table Table) Column {
return &columnImpl{
m, table,
}
}
func (m *columnConfigImpl) serialize(bldr *builder) {
bldr.Append(dialect().QuoteField(m.name))
return
}
type columnImpl struct {
*columnConfigImpl
table Table
}
func (m *columnImpl) column_name() string {
return m.name
}
func (m *columnImpl) config() ColumnConfig {
return m.columnConfigImpl
}
func (m *columnImpl) acceptType(val interface{}) bool {
lit, ok := val.(literal)
if !ok || lit == nil {
return false
}
if lit.Raw() == nil {
return !m.opt.NotNull
}
if m.Type() == ColumnTypeAny {
return true
}
if _, ok := lit.Raw().(sqldriver.Valuer); ok {
return true
}
valt := reflect.TypeOf(lit.Raw())
for _, t := range m.typ.CapableTypes() {
if t == valt {
return true
}
}
return false
}
func (m *columnImpl) serialize(bldr *builder) {
if m == Star {
bldr.Append("*")
} else {
bldr.Append(dialect().QuoteField(m.table.Name()) + "." + dialect().QuoteField(m.name))
}
return
}
func (m *columnImpl) As(alias string) Column {
return &aliasColumn{
column: m,
alias: alias,
}
}
// AnyColumn creates config for any types.
func AnyColumn(name string, opt *ColumnOption) ColumnConfig {
return newColumnConfigImpl(name, ColumnTypeAny, opt)
}
// IntColumn creates config for INTEGER type column.
func IntColumn(name string, opt *ColumnOption) ColumnConfig {
return newColumnConfigImpl(name, ColumnTypeInt, opt)
}
// StringColumn creates config for TEXT or VARCHAR type column.
func StringColumn(name string, opt *ColumnOption) ColumnConfig {
return newColumnConfigImpl(name, ColumnTypeString, opt)
}
// DateColumn creates config for DATETIME type column.
func DateColumn(name string, opt *ColumnOption) ColumnConfig {
return newColumnConfigImpl(name, ColumnTypeDate, opt)
}
// FloatColumn creates config for REAL or FLOAT type column.
func FloatColumn(name string, opt *ColumnOption) ColumnConfig {
return newColumnConfigImpl(name, ColumnTypeFloat, opt)
}
// BoolColumn creates config for BOOLEAN type column.
func BoolColumn(name string, opt *ColumnOption) ColumnConfig {
return newColumnConfigImpl(name, ColumnTypeBool, opt)
}
// BytesColumn creates config for BLOB type column.
func BytesColumn(name string, opt *ColumnOption) ColumnConfig {
return newColumnConfigImpl(name, ColumnTypeBytes, opt)
}
func newColumnConfigImpl(name string, typ ColumnType, opt *ColumnOption) *columnConfigImpl {
if opt == nil {
opt = &ColumnOption{}
}
return &columnConfigImpl{
name: name,
typ: typ,
opt: opt,
}
}
func (left *columnImpl) Eq(right interface{}) Condition {
return newBinaryOperationCondition(left, right, "=")
}
func (left *columnImpl) NotEq(right interface{}) Condition {
return newBinaryOperationCondition(left, right, "<>")
}
func (left *columnImpl) Gt(right interface{}) Condition {
return newBinaryOperationCondition(left, right, ">")
}
func (left *columnImpl) GtEq(right interface{}) Condition {
return newBinaryOperationCondition(left, right, ">=")
}
func (left *columnImpl) Lt(right interface{}) Condition {
return newBinaryOperationCondition(left, right, "<")
}
func (left *columnImpl) LtEq(right interface{}) Condition {
return newBinaryOperationCondition(left, right, "<=")
}
func (left *columnImpl) Like(right string) Condition {
return newBinaryOperationCondition(left, right, " LIKE ")
}
func (left *columnImpl) Between(lower, higher interface{}) Condition {
return newBetweenCondition(left, lower, higher)
}
func (left *columnImpl) In(val ...interface{}) Condition {
return newInCondition(left, val...)
}
func (b ColumnList) serialize(bldr *builder) {
first := true
for _, column := range b {
if column == nil {
bldr.SetError(newError("column is not found."))
return
}
if first {
first = false
} else {
bldr.Append(", ")
}
bldr.Append(dialect().QuoteField(column.column_name()))
}
return
}
type errorColumn struct {
err error
}
func newErrorColumn(err error) Column {
return &errorColumn{
err: err,
}
}
func (m *errorColumn) column_name() string {
return ""
}
func (m *errorColumn) config() ColumnConfig {
return nil
}
func (m *errorColumn) acceptType(interface{}) bool {
return false
}
func (m *errorColumn) serialize(bldr *builder) {
bldr.SetError(m.err)
return
}
func (m *errorColumn) As(string) Column {
return m
}
func (left *errorColumn) Eq(right interface{}) Condition {
return newBinaryOperationCondition(left, right, "=")
}
func (left *errorColumn) NotEq(right interface{}) Condition {
return newBinaryOperationCondition(left, right, "<>")
}
func (left *errorColumn) Gt(right interface{}) Condition {
return newBinaryOperationCondition(left, right, ">")
}
func (left *errorColumn) GtEq(right interface{}) Condition {
return newBinaryOperationCondition(left, right, ">=")
}
func (left *errorColumn) Lt(right interface{}) Condition {
return newBinaryOperationCondition(left, right, "<")
}
func (left *errorColumn) LtEq(right interface{}) Condition {
return newBinaryOperationCondition(left, right, "<=")
}
func (left *errorColumn) Like(right string) Condition {
return newBinaryOperationCondition(left, right, " LIKE ")
}
func (left *errorColumn) Between(lower, higher interface{}) Condition {
return newBetweenCondition(left, lower, higher)
}
func (left *errorColumn) In(val ...interface{}) Condition {
return newInCondition(left, val...)
}
type aliasColumn struct {
column Column
alias string
}
func (m *aliasColumn) column_name() string {
return m.alias
}
func (m *aliasColumn) config() ColumnConfig {
return m.column.config()
}
func (m *aliasColumn) acceptType(val interface{}) bool {
return m.column.acceptType(val)
}
func (m *aliasColumn) As(alias string) Column {
return &aliasColumn{
column: m,
alias: alias,
}
}
func (m *aliasColumn) serialize(bldr *builder) {
bldr.Append(dialect().QuoteField(m.alias))
return
}
func (m *aliasColumn) column_alias() string {
return m.alias
}
func (m *aliasColumn) source() Column {
return m.column
}
func (left *aliasColumn) Eq(right interface{}) Condition {
return newBinaryOperationCondition(left, right, "=")
}
func (left *aliasColumn) NotEq(right interface{}) Condition {
return newBinaryOperationCondition(left, right, "<>")
}
func (left *aliasColumn) Gt(right interface{}) Condition {
return newBinaryOperationCondition(left, right, ">")
}
func (left *aliasColumn) GtEq(right interface{}) Condition {
return newBinaryOperationCondition(left, right, ">=")
}
func (left *aliasColumn) Lt(right interface{}) Condition {
return newBinaryOperationCondition(left, right, "<")
}
func (left *aliasColumn) LtEq(right interface{}) Condition {
return newBinaryOperationCondition(left, right, "<=")
}
func (left *aliasColumn) Like(right string) Condition {
return newBinaryOperationCondition(left, right, " LIKE ")
}
func (left *aliasColumn) Between(lower, higher interface{}) Condition {
return newBetweenCondition(left, lower, higher)
}
func (left *aliasColumn) In(val ...interface{}) Condition {
return newInCondition(left, val...)
}