-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathtable.mjs
More file actions
158 lines (157 loc) · 6.08 KB
/
table.mjs
File metadata and controls
158 lines (157 loc) · 6.08 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
// 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 { Data } from './data';
import { Column } from './column';
import { Schema } from './schema';
import { isPromise } from './util/compat';
import { RecordBatch } from './recordbatch';
import { RecordBatchReader } from './ipc/reader';
import { Chunked } from './vector/index';
import { Struct } from './type';
import { selectColumnArgs, selectArgs } from './util/args';
import { distributeColumnsIntoRecordBatches } from './util/recordbatch';
import { distributeVectorsIntoRecordBatches } from './util/recordbatch';
import { RecordBatchFileWriter, RecordBatchStreamWriter } from './ipc/writer';
export class Table extends Chunked {
constructor(...args) {
let schema = null;
if (args[0] instanceof Schema) {
schema = args.shift();
}
let chunks = selectArgs(RecordBatch, args);
if (!schema && !(schema = chunks[0] && chunks[0].schema)) {
throw new TypeError('Table must be initialized with a Schema or at least one RecordBatch');
}
if (!chunks[0]) {
chunks[0] = new RecordBatch(schema, 0, schema.fields.map((f) => Data.new(f.type, 0, 0)));
}
super(new Struct(schema.fields), chunks);
this._schema = schema;
this._chunks = chunks;
}
/** @nocollapse */
static empty() { return new Table(new Schema([]), []); }
/** @nocollapse */
static from(source) {
if (!source) {
return Table.empty();
}
let reader = RecordBatchReader.from(source);
if (isPromise(reader)) {
return (async () => await Table.from(await reader))();
}
if (reader.isSync() && (reader = reader.open())) {
return !reader.schema ? Table.empty() : new Table(reader.schema, [...reader]);
}
return (async (opening) => {
const reader = await opening;
const schema = reader.schema;
const batches = [];
if (schema) {
for await (let batch of reader) {
batches.push(batch);
}
return new Table(schema, batches);
}
return Table.empty();
})(reader.open());
}
/** @nocollapse */
static async fromAsync(source) {
return await Table.from(source);
}
/** @nocollapse */
static fromStruct(struct) {
return Table.new(struct.data.childData, struct.type.children);
}
/** @nocollapse */
static new(...cols) {
return new Table(...distributeColumnsIntoRecordBatches(selectColumnArgs(cols)));
}
get schema() { return this._schema; }
get length() { return this._length; }
get chunks() { return this._chunks; }
get numCols() { return this._numChildren; }
clone(chunks = this._chunks) {
return new Table(this._schema, chunks);
}
getColumn(name) {
return this.getColumnAt(this.getColumnIndex(name));
}
getColumnAt(index) {
return this.getChildAt(index);
}
getColumnIndex(name) {
return this._schema.fields.findIndex((f) => f.name === name);
}
getChildAt(index) {
if (index < 0 || index >= this.numChildren) {
return null;
}
let field, child;
const fields = this._schema.fields;
const columns = this._children || (this._children = []);
if (child = columns[index]) {
return child;
}
if (field = fields[index]) {
const chunks = this._chunks
.map((chunk) => chunk.getChildAt(index))
.filter((vec) => vec != null);
if (chunks.length > 0) {
return (columns[index] = new Column(field, chunks));
}
}
return null;
}
// @ts-ignore
serialize(encoding = 'binary', stream = true) {
const writer = !stream
? RecordBatchFileWriter
: RecordBatchStreamWriter;
return writer.writeAll(this._chunks).toUint8Array(true);
}
count() {
return this._length;
}
select(...columnNames) {
const nameToIndex = this._schema.fields.reduce((m, f, i) => m.set(f.name, i), new Map());
return this.selectAt(...columnNames.map((columnName) => nameToIndex.get(columnName)).filter((x) => x > -1));
}
selectAt(...columnIndices) {
const schema = this._schema.selectAt(...columnIndices);
return new Table(schema, this._chunks.map(({ length, data: { childData } }) => {
return new RecordBatch(schema, length, columnIndices.map((i) => childData[i]).filter(Boolean));
}));
}
assign(other) {
const fields = this._schema.fields;
const [indices, oldToNew] = other.schema.fields.reduce((memo, f2, newIdx) => {
const [indices, oldToNew] = memo;
const i = fields.findIndex((f) => f.name === f2.name);
~i ? (oldToNew[i] = newIdx) : indices.push(newIdx);
return memo;
}, [[], []]);
const schema = this._schema.assign(other.schema);
const columns = [
...fields.map((_f, i, _fs, j = oldToNew[i]) => (j === undefined ? this.getColumnAt(i) : other.getColumnAt(j))),
...indices.map((i) => other.getColumnAt(i))
].filter(Boolean);
return new Table(...distributeVectorsIntoRecordBatches(schema, columns));
}
}
//# sourceMappingURL=table.mjs.map