-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGenerator.h
executable file
·67 lines (49 loc) · 1023 Bytes
/
Generator.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
60
61
62
63
64
65
66
67
#ifndef COROUTINE_GENERATOR_INCLUDED
#define COROUTINE_GENERATOR_INCLUDED
#include "Fiber.h"
#include <vector>
namespace coroutine {
template <typename T>
class Generator : public Fiber
{
public:
Generator();
virtual ~Generator();
public:
T resume();
protected:
void yield(T data = NULL);
private:
static std::vector<Generator<T>*> ms_stack;
static T ms_return;
};
template <typename T>
std::vector<Generator<T>*> Generator<T>::ms_stack;
template <typename T>
T Generator<T>::ms_return;
template <typename T>
Generator<T>::Generator()
{
}
template <typename T>
Generator<T>::~Generator()
{
}
template <typename T>
T Generator<T>::resume()
{
ms_stack.push_back(this);
switchTo();
return ms_return;
}
template <typename T>
void Generator<T>::yield(T data)
{
ms_stack.pop_back();
ms_return = data;
const Fiber* pFiberCaller = ms_stack.empty() ? &Fiber::MAIN : ms_stack.back();
pFiberCaller->switchTo();
ms_return = NULL;
}
} // namespace coroutine
#endif // ndef COROUTINE_GENERATOR_INCLUDED