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
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
|
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
import randomatic from 'randomatic';
import { VectorType as V } from 'apache-arrow/interfaces';
import {
Data, Vector, Visitor, DataType,
Table, Schema, Field, RecordBatch,
Null,
Bool,
Int, Int8, Int16, Int32, Int64, Uint8, Uint16, Uint32, Uint64,
Float, Float16, Float32, Float64,
Utf8,
Binary,
FixedSizeBinary,
Date_, DateDay, DateMillisecond,
Timestamp, TimestampSecond, TimestampMillisecond, TimestampMicrosecond, TimestampNanosecond,
Time, TimeSecond, TimeMillisecond, TimeMicrosecond, TimeNanosecond,
Decimal,
List,
Struct,
Union, DenseUnion, SparseUnion,
Dictionary,
Interval, IntervalDayTime, IntervalYearMonth,
FixedSizeList,
Map_,
DateUnit, TimeUnit, UnionMode,
util
} from './Arrow';
type TKeys = Int8 | Int16 | Int32 | Uint8 | Uint16 | Uint32;
interface TestDataVectorGenerator extends Visitor {
visit<T extends Null> (type: T, length?: number): GeneratedVector<V<T>>;
visit<T extends Bool> (type: T, length?: number, nullCount?: number): GeneratedVector<V<T>>;
visit<T extends Int> (type: T, length?: number, nullCount?: number): GeneratedVector<V<T>>;
visit<T extends Float> (type: T, length?: number, nullCount?: number): GeneratedVector<V<T>>;
visit<T extends Utf8> (type: T, length?: number, nullCount?: number): GeneratedVector<V<T>>;
visit<T extends Binary> (type: T, length?: number, nullCount?: number): GeneratedVector<V<T>>;
visit<T extends FixedSizeBinary> (type: T, length?: number, nullCount?: number): GeneratedVector<V<T>>;
visit<T extends Date_> (type: T, length?: number, nullCount?: number): GeneratedVector<V<T>>;
visit<T extends Timestamp> (type: T, length?: number, nullCount?: number): GeneratedVector<V<T>>;
visit<T extends Time> (type: T, length?: number, nullCount?: number): GeneratedVector<V<T>>;
visit<T extends Decimal> (type: T, length?: number, nullCount?: number): GeneratedVector<V<T>>;
visit<T extends Interval> (type: T, length?: number, nullCount?: number): GeneratedVector<V<T>>;
visit<T extends List> (type: T, length?: number, nullCount?: number, child?: Vector): GeneratedVector<V<T>>;
visit<T extends FixedSizeList> (type: T, length?: number, nullCount?: number, child?: Vector): GeneratedVector<V<T>>;
visit<T extends Dictionary> (type: T, length?: number, nullCount?: number, dictionary?: Vector): GeneratedVector<V<T>>;
visit<T extends Union> (type: T, length?: number, nullCount?: number, children?: Vector[]): GeneratedVector<V<T>>;
visit<T extends Struct> (type: T, length?: number, nullCount?: number, children?: Vector[]): GeneratedVector<V<T>>;
visit<T extends Map_> (type: T, length?: number, nullCount?: number, child?: Vector): GeneratedVector<V<T>>;
visit<T extends DataType> (type: T, length?: number, ...args: any[]): GeneratedVector<V<T>>;
visitNull: typeof generateNull;
visitBool: typeof generateBool;
visitInt: typeof generateInt;
visitFloat: typeof generateFloat;
visitUtf8: typeof generateUtf8;
visitBinary: typeof generateBinary;
visitFixedSizeBinary: typeof generateFixedSizeBinary;
visitDate: typeof generateDate;
visitTimestamp: typeof generateTimestamp;
visitTime: typeof generateTime;
visitDecimal: typeof generateDecimal;
visitList: typeof generateList;
visitStruct: typeof generateStruct;
visitUnion: typeof generateUnion;
visitDictionary: typeof generateDictionary;
visitInterval: typeof generateInterval;
visitFixedSizeList: typeof generateFixedSizeList;
visitMap: typeof generateMap;
}
class TestDataVectorGenerator extends Visitor {}
TestDataVectorGenerator.prototype.visitNull = generateNull;
TestDataVectorGenerator.prototype.visitBool = generateBool;
TestDataVectorGenerator.prototype.visitInt = generateInt;
TestDataVectorGenerator.prototype.visitFloat = generateFloat;
TestDataVectorGenerator.prototype.visitUtf8 = generateUtf8;
TestDataVectorGenerator.prototype.visitBinary = generateBinary;
TestDataVectorGenerator.prototype.visitFixedSizeBinary = generateFixedSizeBinary;
TestDataVectorGenerator.prototype.visitDate = generateDate;
TestDataVectorGenerator.prototype.visitTimestamp = generateTimestamp;
TestDataVectorGenerator.prototype.visitTime = generateTime;
TestDataVectorGenerator.prototype.visitDecimal = generateDecimal;
TestDataVectorGenerator.prototype.visitList = generateList;
TestDataVectorGenerator.prototype.visitStruct = generateStruct;
TestDataVectorGenerator.prototype.visitUnion = generateUnion;
TestDataVectorGenerator.prototype.visitDictionary = generateDictionary;
TestDataVectorGenerator.prototype.visitInterval = generateInterval;
TestDataVectorGenerator.prototype.visitFixedSizeList = generateFixedSizeList;
TestDataVectorGenerator.prototype.visitMap = generateMap;
const vectorGenerator = new TestDataVectorGenerator();
const defaultListChild = new Field('list[Int32]', new Int32());
const defaultRecordBatchChildren = () => [
new Field('i32', new Int32()),
new Field('f32', new Float32()),
new Field('dict', new Dictionary(new Utf8(), new Int32()))
];
const defaultStructChildren = () => [
new Field('struct[0]', new Int32()),
new Field('struct[1]', new Utf8()),
new Field('struct[2]', new List(new Field('list[DateDay]', new DateDay())))
];
const defaultMapChild = () => [
new Field('', new Struct<{ key: Utf8; value: Float32 }>([
new Field('key', new Utf8()),
new Field('value', new Float32())
]))
][0];
const defaultUnionChildren = () => [
new Field('union[0]', new Float64()),
new Field('union[1]', new Dictionary(new Uint32(), new Int32())),
new Field('union[2]', new Map_(defaultMapChild()))
];
export interface GeneratedTable {
table: Table;
rows: () => any[][];
cols: () => any[][];
keys: () => number[][];
rowBatches: (() => any[][])[];
colBatches: (() => any[][])[];
keyBatches: (() => number[][])[];
}
export interface GeneratedRecordBatch {
recordBatch: RecordBatch;
rows: () => any[][];
cols: () => any[][];
keys: () => number[][];
}
export type GeneratedVector<TVec extends Vector = Vector> = {
vector: TVec;
keys?: number[];
values: () => (TVec['TValue'] | null)[];
};
export const table = (lengths = [100], schema: Schema = new Schema(defaultRecordBatchChildren(), new Map([['foo', 'bar']]))): GeneratedTable => {
const generated = lengths.map((length) => recordBatch(length, schema));
const rowBatches = generated.map(({ rows }) => rows);
const colBatches = generated.map(({ cols }) => cols);
const keyBatches = generated.map(({ keys }) => keys);
const rows = memoize(() => rowBatches.reduce((rows: any[][], batch) => [...rows, ...batch()], []));
const keys = memoize(() => keyBatches.reduce((keys: any[][], batch) => (
!keys.length ? batch() : keys.map((idxs, i) => [...(idxs || []), ...(batch()[i] || [])])
), []));
const cols = memoize(() => colBatches.reduce((cols: any[][], batch) => (
!cols.length ? batch() : cols.map((vals, i) => [...vals, ...batch()[i]])
), []));
return { rows, cols, keys, rowBatches, colBatches, keyBatches, table: new Table(schema, generated.map(({ recordBatch }) => recordBatch)) };
};
export const recordBatch = (length = 100, schema: Schema = new Schema(defaultRecordBatchChildren())): GeneratedRecordBatch => {
const generated = schema.fields.map((f) => vectorGenerator.visit(f.type, length));
const vecs = generated.map(({ vector }) => vector);
const keys = memoize(() => generated.map(({ keys }) => keys));
const cols = memoize(() => generated.map(({ values }) => values()));
const rows = ((_cols: () => any[][]) => memoize((rows: any[][] = [], cols: any[][] = _cols()) => {
for (let i = -1; ++i < length; rows[i] = cols.map((vals) => vals[i]));
return rows;
}))(cols);
return { rows, cols, keys, recordBatch: new RecordBatch(schema, length, vecs) };
};
export const null_ = (length = 100) => vectorGenerator.visit(new Null(), length);
export const bool = (length = 100, nullCount = length * 0.2 | 0) => vectorGenerator.visit(new Bool(), length, nullCount);
export const int8 = (length = 100, nullCount = length * 0.2 | 0) => vectorGenerator.visit(new Int8(), length, nullCount);
export const int16 = (length = 100, nullCount = length * 0.2 | 0) => vectorGenerator.visit(new Int16(), length, nullCount);
export const int32 = (length = 100, nullCount = length * 0.2 | 0) => vectorGenerator.visit(new Int32(), length, nullCount);
export const int64 = (length = 100, nullCount = length * 0.2 | 0) => vectorGenerator.visit(new Int64(), length, nullCount);
export const uint8 = (length = 100, nullCount = length * 0.2 | 0) => vectorGenerator.visit(new Uint8(), length, nullCount);
export const uint16 = (length = 100, nullCount = length * 0.2 | 0) => vectorGenerator.visit(new Uint16(), length, nullCount);
export const uint32 = (length = 100, nullCount = length * 0.2 | 0) => vectorGenerator.visit(new Uint32(), length, nullCount);
export const uint64 = (length = 100, nullCount = length * 0.2 | 0) => vectorGenerator.visit(new Uint64(), length, nullCount);
export const float16 = (length = 100, nullCount = length * 0.2 | 0) => vectorGenerator.visit(new Float16(), length, nullCount);
export const float32 = (length = 100, nullCount = length * 0.2 | 0) => vectorGenerator.visit(new Float32(), length, nullCount);
export const float64 = (length = 100, nullCount = length * 0.2 | 0) => vectorGenerator.visit(new Float64(), length, nullCount);
export const utf8 = (length = 100, nullCount = length * 0.2 | 0) => vectorGenerator.visit(new Utf8(), length, nullCount);
export const binary = (length = 100, nullCount = length * 0.2 | 0) => vectorGenerator.visit(new Binary(), length, nullCount);
export const fixedSizeBinary = (length = 100, nullCount = length * 0.2 | 0, byteWidth = 8) => vectorGenerator.visit(new FixedSizeBinary(byteWidth), length, nullCount);
export const dateDay = (length = 100, nullCount = length * 0.2 | 0) => vectorGenerator.visit(new DateDay(), length, nullCount);
export const dateMillisecond = (length = 100, nullCount = length * 0.2 | 0) => vectorGenerator.visit(new DateMillisecond(), length, nullCount);
export const timestampSecond = (length = 100, nullCount = length * 0.2 | 0) => vectorGenerator.visit(new TimestampSecond(), length, nullCount);
export const timestampMillisecond = (length = 100, nullCount = length * 0.2 | 0) => vectorGenerator.visit(new TimestampMillisecond(), length, nullCount);
export const timestampMicrosecond = (length = 100, nullCount = length * 0.2 | 0) => vectorGenerator.visit(new TimestampMicrosecond(), length, nullCount);
export const timestampNanosecond = (length = 100, nullCount = length * 0.2 | 0) => vectorGenerator.visit(new TimestampNanosecond(), length, nullCount);
export const timeSecond = (length = 100, nullCount = length * 0.2 | 0) => vectorGenerator.visit(new TimeSecond(), length, nullCount);
export const timeMillisecond = (length = 100, nullCount = length * 0.2 | 0) => vectorGenerator.visit(new TimeMillisecond(), length, nullCount);
export const timeMicrosecond = (length = 100, nullCount = length * 0.2 | 0) => vectorGenerator.visit(new TimeMicrosecond(), length, nullCount);
export const timeNanosecond = (length = 100, nullCount = length * 0.2 | 0) => vectorGenerator.visit(new TimeNanosecond(), length, nullCount);
export const decimal = (length = 100, nullCount = length * 0.2 | 0, scale = 2, precision = 9) => vectorGenerator.visit(new Decimal(scale, precision), length, nullCount);
export const list = (length = 100, nullCount = length * 0.2 | 0, child = defaultListChild) => vectorGenerator.visit(new List(child), length, nullCount);
export const struct = <T extends { [key: string]: DataType } = any>(length = 100, nullCount = length * 0.2 | 0, children: Field<T[keyof T]>[] = <any> defaultStructChildren()) => vectorGenerator.visit(new Struct<T>(children), length, nullCount);
export const denseUnion = (length = 100, nullCount = length * 0.2 | 0, children: Field[] = defaultUnionChildren()) => vectorGenerator.visit(new DenseUnion(children.map((f) => f.typeId), children), length, nullCount);
export const sparseUnion = (length = 100, nullCount = length * 0.2 | 0, children: Field[] = defaultUnionChildren()) => vectorGenerator.visit(new SparseUnion(children.map((f) => f.typeId), children), length, nullCount);
export const dictionary = <T extends DataType = Utf8, TKey extends TKeys = Int32> (length = 100, nullCount = length * 0.2 | 0, dict: T = <any> new Utf8(), keys: TKey = <any> new Int32()) => vectorGenerator.visit(new Dictionary(dict, keys), length, nullCount);
export const intervalDayTime = (length = 100, nullCount = length * 0.2 | 0) => vectorGenerator.visit(new IntervalDayTime(), length, nullCount);
export const intervalYearMonth = (length = 100, nullCount = length * 0.2 | 0) => vectorGenerator.visit(new IntervalYearMonth(), length, nullCount);
export const fixedSizeList = (length = 100, nullCount = length * 0.2 | 0, listSize = 2, child = defaultListChild) => vectorGenerator.visit(new FixedSizeList(listSize, child), length, nullCount);
export const map = <TKey extends DataType = any, TValue extends DataType = any>(length = 100, nullCount = length * 0.2 | 0, child: Field<Struct<{key: TKey; value: TValue}>> = <any> defaultMapChild()) => vectorGenerator.visit(new Map_<TKey, TValue>(child), length, nullCount);
export const vecs = {
null_, bool, int8, int16, int32, int64, uint8, uint16, uint32, uint64, float16, float32, float64, utf8, binary, fixedSizeBinary, dateDay, dateMillisecond, timestampSecond, timestampMillisecond, timestampMicrosecond, timestampNanosecond, timeSecond, timeMillisecond, timeMicrosecond, timeNanosecond, decimal, list, struct, denseUnion, sparseUnion, dictionary, intervalDayTime, intervalYearMonth, fixedSizeList, map
} as { [k: string]: (...args: any[]) => any };
function generateNull<T extends Null>(this: TestDataVectorGenerator, type: T, length = 100): GeneratedVector<V<T>> {
return { values: () => Array.from({ length }, () => null), vector: Vector.new(Data.Null(type, 0, length)) };
}
function generateBool<T extends Bool>(this: TestDataVectorGenerator, type: T, length = 100, nullCount = length * 0.2 | 0): GeneratedVector<V<T>> {
const data = createBitmap(length, length / 2 | 0);
const nullBitmap = createBitmap(length, nullCount);
const values = memoize(() => {
const values = [] as (boolean | null)[];
iterateBitmap(length, nullBitmap, (i, valid) => values[i] = !valid ? null : isValid(data, i));
return values;
});
iterateBitmap(length, nullBitmap, (i, valid) => !valid && (data[i >> 3] &= ~(1 << (i % 8))));
return { values, vector: Vector.new(Data.Bool(type, 0, length, nullCount, nullBitmap, data)) };
}
function generateInt<T extends Int>(this: TestDataVectorGenerator, type: T, length = 100, nullCount = length * 0.2 | 0): GeneratedVector<V<T>> {
const ArrayType = type.ArrayType;
const stride = 1 + Number(type.bitWidth > 32);
const nullBitmap = createBitmap(length, nullCount);
const data = fillRandom(ArrayType as any, length * stride);
const values = memoize(() => {
const values = [] as (number | null)[];
iterateBitmap(length, nullBitmap, (i, valid) => {
values[i] = !valid ? null
: stride === 1 ? data[i]
: data.subarray(i * stride, (i + 1) * stride);
});
return values;
});
iterateBitmap(length, nullBitmap, (i, valid) => !valid && (data.set(new Uint8Array(stride), i * stride)));
return { values, vector: Vector.new(Data.Int(type, 0, length, nullCount, nullBitmap, data)) };
}
function generateFloat<T extends Float>(this: TestDataVectorGenerator, type: T, length = 100, nullCount = length * 0.2 | 0): GeneratedVector<V<T>> {
const ArrayType = type.ArrayType;
const precision = type.precision;
const data = fillRandom(ArrayType as any, length);
const nullBitmap = createBitmap(length, nullCount);
const values = memoize(() => {
const values = [] as (number | null)[];
iterateBitmap(length, nullBitmap, (i, valid) => {
values[i] = !valid ? null : precision > 0 ? data[i] : util.uint16ToFloat64(data[i]);
});
return values;
});
iterateBitmap(length, nullBitmap, (i, valid) => data[i] = !valid ? 0 : data[i] * Math.random());
return { values, vector: Vector.new(Data.Float(type, 0, length, nullCount, nullBitmap, data)) };
}
function generateUtf8<T extends Utf8>(this: TestDataVectorGenerator, type: T, length = 100, nullCount = length * 0.2 | 0): GeneratedVector<V<T>> {
const nullBitmap = createBitmap(length, nullCount);
const offsets = createVariableWidthOffsets(length, nullBitmap, undefined, undefined, nullCount != 0);
const values: string[] = new Array(offsets.length - 1).fill(null);
[...offsets.slice(1)]
.map((o, i) => isValid(nullBitmap, i) ? o - offsets[i] : null)
.reduce((map, length, i) => {
if (length !== null) {
if (length > 0) {
do {
values[i] = randomString(length);
} while (map.has(values[i]));
return map.set(values[i], i);
}
values[i] = '';
}
return map;
}, new Map<string, number>());
const data = createVariableWidthBytes(length, nullBitmap, offsets, (i) => encodeUtf8(values[i]));
return { values: () => values, vector: Vector.new(Data.Utf8(type, 0, length, nullCount, nullBitmap, offsets, data)) };
}
function generateBinary<T extends Binary>(this: TestDataVectorGenerator, type: T, length = 100, nullCount = length * 0.2 | 0): GeneratedVector<V<T>> {
const nullBitmap = createBitmap(length, nullCount);
const offsets = createVariableWidthOffsets(length, nullBitmap, undefined, undefined, nullCount != 0);
const values = [...offsets.slice(1)]
.map((o, i) => isValid(nullBitmap, i) ? o - offsets[i] : null)
.map((length) => length == null ? null : randomBytes(length));
const data = createVariableWidthBytes(length, nullBitmap, offsets, (i) => values[i]!);
return { values: () => values, vector: Vector.new(Data.Binary(type, 0, length, nullCount, nullBitmap, offsets, data)) };
}
function generateFixedSizeBinary<T extends FixedSizeBinary>(this: TestDataVectorGenerator, type: T, length = 100, nullCount = length * 0.2 | 0): GeneratedVector<V<T>> {
const nullBitmap = createBitmap(length, nullCount);
const data = fillRandom(Uint8Array, length * type.byteWidth);
const values = memoize(() => {
const values = [] as (Uint8Array | null)[];
iterateBitmap(length, nullBitmap, (i, valid) => {
values[i] = !valid ? null : data.subarray(i * type.byteWidth, (i + 1) * type.byteWidth);
});
return values;
});
iterateBitmap(length, nullBitmap, (i, valid) => !valid && data.set(new Uint8Array(type.byteWidth), i * type.byteWidth));
return { values, vector: Vector.new(Data.FixedSizeBinary(type, 0, length, nullCount, nullBitmap, data)) };
}
function generateDate<T extends Date_>(this: TestDataVectorGenerator, type: T, length = 100, nullCount = length * 0.2 | 0): GeneratedVector<V<T>> {
const values = [] as (number | null)[];
const nullBitmap = createBitmap(length, nullCount);
const data = type.unit === DateUnit.DAY
? createDate32(length, nullBitmap, values)
: createDate64(length, nullBitmap, values);
return {
values: () => values.map((x) => x == null ? null : new Date(x)),
vector: Vector.new(Data.Date(type, 0, length, nullCount, nullBitmap, data))
};
}
function generateTimestamp<T extends Timestamp>(this: TestDataVectorGenerator, type: T, length = 100, nullCount = length * 0.2 | 0): GeneratedVector<V<T>> {
const values = [] as (number | null)[];
const nullBitmap = createBitmap(length, nullCount);
const multiple = type.unit === TimeUnit.NANOSECOND ? 1000000000 :
type.unit === TimeUnit.MICROSECOND ? 1000000 :
type.unit === TimeUnit.MILLISECOND ? 1000 : 1;
const data = createTimestamp(length, nullBitmap, multiple, values);
return { values: () => values, vector: Vector.new(Data.Timestamp(type, 0, length, nullCount, nullBitmap, data)) };
}
function generateTime<T extends Time>(this: TestDataVectorGenerator, type: T, length = 100, nullCount = length * 0.2 | 0): GeneratedVector<V<T>> {
const values = [] as (Int32Array | number | null)[];
const nullBitmap = createBitmap(length, nullCount);
const multiple = type.unit === TimeUnit.NANOSECOND ? 1000000000 :
type.unit === TimeUnit.MICROSECOND ? 1000000 :
type.unit === TimeUnit.MILLISECOND ? 1000 : 1;
const data = type.bitWidth === 32
? createTime32(length, nullBitmap, multiple, values as (number | null)[])
: createTime64(length, nullBitmap, multiple, values as (Int32Array | null)[]);
return { values: () => values, vector: Vector.new(Data.Time(type, 0, length, nullCount, nullBitmap, data)) };
}
function generateDecimal<T extends Decimal>(this: TestDataVectorGenerator, type: T, length = 100, nullCount = length * 0.2 | 0): GeneratedVector<V<T>> {
const data = fillRandom(Uint32Array, length * 4);
const nullBitmap = createBitmap(length, nullCount);
const view = new DataView(data.buffer, 0, data.byteLength);
const values = memoize(() => {
const values = [] as (Uint32Array | null)[];
iterateBitmap(length, nullBitmap, (i, valid) => {
values[i] = !valid ? null : new Uint32Array(data.buffer, 16 * i, 4);
});
return values;
});
iterateBitmap(length, nullBitmap, (i, valid) => {
if (!valid) {
view.setFloat64(4 * (i + 0), 0, true);
view.setFloat64(4 * (i + 1), 0, true);
}
});
return { values, vector: Vector.new(Data.Decimal(type, 0, length, nullCount, nullBitmap, data))};
}
function generateInterval<T extends Interval>(this: TestDataVectorGenerator, type: T, length = 100, nullCount = length * 0.2 | 0): GeneratedVector<V<T>> {
const stride = (1 + type.unit);
const nullBitmap = createBitmap(length, nullCount);
const data = fillRandom(Int32Array, length * stride);
const values = memoize(() => {
const values = [] as (Int32Array | null)[];
iterateBitmap(length, nullBitmap, (i: number, valid: boolean) => {
values[i] = !valid ? null : stride === 2
? new Int32Array(data.buffer, 4 * i * stride, stride)
: new Int32Array([data[i] / 12 | 0, data[i] % 12 | 0]);
});
return values;
});
iterateBitmap(length, nullBitmap, (i: number, valid: boolean) => {
!valid && data.set(new Int32Array(stride), i * stride);
});
return { values, vector: Vector.new(Data.Interval(type, 0, length, nullCount, nullBitmap, data)) };
}
function generateList<T extends List>(this: TestDataVectorGenerator, type: T, length = 100, nullCount = length * 0.2 | 0, child = this.visit(type.children[0].type, length * 3, nullCount * 3)): GeneratedVector<V<T>> {
const childVec = child.vector;
const nullBitmap = createBitmap(length, nullCount);
const stride = childVec.length / (length - nullCount);
const offsets = createVariableWidthOffsets(length, nullBitmap, childVec.length, stride);
const values = memoize(() => {
const childValues = child.values();
const values: (T['valueType'] | null)[] = [...offsets.slice(1)]
.map((offset, i) => isValid(nullBitmap, i) ? offset : null)
.map((o, i) => o == null ? null : childValues.slice(offsets[i], o));
return values;
});
return { values, vector: Vector.new(Data.List(type, 0, length, nullCount, nullBitmap, offsets, childVec)) };
}
function generateFixedSizeList<T extends FixedSizeList>(this: TestDataVectorGenerator, type: T, length = 100, nullCount = length * 0.2 | 0, child = this.visit(type.children[0].type, length * type.listSize, nullCount * type.listSize)): GeneratedVector<V<T>> {
const nullBitmap = createBitmap(length, nullCount);
const values = memoize(() => {
const childValues = child.values();
const values = [] as (T['valueType'] | null)[];
for (let i = -1, stride = type.listSize; ++i < length;) {
values[i] = isValid(nullBitmap, i) ? childValues.slice(i * stride, (i + 1) * stride) : null;
}
return values;
});
return { values, vector: Vector.new(Data.FixedSizeList(type, 0, length, nullCount, nullBitmap, child.vector)) };
}
function generateDictionary<T extends Dictionary>(this: TestDataVectorGenerator, type: T, length = 100, nullCount = length * 0.2 | 0, dictionary = this.visit(type.dictionary, length, 0)): GeneratedVector<V<T>> {
const t = <any> type;
const currValues = t.dictionaryValues;
const hasDict = t.dictionaryVector && t.dictionaryVector.length > 0;
const dict = hasDict ? t.dictionaryVector.concat(dictionary.vector) : dictionary.vector;
const vals = hasDict ? (() => [...currValues(), ...dictionary.values()]) : dictionary.values;
const maxIdx = dict.length - 1;
const keys = new t.indices.ArrayType(length);
const nullBitmap = createBitmap(length, nullCount);
const values = memoize(() => {
const dict = vals();
const values = [] as (T['TValue'] | null)[];
iterateBitmap(length, nullBitmap, (i, valid) => {
values[i] = !valid ? null : dict[keys[i]];
});
return values;
});
iterateBitmap(length, nullBitmap, (i, valid) => {
keys[i] = !valid ? 0 : rand() * maxIdx | 0;
});
t.dictionaryVector = dict;
t.dictionaryValues = vals;
return { values, keys, vector: Vector.new(Data.Dictionary(type, 0, length, nullCount, nullBitmap, keys, dict)) };
}
function generateUnion<T extends Union>(this: TestDataVectorGenerator, type: T, length = 100, nullCount = length * 0.2 | 0, children?: GeneratedVector<any>[]): GeneratedVector<V<T>> {
const numChildren = type.children.length;
if (!children) {
if (type.mode === UnionMode.Sparse) {
children = type.children.map((f) => this.visit(f.type, length, nullCount));
} else {
const childLength = Math.ceil(length / numChildren);
const childNullCount = (nullCount / childLength) | 0;
children = type.children.map((f) => this.visit(f.type, childLength, childNullCount));
}
}
const typeIds = type.typeIds;
const typeIdsBuffer = new Int8Array(length);
const vecs = children.map(({ vector }) => vector);
const cols = children.map(({ values }) => values);
const nullBitmap = createBitmap(length, nullCount);
const typeIdToChildIndex = typeIds.reduce((typeIdToChildIndex, typeId, idx) => {
return (typeIdToChildIndex[typeId] = idx) && typeIdToChildIndex || typeIdToChildIndex;
}, Object.create(null) as { [key: number]: number });
if (type.mode === UnionMode.Sparse) {
const values = memoize(() => {
const values = [] as any[];
const childValues = cols.map((x) => x());
iterateBitmap(length, nullBitmap, (i, valid) => {
values[i] = !valid ? null : childValues[typeIdToChildIndex[typeIdsBuffer[i]]][i];
});
return values;
});
iterateBitmap(length, nullBitmap, (i, valid) => {
typeIdsBuffer[i] = !valid ? 0 : typeIds[rand() * numChildren | 0];
});
return { values, vector: Vector.new(Data.Union(type as SparseUnion, 0, length, nullCount, nullBitmap, typeIdsBuffer, vecs)) } as GeneratedVector<V<T>>;
}
const offsets = new Int32Array(length);
const values = memoize(() => {
const values = [] as any[];
const childValues = cols.map((x) => x());
iterateBitmap(length, nullBitmap, (i, valid) => {
values[i] = !valid ? null : childValues[typeIdToChildIndex[typeIdsBuffer[i]]][offsets[i]];
});
return values;
});
iterateBitmap(length, nullBitmap, (i, valid) => {
if (!valid) {
offsets[i] = 0;
typeIdsBuffer[i] = 0;
} else {
const colIdx = rand() * numChildren | 0;
offsets[i] = i / numChildren | 0;
typeIdsBuffer[i] = typeIds[colIdx];
}
});
return { values, vector: Vector.new(Data.Union(type as DenseUnion, 0, length, nullCount, nullBitmap, typeIdsBuffer, offsets, vecs)) } as GeneratedVector<V<T>>;
}
function generateStruct<T extends Struct>(this: TestDataVectorGenerator, type: T, length = 100, nullCount = length * 0.2 | 0, children = type.children.map((f) => this.visit(f.type, length, nullCount))): GeneratedVector<V<T>> {
const vecs = children.map(({ vector }) => vector);
const cols = children.map(({ values }) => values);
const nullBitmap = createBitmap(length, nullCount);
const values = memoize(() => {
const values = [] as any[];
const childValues = cols.map((x) => x());
const names = type.children.map((f) => f.name);
iterateBitmap(length, nullBitmap, (i, valid) => {
values[i] = !valid ? null : childValues.reduce((row, col, j) => ({
...row, [names[j]]: col[i]
}), {});
});
return values;
});
return { values, vector: Vector.new(Data.Struct(type, 0, length, nullCount, nullBitmap, vecs)) };
}
function generateMap<T extends Map_>(this: TestDataVectorGenerator,
type: T, length = 100, nullCount = length * 0.2 | 0,
child = this.visit(type.children[0].type, length * 3, 0, [
this.visit(type.children[0].type.children[0].type, length * 3, 0),
this.visit(type.children[0].type.children[1].type, length * 3, nullCount * 3)
])): GeneratedVector<V<T>> {
type K = T['keyType']['TValue'];
type V = T['valueType']['TValue'];
const childVec = child.vector;
const nullBitmap = createBitmap(length, nullCount);
const stride = childVec.length / (length - nullCount);
const offsets = createVariableWidthOffsets(length, nullBitmap, childVec.length, stride);
const values = memoize(() => {
const childValues = child.values() as { key: K; value: V }[];
const values: (T['TValue'] | null)[] = [...offsets.slice(1)]
.map((offset, i) => isValid(nullBitmap, i) ? offset : null)
.map((o, i) => o == null ? null : (() => {
const slice = childValues.slice(offsets[i], o);
const pairs = slice.map(({ key, value }) => [key, value]);
return new Map<K, V>(pairs as any as (readonly [K, V])[]);
})());
return values;
});
return { values, vector: Vector.new(Data.Map(type, 0, length, nullCount, nullBitmap, offsets, childVec)) };
}
type TypedArrayConstructor =
(typeof Int8Array) |
(typeof Int16Array) |
(typeof Int32Array) |
(typeof Uint8Array) |
(typeof Uint16Array) |
(typeof Uint32Array) |
(typeof Float32Array) |
(typeof Float64Array);
const rand = Math.random.bind(Math);
const randomBytes = (length: number) => fillRandom(Uint8Array, length);
const randomString = (length: number) => randomatic('?', length, { chars: `abcdefghijklmnopqrstuvwxyz0123456789_` });
const memoize = (fn: () => any) => ((x?: any) => () => x || (x = fn()))();
const encodeUtf8 = ((encoder) =>
encoder.encode.bind(encoder) as (input?: string, options?: { stream?: boolean }) => Uint8Array
)(new TextEncoder());
function fillRandom<T extends TypedArrayConstructor>(ArrayType: T, length: number) {
const BPE = ArrayType.BYTES_PER_ELEMENT;
const array = new ArrayType(length);
const max = (2 ** (8 * BPE)) - 1;
for (let i = -1; ++i < length; array[i] = rand() * max * (rand() > 0.5 ? -1 : 1));
return array as InstanceType<T>;
}
function isValid(bitmap: Uint8Array, i: number) {
return (bitmap[i >> 3] & 1 << (i % 8)) !== 0;
}
function iterateBitmap(length: number, bitmap: Uint8Array, fn: (index: number, valid: boolean) => any) {
let byteIndex = 0, valueIndex = 0;
for (let bit = 0; length > 0; bit = 0) {
let byte = bitmap[byteIndex++];
do {
fn(valueIndex++, (byte & 1 << bit) !== 0);
} while (--length > 0 && ++bit < 8);
}
}
function createBitmap(length: number, nullCount: number) {
const nulls = Object.create(null) as { [key: number]: boolean };
const bytes = new Uint8Array((((length >> 3) + 7) & ~7) || 8).fill(255);
for (let i, j = -1; ++j < nullCount;) {
while (nulls[i = (rand() * length) | 0]);
nulls[i] = true;
bytes[i >> 3] &= ~(1 << (i % 8)); // false
}
return bytes;
}
function createVariableWidthOffsets(length: number, nullBitmap: Uint8Array, max = Infinity, stride = 20, allowEmpty = true) {
const offsets = new Int32Array(length + 1);
iterateBitmap(length, nullBitmap, (i, valid) => {
if (!valid) {
offsets[i + 1] = offsets[i];
} else {
do {
offsets[i + 1] = Math.min(max, offsets[i] + (rand() * stride | 0));
} while (!allowEmpty && offsets[i + 1] === offsets[i]);
}
});
return offsets;
}
function createVariableWidthBytes(length: number, nullBitmap: Uint8Array, offsets: Int32Array, getBytes: (index: number) => Uint8Array) {
const bytes = new Uint8Array(offsets[length]);
iterateBitmap(length, nullBitmap, (i, valid) => {
valid && bytes.set(getBytes(i), offsets[i]);
});
return bytes;
}
function createDate32(length: number, nullBitmap: Uint8Array, values: (number | null)[] = []) {
const data = new Int32Array(length).fill(Date.now() / 86400000 | 0);
iterateBitmap(length, nullBitmap, (i, valid) => {
if (!valid) {
data[i] = 0;
values[i] = null;
} else {
data[i] = data[i] + (rand() * 10000 * (rand() > 0.5 ? -1 : 1)) | 0;
values[i] = data[i] * 86400000;
}
});
return data;
}
function createDate64(length: number, nullBitmap: Uint8Array, values: (number | null)[] = []) {
const data = new Int32Array(length * 2).fill(0);
const data32 = createDate32(length, nullBitmap, values);
iterateBitmap(length, nullBitmap, (i, valid) => {
if (valid) {
const value = data32[i] * 86400000;
const hi = (value / 4294967296) | 0;
const lo = (value - 4294967296 * hi) | 0;
values[i] = value;
data[i * 2 + 0] = lo;
data[i * 2 + 1] = hi;
}
});
return data;
}
function createTimestamp(length: number, nullBitmap: Uint8Array, multiple: number, values: (number | null)[] = []) {
const mult = 86400 * multiple;
const data = new Int32Array(length * 2).fill(0);
const data32 = createDate32(length, nullBitmap, values);
iterateBitmap(length, nullBitmap, (i, valid) => {
if (valid) {
const value = data32[i] * mult;
const hi = (value / 4294967296) | 0;
const lo = (value - 4294967296 * hi) | 0;
data[i * 2 + 0] = lo;
data[i * 2 + 1] = hi;
}
});
return data;
}
function createTime32(length: number, nullBitmap: Uint8Array, multiple: number, values: (number | null)[] = []) {
const data = new Int32Array(length).fill(0);
iterateBitmap(length, nullBitmap, (i, valid) => {
if (!valid) {
data[i] = 0;
values[i] = null;
} else {
values[i] = data[i] = ((1000 * rand()) | 0 * multiple) * (rand() > 0.5 ? -1 : 1);
}
});
return data;
}
function createTime64(length: number, nullBitmap: Uint8Array, multiple: number, values: (Int32Array | null)[] = []) {
const data = new Int32Array(length * 2).fill(0);
iterateBitmap(length, nullBitmap, (i, valid) => {
if (!valid) {
values[i] = null;
} else {
const value = (1000 * rand()) | 0 * multiple;
const hi = (value / 4294967296) | 0;
const lo = (value - 4294967296 * hi) | 0;
data[i * 2 + 0] = lo;
data[i * 2 + 1] = hi;
values[i] = data.subarray(i * 2, (i + 1) * 2);
}
});
return data;
}
|