loaders.gl
Version:
Framework-independent loaders for 3D graphics formats
69 lines (57 loc) • 1.75 kB
JavaScript
export default function unpackJsonArrays(json, buffers, options = {}) {
return unpackJsonArraysRecursive(json, json, buffers, options);
}
// Recursively unpacks objects, replacing "JSON pointers" with typed arrays
function unpackJsonArraysRecursive(json, topJson, buffers, options = {}) {
const object = json;
const buffer = decodeJSONPointer(object, buffers);
if (buffer) {
return buffer;
}
// Copy array
if (Array.isArray(object)) {
return object.map(element => unpackJsonArraysRecursive(element, topJson, buffers, options));
}
// Copy object
if (object !== null && typeof object === 'object') {
const newObject = {};
for (const key in object) {
newObject[key] = unpackJsonArraysRecursive(object[key], topJson, buffers, options);
}
return newObject;
}
return object;
}
function decodeJSONPointer(object, buffers) {
const pointer = parseJSONPointer(object);
if (pointer) {
const [field, index] = pointer;
const buffer = buffers[field] && buffers[field][index];
if (!buffer) {
console.error(`Invalid JSON pointer ${object}: #/${field}/${index}`); // eslint-disable-line
return null;
}
return buffer;
}
return object;
}
function parseJSONPointer(value) {
if (typeof value === 'string') {
// Remove escape character
if (value.indexOf('##/') === 0) {
return value.slice(1);
}
let matches = value.match(/\#\/[a-z]+\/([0-9]+)/);
if (matches) {
const index = parseInt(matches[2], 10);
return [matches[1], index];
}
// Legacy: `$$$i`
matches = value.match(/\$\$\$([0-9]+)/);
if (matches) {
const index = parseInt(matches[1], 10);
return ['accessors', index];
}
}
return null;
}