1
0
mirror of https://github.com/tearshark/librf.git synced 2024-10-02 00:00:11 +08:00
librf/tutorial/test_async_cb.cpp

75 lines
1.6 KiB
C++
Raw Normal View History

2017-09-24 14:01:30 +08:00

#include <chrono>
#include <iostream>
#include <string>
#include <conio.h>
#include <thread>
#include "librf.h"
2020-02-18 11:32:20 +08:00
using namespace resumef;
2020-02-15 13:32:14 +08:00
template<class _Ctype>
void callback_get_long(int64_t val, _Ctype&& cb)
2017-09-24 14:01:30 +08:00
{
using namespace std::chrono;
2020-02-15 13:32:14 +08:00
std::thread([val, cb = std::forward<_Ctype>(cb)]
{
std::this_thread::sleep_for(500ms);
2020-02-15 13:32:14 +08:00
cb(val * val);
}).detach();
}
2017-09-24 14:01:30 +08:00
2020-02-15 13:32:14 +08:00
//这种情况下,没有生成 frame-context因此并没有promise_type被内嵌在frame-context里
2020-02-18 11:32:20 +08:00
future_t<int64_t> async_get_long(int64_t val)
2020-02-15 13:32:14 +08:00
{
2020-02-18 11:32:20 +08:00
resumef::awaitable_t<int64_t> awaitable;
callback_get_long(val, [awaitable](int64_t val)
2017-09-24 14:01:30 +08:00
{
2020-02-18 11:32:20 +08:00
awaitable.set_value(val);
2020-02-15 13:32:14 +08:00
});
2020-02-18 11:32:20 +08:00
return awaitable.get_future();
2017-09-24 14:01:30 +08:00
}
2020-02-18 11:32:20 +08:00
future_t<> wait_get_long(int64_t val)
{
co_await async_get_long(val);
}
2020-02-15 13:32:14 +08:00
//这种情况下,会生成对应的 frame-context一个promise_type被内嵌在frame-context里
2020-02-18 11:32:20 +08:00
future_t<> resumable_get_long(int64_t val)
2017-09-24 14:01:30 +08:00
{
std::cout << val << std::endl;
val = co_await async_get_long(val);
std::cout << val << std::endl;
val = co_await async_get_long(val);
std::cout << val << std::endl;
val = co_await async_get_long(val);
std::cout << val << std::endl;
}
2020-02-18 11:32:20 +08:00
future_t<int64_t> loop_get_long(int64_t val)
2017-09-24 14:01:30 +08:00
{
std::cout << val << std::endl;
for (int i = 0; i < 5; ++i)
{
val = co_await async_get_long(val);
std::cout << val << std::endl;
}
co_return val;
2017-09-24 14:01:30 +08:00
}
void resumable_main_cb()
{
std::cout << std::this_thread::get_id() << std::endl;
GO
2017-09-24 14:01:30 +08:00
{
auto val = co_await loop_get_long(2);
std::cout << "GO:" << val << std::endl;
2017-09-24 14:01:30 +08:00
};
go loop_get_long(3);
2017-10-01 10:33:08 +08:00
resumef::this_scheduler()->run_until_notask();
2017-09-24 14:01:30 +08:00
}