-
Notifications
You must be signed in to change notification settings - Fork 106
/
Copy pathsample_readme_7.cpp
56 lines (47 loc) · 1.51 KB
/
sample_readme_7.cpp
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
/*
* sample_readme_7.cpp
*
* Created on: 2020-05-22
* Author: owent
*
* Released under the MIT license
*/
#include <assert.h>
#include <iostream>
#include <string>
// include manager header file
#include <libcopp/coroutine/callable_promise.h>
#include <libcopp/coroutine/generator_promise.h>
#if defined(LIBCOPP_MACRO_ENABLE_STD_COROUTINE) && LIBCOPP_MACRO_ENABLE_STD_COROUTINE
using my_generator = copp::generator_future<int>;
std::list<my_generator::context_pointer_type> g_sample_executor;
static void generator_callback(my_generator::context_pointer_type ctx) {
g_sample_executor.emplace_back(std::move(ctx));
}
static copp::callable_future<void> coroutine_simulator_rpc() {
my_generator generator_object{generator_callback};
auto value1 = co_await generator_object;
std::cout << "co_await named generator: " << value1 << std::endl;
auto value2 = co_await my_generator{generator_callback};
std::cout << "co_await temporary generator: " << value2 << std::endl;
generator_object.get_context()->reset_value();
auto value3 = co_await generator_object;
std::cout << "reset and co_await named generator again: " << value3 << std::endl;
co_return;
}
int main() {
int result = 191;
auto f = coroutine_simulator_rpc();
while (!g_sample_executor.empty()) {
auto ctx = g_sample_executor.front();
g_sample_executor.pop_front();
ctx->set_value(++result);
}
return 0;
}
#else
int main() {
puts("this sample require cotask enabled and compiler support c++20 coroutine");
return 0;
}
#endif