mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 01:35:08 +02:00
Previously, the LibWeb bindings generator would output multiple per interface files like Prototype/Constructor/Namespace/GlobalMixin depending on the contents of that IDL file. This complicates the build system as it means that it does not know what files will be generated without knowledge of the contents of that IDL file. Instead, for each IDL file only generate a single Bindings/<IDLFile>.h and Bindings/<IDLFile>.cpp.
77 lines
2.7 KiB
C++
77 lines
2.7 KiB
C++
/*
|
|
* Copyright (c) 2023-2024, Kenneth Myhra <kennethmyhra@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibWeb/Bindings/Intrinsics.h>
|
|
#include <LibWeb/Bindings/TransformStreamDefaultController.h>
|
|
#include <LibWeb/Streams/ReadableStreamOperations.h>
|
|
#include <LibWeb/Streams/TransformStream.h>
|
|
#include <LibWeb/Streams/TransformStreamDefaultController.h>
|
|
#include <LibWeb/Streams/TransformStreamOperations.h>
|
|
|
|
namespace Web::Streams {
|
|
|
|
GC_DEFINE_ALLOCATOR(TransformStreamDefaultController);
|
|
|
|
TransformStreamDefaultController::TransformStreamDefaultController(JS::Realm& realm)
|
|
: Bindings::PlatformObject(realm)
|
|
{
|
|
}
|
|
|
|
TransformStreamDefaultController::~TransformStreamDefaultController() = default;
|
|
|
|
void TransformStreamDefaultController::initialize(JS::Realm& realm)
|
|
{
|
|
WEB_SET_PROTOTYPE_FOR_INTERFACE(TransformStreamDefaultController);
|
|
Base::initialize(realm);
|
|
}
|
|
|
|
void TransformStreamDefaultController::visit_edges(Cell::Visitor& visitor)
|
|
{
|
|
Base::visit_edges(visitor);
|
|
visitor.visit(m_stream);
|
|
visitor.visit(m_cancel_algorithm);
|
|
visitor.visit(m_finish_promise);
|
|
visitor.visit(m_flush_algorithm);
|
|
visitor.visit(m_transform_algorithm);
|
|
}
|
|
|
|
// https://streams.spec.whatwg.org/#ts-default-controller-desired-size
|
|
Optional<double> TransformStreamDefaultController::desired_size()
|
|
{
|
|
VERIFY(stream()->readable()->controller().has_value() && stream()->readable()->controller()->has<GC::Ref<ReadableStreamDefaultController>>());
|
|
|
|
// 1. Let readableController be this.[[stream]].[[readable]].[[controller]].
|
|
auto readable_controller = stream()->readable()->controller()->get<GC::Ref<ReadableStreamDefaultController>>();
|
|
|
|
// 2. Return ! ReadableStreamDefaultControllerGetDesiredSize(readableController).
|
|
return readable_stream_default_controller_get_desired_size(*readable_controller);
|
|
}
|
|
|
|
// https://streams.spec.whatwg.org/#ts-default-controller-enqueue
|
|
WebIDL::ExceptionOr<void> TransformStreamDefaultController::enqueue(Optional<JS::Value> chunk)
|
|
{
|
|
// 1. Perform ? TransformStreamDefaultControllerEnqueue(this, chunk).
|
|
TRY(transform_stream_default_controller_enqueue(*this, chunk.has_value() ? chunk.value() : JS::js_undefined()));
|
|
|
|
return {};
|
|
}
|
|
|
|
// https://streams.spec.whatwg.org/#ts-default-controller-error
|
|
void TransformStreamDefaultController::error(Optional<JS::Value> reason)
|
|
{
|
|
// 1. Perform ? TransformStreamDefaultControllerError(this, e).
|
|
transform_stream_default_controller_error(*this, reason.has_value() ? reason.value() : JS::js_undefined());
|
|
}
|
|
|
|
// https://streams.spec.whatwg.org/#ts-default-controller-terminate
|
|
void TransformStreamDefaultController::terminate()
|
|
{
|
|
// 1. Perform ? TransformStreamDefaultControllerTerminate(this).
|
|
transform_stream_default_controller_terminate(*this);
|
|
}
|
|
|
|
}
|