904 lines
22 KiB
C++
904 lines
22 KiB
C++
//===----------------------------------------------------------------------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is dual licensed under the MIT and the University of Illinois Open
|
|
// Source Licenses. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Copyright (C) 2011 Vicente J. Botet Escriba
|
|
//
|
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
// <boost/thread/future.hpp>
|
|
|
|
// template <class F, class... Args>
|
|
// future<typename result_of<F(Args...)>::type>
|
|
// async(F&& f, Args&&... args);
|
|
|
|
// template <class F, class... Args>
|
|
// future<typename result_of<F(Args...)>::type>
|
|
// async(launch policy, F&& f, Args&&... args);
|
|
|
|
//#define BOOST_THREAD_VERSION 3
|
|
#define BOOST_THREAD_VERSION 4
|
|
#include <boost/config.hpp>
|
|
#if ! defined BOOST_NO_CXX11_DECLTYPE
|
|
#define BOOST_RESULT_OF_USE_DECLTYPE
|
|
#endif
|
|
#include <iostream>
|
|
#include <boost/thread/future.hpp>
|
|
#include <boost/thread/thread.hpp>
|
|
#include <boost/thread/detail/memory.hpp>
|
|
#include <boost/thread/csbl/memory/unique_ptr.hpp>
|
|
#include <memory>
|
|
#include <boost/detail/lightweight_test.hpp>
|
|
|
|
typedef boost::chrono::high_resolution_clock Clock;
|
|
typedef boost::chrono::milliseconds ms;
|
|
|
|
class A
|
|
{
|
|
long data_;
|
|
|
|
public:
|
|
typedef long result_type;
|
|
|
|
explicit A(long i) :
|
|
data_(i)
|
|
{
|
|
}
|
|
|
|
long doit() const
|
|
{
|
|
boost::this_thread::sleep_for(ms(200));
|
|
return data_;
|
|
}
|
|
long operator()() const
|
|
{
|
|
boost::this_thread::sleep_for(ms(200));
|
|
return data_;
|
|
}
|
|
};
|
|
|
|
class MoveOnly
|
|
{
|
|
public:
|
|
typedef int result_type;
|
|
|
|
int value;
|
|
|
|
BOOST_THREAD_MOVABLE_ONLY(MoveOnly)
|
|
MoveOnly()
|
|
{
|
|
value = 0;
|
|
}
|
|
MoveOnly( BOOST_THREAD_RV_REF(MoveOnly))
|
|
{
|
|
value = 1;
|
|
}
|
|
MoveOnly& operator=(BOOST_THREAD_RV_REF(MoveOnly))
|
|
{
|
|
value = 2;
|
|
return *this;
|
|
}
|
|
|
|
int operator()() const
|
|
{
|
|
boost::this_thread::sleep_for(ms(200));
|
|
return 3;
|
|
}
|
|
template <typename OS>
|
|
friend OS& operator<<(OS& os, MoveOnly const& v)
|
|
{
|
|
os << v.value;
|
|
return os;
|
|
}
|
|
};
|
|
|
|
namespace boost
|
|
{
|
|
BOOST_THREAD_DCL_MOVABLE (MoveOnly)
|
|
}
|
|
|
|
int f0()
|
|
{
|
|
boost::this_thread::sleep_for(ms(200));
|
|
return 3;
|
|
}
|
|
|
|
int i = 0;
|
|
|
|
int& f1()
|
|
{
|
|
boost::this_thread::sleep_for(ms(200));
|
|
return i;
|
|
}
|
|
|
|
void f2()
|
|
{
|
|
boost::this_thread::sleep_for(ms(200));
|
|
}
|
|
|
|
boost::csbl::unique_ptr<int> f3_0()
|
|
{
|
|
boost::this_thread::sleep_for(ms(200));
|
|
boost::csbl::unique_ptr<int> r( (new int(3)));
|
|
return boost::move(r);
|
|
}
|
|
MoveOnly f3_1()
|
|
{
|
|
boost::this_thread::sleep_for(ms(200));
|
|
MoveOnly r;
|
|
return boost::move(r);
|
|
}
|
|
|
|
boost::csbl::unique_ptr<int> f3(int i)
|
|
{
|
|
boost::this_thread::sleep_for(ms(200));
|
|
return boost::csbl::unique_ptr<int>(new int(i));
|
|
}
|
|
|
|
boost::csbl::unique_ptr<int> f4(
|
|
BOOST_THREAD_RV_REF_BEG boost::csbl::unique_ptr<int> BOOST_THREAD_RV_REF_END p
|
|
)
|
|
{
|
|
boost::this_thread::sleep_for(ms(200));
|
|
return boost::move(p);
|
|
}
|
|
|
|
struct check_timer {
|
|
boost::chrono::nanoseconds delay;
|
|
Clock::time_point start;
|
|
check_timer(boost::chrono::nanoseconds delay)
|
|
: delay(delay)
|
|
, start(Clock::now())
|
|
{
|
|
}
|
|
~check_timer() {
|
|
Clock::time_point now = Clock::now();
|
|
BOOST_TEST(now - start < delay);
|
|
std::cout << __FILE__ << "[" << __LINE__ << "] " << (now - start).count() << std::endl;
|
|
}
|
|
|
|
};
|
|
|
|
int main()
|
|
{
|
|
{
|
|
try {
|
|
boost::async(f0);
|
|
} catch (std::exception& ex)
|
|
{
|
|
std::cout << __FILE__ << "[" << __LINE__ << "]" << ex.what() << std::endl;
|
|
BOOST_TEST(false && "exception thrown");
|
|
}
|
|
catch (...)
|
|
{
|
|
BOOST_TEST(false && "exception thrown");
|
|
}
|
|
}
|
|
{
|
|
try {
|
|
boost::async(boost::launch::async, f0);
|
|
} catch (std::exception& ex)
|
|
{
|
|
std::cout << __FILE__ << "[" << __LINE__ << "]" << ex.what() << std::endl;
|
|
BOOST_TEST(false && "exception thrown");
|
|
}
|
|
catch (...)
|
|
{
|
|
BOOST_TEST(false && "exception thrown");
|
|
}
|
|
}
|
|
#if defined(BOOST_THREAD_PROVIDES_VARIADIC_THREAD)
|
|
std::cout << __FILE__ << "[" << __LINE__ << "]" << std::endl;
|
|
{
|
|
try {
|
|
boost::async(boost::launch::deferred, f0);
|
|
} catch (std::exception& ex)
|
|
{
|
|
std::cout << __FILE__ << "[" << __LINE__ << "]" << ex.what() << std::endl;
|
|
BOOST_TEST(false && "exception thrown");
|
|
}
|
|
catch (...)
|
|
{
|
|
BOOST_TEST(false && "exception thrown");
|
|
}
|
|
}
|
|
#endif
|
|
std::cout << __FILE__ << "[" << __LINE__ << "]" << std::endl;
|
|
{
|
|
try
|
|
{
|
|
boost::future<int> f = boost::async(f0);
|
|
boost::this_thread::sleep_for(ms(300));
|
|
int res;
|
|
{
|
|
check_timer timer(ms(500));
|
|
res = f.get();
|
|
}
|
|
BOOST_TEST(res == 3);
|
|
}
|
|
catch (std::exception& ex)
|
|
{
|
|
std::cout << __FILE__ << "[" << __LINE__ << "]" << ex.what() << std::endl;
|
|
BOOST_TEST(false && "exception thrown");
|
|
}
|
|
catch (...)
|
|
{
|
|
BOOST_TEST(false && "exception thrown");
|
|
}
|
|
|
|
}
|
|
std::cout << __FILE__ << "[" << __LINE__ << "]" << std::endl;
|
|
{
|
|
try
|
|
{
|
|
boost::shared_future<int> f = boost::async(f0).share();
|
|
boost::this_thread::sleep_for(ms(300));
|
|
int res;
|
|
{
|
|
check_timer timer(ms(500));
|
|
res = f.get();
|
|
}
|
|
BOOST_TEST(res == 3);
|
|
}
|
|
catch (std::exception& ex)
|
|
{
|
|
std::cout << __FILE__ << "[" << __LINE__ << "]" << ex.what() << std::endl;
|
|
BOOST_TEST(false && "exception thrown");
|
|
}
|
|
catch (...)
|
|
{
|
|
BOOST_TEST(false && "exception thrown");
|
|
}
|
|
|
|
}
|
|
std::cout << __FILE__ << "[" << __LINE__ << "]" << std::endl;
|
|
{
|
|
try
|
|
{
|
|
boost::future<int> f = boost::async(boost::launch::async, f0);
|
|
boost::this_thread::sleep_for(ms(300));
|
|
int res;
|
|
{
|
|
check_timer timer(ms(500));
|
|
res = f.get();
|
|
}
|
|
BOOST_TEST(res == 3);
|
|
}
|
|
catch (std::exception& ex)
|
|
{
|
|
std::cout << __FILE__ << "[" << __LINE__ << "]" << ex.what() << std::endl;
|
|
BOOST_TEST(false && "exception thrown");
|
|
}
|
|
catch (...)
|
|
{
|
|
BOOST_TEST(false && "exception thrown");
|
|
}
|
|
|
|
}
|
|
std::cout << __FILE__ << "[" << __LINE__ << "]" << std::endl;
|
|
{
|
|
try
|
|
{
|
|
boost::future<long> f = boost::async(boost::launch::async, A(3));
|
|
boost::this_thread::sleep_for(ms(300));
|
|
int res;
|
|
{
|
|
check_timer timer(ms(500));
|
|
res = f.get();
|
|
}
|
|
BOOST_TEST(res == 3);
|
|
}
|
|
catch (std::exception& ex)
|
|
{
|
|
std::cout << __FILE__ << "[" << __LINE__ << "]" << ex.what() << std::endl;
|
|
BOOST_TEST(false && "exception thrown");
|
|
}
|
|
catch (...)
|
|
{
|
|
BOOST_TEST(false && "exception thrown");
|
|
}
|
|
|
|
}
|
|
#if defined BOOST_THREAD_PROVIDES_SIGNATURE_PACKAGED_TASK && defined(BOOST_THREAD_PROVIDES_VARIADIC_THREAD)
|
|
std::cout << __FILE__ << "[" << __LINE__ << "]" << std::endl;
|
|
{
|
|
try
|
|
{
|
|
boost::future<long> f = boost::async(boost::launch::deferred, A(3));
|
|
//boost::this_thread::sleep_for(ms(300));
|
|
int res;
|
|
{
|
|
check_timer timer(ms(500));
|
|
res = f.get();
|
|
}
|
|
BOOST_TEST(res == 3);
|
|
}
|
|
catch (std::exception& ex)
|
|
{
|
|
std::cout << __FILE__ << "[" << __LINE__ << "]" << ex.what() << std::endl;
|
|
BOOST_TEST(false && "exception thrown");
|
|
}
|
|
catch (...)
|
|
{
|
|
BOOST_TEST(false && "exception thrown");
|
|
}
|
|
|
|
}
|
|
#endif
|
|
#if defined(BOOST_THREAD_PROVIDES_VARIADIC_THREAD)
|
|
std::cout << __FILE__ << "[" << __LINE__ << "]" << std::endl;
|
|
{
|
|
try
|
|
{
|
|
A a(3);
|
|
boost::future<long> f = boost::async(boost::launch::async, &A::doit, &a);
|
|
boost::this_thread::sleep_for(ms(300));
|
|
int res;
|
|
{
|
|
check_timer timer(ms(500));
|
|
res = f.get();
|
|
}
|
|
BOOST_TEST(res == 3);
|
|
}
|
|
catch (std::exception& ex)
|
|
{
|
|
std::cout << __FILE__ << "[" << __LINE__ << "]" << ex.what() << std::endl;
|
|
BOOST_TEST(false && "exception thrown");
|
|
}
|
|
catch (...)
|
|
{
|
|
BOOST_TEST(false && "exception thrown");
|
|
}
|
|
|
|
}
|
|
std::cout << __FILE__ << "[" << __LINE__ << "]" << std::endl;
|
|
{
|
|
try
|
|
{
|
|
A a(3);
|
|
boost::future<long> f = boost::async(boost::launch::deferred, &A::doit, &a);
|
|
boost::this_thread::sleep_for(ms(300));
|
|
int res;
|
|
{
|
|
check_timer timer(ms(500));
|
|
res = f.get();
|
|
}
|
|
BOOST_TEST(res == 3);
|
|
}
|
|
catch (std::exception& ex)
|
|
{
|
|
std::cout << __FILE__ << "[" << __LINE__ << "]" << ex.what() << std::endl;
|
|
BOOST_TEST(false && "exception thrown");
|
|
}
|
|
catch (...)
|
|
{
|
|
BOOST_TEST(false && "exception thrown");
|
|
}
|
|
|
|
}
|
|
#endif
|
|
std::cout << __FILE__ << "[" << __LINE__ << "]" << std::endl;
|
|
{
|
|
try
|
|
{
|
|
boost::future<int> f = boost::async(boost::launch::async, BOOST_THREAD_MAKE_RV_REF(MoveOnly()));
|
|
boost::this_thread::sleep_for(ms(300));
|
|
int res;
|
|
{
|
|
check_timer timer(ms(500));
|
|
res = f.get();
|
|
}
|
|
BOOST_TEST(res == 3);
|
|
}
|
|
catch (std::exception& ex)
|
|
{
|
|
std::cout << __FILE__ << "[" << __LINE__ << "]" << ex.what() << std::endl;
|
|
BOOST_TEST(false && "exception thrown");
|
|
}
|
|
catch (...)
|
|
{
|
|
BOOST_TEST(false && "exception thrown");
|
|
}
|
|
}
|
|
#if defined BOOST_THREAD_PROVIDES_SIGNATURE_PACKAGED_TASK && defined(BOOST_THREAD_PROVIDES_VARIADIC_THREAD)
|
|
std::cout << __FILE__ << "[" << __LINE__ << "]" << std::endl;
|
|
{
|
|
try
|
|
{
|
|
boost::future<int> f = boost::async(boost::launch::deferred, BOOST_THREAD_MAKE_RV_REF(MoveOnly()));
|
|
boost::this_thread::sleep_for(ms(300));
|
|
int res;
|
|
{
|
|
check_timer timer(ms(500));
|
|
res = f.get();
|
|
}
|
|
BOOST_TEST(res == 3);
|
|
}
|
|
catch (std::exception& ex)
|
|
{
|
|
std::cout << __FILE__ << "[" << __LINE__ << "]" << ex.what() << std::endl;
|
|
BOOST_TEST(false && "exception thrown");
|
|
}
|
|
catch (...)
|
|
{
|
|
BOOST_TEST(false && "exception thrown");
|
|
}
|
|
}
|
|
#endif
|
|
std::cout << __FILE__ << "[" << __LINE__ << "]" << std::endl;
|
|
{
|
|
try
|
|
{
|
|
boost::future<int> f = boost::async(boost::launch::any, f0);
|
|
boost::this_thread::sleep_for(ms(300));
|
|
int res;
|
|
{
|
|
check_timer timer(ms(500));
|
|
res = f.get();
|
|
}
|
|
BOOST_TEST(res == 3);
|
|
}
|
|
catch (std::exception& ex)
|
|
{
|
|
std::cout << __FILE__ << "[" << __LINE__ << "]" << ex.what() << std::endl;
|
|
BOOST_TEST(false && "exception thrown");
|
|
}
|
|
catch (...)
|
|
{
|
|
BOOST_TEST(false && "exception thrown");
|
|
}
|
|
}
|
|
#if defined BOOST_THREAD_PROVIDES_SIGNATURE_PACKAGED_TASK && defined(BOOST_THREAD_PROVIDES_VARIADIC_THREAD)
|
|
std::cout << __FILE__ <<"["<<__LINE__<<"]"<<std::endl;
|
|
{
|
|
try
|
|
{
|
|
boost::future<int> f = boost::async(boost::launch::deferred, f0);
|
|
//boost::this_thread::sleep_for(ms(300));
|
|
int res;
|
|
{
|
|
check_timer timer(ms(500));
|
|
res = f.get();
|
|
}
|
|
BOOST_TEST(res == 3);
|
|
}
|
|
catch (std::exception& ex)
|
|
{
|
|
std::cout << __FILE__ <<"["<<__LINE__<<"]"<<ex.what() << std::endl;
|
|
BOOST_TEST(false && "exception thrown");
|
|
}
|
|
catch (...)
|
|
{
|
|
BOOST_TEST(false && "exception thrown");
|
|
}
|
|
}
|
|
#endif
|
|
std::cout << __FILE__ << "[" << __LINE__ << "]" << std::endl;
|
|
{
|
|
try
|
|
{
|
|
boost::future<int&> f = boost::async(f1);
|
|
boost::this_thread::sleep_for(ms(300));
|
|
int* res;
|
|
{
|
|
check_timer timer(ms(500));
|
|
res = &f.get();
|
|
}
|
|
BOOST_TEST(res == &i);
|
|
}
|
|
catch (std::exception& ex)
|
|
{
|
|
std::cout << __FILE__ << "[" << __LINE__ << "]" << ex.what() << std::endl;
|
|
BOOST_TEST(false && "exception thrown");
|
|
}
|
|
catch (...)
|
|
{
|
|
BOOST_TEST(false && "exception thrown");
|
|
}
|
|
}
|
|
std::cout << __FILE__ << "[" << __LINE__ << "]" << std::endl;
|
|
{
|
|
try
|
|
{
|
|
boost::future<int&> f = boost::async(boost::launch::async, f1);
|
|
boost::this_thread::sleep_for(ms(300));
|
|
int* res;
|
|
{
|
|
check_timer timer(ms(500));
|
|
res = &f.get();
|
|
}
|
|
BOOST_TEST(res == &i);
|
|
}
|
|
catch (std::exception& ex)
|
|
{
|
|
std::cout << __FILE__ << "[" << __LINE__ << "]" << ex.what() << std::endl;
|
|
BOOST_TEST(false && "exception thrown");
|
|
}
|
|
catch (...)
|
|
{
|
|
BOOST_TEST(false && "exception thrown");
|
|
}
|
|
}
|
|
std::cout << __FILE__ << "[" << __LINE__ << "]" << std::endl;
|
|
{
|
|
try
|
|
{
|
|
boost::future<int&> f = boost::async(boost::launch::any, f1);
|
|
boost::this_thread::sleep_for(ms(300));
|
|
int* res;
|
|
{
|
|
check_timer timer(ms(500));
|
|
res = &f.get();
|
|
}
|
|
BOOST_TEST(res == &i);
|
|
}
|
|
catch (std::exception& ex)
|
|
{
|
|
std::cout << __FILE__ << "[" << __LINE__ << "]" << ex.what() << std::endl;
|
|
BOOST_TEST(false && "exception thrown");
|
|
}
|
|
catch (...)
|
|
{
|
|
BOOST_TEST(false && "exception thrown");
|
|
}
|
|
}
|
|
#if defined BOOST_THREAD_PROVIDES_SIGNATURE_PACKAGED_TASK && defined(BOOST_THREAD_PROVIDES_VARIADIC_THREAD)
|
|
std::cout << __FILE__ <<"["<<__LINE__<<"]"<<std::endl;
|
|
{
|
|
try
|
|
{
|
|
boost::future<int&> f = boost::async(boost::launch::deferred, f1);
|
|
//boost::this_thread::sleep_for(ms(300));
|
|
int* res;
|
|
{
|
|
check_timer timer(ms(500));
|
|
res = &f.get();
|
|
}
|
|
BOOST_TEST(res == &i);
|
|
}
|
|
catch (std::exception& ex)
|
|
{
|
|
std::cout << __FILE__ <<"["<<__LINE__<<"]"<<ex.what() << std::endl;
|
|
BOOST_TEST(false && "exception thrown");
|
|
}
|
|
catch (...)
|
|
{
|
|
BOOST_TEST(false && "exception thrown");
|
|
}
|
|
}
|
|
#endif
|
|
std::cout << __FILE__ << "[" << __LINE__ << "]" << std::endl;
|
|
{
|
|
try
|
|
{
|
|
boost::future<void> f = boost::async(f2);
|
|
boost::this_thread::sleep_for(ms(300));
|
|
{
|
|
check_timer timer(ms(500));
|
|
f.get();
|
|
}
|
|
}
|
|
catch (std::exception& ex)
|
|
{
|
|
std::cout << __FILE__ << "[" << __LINE__ << "]" << ex.what() << std::endl;
|
|
BOOST_TEST(false && "exception thrown");
|
|
}
|
|
catch (...)
|
|
{
|
|
BOOST_TEST(false && "exception thrown");
|
|
}
|
|
}
|
|
std::cout << __FILE__ << "[" << __LINE__ << "]" << std::endl;
|
|
{
|
|
try
|
|
{
|
|
boost::future<void> f = boost::async(boost::launch::async, f2);
|
|
boost::this_thread::sleep_for(ms(300));
|
|
{
|
|
check_timer timer(ms(500));
|
|
f.get();
|
|
}
|
|
}
|
|
catch (std::exception& ex)
|
|
{
|
|
std::cout << __FILE__ << "[" << __LINE__ << "]" << ex.what() << std::endl;
|
|
BOOST_TEST(false && "exception thrown");
|
|
}
|
|
catch (...)
|
|
{
|
|
BOOST_TEST(false && "exception thrown");
|
|
}
|
|
}
|
|
std::cout << __FILE__ << "[" << __LINE__ << "]" << std::endl;
|
|
{
|
|
try
|
|
{
|
|
boost::future<void> f = boost::async(boost::launch::any, f2);
|
|
boost::this_thread::sleep_for(ms(300));
|
|
{
|
|
check_timer timer(ms(500));
|
|
f.get();
|
|
}
|
|
}
|
|
catch (std::exception& ex)
|
|
{
|
|
std::cout << __FILE__ << "[" << __LINE__ << "]" << ex.what() << std::endl;
|
|
BOOST_TEST(false && "exception thrown");
|
|
}
|
|
catch (...)
|
|
{
|
|
BOOST_TEST(false && "exception thrown");
|
|
}
|
|
}
|
|
#if defined BOOST_THREAD_PROVIDES_SIGNATURE_PACKAGED_TASK && defined(BOOST_THREAD_PROVIDES_VARIADIC_THREAD)
|
|
std::cout << __FILE__ <<"["<<__LINE__<<"]"<<std::endl;
|
|
{
|
|
try
|
|
{
|
|
boost::future<void> f = boost::async(boost::launch::deferred, f2);
|
|
//boost::this_thread::sleep_for(ms(300));
|
|
{
|
|
check_timer timer(ms(500));
|
|
f.get();
|
|
}
|
|
}
|
|
catch (std::exception& ex)
|
|
{
|
|
std::cout << __FILE__ <<"["<<__LINE__<<"]"<<ex.what() << std::endl;
|
|
BOOST_TEST(false && "exception thrown");
|
|
}
|
|
catch (...)
|
|
{
|
|
BOOST_TEST(false && "exception thrown");
|
|
}
|
|
}
|
|
#endif
|
|
|
|
std::cout << __FILE__ << "[" << __LINE__ << "]" << std::endl;
|
|
{
|
|
try
|
|
{
|
|
boost::future<MoveOnly> f = boost::async(&f3_1);
|
|
boost::this_thread::sleep_for(ms(300));
|
|
MoveOnly res;
|
|
{
|
|
check_timer timer(ms(500));
|
|
res = f.get();
|
|
}
|
|
BOOST_TEST_EQ(res.value, 2);
|
|
}
|
|
catch (std::exception& ex)
|
|
{
|
|
std::cout << __FILE__ << "[" << __LINE__ << "]" << ex.what() << std::endl;
|
|
BOOST_TEST(false && "exception thrown");
|
|
}
|
|
catch (...)
|
|
{
|
|
BOOST_TEST(false && "exception thrown");
|
|
}
|
|
}
|
|
#if defined BOOST_THREAD_PROVIDES_SIGNATURE_PACKAGED_TASK && defined(BOOST_THREAD_PROVIDES_VARIADIC_THREAD)
|
|
std::cout << __FILE__ << "[" << __LINE__ << "]" << std::endl;
|
|
{
|
|
try
|
|
{
|
|
boost::future<MoveOnly> f = boost::async(boost::launch::deferred, &f3_1);
|
|
//boost::this_thread::sleep_for(ms(300));
|
|
MoveOnly res;
|
|
{
|
|
check_timer timer(ms(500));
|
|
res = f.get();
|
|
}
|
|
BOOST_TEST_EQ(res.value, 2);
|
|
}
|
|
catch (std::exception& ex)
|
|
{
|
|
std::cout << __FILE__ << "[" << __LINE__ << "]" << ex.what() << std::endl;
|
|
BOOST_TEST(false && "exception thrown");
|
|
}
|
|
catch (...)
|
|
{
|
|
BOOST_TEST(false && "exception thrown");
|
|
}
|
|
}
|
|
#endif
|
|
std::cout << __FILE__ << "[" << __LINE__ << "]" << std::endl;
|
|
{
|
|
try
|
|
{
|
|
boost::future<MoveOnly> f;
|
|
f = boost::async(&f3_1);
|
|
boost::this_thread::sleep_for(ms(300));
|
|
MoveOnly res;
|
|
{
|
|
check_timer timer(ms(500));
|
|
res = f.get();
|
|
}
|
|
BOOST_TEST(res.value == 2);
|
|
}
|
|
catch (std::exception& ex)
|
|
{
|
|
std::cout << __FILE__ << "[" << __LINE__ << "]" << ex.what() << std::endl;
|
|
BOOST_TEST(false && "exception thrown");
|
|
}
|
|
catch (...)
|
|
{
|
|
BOOST_TEST(false && "exception thrown");
|
|
}
|
|
}
|
|
std::cout << __FILE__ << "[" << __LINE__ << "]" << std::endl;
|
|
{
|
|
try
|
|
{
|
|
boost::future<boost::csbl::unique_ptr<int> > f = boost::async(&f3_0);
|
|
boost::this_thread::sleep_for(ms(300));
|
|
boost::csbl::unique_ptr<int> res;
|
|
{
|
|
check_timer timer(ms(500));
|
|
res = f.get();
|
|
}
|
|
BOOST_TEST(*res == 3);
|
|
}
|
|
catch (std::exception& ex)
|
|
{
|
|
std::cout << __FILE__ << "[" << __LINE__ << "]" << ex.what() << std::endl;
|
|
BOOST_TEST(false && "exception thrown");
|
|
}
|
|
catch (...)
|
|
{
|
|
BOOST_TEST(false && "exception thrown");
|
|
}
|
|
}
|
|
|
|
#if defined BOOST_THREAD_PROVIDES_SIGNATURE_PACKAGED_TASK && defined(BOOST_THREAD_PROVIDES_VARIADIC_THREAD)
|
|
std::cout << __FILE__ <<"["<<__LINE__<<"]"<<std::endl;
|
|
{
|
|
try
|
|
{
|
|
boost::future<boost::csbl::unique_ptr<int> > f = boost::async(boost::launch::async, &f3, 3);
|
|
boost::this_thread::sleep_for(ms(300));
|
|
boost::csbl::unique_ptr<int> res;
|
|
{
|
|
check_timer timer(ms(500));
|
|
res = f.get();
|
|
}
|
|
BOOST_TEST(*res == 3);
|
|
}
|
|
catch (std::exception& ex)
|
|
{
|
|
std::cout << __FILE__ <<"["<<__LINE__<<"]"<<ex.what() << std::endl;
|
|
BOOST_TEST(false && "exception thrown");
|
|
}
|
|
catch (...)
|
|
{
|
|
BOOST_TEST(false && "exception thrown");
|
|
}
|
|
}
|
|
std::cout << __FILE__ <<"["<<__LINE__<<"]"<<std::endl;
|
|
{
|
|
try
|
|
{
|
|
boost::future<boost::csbl::unique_ptr<int> > f = boost::async(boost::launch::deferred, &f3, 3);
|
|
//boost::this_thread::sleep_for(ms(300));
|
|
boost::csbl::unique_ptr<int> res;
|
|
{
|
|
check_timer timer(ms(500));
|
|
res = f.get();
|
|
}
|
|
BOOST_TEST(*res == 3);
|
|
}
|
|
catch (std::exception& ex)
|
|
{
|
|
std::cout << __FILE__ <<"["<<__LINE__<<"]"<<ex.what() << std::endl;
|
|
BOOST_TEST(false && "exception thrown");
|
|
}
|
|
catch (...)
|
|
{
|
|
BOOST_TEST(false && "exception thrown");
|
|
}
|
|
}
|
|
std::cout << __FILE__ <<"["<<__LINE__<<"]"<<std::endl;
|
|
{
|
|
try
|
|
{
|
|
boost::future<boost::csbl::unique_ptr<int> > f = boost::async(&f3, 3);
|
|
boost::this_thread::sleep_for(ms(300));
|
|
boost::csbl::unique_ptr<int> res;
|
|
{
|
|
check_timer timer(ms(500));
|
|
res = f.get();
|
|
}
|
|
BOOST_TEST(*res == 3);
|
|
}
|
|
catch (std::exception& ex)
|
|
{
|
|
std::cout << __FILE__ <<"["<<__LINE__<<"]"<<ex.what() << std::endl;
|
|
BOOST_TEST(false && "exception thrown");
|
|
}
|
|
catch (...)
|
|
{
|
|
BOOST_TEST(false && "exception thrown");
|
|
}
|
|
}
|
|
#endif
|
|
|
|
#if defined BOOST_THREAD_PROVIDES_SIGNATURE_PACKAGED_TASK && defined(BOOST_THREAD_PROVIDES_VARIADIC_THREAD)
|
|
std::cout << __FILE__ <<"["<<__LINE__<<"]"<<std::endl;
|
|
{
|
|
try
|
|
{
|
|
boost::future<boost::csbl::unique_ptr<int> > f = boost::async(boost::launch::async, &f4, boost::csbl::unique_ptr<int>(new int(3)));
|
|
boost::this_thread::sleep_for(ms(300));
|
|
boost::csbl::unique_ptr<int> res;
|
|
{
|
|
check_timer timer(ms(500));
|
|
res = f.get();
|
|
}
|
|
BOOST_TEST(*res == 3);
|
|
}
|
|
catch (std::exception& ex)
|
|
{
|
|
std::cout << __FILE__ <<"["<<__LINE__<<"]"<<ex.what() << std::endl;
|
|
BOOST_TEST(false && "exception thrown");
|
|
}
|
|
catch (...)
|
|
{
|
|
BOOST_TEST(false && "exception thrown");
|
|
}
|
|
}
|
|
std::cout << __FILE__ <<"["<<__LINE__<<"]"<<std::endl;
|
|
{
|
|
try
|
|
{
|
|
boost::future<boost::csbl::unique_ptr<int> > f = boost::async(boost::launch::deferred, &f4, boost::csbl::unique_ptr<int>(new int(3)));
|
|
//boost::this_thread::sleep_for(ms(300));
|
|
boost::csbl::unique_ptr<int> res;
|
|
{
|
|
check_timer timer(ms(500));
|
|
res = f.get();
|
|
}
|
|
BOOST_TEST(*res == 3);
|
|
}
|
|
catch (std::exception& ex)
|
|
{
|
|
std::cout << __FILE__ <<"["<<__LINE__<<"]"<<ex.what() << std::endl;
|
|
BOOST_TEST(false && "exception thrown");
|
|
}
|
|
catch (...)
|
|
{
|
|
BOOST_TEST(false && "exception thrown");
|
|
}
|
|
}
|
|
std::cout << __FILE__ <<"["<<__LINE__<<"]"<<std::endl;
|
|
{
|
|
try
|
|
{
|
|
boost::future<boost::csbl::unique_ptr<int> > f = boost::async(&f4, boost::csbl::unique_ptr<int>(new int(3)));
|
|
boost::this_thread::sleep_for(ms(300));
|
|
boost::csbl::unique_ptr<int> res;
|
|
{
|
|
check_timer timer(ms(500));
|
|
res = f.get();
|
|
}
|
|
BOOST_TEST(*res == 3);
|
|
}
|
|
catch (std::exception& ex)
|
|
{
|
|
std::cout << __FILE__ <<"["<<__LINE__<<"]"<<ex.what() << std::endl;
|
|
BOOST_TEST(false && "exception thrown");
|
|
}
|
|
catch (...)
|
|
{
|
|
BOOST_TEST(false && "exception thrown");
|
|
}
|
|
}
|
|
#endif
|
|
return boost::report_errors();
|
|
}
|