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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
|
/*
* SpiceGtk coroutine with Windows fibers
*
* Copyright (C) 2011 Marc-André Lureau <marcandre.lureau@redhat.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.0 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "config.h"
#include <stdio.h>
#include <glib.h>
#include "coroutine.h"
static struct coroutine leader = { 0, };
static struct coroutine *current = &leader;
int coroutine_release(struct coroutine *co)
{
DeleteFiber(co->fiber);
return 0;
}
static void WINAPI coroutine_trampoline(LPVOID lpParameter)
{
struct coroutine *co = (struct coroutine *)lpParameter;
struct coroutine *caller = co->caller;
co->data = co->entry(co->data);
co->caller = NULL;
// and switch back to caller
co->ret = 1;
SwitchToFiber(caller->fiber);
}
void coroutine_init(struct coroutine *co)
{
if (leader.fiber == NULL) {
leader.fiber = ConvertThreadToFiber(&leader);
if (leader.fiber == NULL)
g_error("ConvertThreadToFiber() failed");
}
co->exited = 0;
co->fiber = CreateFiber(0, &coroutine_trampoline, co);
if (co->fiber == NULL)
g_error("CreateFiber() failed");
co->ret = 0;
}
struct coroutine *coroutine_self(void)
{
return current;
}
static void *coroutine_swap(struct coroutine *from, struct coroutine *to, void *arg)
{
to->data = arg;
current = to;
SwitchToFiber(to->fiber);
if (to->ret == 0)
return from->data;
else if (to->ret == 1) {
coroutine_release(to);
current = from;
to->exited = 1;
return to->data;
}
return NULL;
}
void *coroutine_yieldto(struct coroutine *to, void *arg)
{
g_return_val_if_fail(!to->caller, NULL);
g_return_val_if_fail(!to->exited, NULL);
to->caller = coroutine_self();
return coroutine_swap(coroutine_self(), to, arg);
}
void *coroutine_yield(void *arg)
{
struct coroutine *to = coroutine_self()->caller;
if (!to) {
fprintf(stderr, "Co-routine is yielding to no one\n");
abort();
}
coroutine_self()->caller = NULL;
return coroutine_swap(coroutine_self(), to, arg);
}
gboolean coroutine_is_main(struct coroutine *co)
{
return (co == &leader);
}
/*
* Local variables:
* c-indent-level: 8
* c-basic-offset: 8
* tab-width: 8
* End:
*/
|