apache-arrow
Version:
Apache Arrow columnar in-memory format
81 lines (79 loc) • 3.35 kB
JavaScript
// 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 { Field } from '../schema.mjs';
import { DataBufferBuilder } from './buffer.mjs';
import { Builder } from '../builder.mjs';
import { Union } from '../type.mjs';
/** @ignore */
export class UnionBuilder extends Builder {
constructor(options) {
super(options);
this._typeIds = new DataBufferBuilder(Int8Array, 0, 1);
if (typeof options['valueToChildTypeId'] === 'function') {
this._valueToChildTypeId = options['valueToChildTypeId'];
}
}
get typeIdToChildIndex() { return this.type.typeIdToChildIndex; }
append(value, childTypeId) {
return this.set(this.length, value, childTypeId);
}
set(index, value, childTypeId) {
if (childTypeId === undefined) {
childTypeId = this._valueToChildTypeId(this, value, index);
}
this.setValue(index, value, childTypeId);
return this;
}
setValue(index, value, childTypeId) {
this._typeIds.set(index, childTypeId);
const childIndex = this.type.typeIdToChildIndex[childTypeId];
const child = this.children[childIndex];
child === null || child === void 0 ? void 0 : child.set(index, value);
}
addChild(child, name = `${this.children.length}`) {
const childTypeId = this.children.push(child);
const { type: { children, mode, typeIds } } = this;
const fields = [...children, new Field(name, child.type)];
this.type = new Union(mode, [...typeIds, childTypeId], fields);
return childTypeId;
}
/** @ignore */
// @ts-ignore
_valueToChildTypeId(builder, value, offset) {
throw new Error(`Cannot map UnionBuilder value to child typeId. \
Pass the \`childTypeId\` as the second argument to unionBuilder.append(), \
or supply a \`valueToChildTypeId\` function as part of the UnionBuilder constructor options.`);
}
}
/** @ignore */
export class SparseUnionBuilder extends UnionBuilder {
}
/** @ignore */
export class DenseUnionBuilder extends UnionBuilder {
constructor(options) {
super(options);
this._offsets = new DataBufferBuilder(Int32Array);
}
/** @ignore */
setValue(index, value, childTypeId) {
const id = this._typeIds.set(index, childTypeId).buffer[index];
const child = this.getChildAt(this.type.typeIdToChildIndex[id]);
const denseIndex = this._offsets.set(index, child.length).buffer[index];
child === null || child === void 0 ? void 0 : child.set(denseIndex, value);
}
}
//# sourceMappingURL=union.mjs.map