boost::exception_ptr類的使用,跨線程獲取異常信息

程序代碼如下蓄愁,非常具有自解釋性双炕,這里就不多說了现喳。

CMakeLists.txt

cmake_minimum_required(VERSION 2.6)
project(lexical_cast)

add_definitions(-std=c++14)

include_directories("/usr/local/include")
link_directories("/usr/local/lib")
file( GLOB APP_SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/*.cpp)
foreach( sourcefile ${APP_SOURCES} )
    file(RELATIVE_PATH filename ${CMAKE_CURRENT_SOURCE_DIR} ${sourcefile})
    string(REPLACE ".cpp" "" file ${filename})
    add_executable(${file} ${sourcefile})
    target_link_libraries(${file} boost_filesystem boost_thread boost_system boost_serialization pthread boost_chrono)
endforeach( sourcefile ${APP_SOURCES} )

utils/tasks_processor_base.hpp

#ifndef _CHAPTOR06_02_TASKS_PROCESSOR_BASE_HPP_
#define _CHAPTOR06_02_TASKS_PROCESSOR_BASE_HPP_
#include <boost/noncopyable.hpp>
#include <boost/thread/thread.hpp>
#include <boost/asio/io_service.hpp>

#include <iostream>

namespace detail {
    template <class T>
    struct task_wrapped {
        private:
            T task_unwrapped_;
    
        public:
            explicit task_wrapped(const T& task_unwrapped): task_unwrapped_(task_unwrapped) {}

            void operator()() const {
                // 設(shè)置中斷點(diǎn)抹恳,線程會(huì)在中斷點(diǎn)退出
                try {
                    boost::this_thread::interruption_point();
                } catch (const boost::thread_interrupted&) {}

                try {
                    // 執(zhí)行task
                    task_unwrapped_();
                } catch (const std::exception& e) {
                    std::cerr << "Exception: " << e.what() << '\n';
                } catch (const boost::thread_interrupted&) {
                    std::cerr << "Thread Interrupted...\n"; 
                } catch(...) {
                    std::cerr << "Unknown exception...\n";
                }
            }
    };

    template <class T>
    inline task_wrapped<T> make_task_wrapped(const T& task_unwrapped) {
        return task_wrapped<T>(task_unwrapped);
    }
}; // namespace detail

namespace tp_base {
    class tasks_processor: private boost::noncopyable {
        protected:
            boost::asio::io_service ios_;
            boost::asio::io_service::work work_;
        
            tasks_processor(): ios_(),
                work_(ios_) 
            {}

        public:
            static tasks_processor& get();

            template <class T>
            inline void push_task(const T& task_unwrapped) {
                ios_.post(detail::make_task_wrapped(task_unwrapped));
            }

            void start() {
                ios_.run();
            }

            void stop() {
                ios_.stop();
            }
    };

    tasks_processor& tasks_processor::get() {
        static tasks_processor proc;
        return proc;
    }
}; // namespace tp_base


#endif

main.cpp

#include "utils/tasks_processor_base.hpp"

#include <boost/exception_ptr.hpp>
#include <boost/lexical_cast.hpp>
#include <stdexcept>

using namespace tp_base;

// 前向聲明
void func_test2();

void process_exception(const boost::exception_ptr& exec_ptr) {
    try {
        boost::rethrow_exception(exec_ptr);
    } catch(const boost::bad_lexical_cast& /*e*/) {
        std::cerr << "Lexical cast exception detected \n";
        tasks_processor::get().push_task(&func_test2);
    } catch(...) {
        std::cerr << "Can not handle such exceptions: \n"
            << boost::current_exception_diagnostic_information()
            << "\n";
        // 停止io_service::run
        tasks_processor::get().stop();
    }
}

void func_test1() {
    try {
        boost::lexical_cast<int>("oops!");
    } catch(...) {
        auto exec = boost::current_exception();
        tasks_processor::get().push_task([exec](){
            process_exception(exec);
        });
    }
}

void func_test2() {
    try {
        BOOST_THROW_EXCEPTION(std::logic_error("Some fatal logic error"));
    } catch(...) {  
        auto exec = boost::current_exception();
        tasks_processor::get().push_task([exec](){
            process_exception(exec);
        });
    }
}

void run_sub_thread_throw(boost::exception_ptr& ptr) {

    
    try {
        boost::lexical_cast<float>("not-a-float");
    } catch(...) {
        ptr = boost::current_exception();
    }
}

int main(int argc, char* argv[]) {
    tasks_processor::get().push_task(&func_test1);
    tasks_processor::get().start();

    boost::exception_ptr ptr;
    boost::thread t([&ptr](){
        run_sub_thread_throw(ptr);
    });
    t.join();

    // 子線程有異常,在主線程中拋出異常
    if(ptr) {
        std::cerr << "bad exception occurred in sub thread\n";
        boost::rethrow_exception(ptr);
    }
}

程序輸出如下知牌,


圖片.png

然后抽了兩個(gè)小時(shí)時(shí)間看了下boost::exception_ptr類和boost::exception類的實(shí)現(xiàn)丹拯,畫了下類圖站超,受益匪淺,以后出問題查源碼可能用的著乖酬。

exception_wrapper的繼承鏈死相,


圖片.png

boost::exception類的構(gòu)造


圖片.png

boost::exception_ptr類的構(gòu)造


圖片.png
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市咬像,隨后出現(xiàn)的幾起案子算撮,更是在濱河造成了極大的恐慌生宛,老刑警劉巖,帶你破解...
    沈念sama閱讀 206,311評(píng)論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件肮柜,死亡現(xiàn)場離奇詭異陷舅,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)素挽,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,339評(píng)論 2 382
  • 文/潘曉璐 我一進(jìn)店門蔑赘,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人预明,你說我怎么就攤上這事缩赛。” “怎么了撰糠?”我有些...
    開封第一講書人閱讀 152,671評(píng)論 0 342
  • 文/不壞的土叔 我叫張陵酥馍,是天一觀的道長。 經(jīng)常有香客問我阅酪,道長旨袒,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,252評(píng)論 1 279
  • 正文 為了忘掉前任术辐,我火速辦了婚禮砚尽,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘辉词。我一直安慰自己必孤,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,253評(píng)論 5 371
  • 文/花漫 我一把揭開白布瑞躺。 她就那樣靜靜地躺著敷搪,像睡著了一般。 火紅的嫁衣襯著肌膚如雪幢哨。 梳的紋絲不亂的頭發(fā)上赡勘,一...
    開封第一講書人閱讀 49,031評(píng)論 1 285
  • 那天,我揣著相機(jī)與錄音捞镰,去河邊找鬼闸与。 笑死,一個(gè)胖子當(dāng)著我的面吹牛岸售,可吹牛的內(nèi)容都是我干的几迄。 我是一名探鬼主播,決...
    沈念sama閱讀 38,340評(píng)論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼冰评,長吁一口氣:“原來是場噩夢(mèng)啊……” “哼!你這毒婦竟也來了木羹?” 一聲冷哼從身側(cè)響起甲雅,我...
    開封第一講書人閱讀 36,973評(píng)論 0 259
  • 序言:老撾萬榮一對(duì)情侶失蹤解孙,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后抛人,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體弛姜,經(jīng)...
    沈念sama閱讀 43,466評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,937評(píng)論 2 323
  • 正文 我和宋清朗相戀三年妖枚,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了廷臼。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,039評(píng)論 1 333
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡绝页,死狀恐怖荠商,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情续誉,我是刑警寧澤莱没,帶...
    沈念sama閱讀 33,701評(píng)論 4 323
  • 正文 年R本政府宣布,位于F島的核電站酷鸦,受9級(jí)特大地震影響饰躲,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜臼隔,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,254評(píng)論 3 307
  • 文/蒙蒙 一嘹裂、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧摔握,春花似錦寄狼、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,259評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至宁舰,卻和暖如春拼卵,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背蛮艰。 一陣腳步聲響...
    開封第一講書人閱讀 31,485評(píng)論 1 262
  • 我被黑心中介騙來泰國打工腋腮, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人壤蚜。 一個(gè)月前我還...
    沈念sama閱讀 45,497評(píng)論 2 354
  • 正文 我出身青樓即寡,卻偏偏與公主長得像,于是被迫代替她去往敵國和親袜刷。 傳聞我的和親對(duì)象是個(gè)殘疾皇子聪富,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,786評(píng)論 2 345

推薦閱讀更多精彩內(nèi)容