mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
46 lines
996 B
C++
46 lines
996 B
C++
/*
|
|
* Copyright (c) 2021, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Queue.h>
|
|
#include <LibWeb/HTML/EventLoop/Task.h>
|
|
|
|
namespace Web::HTML {
|
|
|
|
class TaskQueue {
|
|
public:
|
|
explicit TaskQueue(HTML::EventLoop&);
|
|
~TaskQueue();
|
|
|
|
bool is_empty() const { return m_tasks.is_empty(); }
|
|
|
|
bool has_runnable_tasks() const;
|
|
|
|
void add(NonnullOwnPtr<HTML::Task>);
|
|
OwnPtr<HTML::Task> take_first_runnable();
|
|
|
|
void enqueue(NonnullOwnPtr<HTML::Task> task) { add(move(task)); }
|
|
OwnPtr<HTML::Task> dequeue()
|
|
{
|
|
if (m_tasks.is_empty())
|
|
return {};
|
|
return m_tasks.take_first();
|
|
}
|
|
|
|
void remove_tasks_matching(Function<bool(HTML::Task const&)>);
|
|
ErrorOr<Vector<NonnullOwnPtr<Task>>> take_tasks_matching(Function<bool(HTML::Task const&)>);
|
|
|
|
Task const* last_added_task() const;
|
|
|
|
private:
|
|
HTML::EventLoop& m_event_loop;
|
|
|
|
Vector<NonnullOwnPtr<HTML::Task>> m_tasks;
|
|
};
|
|
|
|
}
|