Spaces:
Running
Running
File size: 27,559 Bytes
78c921d |
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 |
"use strict";
// 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.
Object.defineProperty(exports, "__esModule", { value: true });
exports.AsyncRecordBatchFileReader = exports.RecordBatchFileReader = exports.AsyncRecordBatchStreamReader = exports.RecordBatchStreamReader = exports.RecordBatchReader = void 0;
const tslib_1 = require("tslib");
const data_js_1 = require("../data.js");
const vector_js_1 = require("../vector.js");
const type_js_1 = require("../type.js");
const enum_js_1 = require("../enum.js");
const file_js_1 = require("./metadata/file.js");
const adapters_js_1 = tslib_1.__importDefault(require("../io/adapters.js"));
const stream_js_1 = require("../io/stream.js");
const file_js_2 = require("../io/file.js");
const vectorloader_js_1 = require("../visitor/vectorloader.js");
const recordbatch_js_1 = require("../recordbatch.js");
const interfaces_js_1 = require("../io/interfaces.js");
const message_js_1 = require("./message.js");
const compat_js_1 = require("../util/compat.js");
class RecordBatchReader extends interfaces_js_1.ReadableInterop {
constructor(impl) {
super();
this._impl = impl;
}
get closed() { return this._impl.closed; }
get schema() { return this._impl.schema; }
get autoDestroy() { return this._impl.autoDestroy; }
get dictionaries() { return this._impl.dictionaries; }
get numDictionaries() { return this._impl.numDictionaries; }
get numRecordBatches() { return this._impl.numRecordBatches; }
get footer() { return this._impl.isFile() ? this._impl.footer : null; }
isSync() { return this._impl.isSync(); }
isAsync() { return this._impl.isAsync(); }
isFile() { return this._impl.isFile(); }
isStream() { return this._impl.isStream(); }
next() {
return this._impl.next();
}
throw(value) {
return this._impl.throw(value);
}
return(value) {
return this._impl.return(value);
}
cancel() {
return this._impl.cancel();
}
reset(schema) {
this._impl.reset(schema);
this._DOMStream = undefined;
this._nodeStream = undefined;
return this;
}
open(options) {
const opening = this._impl.open(options);
return (0, compat_js_1.isPromise)(opening) ? opening.then(() => this) : this;
}
readRecordBatch(index) {
return this._impl.isFile() ? this._impl.readRecordBatch(index) : null;
}
[Symbol.iterator]() {
return this._impl[Symbol.iterator]();
}
[Symbol.asyncIterator]() {
return this._impl[Symbol.asyncIterator]();
}
toDOMStream() {
return adapters_js_1.default.toDOMStream((this.isSync()
? { [Symbol.iterator]: () => this }
: { [Symbol.asyncIterator]: () => this }));
}
toNodeStream() {
return adapters_js_1.default.toNodeStream((this.isSync()
? { [Symbol.iterator]: () => this }
: { [Symbol.asyncIterator]: () => this }), { objectMode: true });
}
/** @nocollapse */
// @ts-ignore
static throughNode(options) {
throw new Error(`"throughNode" not available in this environment`);
}
/** @nocollapse */
static throughDOM(
// @ts-ignore
writableStrategy,
// @ts-ignore
readableStrategy) {
throw new Error(`"throughDOM" not available in this environment`);
}
/** @nocollapse */
static from(source) {
if (source instanceof RecordBatchReader) {
return source;
}
else if ((0, compat_js_1.isArrowJSON)(source)) {
return fromArrowJSON(source);
}
else if ((0, compat_js_1.isFileHandle)(source)) {
return fromFileHandle(source);
}
else if ((0, compat_js_1.isPromise)(source)) {
return (() => tslib_1.__awaiter(this, void 0, void 0, function* () { return yield RecordBatchReader.from(yield source); }))();
}
else if ((0, compat_js_1.isFetchResponse)(source) || (0, compat_js_1.isReadableDOMStream)(source) || (0, compat_js_1.isReadableNodeStream)(source) || (0, compat_js_1.isAsyncIterable)(source)) {
return fromAsyncByteStream(new stream_js_1.AsyncByteStream(source));
}
return fromByteStream(new stream_js_1.ByteStream(source));
}
/** @nocollapse */
static readAll(source) {
if (source instanceof RecordBatchReader) {
return source.isSync() ? readAllSync(source) : readAllAsync(source);
}
else if ((0, compat_js_1.isArrowJSON)(source) || ArrayBuffer.isView(source) || (0, compat_js_1.isIterable)(source) || (0, compat_js_1.isIteratorResult)(source)) {
return readAllSync(source);
}
return readAllAsync(source);
}
}
exports.RecordBatchReader = RecordBatchReader;
//
// Since TS is a structural type system, we define the following subclass stubs
// so that concrete types exist to associate with with the interfaces below.
//
// The implementation for each RecordBatchReader is hidden away in the set of
// `RecordBatchReaderImpl` classes in the second half of this file. This allows
// us to export a single RecordBatchReader class, and swap out the impl based
// on the io primitives or underlying arrow (JSON, file, or stream) at runtime.
//
// Async/await makes our job a bit harder, since it forces everything to be
// either fully sync or fully async. This is why the logic for the reader impls
// has been duplicated into both sync and async variants. Since the RBR
// delegates to its impl, an RBR with an AsyncRecordBatchFileReaderImpl for
// example will return async/await-friendly Promises, but one with a (sync)
// RecordBatchStreamReaderImpl will always return values. Nothing should be
// different about their logic, aside from the async handling. This is also why
// this code looks highly structured, as it should be nearly identical and easy
// to follow.
//
/** @ignore */
class RecordBatchStreamReader extends RecordBatchReader {
constructor(_impl) {
super(_impl);
this._impl = _impl;
}
readAll() { return [...this]; }
[Symbol.iterator]() { return this._impl[Symbol.iterator](); }
[Symbol.asyncIterator]() { return tslib_1.__asyncGenerator(this, arguments, function* _a() { yield tslib_1.__await(yield* tslib_1.__asyncDelegator(tslib_1.__asyncValues(this[Symbol.iterator]()))); }); }
}
exports.RecordBatchStreamReader = RecordBatchStreamReader;
/** @ignore */
class AsyncRecordBatchStreamReader extends RecordBatchReader {
constructor(_impl) {
super(_impl);
this._impl = _impl;
}
readAll() {
var e_1, _a;
return tslib_1.__awaiter(this, void 0, void 0, function* () {
const batches = new Array();
try {
for (var _b = tslib_1.__asyncValues(this), _c; _c = yield _b.next(), !_c.done;) {
const batch = _c.value;
batches.push(batch);
}
}
catch (e_1_1) { e_1 = { error: e_1_1 }; }
finally {
try {
if (_c && !_c.done && (_a = _b.return)) yield _a.call(_b);
}
finally { if (e_1) throw e_1.error; }
}
return batches;
});
}
[Symbol.iterator]() { throw new Error(`AsyncRecordBatchStreamReader is not Iterable`); }
[Symbol.asyncIterator]() { return this._impl[Symbol.asyncIterator](); }
}
exports.AsyncRecordBatchStreamReader = AsyncRecordBatchStreamReader;
/** @ignore */
class RecordBatchFileReader extends RecordBatchStreamReader {
constructor(_impl) {
super(_impl);
this._impl = _impl;
}
}
exports.RecordBatchFileReader = RecordBatchFileReader;
/** @ignore */
class AsyncRecordBatchFileReader extends AsyncRecordBatchStreamReader {
constructor(_impl) {
super(_impl);
this._impl = _impl;
}
}
exports.AsyncRecordBatchFileReader = AsyncRecordBatchFileReader;
/** @ignore */
class RecordBatchReaderImpl {
constructor(dictionaries = new Map()) {
this.closed = false;
this.autoDestroy = true;
this._dictionaryIndex = 0;
this._recordBatchIndex = 0;
this.dictionaries = dictionaries;
}
get numDictionaries() { return this._dictionaryIndex; }
get numRecordBatches() { return this._recordBatchIndex; }
isSync() { return false; }
isAsync() { return false; }
isFile() { return false; }
isStream() { return false; }
reset(schema) {
this._dictionaryIndex = 0;
this._recordBatchIndex = 0;
this.schema = schema;
this.dictionaries = new Map();
return this;
}
_loadRecordBatch(header, body) {
const children = this._loadVectors(header, body, this.schema.fields);
const data = (0, data_js_1.makeData)({ type: new type_js_1.Struct(this.schema.fields), length: header.length, children });
return new recordbatch_js_1.RecordBatch(this.schema, data);
}
_loadDictionaryBatch(header, body) {
const { id, isDelta } = header;
const { dictionaries, schema } = this;
const dictionary = dictionaries.get(id);
if (isDelta || !dictionary) {
const type = schema.dictionaries.get(id);
const data = this._loadVectors(header.data, body, [type]);
return (dictionary && isDelta ? dictionary.concat(new vector_js_1.Vector(data)) :
new vector_js_1.Vector(data)).memoize();
}
return dictionary.memoize();
}
_loadVectors(header, body, types) {
return new vectorloader_js_1.VectorLoader(body, header.nodes, header.buffers, this.dictionaries).visitMany(types);
}
}
/** @ignore */
class RecordBatchStreamReaderImpl extends RecordBatchReaderImpl {
constructor(source, dictionaries) {
super(dictionaries);
this._reader = !(0, compat_js_1.isArrowJSON)(source)
? new message_js_1.MessageReader(this._handle = source)
: new message_js_1.JSONMessageReader(this._handle = source);
}
isSync() { return true; }
isStream() { return true; }
[Symbol.iterator]() {
return this;
}
cancel() {
if (!this.closed && (this.closed = true)) {
this.reset()._reader.return();
this._reader = null;
this.dictionaries = null;
}
}
open(options) {
if (!this.closed) {
this.autoDestroy = shouldAutoDestroy(this, options);
if (!(this.schema || (this.schema = this._reader.readSchema()))) {
this.cancel();
}
}
return this;
}
throw(value) {
if (!this.closed && this.autoDestroy && (this.closed = true)) {
return this.reset()._reader.throw(value);
}
return interfaces_js_1.ITERATOR_DONE;
}
return(value) {
if (!this.closed && this.autoDestroy && (this.closed = true)) {
return this.reset()._reader.return(value);
}
return interfaces_js_1.ITERATOR_DONE;
}
next() {
if (this.closed) {
return interfaces_js_1.ITERATOR_DONE;
}
let message;
const { _reader: reader } = this;
while (message = this._readNextMessageAndValidate()) {
if (message.isSchema()) {
this.reset(message.header());
}
else if (message.isRecordBatch()) {
this._recordBatchIndex++;
const header = message.header();
const buffer = reader.readMessageBody(message.bodyLength);
const recordBatch = this._loadRecordBatch(header, buffer);
return { done: false, value: recordBatch };
}
else if (message.isDictionaryBatch()) {
this._dictionaryIndex++;
const header = message.header();
const buffer = reader.readMessageBody(message.bodyLength);
const vector = this._loadDictionaryBatch(header, buffer);
this.dictionaries.set(header.id, vector);
}
}
if (this.schema && this._recordBatchIndex === 0) {
this._recordBatchIndex++;
return { done: false, value: new recordbatch_js_1._InternalEmptyPlaceholderRecordBatch(this.schema) };
}
return this.return();
}
_readNextMessageAndValidate(type) {
return this._reader.readMessage(type);
}
}
/** @ignore */
class AsyncRecordBatchStreamReaderImpl extends RecordBatchReaderImpl {
constructor(source, dictionaries) {
super(dictionaries);
this._reader = new message_js_1.AsyncMessageReader(this._handle = source);
}
isAsync() { return true; }
isStream() { return true; }
[Symbol.asyncIterator]() {
return this;
}
cancel() {
return tslib_1.__awaiter(this, void 0, void 0, function* () {
if (!this.closed && (this.closed = true)) {
yield this.reset()._reader.return();
this._reader = null;
this.dictionaries = null;
}
});
}
open(options) {
return tslib_1.__awaiter(this, void 0, void 0, function* () {
if (!this.closed) {
this.autoDestroy = shouldAutoDestroy(this, options);
if (!(this.schema || (this.schema = (yield this._reader.readSchema())))) {
yield this.cancel();
}
}
return this;
});
}
throw(value) {
return tslib_1.__awaiter(this, void 0, void 0, function* () {
if (!this.closed && this.autoDestroy && (this.closed = true)) {
return yield this.reset()._reader.throw(value);
}
return interfaces_js_1.ITERATOR_DONE;
});
}
return(value) {
return tslib_1.__awaiter(this, void 0, void 0, function* () {
if (!this.closed && this.autoDestroy && (this.closed = true)) {
return yield this.reset()._reader.return(value);
}
return interfaces_js_1.ITERATOR_DONE;
});
}
next() {
return tslib_1.__awaiter(this, void 0, void 0, function* () {
if (this.closed) {
return interfaces_js_1.ITERATOR_DONE;
}
let message;
const { _reader: reader } = this;
while (message = yield this._readNextMessageAndValidate()) {
if (message.isSchema()) {
yield this.reset(message.header());
}
else if (message.isRecordBatch()) {
this._recordBatchIndex++;
const header = message.header();
const buffer = yield reader.readMessageBody(message.bodyLength);
const recordBatch = this._loadRecordBatch(header, buffer);
return { done: false, value: recordBatch };
}
else if (message.isDictionaryBatch()) {
this._dictionaryIndex++;
const header = message.header();
const buffer = yield reader.readMessageBody(message.bodyLength);
const vector = this._loadDictionaryBatch(header, buffer);
this.dictionaries.set(header.id, vector);
}
}
if (this.schema && this._recordBatchIndex === 0) {
this._recordBatchIndex++;
return { done: false, value: new recordbatch_js_1._InternalEmptyPlaceholderRecordBatch(this.schema) };
}
return yield this.return();
});
}
_readNextMessageAndValidate(type) {
return tslib_1.__awaiter(this, void 0, void 0, function* () {
return yield this._reader.readMessage(type);
});
}
}
/** @ignore */
class RecordBatchFileReaderImpl extends RecordBatchStreamReaderImpl {
constructor(source, dictionaries) {
super(source instanceof file_js_2.RandomAccessFile ? source : new file_js_2.RandomAccessFile(source), dictionaries);
}
get footer() { return this._footer; }
get numDictionaries() { return this._footer ? this._footer.numDictionaries : 0; }
get numRecordBatches() { return this._footer ? this._footer.numRecordBatches : 0; }
isSync() { return true; }
isFile() { return true; }
open(options) {
if (!this.closed && !this._footer) {
this.schema = (this._footer = this._readFooter()).schema;
for (const block of this._footer.dictionaryBatches()) {
block && this._readDictionaryBatch(this._dictionaryIndex++);
}
}
return super.open(options);
}
readRecordBatch(index) {
var _a;
if (this.closed) {
return null;
}
if (!this._footer) {
this.open();
}
const block = (_a = this._footer) === null || _a === void 0 ? void 0 : _a.getRecordBatch(index);
if (block && this._handle.seek(block.offset)) {
const message = this._reader.readMessage(enum_js_1.MessageHeader.RecordBatch);
if (message === null || message === void 0 ? void 0 : message.isRecordBatch()) {
const header = message.header();
const buffer = this._reader.readMessageBody(message.bodyLength);
const recordBatch = this._loadRecordBatch(header, buffer);
return recordBatch;
}
}
return null;
}
_readDictionaryBatch(index) {
var _a;
const block = (_a = this._footer) === null || _a === void 0 ? void 0 : _a.getDictionaryBatch(index);
if (block && this._handle.seek(block.offset)) {
const message = this._reader.readMessage(enum_js_1.MessageHeader.DictionaryBatch);
if (message === null || message === void 0 ? void 0 : message.isDictionaryBatch()) {
const header = message.header();
const buffer = this._reader.readMessageBody(message.bodyLength);
const vector = this._loadDictionaryBatch(header, buffer);
this.dictionaries.set(header.id, vector);
}
}
}
_readFooter() {
const { _handle } = this;
const offset = _handle.size - message_js_1.magicAndPadding;
const length = _handle.readInt32(offset);
const buffer = _handle.readAt(offset - length, length);
return file_js_1.Footer.decode(buffer);
}
_readNextMessageAndValidate(type) {
var _a;
if (!this._footer) {
this.open();
}
if (this._footer && this._recordBatchIndex < this.numRecordBatches) {
const block = (_a = this._footer) === null || _a === void 0 ? void 0 : _a.getRecordBatch(this._recordBatchIndex);
if (block && this._handle.seek(block.offset)) {
return this._reader.readMessage(type);
}
}
return null;
}
}
/** @ignore */
class AsyncRecordBatchFileReaderImpl extends AsyncRecordBatchStreamReaderImpl {
constructor(source, ...rest) {
const byteLength = typeof rest[0] !== 'number' ? rest.shift() : undefined;
const dictionaries = rest[0] instanceof Map ? rest.shift() : undefined;
super(source instanceof file_js_2.AsyncRandomAccessFile ? source : new file_js_2.AsyncRandomAccessFile(source, byteLength), dictionaries);
}
get footer() { return this._footer; }
get numDictionaries() { return this._footer ? this._footer.numDictionaries : 0; }
get numRecordBatches() { return this._footer ? this._footer.numRecordBatches : 0; }
isFile() { return true; }
isAsync() { return true; }
open(options) {
const _super = Object.create(null, {
open: { get: () => super.open }
});
return tslib_1.__awaiter(this, void 0, void 0, function* () {
if (!this.closed && !this._footer) {
this.schema = (this._footer = yield this._readFooter()).schema;
for (const block of this._footer.dictionaryBatches()) {
block && (yield this._readDictionaryBatch(this._dictionaryIndex++));
}
}
return yield _super.open.call(this, options);
});
}
readRecordBatch(index) {
var _a;
return tslib_1.__awaiter(this, void 0, void 0, function* () {
if (this.closed) {
return null;
}
if (!this._footer) {
yield this.open();
}
const block = (_a = this._footer) === null || _a === void 0 ? void 0 : _a.getRecordBatch(index);
if (block && (yield this._handle.seek(block.offset))) {
const message = yield this._reader.readMessage(enum_js_1.MessageHeader.RecordBatch);
if (message === null || message === void 0 ? void 0 : message.isRecordBatch()) {
const header = message.header();
const buffer = yield this._reader.readMessageBody(message.bodyLength);
const recordBatch = this._loadRecordBatch(header, buffer);
return recordBatch;
}
}
return null;
});
}
_readDictionaryBatch(index) {
var _a;
return tslib_1.__awaiter(this, void 0, void 0, function* () {
const block = (_a = this._footer) === null || _a === void 0 ? void 0 : _a.getDictionaryBatch(index);
if (block && (yield this._handle.seek(block.offset))) {
const message = yield this._reader.readMessage(enum_js_1.MessageHeader.DictionaryBatch);
if (message === null || message === void 0 ? void 0 : message.isDictionaryBatch()) {
const header = message.header();
const buffer = yield this._reader.readMessageBody(message.bodyLength);
const vector = this._loadDictionaryBatch(header, buffer);
this.dictionaries.set(header.id, vector);
}
}
});
}
_readFooter() {
return tslib_1.__awaiter(this, void 0, void 0, function* () {
const { _handle } = this;
_handle._pending && (yield _handle._pending);
const offset = _handle.size - message_js_1.magicAndPadding;
const length = yield _handle.readInt32(offset);
const buffer = yield _handle.readAt(offset - length, length);
return file_js_1.Footer.decode(buffer);
});
}
_readNextMessageAndValidate(type) {
return tslib_1.__awaiter(this, void 0, void 0, function* () {
if (!this._footer) {
yield this.open();
}
if (this._footer && this._recordBatchIndex < this.numRecordBatches) {
const block = this._footer.getRecordBatch(this._recordBatchIndex);
if (block && (yield this._handle.seek(block.offset))) {
return yield this._reader.readMessage(type);
}
}
return null;
});
}
}
/** @ignore */
class RecordBatchJSONReaderImpl extends RecordBatchStreamReaderImpl {
constructor(source, dictionaries) {
super(source, dictionaries);
}
_loadVectors(header, body, types) {
return new vectorloader_js_1.JSONVectorLoader(body, header.nodes, header.buffers, this.dictionaries).visitMany(types);
}
}
//
// Define some helper functions and static implementations down here. There's
// a bit of branching in the static methods that can lead to the same routines
// being executed, so we've broken those out here for readability.
//
/** @ignore */
function shouldAutoDestroy(self, options) {
return options && (typeof options['autoDestroy'] === 'boolean') ? options['autoDestroy'] : self['autoDestroy'];
}
/** @ignore */
function* readAllSync(source) {
const reader = RecordBatchReader.from(source);
try {
if (!reader.open({ autoDestroy: false }).closed) {
do {
yield reader;
} while (!(reader.reset().open()).closed);
}
}
finally {
reader.cancel();
}
}
/** @ignore */
function readAllAsync(source) {
return tslib_1.__asyncGenerator(this, arguments, function* readAllAsync_1() {
const reader = yield tslib_1.__await(RecordBatchReader.from(source));
try {
if (!(yield tslib_1.__await(reader.open({ autoDestroy: false }))).closed) {
do {
yield yield tslib_1.__await(reader);
} while (!(yield tslib_1.__await(reader.reset().open())).closed);
}
}
finally {
yield tslib_1.__await(reader.cancel());
}
});
}
/** @ignore */
function fromArrowJSON(source) {
return new RecordBatchStreamReader(new RecordBatchJSONReaderImpl(source));
}
/** @ignore */
function fromByteStream(source) {
const bytes = source.peek((message_js_1.magicLength + 7) & ~7);
return bytes && bytes.byteLength >= 4 ? !(0, message_js_1.checkForMagicArrowString)(bytes)
? new RecordBatchStreamReader(new RecordBatchStreamReaderImpl(source))
: new RecordBatchFileReader(new RecordBatchFileReaderImpl(source.read()))
: new RecordBatchStreamReader(new RecordBatchStreamReaderImpl(function* () { }()));
}
/** @ignore */
function fromAsyncByteStream(source) {
return tslib_1.__awaiter(this, void 0, void 0, function* () {
const bytes = yield source.peek((message_js_1.magicLength + 7) & ~7);
return bytes && bytes.byteLength >= 4 ? !(0, message_js_1.checkForMagicArrowString)(bytes)
? new AsyncRecordBatchStreamReader(new AsyncRecordBatchStreamReaderImpl(source))
: new RecordBatchFileReader(new RecordBatchFileReaderImpl(yield source.read()))
: new AsyncRecordBatchStreamReader(new AsyncRecordBatchStreamReaderImpl(function () { return tslib_1.__asyncGenerator(this, arguments, function* () { }); }()));
});
}
/** @ignore */
function fromFileHandle(source) {
return tslib_1.__awaiter(this, void 0, void 0, function* () {
const { size } = yield source.stat();
const file = new file_js_2.AsyncRandomAccessFile(source, size);
if (size >= message_js_1.magicX2AndPadding && (0, message_js_1.checkForMagicArrowString)(yield file.readAt(0, (message_js_1.magicLength + 7) & ~7))) {
return new AsyncRecordBatchFileReader(new AsyncRecordBatchFileReaderImpl(file));
}
return new AsyncRecordBatchStreamReader(new AsyncRecordBatchStreamReaderImpl(file));
});
}
//# sourceMappingURL=reader.js.map
|