Represent BufferSource and ArrayBufferView as ordinary IDL typedefs over their underlying union types, instead of special casing in the IDL generator. This allows the union conversion/return machinery handle these types consistently with other typedefs, which removes buffer specific paths from the IDL generator. This necessitates changing the WebIDL::BufferSource and WebIDL::ArrayBufferView classes as views over these variants. This replaces the old GC backed BufferableObject wrapper structure and provide convenience helpers to determine things such as the byte length, byte offset, backing buffer, and typed-array APIs.
94 lines
3.1 KiB
C++
94 lines
3.1 KiB
C++
/*
|
|
* Copyright (c) 2024, Jelle Raaijmakers <jelle@ladybird.org>
|
|
* Copyright (c) 2026, Gregory Bertilson <gregory@ladybird.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/NonnullRefPtr.h>
|
|
#include <LibWeb/Bindings/SourceBuffer.h>
|
|
#include <LibWeb/DOM/EventTarget.h>
|
|
#include <LibWeb/WebIDL/Buffers.h>
|
|
|
|
namespace Web::MediaSourceExtensions {
|
|
|
|
class SourceBufferProcessor;
|
|
struct InitializationSegmentData;
|
|
|
|
// https://w3c.github.io/media-source/#dom-sourcebuffer
|
|
class SourceBuffer : public DOM::EventTarget {
|
|
WEB_PLATFORM_OBJECT(SourceBuffer, DOM::EventTarget);
|
|
GC_DECLARE_ALLOCATOR(SourceBuffer);
|
|
|
|
public:
|
|
void set_onupdatestart(GC::Ptr<WebIDL::CallbackType>);
|
|
GC::Ptr<WebIDL::CallbackType> onupdatestart();
|
|
|
|
void set_onupdate(GC::Ptr<WebIDL::CallbackType>);
|
|
GC::Ptr<WebIDL::CallbackType> onupdate();
|
|
|
|
void set_onupdateend(GC::Ptr<WebIDL::CallbackType>);
|
|
GC::Ptr<WebIDL::CallbackType> onupdateend();
|
|
|
|
void set_onerror(GC::Ptr<WebIDL::CallbackType>);
|
|
GC::Ptr<WebIDL::CallbackType> onerror();
|
|
|
|
void set_onabort(GC::Ptr<WebIDL::CallbackType>);
|
|
GC::Ptr<WebIDL::CallbackType> onabort();
|
|
|
|
// https://w3c.github.io/media-source/#dom-sourcebuffer-mode
|
|
Bindings::AppendMode mode() const;
|
|
WebIDL::ExceptionOr<void> set_mode(Bindings::AppendMode);
|
|
|
|
// https://w3c.github.io/media-source/#dom-sourcebuffer-updating
|
|
bool updating() const;
|
|
|
|
// https://w3c.github.io/media-source/#dom-sourcebuffer-buffered
|
|
GC::Ref<HTML::TimeRanges> buffered();
|
|
|
|
void set_content_type(String const& type);
|
|
|
|
// https://w3c.github.io/media-source/#addsourcebuffer-method
|
|
WebIDL::ExceptionOr<void> append_buffer(WebIDL::BufferSource);
|
|
|
|
// https://w3c.github.io/media-source/#dom-sourcebuffer-abort
|
|
WebIDL::ExceptionOr<void> abort();
|
|
|
|
// https://w3c.github.io/media-source/#dom-sourcebuffer-changetype
|
|
WebIDL::ExceptionOr<void> change_type(String const& type);
|
|
|
|
void set_reached_end_of_stream(Badge<MediaSource>);
|
|
void clear_reached_end_of_stream(Badge<MediaSource>);
|
|
|
|
protected:
|
|
SourceBuffer(JS::Realm&, MediaSource&);
|
|
|
|
virtual ~SourceBuffer() override;
|
|
|
|
virtual void initialize(JS::Realm&) override;
|
|
virtual void visit_edges(Cell::Visitor&) override;
|
|
|
|
private:
|
|
WebIDL::ExceptionOr<void> prepare_append(size_t new_data_size, AK::Duration current_time);
|
|
void run_buffer_append_algorithm();
|
|
void run_append_error_algorithm();
|
|
void on_first_initialization_segment_processed(InitializationSegmentData const&);
|
|
void update_ready_state_and_duration_after_coded_frame_processing();
|
|
void finish_buffer_append();
|
|
|
|
GC::Ref<MediaSource> m_media_source;
|
|
NonnullRefPtr<SourceBufferProcessor> m_processor;
|
|
|
|
// https://w3c.github.io/media-source/#dom-sourcebuffer-audiotracks
|
|
GC::Ref<HTML::AudioTrackList> m_audio_tracks;
|
|
|
|
// https://w3c.github.io/media-source/#dom-sourcebuffer-videotracks
|
|
GC::Ref<HTML::VideoTrackList> m_video_tracks;
|
|
|
|
// https://w3c.github.io/media-source/#dom-sourcebuffer-texttracks
|
|
GC::Ref<HTML::TextTrackList> m_text_tracks;
|
|
};
|
|
|
|
}
|