Spaces:
Running
Running
File size: 17,400 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 |
"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.makeData = exports.Data = exports.kUnknownNullCount = void 0;
const vector_js_1 = require("./vector.js");
const enum_js_1 = require("./enum.js");
const type_js_1 = require("./type.js");
const bit_js_1 = require("./util/bit.js");
/** @ignore */ exports.kUnknownNullCount = -1;
/**
* Data structure underlying {@link Vector}s. Use the convenience method {@link makeData}.
*/
class Data {
constructor(type, offset, length, nullCount, buffers, children = [], dictionary) {
this.type = type;
this.children = children;
this.dictionary = dictionary;
this.offset = Math.floor(Math.max(offset || 0, 0));
this.length = Math.floor(Math.max(length || 0, 0));
this._nullCount = Math.floor(Math.max(nullCount || 0, -1));
let buffer;
if (buffers instanceof Data) {
this.stride = buffers.stride;
this.values = buffers.values;
this.typeIds = buffers.typeIds;
this.nullBitmap = buffers.nullBitmap;
this.valueOffsets = buffers.valueOffsets;
}
else {
this.stride = (0, type_js_1.strideForType)(type);
if (buffers) {
(buffer = buffers[0]) && (this.valueOffsets = buffer);
(buffer = buffers[1]) && (this.values = buffer);
(buffer = buffers[2]) && (this.nullBitmap = buffer);
(buffer = buffers[3]) && (this.typeIds = buffer);
}
}
this.nullable = this._nullCount !== 0 && this.nullBitmap && this.nullBitmap.byteLength > 0;
}
get typeId() { return this.type.typeId; }
get ArrayType() { return this.type.ArrayType; }
get buffers() {
return [this.valueOffsets, this.values, this.nullBitmap, this.typeIds];
}
get byteLength() {
let byteLength = 0;
const { valueOffsets, values, nullBitmap, typeIds } = this;
valueOffsets && (byteLength += valueOffsets.byteLength);
values && (byteLength += values.byteLength);
nullBitmap && (byteLength += nullBitmap.byteLength);
typeIds && (byteLength += typeIds.byteLength);
return this.children.reduce((byteLength, child) => byteLength + child.byteLength, byteLength);
}
get nullCount() {
let nullCount = this._nullCount;
let nullBitmap;
if (nullCount <= exports.kUnknownNullCount && (nullBitmap = this.nullBitmap)) {
this._nullCount = nullCount = this.length - (0, bit_js_1.popcnt_bit_range)(nullBitmap, this.offset, this.offset + this.length);
}
return nullCount;
}
getValid(index) {
if (this.nullable && this.nullCount > 0) {
const pos = this.offset + index;
const val = this.nullBitmap[pos >> 3];
return (val & (1 << (pos % 8))) !== 0;
}
return true;
}
setValid(index, value) {
// Don't interact w/ nullBitmap if not nullable
if (!this.nullable) {
return value;
}
// If no null bitmap, initialize one on the fly
if (!this.nullBitmap || this.nullBitmap.byteLength <= (index >> 3)) {
const { nullBitmap } = this._changeLengthAndBackfillNullBitmap(this.length);
Object.assign(this, { nullBitmap, _nullCount: 0 });
}
const { nullBitmap, offset } = this;
const pos = (offset + index) >> 3;
const bit = (offset + index) % 8;
const val = (nullBitmap[pos] >> bit) & 1;
// If `val` is truthy and the current bit is 0, flip it to 1 and increment `_nullCount`.
// If `val` is falsey and the current bit is 1, flip it to 0 and decrement `_nullCount`.
value ? val === 0 && ((nullBitmap[pos] |= (1 << bit)), (this._nullCount = this.nullCount + 1))
: val === 1 && ((nullBitmap[pos] &= ~(1 << bit)), (this._nullCount = this.nullCount - 1));
return value;
}
clone(type = this.type, offset = this.offset, length = this.length, nullCount = this._nullCount, buffers = this, children = this.children) {
return new Data(type, offset, length, nullCount, buffers, children, this.dictionary);
}
slice(offset, length) {
const { stride, typeId, children } = this;
// +true === 1, +false === 0, so this means
// we keep nullCount at 0 if it's already 0,
// otherwise set to the invalidated flag -1
const nullCount = +(this._nullCount === 0) - 1;
const childStride = typeId === 16 /* FixedSizeList */ ? stride : 1;
const buffers = this._sliceBuffers(offset, length, stride, typeId);
return this.clone(this.type, this.offset + offset, length, nullCount, buffers,
// Don't slice children if we have value offsets (the variable-width types)
(children.length === 0 || this.valueOffsets) ? children : this._sliceChildren(children, childStride * offset, childStride * length));
}
_changeLengthAndBackfillNullBitmap(newLength) {
if (this.typeId === enum_js_1.Type.Null) {
return this.clone(this.type, 0, newLength, 0);
}
const { length, nullCount } = this;
// start initialized with 0s (nulls), then fill from 0 to length with 1s (not null)
const bitmap = new Uint8Array(((newLength + 63) & ~63) >> 3).fill(255, 0, length >> 3);
// set all the bits in the last byte (up to bit `length - length % 8`) to 1 (not null)
bitmap[length >> 3] = (1 << (length - (length & ~7))) - 1;
// if we have a nullBitmap, truncate + slice and set it over the pre-filled 1s
if (nullCount > 0) {
bitmap.set((0, bit_js_1.truncateBitmap)(this.offset, length, this.nullBitmap), 0);
}
const buffers = this.buffers;
buffers[enum_js_1.BufferType.VALIDITY] = bitmap;
return this.clone(this.type, 0, newLength, nullCount + (newLength - length), buffers);
}
_sliceBuffers(offset, length, stride, typeId) {
let arr;
const { buffers } = this;
// If typeIds exist, slice the typeIds buffer
(arr = buffers[enum_js_1.BufferType.TYPE]) && (buffers[enum_js_1.BufferType.TYPE] = arr.subarray(offset, offset + length));
// If offsets exist, only slice the offsets buffer
(arr = buffers[enum_js_1.BufferType.OFFSET]) && (buffers[enum_js_1.BufferType.OFFSET] = arr.subarray(offset, offset + length + 1)) ||
// Otherwise if no offsets, slice the data buffer. Don't slice the data vector for Booleans, since the offset goes by bits not bytes
(arr = buffers[enum_js_1.BufferType.DATA]) && (buffers[enum_js_1.BufferType.DATA] = typeId === 6 ? arr : arr.subarray(stride * offset, stride * (offset + length)));
return buffers;
}
_sliceChildren(children, offset, length) {
return children.map((child) => child.slice(offset, length));
}
}
exports.Data = Data;
Data.prototype.children = Object.freeze([]);
const visitor_js_1 = require("./visitor.js");
const buffer_js_1 = require("./util/buffer.js");
class MakeDataVisitor extends visitor_js_1.Visitor {
visit(props) {
return this.getVisitFn(props['type']).call(this, props);
}
visitNull(props) {
const { ['type']: type, ['offset']: offset = 0, ['length']: length = 0, } = props;
return new Data(type, offset, length, 0);
}
visitBool(props) {
const { ['type']: type, ['offset']: offset = 0 } = props;
const nullBitmap = (0, buffer_js_1.toUint8Array)(props['nullBitmap']);
const data = (0, buffer_js_1.toArrayBufferView)(type.ArrayType, props['data']);
const { ['length']: length = data.length >> 3, ['nullCount']: nullCount = props['nullBitmap'] ? -1 : 0, } = props;
return new Data(type, offset, length, nullCount, [undefined, data, nullBitmap]);
}
visitInt(props) {
const { ['type']: type, ['offset']: offset = 0 } = props;
const nullBitmap = (0, buffer_js_1.toUint8Array)(props['nullBitmap']);
const data = (0, buffer_js_1.toArrayBufferView)(type.ArrayType, props['data']);
const { ['length']: length = data.length, ['nullCount']: nullCount = props['nullBitmap'] ? -1 : 0, } = props;
return new Data(type, offset, length, nullCount, [undefined, data, nullBitmap]);
}
visitFloat(props) {
const { ['type']: type, ['offset']: offset = 0 } = props;
const nullBitmap = (0, buffer_js_1.toUint8Array)(props['nullBitmap']);
const data = (0, buffer_js_1.toArrayBufferView)(type.ArrayType, props['data']);
const { ['length']: length = data.length, ['nullCount']: nullCount = props['nullBitmap'] ? -1 : 0, } = props;
return new Data(type, offset, length, nullCount, [undefined, data, nullBitmap]);
}
visitUtf8(props) {
const { ['type']: type, ['offset']: offset = 0 } = props;
const data = (0, buffer_js_1.toUint8Array)(props['data']);
const nullBitmap = (0, buffer_js_1.toUint8Array)(props['nullBitmap']);
const valueOffsets = (0, buffer_js_1.toInt32Array)(props['valueOffsets']);
const { ['length']: length = valueOffsets.length - 1, ['nullCount']: nullCount = props['nullBitmap'] ? -1 : 0 } = props;
return new Data(type, offset, length, nullCount, [valueOffsets, data, nullBitmap]);
}
visitBinary(props) {
const { ['type']: type, ['offset']: offset = 0 } = props;
const data = (0, buffer_js_1.toUint8Array)(props['data']);
const nullBitmap = (0, buffer_js_1.toUint8Array)(props['nullBitmap']);
const valueOffsets = (0, buffer_js_1.toInt32Array)(props['valueOffsets']);
const { ['length']: length = valueOffsets.length - 1, ['nullCount']: nullCount = props['nullBitmap'] ? -1 : 0 } = props;
return new Data(type, offset, length, nullCount, [valueOffsets, data, nullBitmap]);
}
visitFixedSizeBinary(props) {
const { ['type']: type, ['offset']: offset = 0 } = props;
const nullBitmap = (0, buffer_js_1.toUint8Array)(props['nullBitmap']);
const data = (0, buffer_js_1.toArrayBufferView)(type.ArrayType, props['data']);
const { ['length']: length = data.length / (0, type_js_1.strideForType)(type), ['nullCount']: nullCount = props['nullBitmap'] ? -1 : 0, } = props;
return new Data(type, offset, length, nullCount, [undefined, data, nullBitmap]);
}
visitDate(props) {
const { ['type']: type, ['offset']: offset = 0 } = props;
const nullBitmap = (0, buffer_js_1.toUint8Array)(props['nullBitmap']);
const data = (0, buffer_js_1.toArrayBufferView)(type.ArrayType, props['data']);
const { ['length']: length = data.length / (0, type_js_1.strideForType)(type), ['nullCount']: nullCount = props['nullBitmap'] ? -1 : 0, } = props;
return new Data(type, offset, length, nullCount, [undefined, data, nullBitmap]);
}
visitTimestamp(props) {
const { ['type']: type, ['offset']: offset = 0 } = props;
const nullBitmap = (0, buffer_js_1.toUint8Array)(props['nullBitmap']);
const data = (0, buffer_js_1.toArrayBufferView)(type.ArrayType, props['data']);
const { ['length']: length = data.length / (0, type_js_1.strideForType)(type), ['nullCount']: nullCount = props['nullBitmap'] ? -1 : 0, } = props;
return new Data(type, offset, length, nullCount, [undefined, data, nullBitmap]);
}
visitTime(props) {
const { ['type']: type, ['offset']: offset = 0 } = props;
const nullBitmap = (0, buffer_js_1.toUint8Array)(props['nullBitmap']);
const data = (0, buffer_js_1.toArrayBufferView)(type.ArrayType, props['data']);
const { ['length']: length = data.length / (0, type_js_1.strideForType)(type), ['nullCount']: nullCount = props['nullBitmap'] ? -1 : 0, } = props;
return new Data(type, offset, length, nullCount, [undefined, data, nullBitmap]);
}
visitDecimal(props) {
const { ['type']: type, ['offset']: offset = 0 } = props;
const nullBitmap = (0, buffer_js_1.toUint8Array)(props['nullBitmap']);
const data = (0, buffer_js_1.toArrayBufferView)(type.ArrayType, props['data']);
const { ['length']: length = data.length / (0, type_js_1.strideForType)(type), ['nullCount']: nullCount = props['nullBitmap'] ? -1 : 0, } = props;
return new Data(type, offset, length, nullCount, [undefined, data, nullBitmap]);
}
visitList(props) {
const { ['type']: type, ['offset']: offset = 0, ['child']: child } = props;
const nullBitmap = (0, buffer_js_1.toUint8Array)(props['nullBitmap']);
const valueOffsets = (0, buffer_js_1.toInt32Array)(props['valueOffsets']);
const { ['length']: length = valueOffsets.length - 1, ['nullCount']: nullCount = props['nullBitmap'] ? -1 : 0 } = props;
return new Data(type, offset, length, nullCount, [valueOffsets, undefined, nullBitmap], [child]);
}
visitStruct(props) {
const { ['type']: type, ['offset']: offset = 0, ['children']: children = [] } = props;
const nullBitmap = (0, buffer_js_1.toUint8Array)(props['nullBitmap']);
const { length = children.reduce((len, { length }) => Math.max(len, length), 0), nullCount = props['nullBitmap'] ? -1 : 0 } = props;
return new Data(type, offset, length, nullCount, [undefined, undefined, nullBitmap], children);
}
visitUnion(props) {
const { ['type']: type, ['offset']: offset = 0, ['children']: children = [] } = props;
const nullBitmap = (0, buffer_js_1.toUint8Array)(props['nullBitmap']);
const typeIds = (0, buffer_js_1.toArrayBufferView)(type.ArrayType, props['typeIds']);
const { ['length']: length = typeIds.length, ['nullCount']: nullCount = props['nullBitmap'] ? -1 : 0, } = props;
if (type_js_1.DataType.isSparseUnion(type)) {
return new Data(type, offset, length, nullCount, [undefined, undefined, nullBitmap, typeIds], children);
}
const valueOffsets = (0, buffer_js_1.toInt32Array)(props['valueOffsets']);
return new Data(type, offset, length, nullCount, [valueOffsets, undefined, nullBitmap, typeIds], children);
}
visitDictionary(props) {
const { ['type']: type, ['offset']: offset = 0 } = props;
const nullBitmap = (0, buffer_js_1.toUint8Array)(props['nullBitmap']);
const data = (0, buffer_js_1.toArrayBufferView)(type.indices.ArrayType, props['data']);
const { ['dictionary']: dictionary = new vector_js_1.Vector([new MakeDataVisitor().visit({ type: type.dictionary })]) } = props;
const { ['length']: length = data.length, ['nullCount']: nullCount = props['nullBitmap'] ? -1 : 0 } = props;
return new Data(type, offset, length, nullCount, [undefined, data, nullBitmap], [], dictionary);
}
visitInterval(props) {
const { ['type']: type, ['offset']: offset = 0 } = props;
const nullBitmap = (0, buffer_js_1.toUint8Array)(props['nullBitmap']);
const data = (0, buffer_js_1.toArrayBufferView)(type.ArrayType, props['data']);
const { ['length']: length = data.length / (0, type_js_1.strideForType)(type), ['nullCount']: nullCount = props['nullBitmap'] ? -1 : 0, } = props;
return new Data(type, offset, length, nullCount, [undefined, data, nullBitmap]);
}
visitFixedSizeList(props) {
const { ['type']: type, ['offset']: offset = 0, ['child']: child = new MakeDataVisitor().visit({ type: type.valueType }) } = props;
const nullBitmap = (0, buffer_js_1.toUint8Array)(props['nullBitmap']);
const { ['length']: length = child.length / (0, type_js_1.strideForType)(type), ['nullCount']: nullCount = props['nullBitmap'] ? -1 : 0 } = props;
return new Data(type, offset, length, nullCount, [undefined, undefined, nullBitmap], [child]);
}
visitMap(props) {
const { ['type']: type, ['offset']: offset = 0, ['child']: child = new MakeDataVisitor().visit({ type: type.childType }) } = props;
const nullBitmap = (0, buffer_js_1.toUint8Array)(props['nullBitmap']);
const valueOffsets = (0, buffer_js_1.toInt32Array)(props['valueOffsets']);
const { ['length']: length = valueOffsets.length - 1, ['nullCount']: nullCount = props['nullBitmap'] ? -1 : 0, } = props;
return new Data(type, offset, length, nullCount, [valueOffsets, undefined, nullBitmap], [child]);
}
}
function makeData(props) {
return new MakeDataVisitor().visit(props);
}
exports.makeData = makeData;
//# sourceMappingURL=data.js.map
|