1
0
mirror of https://github.com/tearshark/librf.git synced 2024-10-01 15:57:07 +08:00
librf/tutorial/test_async_exception.cpp
2020-03-26 17:26:39 +08:00

94 lines
1.9 KiB
C++

#include <chrono>
#include <iostream>
#include <string>
#include <thread>
#include "librf.h"
using namespace resumef;
//请打开结构化异常(/EHa)
auto async_signal_exception(const intptr_t dividend)
{
awaitable_t<int64_t> awaitable;
std::thread([dividend, awaitable]
{
std::this_thread::sleep_for(std::chrono::milliseconds(50));
try
{
//也可以注释掉这个判断,使用结构化异常。但就获得不了具体描述信息了
if (dividend == 0)
throw std::logic_error("divided by zero");
awaitable.set_value(10000 / dividend);
}
catch (...)
{
awaitable.set_exception(std::current_exception());
}
}).detach();
return awaitable.get_future();
}
auto async_signal_exception2(const intptr_t dividend)
{
awaitable_t<int64_t> awaitable;
std::thread([dividend, awaitable]
{
std::this_thread::sleep_for(std::chrono::milliseconds(50));
if (dividend == 0)
awaitable.throw_exception(std::logic_error("divided by zero"));
else
awaitable.set_value(10000 / dividend);
}).detach();
return awaitable.get_future();
}
future_t<> test_signal_exception()
{
for (intptr_t i = 10; i >= 0; --i)
{
#ifndef __clang__
try
#endif
{
auto r = co_await async_signal_exception2(i);
std::cout << "result is " << r << std::endl;
}
#ifndef __clang__
catch (const std::exception& e)
{
std::cout << "exception signal : " << e.what() << std::endl;
}
catch (...)
{
std::cout << "exception signal : who knows?" << std::endl;
}
#endif
}
}
future_t<> test_bomb_exception()
{
for (intptr_t i = 10; i >= 0; --i)
{
auto r = co_await async_signal_exception(i);
std::cout << "result is " << r << std::endl;
}
}
void resumable_main_exception()
{
go test_signal_exception();
this_scheduler()->run_until_notask();
std::cout << std::endl;
go test_bomb_exception();
this_scheduler()->run_until_notask();
}