forked from go-rel/rel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
document.go
438 lines (356 loc) · 8.6 KB
/
document.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
package rel
import (
"database/sql"
"reflect"
"strings"
"sync"
"time"
"github.com/azer/snakecase"
"github.com/jinzhu/inflection"
)
var (
tablesCache sync.Map
primariesCache sync.Map
fieldsCache sync.Map
typesCache sync.Map
documentDataCache sync.Map
rtTime = reflect.TypeOf(time.Time{})
)
type table interface {
Table() string
}
type primary interface {
PrimaryField() string
PrimaryValue() interface{}
}
type primaryData struct {
field string
index int
}
type documentData struct {
index map[string]int
fields []string
belongsTo []string
hasOne []string
hasMany []string
}
// Document provides an abstraction over reflect to easily works with struct for database purpose.
type Document struct {
v interface{}
rv reflect.Value
rt reflect.Type
data documentData
}
// ReflectValue of referenced document.
func (d Document) ReflectValue() reflect.Value {
return d.rv
}
// Table returns name of the table.
func (d Document) Table() string {
if tn, ok := d.v.(table); ok {
return tn.Table()
}
// TODO: handle anonymous struct
return tableName(d.rt)
}
// PrimaryField column name of this document.
func (d Document) PrimaryField() string {
if p, ok := d.v.(primary); ok {
return p.PrimaryField()
}
var (
field, _ = searchPrimary(d.rt)
)
if field == "" {
panic("rel: failed to infer primary key for type " + d.rt.String())
}
return field
}
// PrimaryValue of this document.
func (d Document) PrimaryValue() interface{} {
if p, ok := d.v.(primary); ok {
return p.PrimaryValue()
}
var (
_, index = searchPrimary(d.rt)
)
if index < 0 {
panic("rel: failed to infer primary key for type " + d.rt.String())
}
return d.rv.Field(index).Interface()
}
// Index returns map of column name and it's struct index.
func (d Document) Index() map[string]int {
return d.data.index
}
// Fields returns list of fields available on this document.
func (d Document) Fields() []string {
return d.data.fields
}
// Type returns reflect.Type of given field. if field does not exist, second returns value will be false.
func (d Document) Type(field string) (reflect.Type, bool) {
if i, ok := d.data.index[field]; ok {
var (
ft = d.rt.Field(i).Type
)
if ft.Kind() == reflect.Ptr {
ft = ft.Elem()
} else if ft.Kind() == reflect.Slice && ft.Elem().Kind() == reflect.Ptr {
ft = reflect.SliceOf(ft.Elem().Elem())
}
return ft, true
}
return nil, false
}
// Value returns value of given field. if field does not exist, second returns value will be false.
func (d Document) Value(field string) (interface{}, bool) {
if i, ok := d.data.index[field]; ok {
var (
value interface{}
fv = d.rv.Field(i)
ft = fv.Type()
)
if ft.Kind() == reflect.Ptr {
if !fv.IsNil() {
value = fv.Elem().Interface()
}
} else {
value = fv.Interface()
}
return value, true
}
return nil, false
}
// SetValue of the field, it returns false if field does not exist, or it's not assignable.
func (d Document) SetValue(field string, value interface{}) bool {
if i, ok := d.data.index[field]; ok {
var (
rv reflect.Value
rt reflect.Type
fv = d.rv.Field(i)
ft = fv.Type()
)
switch v := value.(type) {
case nil:
rv = reflect.Zero(ft)
case reflect.Value:
rv = reflect.Indirect(v)
default:
rv = reflect.Indirect(reflect.ValueOf(value))
}
rt = rv.Type()
if fv.Type() == rt || rt.AssignableTo(ft) {
fv.Set(rv)
return true
}
if ft.Kind() == reflect.Ptr {
if ft.Elem() != rt && !rt.AssignableTo(ft.Elem()) {
return false
}
if fv.IsNil() {
fv.Set(reflect.New(ft.Elem()))
}
fv.Elem().Set(rv)
return true
}
}
return false
}
// Scanners returns slice of sql.Scanner for given fields.
func (d Document) Scanners(fields []string) []interface{} {
var (
result = make([]interface{}, len(fields))
)
for index, field := range fields {
if structIndex, ok := d.data.index[field]; ok {
var (
fv = d.rv.Field(structIndex)
ft = fv.Type()
)
if ft.Kind() == reflect.Ptr {
result[index] = fv.Addr().Interface()
} else {
result[index] = Nullable(fv.Addr().Interface())
}
} else {
result[index] = &sql.RawBytes{}
}
}
return result
}
// BelongsTo fields of this document.
func (d Document) BelongsTo() []string {
return d.data.belongsTo
}
// HasOne fields of this document.
func (d Document) HasOne() []string {
return d.data.hasOne
}
// HasMany fields of this document.
func (d Document) HasMany() []string {
return d.data.hasMany
}
// Association of this document with given name.
func (d Document) Association(name string) Association {
index, ok := d.data.index[name]
if !ok {
panic("rel: no field named (" + name + ") in type " + d.rt.String() + " found ")
}
return newAssociation(d.rv, index)
}
// Reset this document, this is a noop for compatibility with collection.
func (d Document) Reset() {
}
// Add returns this document, this is a noop for compatibility with collection.
func (d *Document) Add() *Document {
return d
}
// Get always returns this document, this is a noop for compatibility with collection.
func (d *Document) Get(index int) *Document {
return d
}
// Len always returns 1 for document, this is a noop for compatibility with collection.
func (d *Document) Len() int {
return 1
}
// NewDocument used to create abstraction to work with struct.
// Document can be created using interface or reflect.Value.
func NewDocument(record interface{}, readonly ...bool) *Document {
switch v := record.(type) {
case *Document:
return v
case reflect.Value:
return newDocument(v.Interface(), v, len(readonly) > 0 && readonly[0])
case reflect.Type:
panic("rel: cannot use reflect.Type")
case nil:
panic("rel: cannot be nil")
default:
return newDocument(v, reflect.ValueOf(v), len(readonly) > 0 && readonly[0])
}
}
func newDocument(v interface{}, rv reflect.Value, readonly bool) *Document {
var (
rt = rv.Type()
)
if rt.Kind() != reflect.Ptr {
if !readonly {
panic("rel: must be a pointer to struct")
}
} else {
rv = rv.Elem()
rt = rt.Elem()
}
if rt.Kind() != reflect.Struct {
panic("rel: must be a struct or pointer to a struct")
}
return &Document{
v: v,
rv: rv,
rt: rt,
data: extractDocumentData(rt, false),
}
}
func extractDocumentData(rt reflect.Type, skipAssoc bool) documentData {
if data, cached := documentDataCache.Load(rt); cached {
return data.(documentData)
}
var (
data = documentData{
index: make(map[string]int, rt.NumField()),
}
)
// TODO probably better to use slice index instead.
for i := 0; i < rt.NumField(); i++ {
var (
sf = rt.Field(i)
typ = sf.Type
name = fieldName(sf)
)
if name == "" {
continue
}
data.index[name] = i
for typ.Kind() == reflect.Ptr || typ.Kind() == reflect.Interface || typ.Kind() == reflect.Slice {
typ = typ.Elem()
}
if typ.Kind() != reflect.Struct || typ == rtTime {
data.fields = append(data.fields, name)
continue
}
// struct without primary key is a field
// TODO: test by scanner/valuer instead?
if pk, _ := searchPrimary(typ); pk == "" {
data.fields = append(data.fields, name)
continue
}
if !skipAssoc {
switch extractAssociationData(rt, i).typ {
case BelongsTo:
data.belongsTo = append(data.belongsTo, name)
case HasOne:
data.hasOne = append(data.hasOne, name)
case HasMany:
data.hasMany = append(data.hasMany, name)
}
}
}
if !skipAssoc {
documentDataCache.Store(rt, data)
}
return data
}
func fieldName(sf reflect.StructField) string {
if tag := sf.Tag.Get("db"); tag != "" {
name := strings.Split(tag, ",")[0]
if name == "-" {
return ""
}
if name != "" {
return name
}
}
return snakecase.SnakeCase(sf.Name)
}
func searchPrimary(rt reflect.Type) (string, int) {
if result, cached := primariesCache.Load(rt); cached {
p := result.(primaryData)
return p.field, p.index
}
var (
field = ""
index = -1
)
for i := 0; i < rt.NumField(); i++ {
sf := rt.Field(i)
if tag := sf.Tag.Get("db"); strings.HasSuffix(tag, ",primary") {
index = i
if len(tag) > 8 { // has custom field name
field = tag[:len(tag)-8]
} else {
field = snakecase.SnakeCase(sf.Name)
}
continue
}
// check fallback for id field
if strings.EqualFold("id", sf.Name) {
index = i
field = "id"
}
}
primariesCache.Store(rt, primaryData{
field: field,
index: index,
})
return field, index
}
func tableName(rt reflect.Type) string {
// check for cache
if name, cached := tablesCache.Load(rt); cached {
return name.(string)
}
name := inflection.Plural(rt.Name())
name = snakecase.SnakeCase(name)
tablesCache.Store(rt, name)
return name
}