- 论坛徽章:
- 1
|
20可用积分
本帖最后由 lost_templar 于 2014-04-30 00:09 编辑
- #include <cstddef>
- #include <functional>
- #include <queue>
- #include <thread>
- #include <vector>
- #include <mutex>
- #include <atomic>
- #include <algorithm>
- namespace simple_thread_pool_private_sdnjasfdlkj
- {
- template< typename Container_Type >
- struct thread_join_guard
- {
- Container_Type & container;
- explicit thread_join_guard( Container_Type& container_ ) : container( container_ ) {}
- ~thread_join_guard()
- {
- for ( auto& the_thread : container )
- if ( the_thread.joinable() )
- the_thread.join();
- }
- };
- }//namespace simple_thread_pool_private_sdnjasfdlkj
- struct simple_thread_pool
- {
- typedef std::function<void()> function_type;
- std::atomic_bool all_done_flag;
- std::queue<function_type> work_queue;
- std::mutex work_queue_mutex;
- std::vector<std::thread> thread_array;
- simple_thread_pool_private_sdnjasfdlkj::thread_join_guard<std::vector<std::thread>> joiner;
- simple_thread_pool() : all_done_flag{ false }, joiner{ thread_array }
- {
- std::size_t const max_threads = std::thread::hardware_concurrency();
- for ( std::size_t index = 0; index != max_threads; ++index )
- thread_array.push_back( std::thread{ &simple_thread_pool::work_loader, this } );
- }
- ~simple_thread_pool()
- {
- all_done_flag = true;
- }
- template< typename Function >
- void commit_work( Function f )
- {
- std::lock_guard<std::mutex> lk{ work_queue_mutex };
- work_queue.emplace( function_type{f} );
- }
- void work_loader()
- {
- while ( ! all_done_flag )
- {
- function_type current_work;
- {
- std::lock_guard<std::mutex> lg{ work_queue_mutex };
- if ( work_queue.empty() )
- {
- current_work = [](){ std::this_thread::yield(); };
- }
- else
- {
- current_work = work_queue.front();
- work_queue.pop();
- }
- }
- current_work();
- }
- }
- simple_thread_pool( simple_thread_pool const& ) = delete;
- simple_thread_pool& operator = ( simple_thread_pool const& ) = delete;
- simple_thread_pool( simple_thread_pool && ) = delete;
- simple_thread_pool& operator = ( simple_thread_pool && ) = delete;
- };//struct simple_thead_pool
复制代码 随手写了准备这么用的:
- std::vector<result_type> accumulator_array( ... );
- {
- simple_thread_pool stp;
- for ( ... )
- {
- stp.commit_work( [&accumulator_array,..]{...;} );
- }
- }
- auto const ans = *std::max_element( accumulator_array.begin(), accumulator_array.end() );
复制代码 发现老是在退出前还没有执行完 commit_work 注册的函数~~ |
|