-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathentity_iterator.go
342 lines (287 loc) · 5.79 KB
/
entity_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
package orm
import (
"fmt"
"reflect"
"strings"
)
type EntityIterator[E any] interface {
Next() bool
ID() uint64
Index() int
Len() int
Entity() *E
All() []*E
Reset()
LoadReference(columns ...string)
}
type EntityAnonymousIterator interface {
Next() bool
ID() uint64
Index() int
Len() int
Entity() any
Reset()
}
type localCacheIDsIterator[E any] struct {
orm *ormImplementation
ids []uint64
index int
schema *entitySchema
hasRows bool
rows []*E
}
func (lc *localCacheIDsIterator[E]) Next() bool {
if lc.index+1 >= len(lc.ids) {
lc.Reset()
return false
}
lc.index++
return true
}
func (lc *localCacheIDsIterator[E]) Index() int {
return lc.index
}
func (lc *localCacheIDsIterator[E]) ID() uint64 {
if lc.index == -1 {
return 0
}
return lc.ids[lc.index]
}
func (lc *localCacheIDsIterator[E]) Len() int {
return len(lc.ids)
}
func (lc *localCacheIDsIterator[E]) Reset() {
lc.index = -1
}
func (lc *localCacheIDsIterator[E]) All() []*E {
if lc.hasRows {
return lc.rows
}
lc.rows = make([]*E, lc.Len())
i := 0
for lc.Next() {
lc.rows[i] = lc.Entity()
i++
}
lc.Reset()
lc.hasRows = true
return lc.rows
}
func (lc *localCacheIDsIterator[E]) Entity() *E {
if lc.index == -1 {
return nil
}
if lc.hasRows {
return lc.rows[lc.index]
}
if lc.index == 0 {
value, hit := lc.schema.localCache.getEntity(lc.orm, lc.ids[0])
if hit {
if value == nil {
return nil
}
return value.(*E)
}
lc.warmup()
}
value, found := getByID(lc.orm, lc.ids[lc.index], lc.schema)
if !found {
return nil
}
return value.(*E)
}
func (lc *localCacheIDsIterator[E]) LoadReference(columns ...string) {
if lc.Len() <= 1 {
return
}
var ids []uint64
for _, row := range columns {
fields := strings.Split(row, "/")
reference, has := lc.schema.references[fields[0]]
if !has {
panic(fmt.Errorf("invalid reference name %s", row))
}
index := lc.index
lc.index = -1
for lc.Next() {
entity := reflect.ValueOf(lc.Entity()).Elem()
field := entity.FieldByName(fields[0])
id := field.Uint()
if id == 0 {
continue
}
has = false
for _, before := range ids {
if before == id {
has = true
break
}
}
if !has {
ids = append(ids, id)
}
}
lc.index = index
if len(ids) <= 1 {
return
}
refSchema := lc.orm.Engine().Registry().EntitySchema(reference.Type).(*entitySchema)
warmup(lc.orm, refSchema, ids)
}
}
func (lc *localCacheIDsIterator[E]) warmup() {
if len(lc.ids)-lc.index <= 2 {
return
}
warmup(lc.orm, lc.schema, lc.ids)
}
type emptyResultsIterator[E any] struct{}
func (el *emptyResultsIterator[E]) Next() bool {
return false
}
func (el *emptyResultsIterator[E]) Index() int {
return -1
}
func (el *emptyResultsIterator[E]) ID() uint64 {
return 0
}
func (el *emptyResultsIterator[E]) Len() int {
return 0
}
func (el *emptyResultsIterator[E]) Entity() *E {
return nil
}
func (el *emptyResultsIterator[E]) Reset() {}
func (el *emptyResultsIterator[E]) All() []*E {
return nil
}
func (el *emptyResultsIterator[E]) LoadReference(_ ...string) {
}
type entityIterator[E any] struct {
index int
rows []*E
}
func (ei *entityIterator[E]) Next() bool {
if ei.index+1 >= len(ei.rows) {
ei.Reset()
return false
}
ei.index++
return true
}
func (ei *entityIterator[E]) ID() uint64 {
if ei.index == -1 {
return 0
}
return reflect.ValueOf(ei.rows[ei.index]).Elem().FieldByName("ID").Uint()
}
func (ei *entityIterator[E]) Index() int {
return ei.index
}
func (ei *entityIterator[E]) Len() int {
return len(ei.rows)
}
func (ei *entityIterator[E]) Entity() *E {
if ei.index == -1 {
return nil
}
return ei.rows[ei.index]
}
func (ei *entityIterator[E]) Reset() {
ei.index = -1
}
func (ei *entityIterator[E]) All() []*E {
return ei.rows
}
func (ei *entityIterator[E]) LoadReference(_ ...string) {
}
type entityAnonymousIterator struct {
index int
rows reflect.Value
}
func (ea *entityAnonymousIterator) Next() bool {
if ea.index+1 >= ea.rows.Len() {
ea.Reset()
return false
}
ea.index++
return true
}
func (ea *entityAnonymousIterator) ID() uint64 {
if ea.index == -1 {
return 0
}
return ea.rows.Index(ea.index).Elem().FieldByName("ID").Uint()
}
func (ea *entityAnonymousIterator) Index() int {
return ea.index
}
func (ea *entityAnonymousIterator) Len() int {
return ea.rows.Len()
}
func (ea *entityAnonymousIterator) Entity() any {
if ea.index == -1 {
return nil
}
return ea.rows.Index(ea.index).Interface()
}
func (ea *entityAnonymousIterator) Reset() {
ea.index = -1
}
type emptyResultsAnonymousIterator struct{}
func (el *emptyResultsAnonymousIterator) Next() bool {
return false
}
func (el *emptyResultsAnonymousIterator) ID() uint64 {
return 0
}
func (el *emptyResultsAnonymousIterator) Index() int {
return -1
}
func (el *emptyResultsAnonymousIterator) Len() int {
return 0
}
func (el *emptyResultsAnonymousIterator) Entity() any {
return nil
}
func (el *emptyResultsAnonymousIterator) Reset() {}
var emptyResultsAnonymousIteratorInstance = &emptyResultsAnonymousIterator{}
type localCacheIDsAnonymousIterator struct {
c *ormImplementation
ids []uint64
index int
schema *entitySchema
}
func (lc *localCacheIDsAnonymousIterator) Next() bool {
if lc.index+1 >= len(lc.ids) {
lc.Reset()
return false
}
lc.index++
return true
}
func (lc *localCacheIDsAnonymousIterator) ID() uint64 {
if lc.index == -1 {
return 0
}
return lc.ids[lc.index]
}
func (lc *localCacheIDsAnonymousIterator) Index() int {
return lc.index
}
func (lc *localCacheIDsAnonymousIterator) Len() int {
return len(lc.ids)
}
func (lc *localCacheIDsAnonymousIterator) Reset() {
lc.index = -1
}
func (lc *localCacheIDsAnonymousIterator) Entity() any {
if lc.index == -1 {
return nil
}
value, found := getByID(lc.c, lc.ids[lc.index], lc.schema)
if !found {
return nil
}
return value
}