apache-arrow
Version:
Apache Arrow columnar in-memory format
95 lines (93 loc) • 3.82 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 { Visitor } from '../visitor.mjs';
import { Type as ArrowType } from '../fb/type.mjs';
import { Precision, DateUnit, TimeUnit, IntervalUnit, UnionMode } from '../enum.mjs';
/** @ignore */
export class JSONTypeAssembler extends Visitor {
visit(node) {
return node == null ? undefined : super.visit(node);
}
visitNull({ typeId }) {
return { 'name': ArrowType[typeId].toLowerCase() };
}
visitInt({ typeId, bitWidth, isSigned }) {
return { 'name': ArrowType[typeId].toLowerCase(), 'bitWidth': bitWidth, 'isSigned': isSigned };
}
visitFloat({ typeId, precision }) {
return { 'name': ArrowType[typeId].toLowerCase(), 'precision': Precision[precision] };
}
visitBinary({ typeId }) {
return { 'name': ArrowType[typeId].toLowerCase() };
}
visitLargeBinary({ typeId }) {
return { 'name': ArrowType[typeId].toLowerCase() };
}
visitBool({ typeId }) {
return { 'name': ArrowType[typeId].toLowerCase() };
}
visitUtf8({ typeId }) {
return { 'name': ArrowType[typeId].toLowerCase() };
}
visitLargeUtf8({ typeId }) {
return { 'name': ArrowType[typeId].toLowerCase() };
}
visitDecimal({ typeId, scale, precision, bitWidth }) {
return { 'name': ArrowType[typeId].toLowerCase(), 'scale': scale, 'precision': precision, 'bitWidth': bitWidth };
}
visitDate({ typeId, unit }) {
return { 'name': ArrowType[typeId].toLowerCase(), 'unit': DateUnit[unit] };
}
visitTime({ typeId, unit, bitWidth }) {
return { 'name': ArrowType[typeId].toLowerCase(), 'unit': TimeUnit[unit], bitWidth };
}
visitTimestamp({ typeId, timezone, unit }) {
return { 'name': ArrowType[typeId].toLowerCase(), 'unit': TimeUnit[unit], timezone };
}
visitInterval({ typeId, unit }) {
return { 'name': ArrowType[typeId].toLowerCase(), 'unit': IntervalUnit[unit] };
}
visitDuration({ typeId, unit }) {
return { 'name': ArrowType[typeId].toLocaleLowerCase(), 'unit': TimeUnit[unit] };
}
visitList({ typeId }) {
return { 'name': ArrowType[typeId].toLowerCase() };
}
visitStruct({ typeId }) {
return { 'name': ArrowType[typeId].toLowerCase() };
}
visitUnion({ typeId, mode, typeIds }) {
return {
'name': ArrowType[typeId].toLowerCase(),
'mode': UnionMode[mode].toUpperCase(),
'typeIds': [...typeIds]
};
}
visitDictionary(node) {
return this.visit(node.dictionary);
}
visitFixedSizeBinary({ typeId, byteWidth }) {
return { 'name': ArrowType[typeId].toLowerCase(), 'byteWidth': byteWidth };
}
visitFixedSizeList({ typeId, listSize }) {
return { 'name': ArrowType[typeId].toLowerCase(), 'listSize': listSize };
}
visitMap({ typeId, keysSorted }) {
return { 'name': ArrowType[typeId].toLowerCase(), 'keysSorted': keysSorted };
}
}
//# sourceMappingURL=jsontypeassembler.mjs.map