2023-06-18 19:43:56 +12:00
|
|
|
/*
|
2023-07-15 22:33:22 +12:00
|
|
|
* Copyright (c) 2023, Shannon Booth <shannon@serenityos.org>
|
2023-06-23 08:46:46 +12:00
|
|
|
* Copyright (c) 2023, Matthew Olsson <mattco@serenityos.org>
|
2023-06-18 19:43:56 +12:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <LibWeb/Bindings/CountQueuingStrategyPrototype.h>
|
|
|
|
|
#include <LibWeb/Bindings/Intrinsics.h>
|
2024-11-18 22:49:00 +13:00
|
|
|
#include <LibWeb/HTML/UniversalGlobalScope.h>
|
2023-06-18 19:43:56 +12:00
|
|
|
#include <LibWeb/Streams/CountQueuingStrategy.h>
|
|
|
|
|
|
|
|
|
|
namespace Web::Streams {
|
|
|
|
|
|
2024-11-15 04:01:23 +13:00
|
|
|
GC_DEFINE_ALLOCATOR(CountQueuingStrategy);
|
2023-11-19 19:47:52 +01:00
|
|
|
|
2023-06-18 19:43:56 +12:00
|
|
|
// https://streams.spec.whatwg.org/#blqs-constructor
|
2024-11-15 04:01:23 +13:00
|
|
|
GC::Ref<CountQueuingStrategy> CountQueuingStrategy::construct_impl(JS::Realm& realm, QueuingStrategyInit const& init)
|
2023-06-18 19:43:56 +12:00
|
|
|
{
|
|
|
|
|
// The new CountQueuingStrategy(init) constructor steps are:
|
|
|
|
|
// 1. Set this.[[highWaterMark]] to init["highWaterMark"].
|
2024-11-14 05:50:17 +13:00
|
|
|
return realm.create<CountQueuingStrategy>(realm, init.high_water_mark);
|
2023-06-18 19:43:56 +12:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
CountQueuingStrategy::CountQueuingStrategy(JS::Realm& realm, double high_water_mark)
|
|
|
|
|
: PlatformObject(realm)
|
|
|
|
|
, m_high_water_mark(high_water_mark)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
CountQueuingStrategy::~CountQueuingStrategy() = default;
|
|
|
|
|
|
2023-06-23 08:46:46 +12:00
|
|
|
// https://streams.spec.whatwg.org/#cqs-size
|
2024-11-15 04:01:23 +13:00
|
|
|
GC::Ref<WebIDL::CallbackType> CountQueuingStrategy::size()
|
2023-06-23 08:46:46 +12:00
|
|
|
{
|
|
|
|
|
// 1. Return this's relevant global object's count queuing strategy size function.
|
2024-11-18 22:49:00 +13:00
|
|
|
auto* global = dynamic_cast<HTML::UniversalGlobalScopeMixin*>(&HTML::relevant_global_object(*this));
|
|
|
|
|
VERIFY(global);
|
|
|
|
|
return global->count_queuing_strategy_size_function();
|
2023-06-23 08:46:46 +12:00
|
|
|
}
|
|
|
|
|
|
2023-08-07 08:41:28 +02:00
|
|
|
void CountQueuingStrategy::initialize(JS::Realm& realm)
|
2023-06-18 19:43:56 +12:00
|
|
|
{
|
2023-08-07 08:41:28 +02:00
|
|
|
Base::initialize(realm);
|
2024-03-16 13:13:08 +01:00
|
|
|
WEB_SET_PROTOTYPE_FOR_INTERFACE(CountQueuingStrategy);
|
2023-06-18 19:43:56 +12:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|