您好,登錄后才能下訂單哦!
這篇文章主要介紹基于c++11中event-driven library的示例分析,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
做了一個不到200行的事件驅動庫,基于c++11標準,header-only,跨平臺。支持自定義事件,通過wake_up函數異步喚醒。寫這個庫的動機是想為之前自己寫的日志庫提供日志回滾機制。
github:https://github.com/chloro-pn/event_pool
event_pool
基本介紹
a header-only event-driven library based on c++11.
一個基于c++11標準,僅需要頭文件的事件驅動庫:)。
使用方法:
創建event_pool對象并申請一個線程做事件處理,在該線程中調用run函數。
//run the event_pool. std::shared_ptr<event_pool> ev(new event_pool()); std::thread th([=]()->void { ev->run(); });
創建event_handle和time_handle對象并設置id_,type_,回調函數func_,上下文args_(如果是time_handle則還要設置觸發時間)等,push進event_pool對象。
//create time_handle. std::shared_ptr<time_handle> h(new time_handle()); h->id_ = "timer test "; h->type_ = time_handle::type::duration; h->duration_ = seconds(2); h->args_ = nullptr; h->func_ = [](std::shared_ptr<time_handle> self)->void { std::cout << self->id_ << " wake up !" << std::endl; }; //create event_handle. std::shared_ptr<event_handle> eh(new event_handle()); eh->id_ = "back cout "; eh->type_ = event_handle::type::every; eh->args_ = nullptr; eh->func_ = [](std::shared_ptr<event_handle> self)->void { std::cout << self->id_ << " wake up !"<<std::endl; }; //push them into ev. ev->push_timer(h); ev->push_event(eh);
在需要觸發事件的時候調用wake_up函數(time_handle沒有wake_up函數,等待時間到達自動觸發)。當需要關閉event_pool時,調用stop函數,然后回收線程,沒有來得及處理的事件會被丟棄,即使當event_pool 對象完全銷毀后,仍然可以調用wake_up函數,此時會直接返回。
while (true) { char buf[1024]; gets(buf); if (buf[0] == 'q') { ev->stop(); // stop the event_pool. break; } eh->wake_up(); } th.join();
使用指南:
所有對象均需使用std::shared_ptr創建。
每個time_handle對象和event_handle對象只能push進一個event_pool對象。
event_handle對象可設置兩種類型:every和once,every類型允許不限次數的wake_up,event_pool會處理每次wake_up,而once類型只能被喚醒一次,但允許多次調用wake_up函數(線程安全),這意味著可以在多個線程并發的觸發事件。
time_handle對象可設置兩種類型:duration和time_point,其中duration類型通過設置duration_成員來指定從此刻開始,每間隔多少時間就觸發一次。time_point類型通過設置time_point_成員來指定在哪個時刻僅觸發一次。
回調函數的輸入參數就是該事件對象本身,你可以通過其訪問設置的id_,type_,args_等等。
event_pool的run函數可以在多個線程并發執行(maybe?),這一點暫且不保證。
特點:
1.輕量級,200行源代碼,語言層面的跨平臺,基于c++11標準。
2.僅需要頭文件,即拿即用。
todo:
定義更便于使用,減少出錯概率的接口。
補充測試。
以上是“基于c++11中event-driven library的示例分析”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。