ferrijs-std 0.2.0

Node and web standard library for the ferrijs QuickJS runtime: WHATWG Streams, Events, AbortController, Buffer, crypto, fs, os, url, zlib and the capability model they enforce (partly derived from awslabs/llrt, Apache-2.0).
Documentation
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0

use crate::utils::bytes::ObjectBytes;
use rquickjs::{Array, Ctx, Exception, IntoJs, Null, Object, Result, Undefined, Value};
use simd_json::{Node, StaticNode};

pub fn json_parse_string<'js>(ctx: Ctx<'js>, bytes: ObjectBytes<'js>) -> Result<Value<'js>> {
    let bytes = bytes.as_bytes(&ctx)?;
    json_parse(&ctx, bytes)
}

pub fn json_parse<'js, T: Into<Vec<u8>>>(ctx: &Ctx<'js>, json: T) -> Result<Value<'js>> {
    let mut json: Vec<u8> = json.into();
    let tape = match simd_json::to_tape(&mut json) {
        Ok(tape) => tape,
        Err(err) => {
            // simd_json is strict about lone / unpaired surrogate escapes
            // (`\uXXXX` where XXXX is a surrogate code point). Fall back to
            // QuickJS's native `JSON.parse`, which is more permissive and is
            // needed for spec compliance with content that round-trips
            // through `JSON.stringify` of strings containing lone surrogates.
            if err.character() == Some('u') {
                if let Ok(value) = ctx.json_parse(json.as_slice()) {
                    return Ok(value);
                }
            }
            let mut itoa = itoa::Buffer::new();
            let mut error_msg = String::with_capacity(256);
            let json_length = json.len();
            if json_length < 128 {
                error_msg.reserve(json_length);
                error_msg.push('\"');
                error_msg.push_str(&std::string::String::from_utf8_lossy(&json));
                error_msg.push_str("\" ");
            }

            error_msg.push_str("not valid JSON at index ");
            error_msg.push_str(itoa.format(err.index()));
            if let Some(char) = err.character() {
                error_msg.push_str(" ('");
                error_msg.push(char);
                error_msg.push_str("')");
            }
            return Err(Exception::throw_syntax(ctx, &error_msg));
        },
    };
    let tape = tape.0;

    if let Some(first) = tape.first() {
        return match first {
            Node::String(value) => value.into_js(ctx),
            Node::Static(node) => static_node_to_value(ctx, *node),
            _ => parse_node(ctx, &tape, 0).map(|(value, _)| value),
        };
    }

    Undefined.into_js(ctx)
}

#[inline(always)]
fn static_node_to_value<'js>(ctx: &Ctx<'js>, node: StaticNode) -> Result<Value<'js>> {
    match node {
        StaticNode::I64(value) => value.into_js(ctx),
        StaticNode::U64(value) => value.into_js(ctx),
        StaticNode::F64(value) => value.into_js(ctx),
        StaticNode::Bool(value) => value.into_js(ctx),
        StaticNode::Null => Null.into_js(ctx),
    }
}

fn parse_node<'js>(ctx: &Ctx<'js>, tape: &[Node], index: usize) -> Result<(Value<'js>, usize)> {
    match tape[index] {
        Node::String(value) => Ok((value.into_js(ctx)?, index + 1)),
        Node::Static(node) => Ok((static_node_to_value(ctx, node)?, index + 1)),
        Node::Object { len, .. } => {
            let js_object = Object::new(ctx.clone())?;
            let mut current_index = index + 1;

            for _ in 0..len {
                if let Node::String(key) = tape[current_index] {
                    current_index += 1;
                    let (value, new_index) = parse_node(ctx, tape, current_index)?;
                    current_index = new_index;
                    js_object.set(key, value)?;
                }
            }

            Ok((js_object.into_value(), current_index))
        },
        Node::Array { len, .. } => {
            let js_array = Array::new(ctx.clone())?;
            let mut current_index = index + 1;

            for i in 0..len {
                let (value, new_index) = parse_node(ctx, tape, current_index)?;
                current_index = new_index;
                js_array.set(i, value)?;
            }

            Ok((js_array.into_value(), current_index))
        },
    }
}