-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathdb_ex.go
More file actions
394 lines (352 loc) · 6.31 KB
/
db_ex.go
File metadata and controls
394 lines (352 loc) · 6.31 KB
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
// Package db Copyright (c) 2012-present upper.io/db authors. All rights reserved.
// Package db Copyright (c) 2017-present Hank Shen. All rights reserved.
package db
import (
"context"
"fmt"
"sync"
)
func NewKeysValues() *KeysValues {
return &KeysValues{}
}
type KeysValues struct {
keys []string
values []interface{}
}
func (k *KeysValues) Keys() []string {
return k.keys
}
func (k *KeysValues) Values() []interface{} {
return k.values
}
func (k *KeysValues) Add(key string, value interface{}) *KeysValues {
k.keys = append(k.keys, key)
k.values = append(k.values, value)
return k
}
func (k *KeysValues) Reset() *KeysValues {
k.keys = k.keys[0:0]
k.values = k.values[0:0]
return k
}
func (k *KeysValues) String() string {
return fmt.Sprintf("keys: %#v\nvalues: %#v", k.keys, k.values)
}
// Slice 依次填充key和value
func (k *KeysValues) Slice() []interface{} {
var data []interface{}
vl := len(k.values)
for i, kk := range k.keys {
data = append(data, kk)
if i < vl {
data = append(data, k.values[i])
} else {
data = append(data, nil)
}
}
return data
}
func (k *KeysValues) Map() map[string]interface{} {
data := map[string]interface{}{}
vl := len(k.values)
for i, kk := range k.keys {
if i < vl {
data[kk] = k.values[i]
} else {
data[kk] = nil
}
}
return data
}
type Compounds []Compound
var compoundsPool = sync.Pool{
New: func() interface{} {
return NewCompounds()
},
}
func CompoundsPoolGet() *Compounds {
return compoundsPool.Get().(*Compounds)
}
func CompoundsPoolRelease(c *Compounds) {
c.Reset()
compoundsPool.Put(c)
}
func NewCompounds() *Compounds {
return &Compounds{}
}
func (c *Compounds) AddKV(key, value interface{}) *Compounds {
*c = append(*c, Cond{key: value})
return c
}
func (c *Compounds) AddKVOnce(key, value interface{}) *Compounds {
if c.Exists(key) {
return c
}
*c = append(*c, Cond{key: value})
return c
}
func (c *Compounds) Exists(key interface{}) bool {
for _, v := range *c {
r, y := v.(Cond)
if !y {
continue
}
_, ok := r[key]
if ok {
return true
}
}
return false
}
func (c *Compounds) AddKVNotEmpty(key, value interface{}) *Compounds {
switch v := value.(type) {
case nil:
return c
case string:
if len(v) == 0 {
return c
}
case []string:
if len(v) == 0 {
return c
}
case uint8:
if v == 0 {
return c
}
case []uint8:
if len(v) == 0 {
return c
}
case int8:
if v == 0 {
return c
}
case []int8:
if len(v) == 0 {
return c
}
case uint16:
if v == 0 {
return c
}
case []uint16:
if len(v) == 0 {
return c
}
case int16:
if v == 0 {
return c
}
case []int16:
if len(v) == 0 {
return c
}
case uint32:
if v == 0 {
return c
}
case []uint32:
if len(v) == 0 {
return c
}
case int32:
if v == 0 {
return c
}
case []int32:
if len(v) == 0 {
return c
}
case uint:
if v == 0 {
return c
}
case []uint:
if len(v) == 0 {
return c
}
case int:
if v == 0 {
return c
}
case []int:
if len(v) == 0 {
return c
}
case uint64:
if v == 0 {
return c
}
case []uint64:
if len(v) == 0 {
return c
}
case int64:
if v == 0 {
return c
}
case []int64:
if len(v) == 0 {
return c
}
case float32:
if v == 0 {
return c
}
case []float32:
if len(v) == 0 {
return c
}
case float64:
if v == 0 {
return c
}
case []float64:
if len(v) == 0 {
return c
}
}
*c = append(*c, Cond{key: value})
return c
}
func (c *Compounds) AddKVGtZero(key, value interface{}) *Compounds {
switch v := value.(type) {
case int8:
if v > 0 {
return c
}
case int16:
if v > 0 {
return c
}
case int32:
if v > 0 {
return c
}
case int:
if v > 0 {
return c
}
case int64:
if v > 0 {
return c
}
case float32:
if v > 0 {
return c
}
case float64:
if v > 0 {
return c
}
default:
return c.AddKVNotEmpty(key, value)
}
*c = append(*c, Cond{key: value})
return c
}
func (c *Compounds) Set(compounds ...Compound) *Compounds {
*c = compounds
return c
}
func (c *Compounds) Add(compounds ...Compound) *Compounds {
*c = append(*c, compounds...)
return c
}
func (c *Compounds) From(from *Compounds) *Compounds {
if from.Size() == 0 {
return c
}
return c.Add(from.V()...)
}
func (c *Compounds) Slice() []Compound {
return *c
}
func (c *Compounds) V() []Compound {
return c.Slice()
}
func (c *Compounds) Size() int {
return len(*c)
}
var _ Compound = NewCompounds()
func (c *Compounds) And(compounds ...Compound) Compound {
c.Add(compounds...)
switch c.Size() {
case 0:
return EmptyCond
case 1:
return (*c)[0]
default:
return And(*c...)
}
}
func (c *Compounds) Or(compounds ...Compound) Compound {
c.Add(compounds...)
switch c.Size() {
case 0:
return EmptyCond
case 1:
return (*c)[0]
default:
return Or(*c...)
}
}
// Sentences return each one of the map records as a compound.
func (c *Compounds) Sentences() []Compound {
return c.Slice()
}
// Operator returns the default compound operator.
func (c *Compounds) Operator() CompoundOperator {
return OperatorAnd
}
// Empty returns false if there are no conditions.
func (c *Compounds) Empty() bool {
return c.Size() == 0
}
func (c *Compounds) Reset() {
if c.Empty() {
return
}
*c = (*c)[0:0]
}
func (c *Compounds) remove(s int) Compounds {
return append((*c)[:s], (*c)[s+1:]...)
}
func (c *Compounds) Delete(keys ...interface{}) {
for _, key := range keys {
for i, v := range *c {
r, y := v.(Cond)
if !y {
continue
}
_, ok := r[key]
if !ok {
continue
}
delete(r, key)
if len(r) == 0 {
*c = c.remove(i)
}
}
}
}
type TableName interface {
TableName() string
}
type tableNameString string
func (t tableNameString) TableName() string {
return string(t)
}
func Table(tableName string) TableName {
return tableNameString(tableName)
}
type StdContext interface {
StdContext() context.Context
}
type RequestURI interface {
RequestURI() string
}
type Method interface {
Method() string
}