2
閱讀boost :: asio :: deadline_timer的文檔後,似乎io_service :: run()和處理程序方法在同一線程上調用。在後臺線程上運行io_service對象時,是否有任何方法在一個線程上創建計時器?這裏非阻塞提升io_service for deadline_timers
閱讀boost :: asio :: deadline_timer的文檔後,似乎io_service :: run()和處理程序方法在同一線程上調用。在後臺線程上運行io_service對象時,是否有任何方法在一個線程上創建計時器?這裏非阻塞提升io_service for deadline_timers
的樂趣和榮耀是如何線程隊列ASIO期限計時器結合起來,從期限定時器派遣非阻塞任務:
#ifndef HEADER_GUARD_CUSTOM_THREADPOOL_HPP
#define HEADER_GUARD_CUSTOM_THREADPOOL_HPP
#include <boost/function.hpp>
#include <boost/optional.hpp>
#include <boost/bind.hpp>
#include <boost/thread.hpp>
#include <boost/atomic.hpp>
#include <boost/phoenix.hpp>
#include <boost/make_shared.hpp>
#include <iostream>
#include <string>
#include <deque>
namespace custom {
using namespace boost;
class thread_pool
{
private:
mutex mx;
condition_variable cv;
typedef function<void()> job_t;
std::deque<job_t> _queue;
thread_group pool;
boost::atomic_bool shutdown;
static void worker_thread(thread_pool& q)
{
while (optional<job_t> job = q.dequeue())
(*job)();
}
public:
thread_pool() : shutdown(false) {
//LOG_INFO_MESSAGE << "Number of possible Threads: " << boost::thread::hardware_concurrency() << std::endl;
for (unsigned i = 0; i < boost::thread::hardware_concurrency(); ++i){
pool.create_thread(bind(worker_thread, ref(*this)));
}
}
void enqueue(job_t job)
{
lock_guard<mutex> lk(mx);
_queue.push_back(job);
cv.notify_one();
}
optional<job_t> dequeue()
{
unique_lock<mutex> lk(mx);
namespace phx = boost::phoenix;
cv.wait(lk, phx::ref(shutdown) || !phx::empty(phx::ref(_queue)));
if (_queue.empty())
return none;
job_t job = _queue.front();
_queue.pop_front();
return job;
}
~thread_pool()
{
shutdown = true;
{
lock_guard<mutex> lk(mx);
cv.notify_all();
}
pool.join_all();
}
};
}
#endif // HEADER_GUARD_CUSTOM_THREADPOOL_HPP
和簡單測試程序:
#include <boost/asio.hpp>
namespace a = boost::asio;
using error = boost::system::error_code;
void timer_loop(a::deadline_timer& tim, custom::thread_pool& pool) {
static boost::atomic_int count(0);
tim.expires_from_now(boost::posix_time::milliseconds(10));
tim.async_wait([&](error ec) {
if (!ec && (++count < 100)) {
int id = count;
pool.enqueue([id] {
std::cout << "timer callback " << id << " started on thread " << boost::this_thread::get_id() << "\n";
boost::this_thread::sleep_for(boost::chrono::milliseconds(rand()%1000));
std::cout << "timer callback " << id << " completed\n";
});
std::cout << "Job " << id << " enqueued" << "\n";
timer_loop(tim, pool);
}
});
}
int main()
{
a::io_service svc;
a::deadline_timer tim(svc);
custom::thread_pool pool;
timer_loop(tim, pool);
svc.run();
}
你想達到什麼目的?您可以根據需要使用您的服務運行儘可能多的IO線程。所以,如果你想每隔一段時間發出一個後臺線程的信號,只需要提出一個條件變量或其他東西? – sehe 2014-11-03 21:16:58
謝謝你的答案。實際上,它需要使線程使回調成爲非阻塞狀態。在正常實現時,只要我們調用io_service :: run()方法,它就會被阻塞直到時間計時器到期。所以這兩個線程都需要獨立。 – 2014-11-11 14:08:36