2021-09-08 23:09:18 +02:00
|
|
|
/*
|
2022-09-24 12:04:06 +02:00
|
|
|
* Copyright (c) 2021-2022, Andreas Kling <kling@serenityos.org>
|
2021-09-08 23:09:18 +02:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <AK/Function.h>
|
|
|
|
#include <AK/NonnullOwnPtr.h>
|
|
|
|
#include <AK/RefPtr.h>
|
2022-08-28 13:42:07 +02:00
|
|
|
#include <LibJS/Heap/Handle.h>
|
2022-09-24 12:04:06 +02:00
|
|
|
#include <LibJS/SafeFunction.h>
|
2021-09-08 23:09:18 +02:00
|
|
|
#include <LibWeb/Forward.h>
|
|
|
|
|
|
|
|
namespace Web::HTML {
|
|
|
|
|
|
|
|
class Task {
|
|
|
|
public:
|
2021-09-08 23:53:55 +02:00
|
|
|
// https://html.spec.whatwg.org/multipage/webappapis.html#generic-task-sources
|
|
|
|
enum class Source {
|
|
|
|
Unspecified,
|
|
|
|
DOMManipulation,
|
|
|
|
UserInteraction,
|
|
|
|
Networking,
|
|
|
|
HistoryTraversal,
|
2021-09-16 23:43:08 +02:00
|
|
|
IdleTask,
|
2021-09-19 22:09:51 +02:00
|
|
|
PostedMessage,
|
2021-09-26 14:36:20 +02:00
|
|
|
Microtask,
|
2021-10-03 12:39:56 +02:00
|
|
|
TimerTask,
|
2022-02-06 03:32:26 +00:00
|
|
|
JavaScriptEngine,
|
2021-09-08 23:53:55 +02:00
|
|
|
};
|
|
|
|
|
2022-09-24 12:04:06 +02:00
|
|
|
static NonnullOwnPtr<Task> create(Source source, DOM::Document* document, JS::SafeFunction<void()> steps)
|
2021-09-08 23:09:18 +02:00
|
|
|
{
|
2021-09-08 23:53:55 +02:00
|
|
|
return adopt_own(*new Task(source, document, move(steps)));
|
2021-09-08 23:09:18 +02:00
|
|
|
}
|
|
|
|
~Task();
|
|
|
|
|
2021-09-08 23:53:55 +02:00
|
|
|
Source source() const { return m_source; }
|
2021-09-08 23:09:18 +02:00
|
|
|
void execute();
|
|
|
|
|
2022-08-28 13:42:07 +02:00
|
|
|
DOM::Document* document();
|
|
|
|
DOM::Document const* document() const;
|
2021-09-08 23:09:18 +02:00
|
|
|
|
2021-10-03 15:38:11 +02:00
|
|
|
bool is_runnable() const;
|
|
|
|
|
2021-09-08 23:09:18 +02:00
|
|
|
private:
|
2022-09-24 12:04:06 +02:00
|
|
|
Task(Source, DOM::Document*, JS::SafeFunction<void()> steps);
|
2021-09-08 23:09:18 +02:00
|
|
|
|
2021-09-08 23:53:55 +02:00
|
|
|
Source m_source { Source::Unspecified };
|
2022-09-24 12:04:06 +02:00
|
|
|
JS::SafeFunction<void()> m_steps;
|
2022-08-28 13:42:07 +02:00
|
|
|
JS::Handle<DOM::Document> m_document;
|
2021-09-08 23:09:18 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|