-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathqtcoroutine_p.h
59 lines (49 loc) · 1.02 KB
/
qtcoroutine_p.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#ifndef QTCOROUTINE_P_H
#define QTCOROUTINE_P_H
#include "qtcoroutine.h"
#include <QStack>
#include <QSharedPointer>
#ifdef Q_OS_WIN
#include <qt_windows.h>
#else
#include <ucontext.h>
#endif
namespace QtCoroutine {
struct Routine
{
std::function<void()> func;
#ifdef Q_OS_WIN
struct Fiber {};
QSharedPointer<Fiber> context;
#else
QSharedPointer<char> stack;
QSharedPointer<ucontext_t> context{new ucontext_t{}};
#endif
Routine(std::function<void()> &&func = {});
};
struct Ordinator
{
QHash<RoutineId, Routine> routines;
QStack<QPair<RoutineId, Routine>> executionStack;
#ifdef Q_OS_WIN
LPVOID context;
using ContextType = LPVOID;
#else
ucontext_t mContext;
ucontext_t* const context = &mContext;
using ContextType = ucontext_t*;
#endif
bool resume(RoutineId id);
void yield();
ContextType previous();
void entryImpl();
thread_local static Ordinator ordinator;
static QAtomicInteger<RoutineId> index;
#ifdef Q_OS_WIN
static void WINAPI entry(LPVOID);
#else
static void entry();
#endif
};
}
#endif // QTCOROUTINE_P_H