Taskflow:异常处理(Exception Handling)

2024-03-31 18:52

本文主要是介绍Taskflow:异常处理(Exception Handling),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

从运行的Taskflow中捕捉异常

当Task抛出异常时,执行器将以tf::Future句柄引用的共享状态存储该异常。

#include <taskflow/taskflow.hpp>
void print_str(char const* str) {std::cout << str << std::endl;
}
int main() {tf::Executor executor;tf::Taskflow taskflow;// task抛出一个异常taskflow.emplace([](){ throw std::runtime_error("exception"); });// Task抛出的异常将会存入future中tf::Future<void> future = executor.run(taskflow); try {future.get(); // 并在get() 获取}catch(const std::runtime_error& e) {std::cerr << e.what() << std::endl;}// 上面逻辑的简化版// try {//     executor.run(taskflow).get();// }// catch(const std::runtime_error& e) {//     std::cerr << e.what() << std::endl;// }
}

由于tf::Future是从std::future派生的,它继承了C++标准定义的所有异常处理行为。

异常将会自动取消Taskflow的执行。所有依赖该异常Task的后续任务将无法运行。

#include <taskflow/taskflow.hpp>
void print_str(char const* str) {std::cout << str << std::endl;
}
int main() {tf::Executor executor;tf::Taskflow taskflow;tf::Task A = taskflow.emplace([](){ throw std::runtime_error("exception on A"); });tf::Task B = taskflow.emplace([](){ std::cout << "Task B\n"; });A.precede(B);try {executor.run(taskflow).get();}catch(const std::runtime_error& e) {std::cerr << e.what() << std::endl;}
}

当A抛出异常时,执行者将取消任务流的执行,停止在A之后运行的每个任务。在这种情况下,B不会运行。

当并发任务中,多个Task抛出异常,Taskflow只会存储一个异常,并忽略其他异常:

#include <taskflow/taskflow.hpp>
int main() {tf::Executor executor;tf::Taskflow taskflow;auto [A, B, C, D] = taskflow.emplace([]() { std::cout << "TaskA\n"; },[]() { std::cout << "TaskB\n";throw std::runtime_error("Exception on Task B");},[]() { std::cout << "TaskC\n"; throw std::runtime_error("Exception on Task C");},[]() { std::cout << "TaskD will not be printed due to exception\n"; });A.precede(B, C);  // A runs before B and CD.succeed(B, C);  // D runs after  B and Ctry {executor.run(taskflow).get();}catch(const std::runtime_error& e) {// catched either B's or C's exceptionstd::cout << e.what() << std::endl;}
}

同样,异步Task也依靠future传播异常:

tf::Executor executor;
auto fu = executor.async([](){ throw std::runtime_error("exception"); });
try {fu.get();
}
catch(const std::runtime_error& e) {std::cerr << e.what() << std::endl;
}

tf::Executor::silent_async 不会返回future,所以其异常会被传播到其父Task,或者忽略(没有父Task时):

tf::Taskflow taskflow;
tf::Executor executor;// execption will be silently ignored
executor.silent_async([](){ throw std::runtime_error("exception"); });// exception will be propagated to the parent tf::Runtime task and then its Taskflow
taskflow.emplace([&](tf::Runtime& rt){rt.silent_async([](){ throw std::runtime_error("exception"); });
});
try {taskflow.get();
}
catch(const std::runtime_error& re) {std::cout << re.what() << std::endl;
}

对于tf::Executor::corun 或者 tf::Runtime::corun,会直接抛出异常,如果tf::Runtime::corun没有捕获异常,它将被传播到其父task。

这篇关于Taskflow:异常处理(Exception Handling)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/865059

相关文章

如何使用celery进行异步处理和定时任务(django)

《如何使用celery进行异步处理和定时任务(django)》文章介绍了Celery的基本概念、安装方法、如何使用Celery进行异步任务处理以及如何设置定时任务,通过Celery,可以在Web应用中... 目录一、celery的作用二、安装celery三、使用celery 异步执行任务四、使用celery

SpringBoot操作spark处理hdfs文件的操作方法

《SpringBoot操作spark处理hdfs文件的操作方法》本文介绍了如何使用SpringBoot操作Spark处理HDFS文件,包括导入依赖、配置Spark信息、编写Controller和Ser... 目录SpringBoot操作spark处理hdfs文件1、导入依赖2、配置spark信息3、cont

Python中异常类型ValueError使用方法与场景

《Python中异常类型ValueError使用方法与场景》:本文主要介绍Python中的ValueError异常类型,它在处理不合适的值时抛出,并提供如何有效使用ValueError的建议,文中... 目录前言什么是 ValueError?什么时候会用到 ValueError?场景 1: 转换数据类型场景

Spring中Bean有关NullPointerException异常的原因分析

《Spring中Bean有关NullPointerException异常的原因分析》在Spring中使用@Autowired注解注入的bean不能在静态上下文中访问,否则会导致NullPointerE... 目录Spring中Bean有关NullPointerException异常的原因问题描述解决方案总结

MyBatis延迟加载的处理方案

《MyBatis延迟加载的处理方案》MyBatis支持延迟加载(LazyLoading),允许在需要数据时才从数据库加载,而不是在查询结果第一次返回时就立即加载所有数据,延迟加载的核心思想是,将关联对... 目录MyBATis如何处理延迟加载?延迟加载的原理1. 开启延迟加载2. 延迟加载的配置2.1 使用

Android WebView的加载超时处理方案

《AndroidWebView的加载超时处理方案》在Android开发中,WebView是一个常用的组件,用于在应用中嵌入网页,然而,当网络状况不佳或页面加载过慢时,用户可能会遇到加载超时的问题,本... 目录引言一、WebView加载超时的原因二、加载超时处理方案1. 使用Handler和Timer进行超

Python中处理NaN值的技巧分享

《Python中处理NaN值的技巧分享》在数据科学和数据分析领域,NaN(NotaNumber)是一个常见的概念,它表示一个缺失或未定义的数值,在Python中,尤其是在使用pandas库处理数据时,... 目录NaN 值的来源和影响使用 pandas 的 isna()和 isnull()函数直接比较 Na

Python中的异步:async 和 await以及操作中的事件循环、回调和异常

《Python中的异步:async和await以及操作中的事件循环、回调和异常》在现代编程中,异步操作在处理I/O密集型任务时,可以显著提高程序的性能和响应速度,Python提供了asyn... 目录引言什么是异步操作?python 中的异步编程基础async 和 await 关键字asyncio 模块理论

详解Python中通用工具类与异常处理

《详解Python中通用工具类与异常处理》在Python开发中,编写可重用的工具类和通用的异常处理机制是提高代码质量和开发效率的关键,本文将介绍如何将特定的异常类改写为更通用的ValidationEx... 目录1. 通用异常类:ValidationException2. 通用工具类:Utils3. 示例文

无人叉车3d激光slam多房间建图定位异常处理方案-墙体画线地图切分方案

墙体画线地图切分方案 针对问题:墙体两侧特征混淆误匹配,导致建图和定位偏差,表现为过门跳变、外月台走歪等 ·解决思路:预期的根治方案IGICP需要较长时间完成上线,先使用切分地图的工程化方案,即墙体两侧切分为不同地图,在某一侧只使用该侧地图进行定位 方案思路 切分原理:切分地图基于关键帧位置,而非点云。 理论基础:光照是直线的,一帧点云必定只能照射到墙的一侧,无法同时照到两侧实践考虑:关