/* * Copyright (c) 2022, Linus Groh * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include #include #include #include #include #include #include #include #include #include namespace Web::Fetch::Infrastructure { // https://fetch.spec.whatwg.org/#fetch-controller class FetchController : public JS::Cell { GC_CELL(FetchController, JS::Cell); GC_DECLARE_ALLOCATOR(FetchController); public: enum class State { Ongoing, Terminated, Aborted, }; [[nodiscard]] static GC::Ref create(JS::VM&); void set_full_timing_info(GC::Ref full_timing_info) { m_full_timing_info = full_timing_info; } void set_report_timing_steps(Function report_timing_steps); void set_next_manual_redirect_steps(Function next_manual_redirect_steps); [[nodiscard]] State state() const { return m_state; } void report_timing(JS::Object const&) const; void process_next_manual_redirect() const; [[nodiscard]] GC::Ref extract_full_timing_info() const; void abort(JS::Realm&, Optional); JS::Value deserialize_a_serialized_abort_reason(JS::Realm&); void terminate(); void set_fetch_params(Badge, GC::Ref fetch_params) { m_fetch_params = fetch_params; } void stop_fetch(); u64 next_fetch_task_id() { return m_next_fetch_task_id++; } void fetch_task_queued(u64 fetch_task_id, HTML::TaskID event_id); void fetch_task_complete(u64 fetch_task_id); private: FetchController(); virtual void visit_edges(JS::Cell::Visitor&) override; // https://fetch.spec.whatwg.org/#fetch-controller-state // state (default "ongoing") // "ongoing", "terminated", or "aborted" State m_state { State::Ongoing }; // https://fetch.spec.whatwg.org/#fetch-controller-full-timing-info // full timing info (default null) // Null or a fetch timing info. GC::Ptr m_full_timing_info; // https://fetch.spec.whatwg.org/#fetch-controller-report-timing-steps // report timing steps (default null) // Null or an algorithm accepting a global object. GC::Ptr> m_report_timing_steps; // https://fetch.spec.whatwg.org/#fetch-controller-report-timing-steps // serialized abort reason (default null) // Null or a Record (result of StructuredSerialize). Optional m_serialized_abort_reason; // https://fetch.spec.whatwg.org/#fetch-controller-next-manual-redirect-steps // next manual redirect steps (default null) // Null or an algorithm accepting nothing. GC::Ptr> m_next_manual_redirect_steps; GC::Ptr m_fetch_params; HashMap m_ongoing_fetch_tasks; u64 m_next_fetch_task_id { 0 }; }; class FetchControllerHolder : public JS::Cell { GC_CELL(FetchControllerHolder, JS::Cell); GC_DECLARE_ALLOCATOR(FetchControllerHolder); public: static GC::Ref create(JS::VM&); [[nodiscard]] GC::Ptr const& controller() const { return m_controller; } void set_controller(GC::Ref controller) { m_controller = controller; } private: FetchControllerHolder(); virtual void visit_edges(Cell::Visitor&) override; GC::Ptr m_controller; }; }