-
-
Notifications
You must be signed in to change notification settings - Fork 57
/
column_numbers.go
500 lines (427 loc) · 14.6 KB
/
column_numbers.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
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
// This code was generated, DO NOT EDIT.
// Any changes will be lost if this file is regenerated.
package column
import (
"github.com/kelindar/bitmap"
"github.com/kelindar/column/commit"
)
// --------------------------- Int ----------------------------
// makeInts creates a new vector for ints
func makeInts(opts ...func(*option[int])) Column {
return makeNumeric(
func(buffer *commit.Buffer, idx uint32, value int) { buffer.PutInt(commit.Put, idx, value) },
func(r *commit.Reader, fill bitmap.Bitmap, data []int, opts option[int]) {
for r.Next() {
offset := r.IndexAtChunk()
switch r.Type {
case commit.Put:
fill[offset>>6] |= 1 << (offset & 0x3f)
data[offset] = r.Int()
case commit.Merge:
fill[offset>>6] |= 1 << (offset & 0x3f)
data[offset] = r.SwapInt(opts.Merge(data[offset], r.Int()))
case commit.Delete:
fill.Remove(offset)
}
}
}, opts,
)
}
// rwInt represents a read-write cursor for int
type rwInt struct {
rdNumber[int]
writer *commit.Buffer
}
// Set sets the value at the current transaction cursor
func (s rwInt) Set(value int) {
s.writer.PutInt(commit.Put, s.txn.cursor, value)
}
// Merge atomically merges a delta to the value at the current transaction cursor
func (s rwInt) Merge(delta int) {
s.writer.PutInt(commit.Merge, s.txn.cursor, delta)
}
// Int returns a read-write accessor for int column
func (txn *Txn) Int(columnName string) rwInt {
return rwInt{
rdNumber: readNumberOf[int](txn, columnName),
writer: txn.bufferFor(columnName),
}
}
// --------------------------- Int16 ----------------------------
// makeInt16s creates a new vector for int16s
func makeInt16s(opts ...func(*option[int16])) Column {
return makeNumeric(
func(buffer *commit.Buffer, idx uint32, value int16) { buffer.PutInt16(commit.Put, idx, value) },
func(r *commit.Reader, fill bitmap.Bitmap, data []int16, opts option[int16]) {
for r.Next() {
offset := r.IndexAtChunk()
switch r.Type {
case commit.Put:
fill[offset>>6] |= 1 << (offset & 0x3f)
data[offset] = r.Int16()
case commit.Merge:
fill[offset>>6] |= 1 << (offset & 0x3f)
data[offset] = r.SwapInt16(opts.Merge(data[offset], r.Int16()))
case commit.Delete:
fill.Remove(offset)
}
}
}, opts,
)
}
// rwInt16 represents a read-write cursor for int16
type rwInt16 struct {
rdNumber[int16]
writer *commit.Buffer
}
// Set sets the value at the current transaction cursor
func (s rwInt16) Set(value int16) {
s.writer.PutInt16(commit.Put, s.txn.cursor, value)
}
// Merge atomically merges a delta to the value at the current transaction cursor
func (s rwInt16) Merge(delta int16) {
s.writer.PutInt16(commit.Merge, s.txn.cursor, delta)
}
// Int16 returns a read-write accessor for int16 column
func (txn *Txn) Int16(columnName string) rwInt16 {
return rwInt16{
rdNumber: readNumberOf[int16](txn, columnName),
writer: txn.bufferFor(columnName),
}
}
// --------------------------- Int32 ----------------------------
// makeInt32s creates a new vector for int32s
func makeInt32s(opts ...func(*option[int32])) Column {
return makeNumeric(
func(buffer *commit.Buffer, idx uint32, value int32) { buffer.PutInt32(commit.Put, idx, value) },
func(r *commit.Reader, fill bitmap.Bitmap, data []int32, opts option[int32]) {
for r.Next() {
offset := r.IndexAtChunk()
switch r.Type {
case commit.Put:
fill[offset>>6] |= 1 << (offset & 0x3f)
data[offset] = r.Int32()
case commit.Merge:
fill[offset>>6] |= 1 << (offset & 0x3f)
data[offset] = r.SwapInt32(opts.Merge(data[offset], r.Int32()))
case commit.Delete:
fill.Remove(offset)
}
}
}, opts,
)
}
// rwInt32 represents a read-write cursor for int32
type rwInt32 struct {
rdNumber[int32]
writer *commit.Buffer
}
// Set sets the value at the current transaction cursor
func (s rwInt32) Set(value int32) {
s.writer.PutInt32(commit.Put, s.txn.cursor, value)
}
// Merge atomically merges a delta to the value at the current transaction cursor
func (s rwInt32) Merge(delta int32) {
s.writer.PutInt32(commit.Merge, s.txn.cursor, delta)
}
// Int32 returns a read-write accessor for int32 column
func (txn *Txn) Int32(columnName string) rwInt32 {
return rwInt32{
rdNumber: readNumberOf[int32](txn, columnName),
writer: txn.bufferFor(columnName),
}
}
// --------------------------- Int64 ----------------------------
// makeInt64s creates a new vector for int64s
func makeInt64s(opts ...func(*option[int64])) Column {
return makeNumeric(
func(buffer *commit.Buffer, idx uint32, value int64) { buffer.PutInt64(commit.Put, idx, value) },
func(r *commit.Reader, fill bitmap.Bitmap, data []int64, opts option[int64]) {
for r.Next() {
offset := r.IndexAtChunk()
switch r.Type {
case commit.Put:
fill[offset>>6] |= 1 << (offset & 0x3f)
data[offset] = r.Int64()
case commit.Merge:
fill[offset>>6] |= 1 << (offset & 0x3f)
data[offset] = r.SwapInt64(opts.Merge(data[offset], r.Int64()))
case commit.Delete:
fill.Remove(offset)
}
}
}, opts,
)
}
// rwInt64 represents a read-write cursor for int64
type rwInt64 struct {
rdNumber[int64]
writer *commit.Buffer
}
// Set sets the value at the current transaction cursor
func (s rwInt64) Set(value int64) {
s.writer.PutInt64(commit.Put, s.txn.cursor, value)
}
// Merge atomically merges a delta to the value at the current transaction cursor
func (s rwInt64) Merge(delta int64) {
s.writer.PutInt64(commit.Merge, s.txn.cursor, delta)
}
// Int64 returns a read-write accessor for int64 column
func (txn *Txn) Int64(columnName string) rwInt64 {
return rwInt64{
rdNumber: readNumberOf[int64](txn, columnName),
writer: txn.bufferFor(columnName),
}
}
// --------------------------- Uint ----------------------------
// makeUints creates a new vector for uints
func makeUints(opts ...func(*option[uint])) Column {
return makeNumeric(
func(buffer *commit.Buffer, idx uint32, value uint) { buffer.PutUint(commit.Put, idx, value) },
func(r *commit.Reader, fill bitmap.Bitmap, data []uint, opts option[uint]) {
for r.Next() {
offset := r.IndexAtChunk()
switch r.Type {
case commit.Put:
fill[offset>>6] |= 1 << (offset & 0x3f)
data[offset] = r.Uint()
case commit.Merge:
fill[offset>>6] |= 1 << (offset & 0x3f)
data[offset] = r.SwapUint(opts.Merge(data[offset], r.Uint()))
case commit.Delete:
fill.Remove(offset)
}
}
}, opts,
)
}
// rwUint represents a read-write cursor for uint
type rwUint struct {
rdNumber[uint]
writer *commit.Buffer
}
// Set sets the value at the current transaction cursor
func (s rwUint) Set(value uint) {
s.writer.PutUint(commit.Put, s.txn.cursor, value)
}
// Merge atomically merges a delta to the value at the current transaction cursor
func (s rwUint) Merge(delta uint) {
s.writer.PutUint(commit.Merge, s.txn.cursor, delta)
}
// Uint returns a read-write accessor for uint column
func (txn *Txn) Uint(columnName string) rwUint {
return rwUint{
rdNumber: readNumberOf[uint](txn, columnName),
writer: txn.bufferFor(columnName),
}
}
// --------------------------- Uint16 ----------------------------
// makeUint16s creates a new vector for uint16s
func makeUint16s(opts ...func(*option[uint16])) Column {
return makeNumeric(
func(buffer *commit.Buffer, idx uint32, value uint16) { buffer.PutUint16(commit.Put, idx, value) },
func(r *commit.Reader, fill bitmap.Bitmap, data []uint16, opts option[uint16]) {
for r.Next() {
offset := r.IndexAtChunk()
switch r.Type {
case commit.Put:
fill[offset>>6] |= 1 << (offset & 0x3f)
data[offset] = r.Uint16()
case commit.Merge:
fill[offset>>6] |= 1 << (offset & 0x3f)
data[offset] = r.SwapUint16(opts.Merge(data[offset], r.Uint16()))
case commit.Delete:
fill.Remove(offset)
}
}
}, opts,
)
}
// rwUint16 represents a read-write cursor for uint16
type rwUint16 struct {
rdNumber[uint16]
writer *commit.Buffer
}
// Set sets the value at the current transaction cursor
func (s rwUint16) Set(value uint16) {
s.writer.PutUint16(commit.Put, s.txn.cursor, value)
}
// Merge atomically merges a delta to the value at the current transaction cursor
func (s rwUint16) Merge(delta uint16) {
s.writer.PutUint16(commit.Merge, s.txn.cursor, delta)
}
// Uint16 returns a read-write accessor for uint16 column
func (txn *Txn) Uint16(columnName string) rwUint16 {
return rwUint16{
rdNumber: readNumberOf[uint16](txn, columnName),
writer: txn.bufferFor(columnName),
}
}
// --------------------------- Uint32 ----------------------------
// makeUint32s creates a new vector for uint32s
func makeUint32s(opts ...func(*option[uint32])) Column {
return makeNumeric(
func(buffer *commit.Buffer, idx uint32, value uint32) { buffer.PutUint32(commit.Put, idx, value) },
func(r *commit.Reader, fill bitmap.Bitmap, data []uint32, opts option[uint32]) {
for r.Next() {
offset := r.IndexAtChunk()
switch r.Type {
case commit.Put:
fill[offset>>6] |= 1 << (offset & 0x3f)
data[offset] = r.Uint32()
case commit.Merge:
fill[offset>>6] |= 1 << (offset & 0x3f)
data[offset] = r.SwapUint32(opts.Merge(data[offset], r.Uint32()))
case commit.Delete:
fill.Remove(offset)
}
}
}, opts,
)
}
// rwUint32 represents a read-write cursor for uint32
type rwUint32 struct {
rdNumber[uint32]
writer *commit.Buffer
}
// Set sets the value at the current transaction cursor
func (s rwUint32) Set(value uint32) {
s.writer.PutUint32(commit.Put, s.txn.cursor, value)
}
// Merge atomically merges a delta to the value at the current transaction cursor
func (s rwUint32) Merge(delta uint32) {
s.writer.PutUint32(commit.Merge, s.txn.cursor, delta)
}
// Uint32 returns a read-write accessor for uint32 column
func (txn *Txn) Uint32(columnName string) rwUint32 {
return rwUint32{
rdNumber: readNumberOf[uint32](txn, columnName),
writer: txn.bufferFor(columnName),
}
}
// --------------------------- Uint64 ----------------------------
// makeUint64s creates a new vector for uint64s
func makeUint64s(opts ...func(*option[uint64])) Column {
return makeNumeric(
func(buffer *commit.Buffer, idx uint32, value uint64) { buffer.PutUint64(commit.Put, idx, value) },
func(r *commit.Reader, fill bitmap.Bitmap, data []uint64, opts option[uint64]) {
for r.Next() {
offset := r.IndexAtChunk()
switch r.Type {
case commit.Put:
fill[offset>>6] |= 1 << (offset & 0x3f)
data[offset] = r.Uint64()
case commit.Merge:
fill[offset>>6] |= 1 << (offset & 0x3f)
data[offset] = r.SwapUint64(opts.Merge(data[offset], r.Uint64()))
case commit.Delete:
fill.Remove(offset)
}
}
}, opts,
)
}
// rwUint64 represents a read-write cursor for uint64
type rwUint64 struct {
rdNumber[uint64]
writer *commit.Buffer
}
// Set sets the value at the current transaction cursor
func (s rwUint64) Set(value uint64) {
s.writer.PutUint64(commit.Put, s.txn.cursor, value)
}
// Merge atomically merges a delta to the value at the current transaction cursor
func (s rwUint64) Merge(delta uint64) {
s.writer.PutUint64(commit.Merge, s.txn.cursor, delta)
}
// Uint64 returns a read-write accessor for uint64 column
func (txn *Txn) Uint64(columnName string) rwUint64 {
return rwUint64{
rdNumber: readNumberOf[uint64](txn, columnName),
writer: txn.bufferFor(columnName),
}
}
// --------------------------- Float32 ----------------------------
// makeFloat32s creates a new vector for float32s
func makeFloat32s(opts ...func(*option[float32])) Column {
return makeNumeric(
func(buffer *commit.Buffer, idx uint32, value float32) { buffer.PutFloat32(commit.Put, idx, value) },
func(r *commit.Reader, fill bitmap.Bitmap, data []float32, opts option[float32]) {
for r.Next() {
offset := r.IndexAtChunk()
switch r.Type {
case commit.Put:
fill[offset>>6] |= 1 << (offset & 0x3f)
data[offset] = r.Float32()
case commit.Merge:
fill[offset>>6] |= 1 << (offset & 0x3f)
data[offset] = r.SwapFloat32(opts.Merge(data[offset], r.Float32()))
case commit.Delete:
fill.Remove(offset)
}
}
}, opts,
)
}
// rwFloat32 represents a read-write cursor for float32
type rwFloat32 struct {
rdNumber[float32]
writer *commit.Buffer
}
// Set sets the value at the current transaction cursor
func (s rwFloat32) Set(value float32) {
s.writer.PutFloat32(commit.Put, s.txn.cursor, value)
}
// Merge atomically merges a delta to the value at the current transaction cursor
func (s rwFloat32) Merge(delta float32) {
s.writer.PutFloat32(commit.Merge, s.txn.cursor, delta)
}
// Float32 returns a read-write accessor for float32 column
func (txn *Txn) Float32(columnName string) rwFloat32 {
return rwFloat32{
rdNumber: readNumberOf[float32](txn, columnName),
writer: txn.bufferFor(columnName),
}
}
// --------------------------- Float64 ----------------------------
// makeFloat64s creates a new vector for float64s
func makeFloat64s(opts ...func(*option[float64])) Column {
return makeNumeric(
func(buffer *commit.Buffer, idx uint32, value float64) { buffer.PutFloat64(commit.Put, idx, value) },
func(r *commit.Reader, fill bitmap.Bitmap, data []float64, opts option[float64]) {
for r.Next() {
offset := r.IndexAtChunk()
switch r.Type {
case commit.Put:
fill[offset>>6] |= 1 << (offset & 0x3f)
data[offset] = r.Float64()
case commit.Merge:
fill[offset>>6] |= 1 << (offset & 0x3f)
data[offset] = r.SwapFloat64(opts.Merge(data[offset], r.Float64()))
case commit.Delete:
fill.Remove(offset)
}
}
}, opts,
)
}
// rwFloat64 represents a read-write cursor for float64
type rwFloat64 struct {
rdNumber[float64]
writer *commit.Buffer
}
// Set sets the value at the current transaction cursor
func (s rwFloat64) Set(value float64) {
s.writer.PutFloat64(commit.Put, s.txn.cursor, value)
}
// Merge atomically merges a delta to the value at the current transaction cursor
func (s rwFloat64) Merge(delta float64) {
s.writer.PutFloat64(commit.Merge, s.txn.cursor, delta)
}
// Float64 returns a read-write accessor for float64 column
func (txn *Txn) Float64(columnName string) rwFloat64 {
return rwFloat64{
rdNumber: readNumberOf[float64](txn, columnName),
writer: txn.bufferFor(columnName),
}
}