File size: 6,883 Bytes
9ae1216 | 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 | import { wkbToGeojson } from './wkb.js'
/**
* @import {ColumnDecoder, DecodedArray, Encoding, ParquetParsers} from '../src/types.js'
*/
const decoder = new TextDecoder()
/**
* Default type parsers when no custom ones are given
* @type ParquetParsers
*/
export const DEFAULT_PARSERS = {
timestampFromMilliseconds(millis) {
return new Date(Number(millis))
},
timestampFromMicroseconds(micros) {
return new Date(Number(micros / 1000n))
},
timestampFromNanoseconds(nanos) {
return new Date(Number(nanos / 1000000n))
},
dateFromDays(days) {
return new Date(days * 86400000)
},
stringFromBytes(bytes) {
return bytes && decoder.decode(bytes)
},
jsonFromBytes(bytes) {
return bytes && JSON.parse(decoder.decode(bytes))
},
geometryFromBytes(bytes) {
return bytes && wkbToGeojson({ view: new DataView(bytes.buffer, bytes.byteOffset, bytes.byteLength), offset: 0 })
},
geographyFromBytes(bytes) {
return bytes && wkbToGeojson({ view: new DataView(bytes.buffer, bytes.byteOffset, bytes.byteLength), offset: 0 })
},
uuidFromBytes(bytes) {
if (!bytes) return undefined
const hex = Array.from(bytes, b => b.toString(16).padStart(2, '0')).join('')
return hex.slice(0, 8) + '-' + hex.slice(8, 12) + '-' + hex.slice(12, 16) + '-' + hex.slice(16, 20) + '-' + hex.slice(20, 32)
},
}
/**
* Convert known types from primitive to rich, and dereference dictionary.
*
* @param {DecodedArray} data series of primitive types
* @param {DecodedArray | undefined} dictionary
* @param {Encoding} encoding
* @param {ColumnDecoder} columnDecoder
* @returns {DecodedArray} series of rich types
*/
export function convertWithDictionary(data, dictionary, encoding, columnDecoder) {
if (dictionary && encoding.endsWith('_DICTIONARY')) {
let output = data
if (data instanceof Uint8Array && !(dictionary instanceof Uint8Array)) {
// @ts-expect-error upgrade data to match dictionary type with fancy constructor
output = new dictionary.constructor(data.length)
}
for (let i = 0; i < data.length; i++) {
output[i] = dictionary[data[i]]
}
return output
} else {
return convert(data, columnDecoder)
}
}
/**
* Convert known types from primitive to rich.
*
* @param {DecodedArray} data series of primitive types
* @param {ColumnDecoder} columnDecoder
* @returns {DecodedArray} series of rich types
*/
export function convert(data, columnDecoder) {
const { element, parsers, utf8 = true, schemaPath } = columnDecoder
const { type, converted_type: ctype, logical_type: ltype } = element
const nullable = element.repetition_type !== 'REQUIRED'
// Skip utf8 conversion for plain BYTE_ARRAY inside VARIANT
const isVariant = schemaPath?.some(s => s.element.logical_type?.type === 'VARIANT')
if (isVariant && type === 'BYTE_ARRAY' && ctype !== 'UTF8' && ltype?.type !== 'STRING') {
return data
}
if (ctype === 'DECIMAL') {
const scale = element.scale || 0
const factor = 10 ** -scale
const arr = new Array(data.length)
for (let i = 0; i < arr.length; i++) {
if (data[i] instanceof Uint8Array) {
arr[i] = parseDecimal(data[i]) * factor
} else {
arr[i] = Number(data[i]) * factor
}
}
return arr
}
if (!ctype && type === 'INT96') {
return Array.from(data).map(v => parsers.timestampFromNanoseconds(parseInt96Nanos(v)))
}
if (ctype === 'DATE') {
return Array.from(data).map(v => parsers.dateFromDays(v))
}
if (ctype === 'TIMESTAMP_MILLIS') {
return Array.from(data).map(v => parsers.timestampFromMilliseconds(v))
}
if (ctype === 'TIMESTAMP_MICROS') {
return Array.from(data).map(v => parsers.timestampFromMicroseconds(v))
}
if (ctype === 'JSON') {
return data.map(v => parsers.jsonFromBytes(v))
}
if (ctype === 'BSON') {
throw new Error('parquet bson not supported')
}
if (ctype === 'INTERVAL') {
throw new Error('parquet interval not supported')
}
if (ltype?.type === 'GEOMETRY') {
return data.map(v => parsers.geometryFromBytes(v))
}
if (ltype?.type === 'GEOGRAPHY') {
return data.map(v => parsers.geographyFromBytes(v))
}
if (ltype?.type === 'UUID') {
return data.map(v => parsers.uuidFromBytes(v))
}
if (ctype === 'UTF8' || ltype?.type === 'STRING' || utf8 && type === 'BYTE_ARRAY') {
return data.map(v => parsers.stringFromBytes(v))
}
if (ctype === 'UINT_64' || ltype?.type === 'INTEGER' && ltype.bitWidth === 64 && !ltype.isSigned) {
if (data instanceof BigInt64Array) return new BigUint64Array(data.buffer, data.byteOffset, data.length)
const arr = nullable ? new Array(data.length) : new BigUint64Array(data.length)
for (let i = 0; i < arr.length; i++) arr[i] = data[i]
return arr
}
if (ctype === 'UINT_32' || ltype?.type === 'INTEGER' && ltype.bitWidth === 32 && !ltype.isSigned) {
if (data instanceof Int32Array) return new Uint32Array(data.buffer, data.byteOffset, data.length)
const arr = nullable ? new Array(data.length) : new Uint32Array(data.length)
for (let i = 0; i < arr.length; i++) {
arr[i] = data[i] < 0 ? 4294967296 + data[i] : data[i]
}
return arr
}
if (ltype?.type === 'FLOAT16') {
return Array.from(data).map(parseFloat16)
}
if (ltype?.type === 'TIMESTAMP') {
const { unit } = ltype
/** @type {ParquetParsers[keyof ParquetParsers]} */
let parser = parsers.timestampFromMilliseconds
if (unit === 'MICROS') parser = parsers.timestampFromMicroseconds
if (unit === 'NANOS') parser = parsers.timestampFromNanoseconds
const arr = new Array(data.length)
for (let i = 0; i < arr.length; i++) {
arr[i] = parser(data[i])
}
return arr
}
return data
}
/**
* @param {Uint8Array} bytes
* @returns {number}
*/
export function parseDecimal(bytes) {
if (!bytes.length) return 0
let value = 0n
for (const byte of bytes) {
value = value * 256n + BigInt(byte)
}
// handle signed
const bits = bytes.length * 8
if (value >= 2n ** BigInt(bits - 1)) {
value -= 2n ** BigInt(bits)
}
return Number(value)
}
/**
* Converts INT96 date format (hi 32bit days, lo 64bit nanos) to nanos since epoch
* @param {bigint} value
* @returns {bigint}
*/
function parseInt96Nanos(value) {
const days = (value >> 64n) - 2440588n
const nano = value & 0xffffffffffffffffn
return days * 86400000000000n + nano
}
/**
* @param {Uint8Array | undefined} bytes
* @returns {number | undefined}
*/
export function parseFloat16(bytes) {
if (!bytes) return undefined
const int16 = bytes[1] << 8 | bytes[0]
const sign = int16 >> 15 ? -1 : 1
const exp = int16 >> 10 & 0x1f
const frac = int16 & 0x3ff
if (exp === 0) return sign * 2 ** -14 * (frac / 1024) // subnormals
if (exp === 0x1f) return frac ? NaN : sign * Infinity
return sign * 2 ** (exp - 15) * (1 + frac / 1024)
}
|