File size: 8,900 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 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 | /**
* @import {AsyncBuffer, Awaitable, DecodedArray} from '../src/types.js'
*/
import { defaultInitialFetchSize } from './metadata.js'
/**
* Replace bigint, date, etc with legal JSON types.
*
* @param {any} obj object to convert
* @returns {unknown} converted object
*/
export function toJson(obj) {
if (obj === undefined) return null
if (typeof obj === 'bigint') return Number(obj)
if (Object.is(obj, -0)) return 0
if (Array.isArray(obj)) return obj.map(toJson)
if (obj instanceof Uint8Array) return Array.from(obj)
if (obj instanceof Date) return obj.toISOString()
if (obj instanceof Object) {
/** @type {Record<string, unknown>} */
const newObj = {}
for (const key of Object.keys(obj)) {
if (obj[key] === undefined) continue
newObj[key] = toJson(obj[key])
}
return newObj
}
return obj
}
/**
* Concatenate two arrays fast.
*
* @param {any[]} aaa
* @param {DecodedArray} bbb
*/
export function concat(aaa, bbb) {
const chunk = 10000
for (let i = 0; i < bbb.length; i += chunk) {
aaa.push(...bbb.slice(i, i + chunk))
}
}
/**
* Deep equality.
*
* @param {any} a
* @param {any} b
* @param {boolean} [strict]
* @returns {boolean}
*/
export function equals(a, b, strict = true) {
// eslint-disable-next-line eqeqeq
if (strict ? a === b : a == b) return true
if (!a || !b || typeof a !== 'object' || typeof b !== 'object') return false
if (a instanceof Uint8Array && b instanceof Uint8Array) {
if (a.length !== b.length) return false
for (let i = 0; i < a.length; i++) {
if (a[i] !== b[i]) return false
}
return true
}
if (Array.isArray(a) && Array.isArray(b)) {
if (a.length !== b.length) return false
for (let i = 0; i < a.length; i++) {
if (!equals(a[i], b[i], strict)) return false
}
return true
}
const aKeys = Object.keys(a)
if (aKeys.length !== Object.keys(b).length) return false
for (const k of aKeys) {
if (!equals(a[k], b[k], strict)) return false
}
return true
}
/**
* Get the byte length using fetch with a ranged GET request.
* Aborts the request if server returns 200 instead of 206.
*
* @param {string} url
* @param {RequestInit} [requestInit] fetch options
* @param {typeof globalThis.fetch} [fetchFn] fetch function to use
* @returns {Promise<number>}
*/
async function byteLengthFromUrlUsingGet(url, requestInit = {}, fetchFn = globalThis.fetch) {
const controller = new AbortController()
const headers = new Headers(requestInit.headers)
headers.set('Range', 'bytes=0-0')
const res = await fetchFn(url, {
...requestInit,
headers,
signal: controller.signal,
})
if (!res.ok) throw new Error(`fetch with range failed ${res.status}`)
// Server supports Range requests (206 Partial Content)
if (res.status === 206) {
const contentRange = res.headers.get('Content-Range')
if (!contentRange) throw new Error('missing content-range header')
// Parse "bytes 0-0/9446073" to get total length
const match = contentRange.match(/bytes \d+-\d+\/(\d+)/)
if (!match) throw new Error(`invalid content-range header: ${contentRange}`)
return parseInt(match[1])
}
// Server ignored Range and returned 200 - get Content-Length and abort request
if (res.status === 200) {
const contentLength = res.headers.get('Content-Length')
// Abort the request to stop any ongoing download
controller.abort()
if (contentLength) return parseInt(contentLength)
}
throw new Error('server does not support range requests and missing content-length')
}
/**
* Get the byte length of a URL using a HEAD request.
* If HEAD fails with 403 (e.g., with signed S3 URLs), falls back to a ranged GET request.
* If HEAD succeeds but Content-Length is missing, falls back to GET with range.
* If requestInit is provided, it will be passed to fetch.
*
* @param {string} url
* @param {RequestInit} [requestInit] fetch options
* @param {typeof globalThis.fetch} [customFetch] fetch function to use
* @returns {Promise<number>}
*/
export async function byteLengthFromUrl(url, requestInit, customFetch) {
const fetch = customFetch ?? globalThis.fetch
const res = await fetch(url, { ...requestInit, method: 'HEAD' })
// If HEAD request is forbidden (common with signed S3 URLs), try GET with range
if (res.status === 403) {
return byteLengthFromUrlUsingGet(url, requestInit, fetch)
}
if (!res.ok) throw new Error(`fetch head failed ${res.status}`)
const length = res.headers.get('Content-Length')
// If Content-Length is missing from HEAD, fallback to GET with range
if (!length) {
return byteLengthFromUrlUsingGet(url, requestInit, fetch)
}
return parseInt(length)
}
/**
* Construct an AsyncBuffer for a URL.
* If byteLength is not provided, will make a HEAD request to get the file size.
* If fetch is provided, it will be used instead of the global fetch.
* If requestInit is provided, it will be passed to fetch.
*
* @param {object} options
* @param {string} options.url
* @param {number} [options.byteLength]
* @param {typeof globalThis.fetch} [options.fetch] fetch function to use
* @param {RequestInit} [options.requestInit]
* @returns {Promise<AsyncBuffer>}
*/
export async function asyncBufferFromUrl({ url, byteLength, requestInit, fetch: customFetch }) {
if (!url) throw new Error('missing url')
const fetch = customFetch ?? globalThis.fetch
// byte length from HEAD request
byteLength ??= await byteLengthFromUrl(url, requestInit, fetch)
/**
* A promise for the whole buffer, if range requests are not supported.
* @type {Promise<ArrayBuffer>|undefined}
*/
let buffer = undefined
const init = requestInit || {}
return {
byteLength,
async slice(start, end) {
if (buffer) {
return buffer.then(buffer => buffer.slice(start, end))
}
const headers = new Headers(init.headers)
const endStr = end === undefined ? '' : end - 1
headers.set('Range', `bytes=${start}-${endStr}`)
const res = await fetch(url, { ...init, headers })
if (!res.ok || !res.body) throw new Error(`fetch failed ${res.status}`)
if (res.status === 200) {
// Endpoint does not support range requests and returned the whole object
buffer = res.arrayBuffer()
return buffer.then(buffer => buffer.slice(start, end))
} else if (res.status === 206) {
// The endpoint supports range requests and sent us the requested range
return res.arrayBuffer()
} else {
throw new Error(`fetch received unexpected status code ${res.status}`)
}
},
}
}
/**
* Returns a cached layer on top of an AsyncBuffer. For caching slices of a file
* that are read multiple times, possibly over a network.
*
* @param {AsyncBuffer} file file-like object to cache
* @param {{ minSize?: number }} [options]
* @returns {AsyncBuffer} cached file-like object
*/
export function cachedAsyncBuffer({ byteLength, slice }, { minSize = defaultInitialFetchSize } = {}) {
if (byteLength < minSize) {
// Cache whole file if it's small
const buffer = slice(0, byteLength)
return {
byteLength,
async slice(start, end) {
return (await buffer).slice(start, end)
},
}
}
const cache = new Map()
return {
byteLength,
/**
* @param {number} start
* @param {number} [end]
* @returns {Awaitable<ArrayBuffer>}
*/
slice(start, end) {
const key = cacheKey(start, end, byteLength)
const cached = cache.get(key)
if (cached) return cached
// cache miss, read from file
const promise = slice(start, end)
cache.set(key, promise)
return promise
},
}
}
/**
* Returns canonical cache key for a byte range 'start,end'.
* Normalize int-range and suffix-range requests to the same key.
*
* @param {number} start start byte of range
* @param {number} [end] end byte of range, or undefined for suffix range
* @param {number} [size] size of file, or undefined for suffix range
* @returns {string}
*/
function cacheKey(start, end, size) {
if (start < 0) {
if (end !== undefined) throw new Error(`invalid suffix range [${start}, ${end}]`)
if (size === undefined) return `${start},`
return `${size + start},${size}`
} else if (end !== undefined) {
if (start > end) throw new Error(`invalid empty range [${start}, ${end}]`)
return `${start},${end}`
} else if (size === undefined) {
return `${start},`
} else {
return `${start},${size}`
}
}
/**
* Flatten a list of lists into a single list.
*
* @param {DecodedArray[]} [chunks]
* @returns {DecodedArray}
*/
export function flatten(chunks) {
if (!chunks) return []
if (chunks.length === 1) return chunks[0]
/** @type {any[]} */
const output = []
for (const chunk of chunks) {
concat(output, chunk)
}
return output
}
|