我正在尝试将 std::packaged_task 包装在另一个类中,以便与任务调度程序一起使用。
目前,除了 std::future 支持外,我一切正常。为了获得 std::future 支持,我发现我需要将 std::packaged_task 用于它提供的 get_future() 函数。
我整天都在尝试各种方法来让它工作,但我似乎无法使用来自 std::bind 的返回值正确声明和初始化 packaged_task。我试图破译所有相关 libstdc++ 函数的实现,例如 std::async、std::future、std::thread 等,但没有运气。
以下代码是非工作版本和工作版本的实现。要使其正常工作,请取消注释两个 /* --- WORKS*/ 并注释其他相关行。
#include <vector>
#include <deque>
#include <memory>
#include <thread>
#include <mutex>
#include <condition_variable>
#include <future>
#include <iostream>
#include <chrono>
#include <functional>
#include <windows.h>
class task
{
private:
struct task_implementation_base
{
virtual void execute() = 0;
};
template <class callable>
struct task_implementation : public task_implementation_base
{
task_implementation(callable&& f) : /*m_task(std::forward<callable>(f)) WORKS*/m_task(f) { }
void execute() { m_task(); }
//callable m_task; // WORKS
std::packaged_task<typename result_of<callable>::type> m_task;
};
template <class callable>
std::shared_ptr<task_implementation<callable>> make_routine(callable&& f)
{
return std::make_shared<task_implementation<callable>>(std::forward<callable>(f));
}
public:
template <class callable, class... arguments>
task(callable&& f, arguments&&... args) : m_function(make_routine(std::bind(std::forward<callable>(f), std::forward<arguments>(args)...))) {}
void operator()() { run(); }
void run() { m_function->execute(); }
private:
std::shared_ptr<task_implementation_base> m_function;
};
int testint(int i)
{
std::cout << "test6" << " :: ran from thread " << std::this_thread::get_id() << "\n";
fflush(stdout);
return i+100;
}
void test(const char* text)
{
std::cout << text << " :: ran from thread " << std::this_thread::get_id() << "\n";
fflush(stdout);
}
class testclass
{
public:
void print1() { test("test3"); }
void print2() { test("test4"); }
void print3(const char* text) { test(text); }
};
int main()
{
testclass testclass1;
testclass* testclass2 = new testclass;
task test1(test, "test1");
task test2([]() { test("test2"); });
task test3(&testclass::print1, &testclass1);
task test4(&testclass::print2, &*testclass2);
task test5(&testclass::print3, &*testclass2, "test5");
task test6(&testint, 1);
test1();
test2();
test3();
test4();
test5();
test6();
Sleep(2000);
return 0;
}
我在想问题是typename result_of<callable>::type
。我猜它没有正确评估callable
函数的返回类型。
我正在c++ (Built by MinGW-builds project) 4.8.0 20121225 (experimental)
使用Windows 8 64bit
. 我怀疑这些错误无关紧要,因为我想我只是试图以错误的方式完成这项工作,但无论如何这里是错误的粘贴箱:错误