Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
qwasmsuspendresumecontrol_p.h
Go to the documentation of this file.
1// Copyright (C) 2025 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
3// Qt-Security score:significant reason:default
4
5#ifndef QWASMSUSPENDRESUMECONTROL_P_H
6#define QWASMSUSPENDRESUMECONTROL_P_H
7
8#include <QtCore/qglobal.h>
9#include <emscripten/val.h>
10#include <map>
11#include <functional>
12#include <chrono>
13
14//
15// W A R N I N G
16// -------------
17//
18// This file is not part of the Qt API. It exists purely as an
19// implementation detail. This header file may change from version to
20// version without notice, or even be removed.
21//
22// We mean it.
23//
24
25class Q_CORE_EXPORT QWasmSuspendResumeControl
26{
27public:
28 QWasmSuspendResumeControl();
29 ~QWasmSuspendResumeControl();
30
31 QWasmSuspendResumeControl(const QWasmSuspendResumeControl&) = delete;
32 QWasmSuspendResumeControl& operator=(const QWasmSuspendResumeControl&) = delete;
33
34 static QWasmSuspendResumeControl *get();
35
36 uint32_t registerEventHandler(std::function<void(emscripten::val)> handler);
37 void removeEventHandler(uint32_t index);
38 emscripten::val jsEventHandlerAt(uint32_t index);
39 static emscripten::val suspendResumeControlJs();
40
41 void suspend();
42 // Accept events for all handlers, start to process events on last handler in list
43 void suspendExclusive(QList<uint32_t> eventHandlerIndices);
44 int sendPendingEvents();
45
46 emscripten::val currentEvent() const
47 {
48 return m_currentEvent;
49 }
50 void setCurrentEvent(emscripten::val currentEvent)
51 {
52 m_currentEvent = currentEvent;
53 }
54
55private:
56 friend void qtSendPendingEvents();
57
58 static QWasmSuspendResumeControl *s_suspendResumeControl;
59 std::map<int, std::function<void(emscripten::val)>> m_eventHandlers;
60 std::function<bool(int)> m_eventFilter = [](int) { return true; };
61 emscripten::val m_currentEvent = emscripten::val::undefined();
62};
63
64class Q_CORE_EXPORT QWasmEventHandler
65{
66public:
67 QWasmEventHandler() = default;
68 QWasmEventHandler(emscripten::val element, const std::string &name,
69 std::function<void(emscripten::val)> fn);
70 ~QWasmEventHandler();
71 QWasmEventHandler(QWasmEventHandler const&) = delete;
72 QWasmEventHandler& operator=(QWasmEventHandler const&) = delete;
73 QWasmEventHandler(QWasmEventHandler&& other) noexcept;
74 QWasmEventHandler& operator=(QWasmEventHandler&& other) noexcept;
75private:
76 emscripten::val m_element;
77 emscripten::val m_name;
78 uint32_t m_eventHandlerIndex = 0;
79};
80
82{
83public:
84 QWasmTimer(QWasmSuspendResumeControl* suspendResume, std::function<void()> handler);
85 ~QWasmTimer();
86 QWasmTimer(QWasmTimer const&) = delete;
87 QWasmTimer& operator=(QWasmTimer const&) = delete;
88 void setTimeout(std::chrono::milliseconds timeout);
89 bool hasTimeout();
90 void clearTimeout();
91
92private:
93 QWasmSuspendResumeControl *m_suspendResume;
94 uint32_t m_handlerIndex;
95 uint64_t m_timerId = 0;
96};
97
99{
100public:
101 using Callback = std::function<void(double)>;
102
103 static QWasmAnimationFrameMultiHandler *instance();
104
105 uint32_t registerAnimateCallback(Callback callback);
106 uint32_t registerDrawCallback(Callback callback);
107
108 void unregisterAnimateCallback(uint32_t handle);
109 void unregisterDrawCallback(uint32_t handle);
110
111 QWasmAnimationFrameMultiHandler();
112 ~QWasmAnimationFrameMultiHandler();
113 QWasmAnimationFrameMultiHandler(const QWasmAnimationFrameMultiHandler&) = delete;
114 QWasmAnimationFrameMultiHandler& operator=(const QWasmAnimationFrameMultiHandler&) = delete;
115
116private:
117 void handleAnimationFrame(double timestamp);
118 void ensureAnimationFrameRequested();
119 void cancelAnimationFrameRequest();
120
121 static QWasmAnimationFrameMultiHandler *s_instance;
122
123 std::map<uint32_t, Callback> m_animateCallbacks;
124 std::map<uint32_t, Callback> m_drawCallbacks;
125 uint32_t m_nextAnimateHandle = 0;
126 uint32_t m_nextDrawHandle = 0;
127 uint32_t m_handlerIndex = 0;
128 int64_t m_requestId = -1;
129};
130
131#endif
void setTimeout(std::chrono::milliseconds timeout)
QWasmTimer(QWasmSuspendResumeControl *suspendResume, std::function< void()> handler)
QWasmTimer(QWasmTimer const &)=delete
QWasmTimer & operator=(QWasmTimer const &)=delete
qint64 size() const override
For open random-access devices, this function returns the size of the device.
Definition qstdweb.cpp:734
bool seek(qint64 pos) override
For random-access devices, this function sets the current position to pos, returning true on success,...
Definition qstdweb.cpp:739
Uint8ArrayIODevice(Uint8Array array)
Definition qstdweb.cpp:718
bool isSequential() const override
Returns true if this device is sequential; otherwise returns false.
Definition qstdweb.cpp:729
qint64 writeData(const char *data, qint64 size) override
Writes up to maxSize bytes from data to the device.
Definition qstdweb.cpp:756
bool open(QIODevice::OpenMode mode) override
Definition qstdweb.cpp:724
qint64 readData(char *data, qint64 maxSize) override
Reads up to maxSize bytes from the device into data, and returns the number of bytes read or -1 if an...
Definition qstdweb.cpp:746
bool canBlockCallingThread()
Definition qstdweb.cpp:666
emscripten::val window()
Definition qstdweb_p.h:429
double uint53_t
Definition qstdweb.cpp:46
bool haveAsyncify()
Definition qstdweb.cpp:660
bool haveJspi()
Definition qstdweb.cpp:654
const char makeContextfulPromiseFunctionName[]
static void usePotentialyUnusedSymbols()
Definition qstdweb.cpp:31
decltype(auto) bindForever(F wrappedCallback)
Definition qstdweb_p.h:350
std::function< void(emscripten::val)> thenFunc
Definition qstdweb_p.h:236
std::function< void()> finallyFunc
Definition qstdweb_p.h:238
std::function< void(emscripten::val)> catchFunc
Definition qstdweb_p.h:237