ferrijs-std 0.2.3

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
use crate::utils::{
    module::{export_default, ModuleInfo},
    primordials::{BasePrimordials, Primordial},
};
use queuing_strategy::{ByteLengthQueuingStrategy, CountQueuingStrategy};
use readable::{
    ReadableByteStreamController, ReadableStreamBYOBReader, ReadableStreamBYOBRequest,
    ReadableStreamDefaultController, ReadableStreamDefaultReader,
};
use rquickjs::{
    module::{Declarations, Exports, ModuleDef},
    Class, Ctx, Object, Result,
};
use writable::{WritableStream, WritableStreamDefaultController, WritableStreamDefaultWriter};

use crate::stream_web::{
    readable::{ArrayConstructorPrimordials, IteratorPrimordials},
    transform::{TransformStream, TransformStreamDefaultController},
    utils::promise::PromisePrimordials,
    writable::WritableStreamDefaultControllerPrimordials,
};

mod queuing_strategy;
pub mod readable;
mod readable_writable_pair;
mod transform;
pub mod utils;
mod writable;

// Public API for creating streams from Rust
pub use readable::stream::lock_readable_stream;
pub use readable::stream::tee_readable_stream;
pub use readable::stream::try_sync_drain_closed_stream;
pub use readable::stream::ReadableStream;
pub use readable::{
    readable_byte_stream_controller_close_stream, readable_byte_stream_controller_enqueue_bytes,
    readable_byte_stream_controller_enqueue_bytes_borrowed,
    readable_stream_default_controller_close_stream,
    readable_stream_default_controller_enqueue_value,
    readable_stream_default_controller_error_stream, ReadableByteStreamControllerClass,
    ReadableStreamDefaultControllerClass,
};
pub use readable::{CancelAlgorithm, PullAlgorithm, ReadableStreamControllerClass, StartAlgorithm};
pub use readable::{NativePull, NativePullFn, NativePullResult};

/// Creates a transform stream using LLRT's built-in Web Streams implementation.
///
/// This does not consult the global `TransformStream` binding.
pub fn create_transform_stream<'js>(
    ctx: &Ctx<'js>,
    transformer: Object<'js>,
) -> Result<Object<'js>> {
    init_primordials(ctx)?;
    Ok(TransformStream::from_transformer(ctx.clone(), transformer)?.into_inner())
}

fn init_primordials(ctx: &Ctx<'_>) -> Result<()> {
    BasePrimordials::init(ctx)?;
    PromisePrimordials::init(ctx)?;
    ArrayConstructorPrimordials::init(ctx)?;
    WritableStreamDefaultControllerPrimordials::init(ctx)?;
    IteratorPrimordials::init(ctx)?;
    Ok(())
}

/// Defines web streams, which are exposed through the "stream/web" Node import, but also at the global scope
/// Web streams consist of Readable, Writable, and Transform streams. Transform is currently unimplemented.
///
/// https://developer.mozilla.org/en-US/docs/Web/API/Streams_API
///
/// # ReadableStream
/// ReadableStream knows how to 'pull' objects or bytes from an underlying source, generally a user-defined function or an [async] iterator.
/// A source enqueues data to the stream via a controller, either ReadableStreamDefaultController or a ReadableByteStreamController optionally for byte data.
/// The controller is created at stream initialisation and cannot change.
///
/// Data is read from the stream using a reader, which is obtained using stream.getReader(). A reader 'locks' the stream for reading, preventing
/// other readers from being created. When a reader is released with `reader.releaseLock()`, the stream goes back to having no reader and a new one can be created.
/// In the case of ReadableByteStreamController, a special reader ReadableStreamBYOBReader may be used, which allows users to provide their own
/// buffer to fill bytes into when reading. Otherwise, ReadableStreamDefaultReader is used by default, and this may also be used with byte streams.
///
/// A ReadableStream can be 'tee'd', which splits it into two readable streams which both read the same underlying data, potentially at different
/// paces. This is an area of substantial complexity for the implementation, particularly in the case of byte streams as the alternative reader types
/// must be handled correctly.
///
/// # WritableStream
/// WritableStream knows how to 'push' objects into an underlying sink, generally a user-defined function. It has no special casing for bytes, and so
/// only has one type of controller, WritableStreamDefaultController, and only one type of writer WritableStreamDefaultWriter. The controller is only needed for
/// error handling because writes are signalled via a function call to a user-defined 'write' method which receives the chunk directly.
///
/// Data is written to the stream using a WritableStreamDefaultWriter, which is obtained using stream.getWriter(). A writer 'locks' the stream for writing,
/// preventing other writers from being created. When a writer is released with `writer.releaseLock()`, the stream goes back to having no writer and a new one can be created.
pub struct StreamWebModule;

// https://nodejs.org/api/webstreams.html
impl ModuleDef for StreamWebModule {
    fn declare(declare: &Declarations) -> Result<()> {
        declare.declare(stringify!(ReadableStream))?;
        declare.declare(stringify!(ReadableStreamDefaultReader))?;
        declare.declare(stringify!(ReadableStreamBYOBReader))?;
        declare.declare(stringify!(ReadableStreamDefaultController))?;
        declare.declare(stringify!(ReadableByteStreamController))?;
        declare.declare(stringify!(ReadableStreamBYOBRequest))?;

        declare.declare(stringify!(WritableStream))?;
        declare.declare(stringify!(WritableStreamDefaultWriter))?;
        declare.declare(stringify!(WritableStreamDefaultController))?;

        declare.declare(stringify!(TransformStream))?;
        declare.declare(stringify!(TransformStreamDefaultController))?;

        declare.declare(stringify!(ByteLengthQueuingStrategy))?;
        declare.declare(stringify!(CountQueuingStrategy))?;

        declare.declare("default")?;
        Ok(())
    }

    #[inline]
    fn evaluate<'js>(ctx: &Ctx<'js>, exports: &Exports<'js>) -> Result<()> {
        export_default(ctx, exports, |default| {
            Class::<ReadableStream>::define(default)?;
            Class::<ReadableStreamDefaultReader>::define(default)?;
            Class::<ReadableStreamBYOBReader>::define(default)?;
            Class::<ReadableStreamDefaultController>::define(default)?;
            Class::<ReadableByteStreamController>::define(default)?;
            Class::<ReadableStreamBYOBRequest>::define(default)?;

            Class::<WritableStream>::define(default)?;
            Class::<WritableStreamDefaultWriter>::define(default)?;
            Class::<WritableStreamDefaultController>::define(default)?;

            Class::<ByteLengthQueuingStrategy>::define(default)?;
            Class::<CountQueuingStrategy>::define(default)?;

            Class::<TransformStream>::define(default)?;
            Class::<TransformStreamDefaultController>::define(default)?;

            Ok(())
        })?;

        Ok(())
    }
}

impl From<StreamWebModule> for ModuleInfo<StreamWebModule> {
    fn from(val: StreamWebModule) -> Self {
        ModuleInfo {
            name: "stream/web",
            module: val,
        }
    }
}

pub fn init(ctx: &Ctx) -> Result<()> {
    let globals = &ctx.globals();

    init_primordials(ctx)?;

    // https://min-common-api.proposal.wintertc.org/#api-index
    Class::<ByteLengthQueuingStrategy>::define(globals)?;
    Class::<CountQueuingStrategy>::define(globals)?;

    Class::<ReadableByteStreamController>::define(globals)?;
    Class::<ReadableStream>::define(globals)?;
    Class::<ReadableStreamBYOBReader>::define(globals)?;
    Class::<ReadableStreamBYOBRequest>::define(globals)?;
    Class::<ReadableStreamDefaultController>::define(globals)?;
    Class::<ReadableStreamDefaultReader>::define(globals)?;

    Class::<WritableStream>::define(globals)?;
    Class::<WritableStreamDefaultController>::define(globals)?;

    // This is exposed globally by Node even though its not in the min-common-api
    Class::<WritableStreamDefaultWriter>::define(globals)?;

    Class::<TransformStream>::define(globals)?;
    Class::<TransformStreamDefaultController>::define(globals)?;

    Ok(())
}