mirror of
https://github.com/boostorg/function.git
synced 2026-01-30 20:02:10 +00:00
Compare commits
34 Commits
sandbox-br
...
boost-1.55
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
29d6fba3cd | ||
|
|
9245ac2a8f | ||
|
|
62cce2aaaf | ||
|
|
352cb183fe | ||
|
|
3ac49dc978 | ||
|
|
1ebe83a832 | ||
|
|
0dc186d891 | ||
|
|
b31584cfb5 | ||
|
|
3193df71b9 | ||
|
|
f85a3db133 | ||
|
|
a0286a58c7 | ||
|
|
1b6a5673cb | ||
|
|
24a7ce00a8 | ||
|
|
c398dfceb3 | ||
|
|
a108a1cf26 | ||
|
|
d68cc8a51c | ||
|
|
cca7b35712 | ||
|
|
9bb12ce87a | ||
|
|
467ae9613f | ||
|
|
2fd383cd2e | ||
|
|
587658b047 | ||
|
|
83309a36c7 | ||
|
|
bfdb5b161d | ||
|
|
c4539395fe | ||
|
|
6147e7ddcc | ||
|
|
1b60e82b2f | ||
|
|
7581949360 | ||
|
|
0b2aeda226 | ||
|
|
2ecd62c612 | ||
|
|
47033bd162 | ||
|
|
c7d5016022 | ||
|
|
d92355cca2 | ||
|
|
0123f84bff | ||
|
|
0207da8008 |
@@ -13,6 +13,15 @@
|
|||||||
|
|
||||||
<itemizedlist spacing="compact">
|
<itemizedlist spacing="compact">
|
||||||
|
|
||||||
|
<listitem><para><bold>Version 1.52.0</bold>: </para>
|
||||||
|
<itemizedlist spacing="compact">
|
||||||
|
<listitem><para>Move constructors and move assignment
|
||||||
|
operators added (only for compilers with C++11 rvalue
|
||||||
|
references support). Original patch
|
||||||
|
contributed by Antony Polukhin.</para></listitem>
|
||||||
|
</itemizedlist>
|
||||||
|
</listitem>
|
||||||
|
|
||||||
<listitem><para><bold>Version 1.37.0</bold>: </para>
|
<listitem><para><bold>Version 1.37.0</bold>: </para>
|
||||||
<itemizedlist spacing="compact">
|
<itemizedlist spacing="compact">
|
||||||
<listitem><para>Improved the performance of Boost.Function's
|
<listitem><para>Improved the performance of Boost.Function's
|
||||||
|
|||||||
@@ -58,7 +58,7 @@
|
|||||||
<para>A function object <code>f</code> of
|
<para>A function object <code>f</code> of
|
||||||
type <code>F</code> is
|
type <code>F</code> is
|
||||||
<emphasis>stateless</emphasis> if it is a function pointer or if
|
<emphasis>stateless</emphasis> if it is a function pointer or if
|
||||||
<code><classname>boost::is_stateless</classname><T></code>
|
<code><classname>boost::is_stateless</classname><F></code>
|
||||||
is true. The construction of or copy to a Boost.Function object
|
is true. The construction of or copy to a Boost.Function object
|
||||||
from a stateless function object will not cause exceptions to be
|
from a stateless function object will not cause exceptions to be
|
||||||
thrown and will not allocate any storage.
|
thrown and will not allocate any storage.
|
||||||
@@ -203,6 +203,15 @@
|
|||||||
<throws><simpara>Will not throw unless copying the target of <code>f</code> throws.</simpara></throws>
|
<throws><simpara>Will not throw unless copying the target of <code>f</code> throws.</simpara></throws>
|
||||||
</constructor>
|
</constructor>
|
||||||
|
|
||||||
|
<constructor>
|
||||||
|
<parameter name="f">
|
||||||
|
<paramtype><classname>functionN</classname>&&</paramtype>
|
||||||
|
</parameter>
|
||||||
|
<requires><simpara>C++11 compatible compiler.</simpara></requires>
|
||||||
|
<postconditions><simpara>Moves the value from <code>f</code> to <code>*this</code>. If the argument has its function object allocated on the heap, its buffer will be assigned to <code>*this</code> leaving argument empty.</simpara></postconditions>
|
||||||
|
<throws><simpara>Will not throw unless argument has its function object allocated not on the heap and copying the target of <code>f</code> throws.</simpara></throws>
|
||||||
|
</constructor>
|
||||||
|
|
||||||
<constructor>
|
<constructor>
|
||||||
<template>
|
<template>
|
||||||
<template-type-parameter name="F"/>
|
<template-type-parameter name="F"/>
|
||||||
@@ -237,6 +246,15 @@
|
|||||||
<postconditions><simpara>If copy construction does not throw, <code>*this</code> targets a copy of <code>f</code>'s target, if it has one, or is empty if <code>f.<methodname>empty</methodname>()</code>. If copy construction does throw, <code>this-><methodname>empty</methodname>()</code>.</simpara></postconditions>
|
<postconditions><simpara>If copy construction does not throw, <code>*this</code> targets a copy of <code>f</code>'s target, if it has one, or is empty if <code>f.<methodname>empty</methodname>()</code>. If copy construction does throw, <code>this-><methodname>empty</methodname>()</code>.</simpara></postconditions>
|
||||||
</copy-assignment>
|
</copy-assignment>
|
||||||
|
|
||||||
|
<copy-assignment>
|
||||||
|
<parameter name="f">
|
||||||
|
<paramtype><classname>functionN</classname>&&</paramtype>
|
||||||
|
</parameter>
|
||||||
|
<requires><simpara>C++11 compatible compiler.</simpara></requires>
|
||||||
|
<postconditions><simpara>Moves the value from <code>f</code> to <code>*this</code>. If the argument has its function object allocated on the heap, its buffer will be assigned to <code>*this</code> leaving argument empty.</simpara></postconditions>
|
||||||
|
<throws><simpara>Will not throw unless argument has its function object allocated not on the heap and copying the target of <code>f</code> throws.</simpara></throws>
|
||||||
|
</copy-assignment>
|
||||||
|
|
||||||
<method-group name="modifiers">
|
<method-group name="modifiers">
|
||||||
<method name="swap">
|
<method name="swap">
|
||||||
<type>void</type>
|
<type>void</type>
|
||||||
@@ -608,6 +626,15 @@
|
|||||||
<throws><simpara>Will not throw unless copying the target of <code>f</code> throws.</simpara></throws>
|
<throws><simpara>Will not throw unless copying the target of <code>f</code> throws.</simpara></throws>
|
||||||
</constructor>
|
</constructor>
|
||||||
|
|
||||||
|
<constructor>
|
||||||
|
<parameter name="f">
|
||||||
|
<paramtype><classname>functionN</classname>&&</paramtype>
|
||||||
|
</parameter>
|
||||||
|
<requires><simpara>C++11 compatible compiler.</simpara></requires>
|
||||||
|
<postconditions><simpara>Moves the value from <code>f</code> to <code>*this</code>. If the argument has its function object allocated on the heap, its buffer will be assigned to <code>*this</code> leaving argument empty.</simpara></postconditions>
|
||||||
|
<throws><simpara>Will not throw unless argument has its function object allocated not on the heap and copying the target of <code>f</code> throws.</simpara></throws>
|
||||||
|
</constructor>
|
||||||
|
|
||||||
<constructor>
|
<constructor>
|
||||||
<parameter name="f">
|
<parameter name="f">
|
||||||
<paramtype>const <classname>function</classname>&</paramtype>
|
<paramtype>const <classname>function</classname>&</paramtype>
|
||||||
@@ -616,6 +643,15 @@
|
|||||||
<throws><simpara>Will not throw unless copying the target of <code>f</code> throws.</simpara></throws>
|
<throws><simpara>Will not throw unless copying the target of <code>f</code> throws.</simpara></throws>
|
||||||
</constructor>
|
</constructor>
|
||||||
|
|
||||||
|
<constructor>
|
||||||
|
<parameter name="f">
|
||||||
|
<paramtype><classname>function</classname>&&</paramtype>
|
||||||
|
</parameter>
|
||||||
|
<requires><simpara>C++11 compatible compiler.</simpara></requires>
|
||||||
|
<postconditions><simpara>Moves the value from <code>f</code> to <code>*this</code>. If the argument has its function object allocated on the heap, its buffer will be assigned to <code>*this</code> leaving argument empty.</simpara></postconditions>
|
||||||
|
<throws><simpara>Will not throw unless argument has its function object allocated not on the heap and copying the target of <code>f</code> throws.</simpara></throws>
|
||||||
|
</constructor>
|
||||||
|
|
||||||
<constructor>
|
<constructor>
|
||||||
<template>
|
<template>
|
||||||
<template-type-parameter name="F"/>
|
<template-type-parameter name="F"/>
|
||||||
@@ -645,11 +681,20 @@
|
|||||||
|
|
||||||
<copy-assignment>
|
<copy-assignment>
|
||||||
<parameter name="f">
|
<parameter name="f">
|
||||||
<paramtype>const <classname>function</classname>&</paramtype>
|
<paramtype>const <classname>functionN</classname>&</paramtype>
|
||||||
</parameter>
|
</parameter>
|
||||||
<postconditions><simpara>If copy construction does not throw, <code>*this</code> targets a copy of <code>f</code>'s target, if it has one, or is empty if <code>f.<methodname>empty</methodname>()</code>. If copy construction does throw, <code>this-><methodname>empty</methodname>()</code>.</simpara></postconditions>
|
<postconditions><simpara>If copy construction does not throw, <code>*this</code> targets a copy of <code>f</code>'s target, if it has one, or is empty if <code>f.<methodname>empty</methodname>()</code>. If copy construction does throw, <code>this-><methodname>empty</methodname>()</code>.</simpara></postconditions>
|
||||||
</copy-assignment>
|
</copy-assignment>
|
||||||
|
|
||||||
|
<copy-assignment>
|
||||||
|
<parameter name="f">
|
||||||
|
<paramtype><classname>functionN</classname>&&</paramtype>
|
||||||
|
</parameter>
|
||||||
|
<requires><simpara>C++11 compatible compiler.</simpara></requires>
|
||||||
|
<postconditions><simpara>Moves the value from <code>f</code> to <code>*this</code>. If the argument has its function object allocated on the heap, its buffer will be assigned to <code>*this</code> leaving argument empty.</simpara></postconditions>
|
||||||
|
<throws><simpara>Will not throw unless argument has its function object allocated not on the heap and copying the target of <code>f</code> throws.</simpara></throws>
|
||||||
|
</copy-assignment>
|
||||||
|
|
||||||
<copy-assignment>
|
<copy-assignment>
|
||||||
<parameter name="f">
|
<parameter name="f">
|
||||||
<paramtype>const <classname>function</classname>&</paramtype>
|
<paramtype>const <classname>function</classname>&</paramtype>
|
||||||
@@ -658,6 +703,15 @@
|
|||||||
<throws><simpara>Will not throw when the target of <code>f</code> is a stateless function object or a reference to the function object. If copy construction does throw, <code>this-><methodname>empty</methodname>()</code>.</simpara></throws>
|
<throws><simpara>Will not throw when the target of <code>f</code> is a stateless function object or a reference to the function object. If copy construction does throw, <code>this-><methodname>empty</methodname>()</code>.</simpara></throws>
|
||||||
</copy-assignment>
|
</copy-assignment>
|
||||||
|
|
||||||
|
<copy-assignment>
|
||||||
|
<parameter name="f">
|
||||||
|
<paramtype><classname>function</classname>&&</paramtype>
|
||||||
|
</parameter>
|
||||||
|
<requires><simpara>C++11 compatible compiler.</simpara></requires>
|
||||||
|
<postconditions><simpara>Moves the value from <code>f</code> to <code>*this</code>. If the argument has its function object allocated on the heap, its buffer will be assigned to <code>*this</code> leaving argument empty.</simpara></postconditions>
|
||||||
|
<throws><simpara>Will not throw unless argument has its function object allocated not on the heap and copying the target of <code>f</code> throws.</simpara></throws>
|
||||||
|
</copy-assignment>
|
||||||
|
|
||||||
<method-group name="modifiers">
|
<method-group name="modifiers">
|
||||||
<method name="swap">
|
<method name="swap">
|
||||||
<type>void</type>
|
<type>void</type>
|
||||||
|
|||||||
@@ -677,7 +677,7 @@ namespace boost {
|
|||||||
|
|
||||||
vtable_type* get_vtable() const {
|
vtable_type* get_vtable() const {
|
||||||
return reinterpret_cast<vtable_type*>(
|
return reinterpret_cast<vtable_type*>(
|
||||||
reinterpret_cast<std::size_t>(vtable) & ~static_cast<size_t>(0x01));
|
reinterpret_cast<std::size_t>(vtable) & ~static_cast<std::size_t>(0x01));
|
||||||
}
|
}
|
||||||
|
|
||||||
struct clear_type {};
|
struct clear_type {};
|
||||||
@@ -749,6 +749,13 @@ namespace boost {
|
|||||||
this->assign_to_own(f);
|
this->assign_to_own(f);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifndef BOOST_NO_CXX11_RVALUE_REFERENCES
|
||||||
|
BOOST_FUNCTION_FUNCTION(BOOST_FUNCTION_FUNCTION&& f) : function_base()
|
||||||
|
{
|
||||||
|
this->move_assign(f);
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
~BOOST_FUNCTION_FUNCTION() { clear(); }
|
~BOOST_FUNCTION_FUNCTION() { clear(); }
|
||||||
|
|
||||||
result_type operator()(BOOST_FUNCTION_PARMS) const
|
result_type operator()(BOOST_FUNCTION_PARMS) const
|
||||||
@@ -831,6 +838,26 @@ namespace boost {
|
|||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifndef BOOST_NO_CXX11_RVALUE_REFERENCES
|
||||||
|
// Move assignment from another BOOST_FUNCTION_FUNCTION
|
||||||
|
BOOST_FUNCTION_FUNCTION& operator=(BOOST_FUNCTION_FUNCTION&& f)
|
||||||
|
{
|
||||||
|
|
||||||
|
if (&f == this)
|
||||||
|
return *this;
|
||||||
|
|
||||||
|
this->clear();
|
||||||
|
BOOST_TRY {
|
||||||
|
this->move_assign(f);
|
||||||
|
} BOOST_CATCH (...) {
|
||||||
|
vtable = 0;
|
||||||
|
BOOST_RETHROW;
|
||||||
|
}
|
||||||
|
BOOST_CATCH_END
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
void swap(BOOST_FUNCTION_FUNCTION& other)
|
void swap(BOOST_FUNCTION_FUNCTION& other)
|
||||||
{
|
{
|
||||||
if (&other == this)
|
if (&other == this)
|
||||||
@@ -1063,12 +1090,26 @@ public:
|
|||||||
|
|
||||||
function(const base_type& f) : base_type(static_cast<const base_type&>(f)){}
|
function(const base_type& f) : base_type(static_cast<const base_type&>(f)){}
|
||||||
|
|
||||||
|
#ifndef BOOST_NO_CXX11_RVALUE_REFERENCES
|
||||||
|
// Move constructors
|
||||||
|
function(self_type&& f): base_type(static_cast<base_type&&>(f)){}
|
||||||
|
function(base_type&& f): base_type(static_cast<base_type&&>(f)){}
|
||||||
|
#endif
|
||||||
|
|
||||||
self_type& operator=(const self_type& f)
|
self_type& operator=(const self_type& f)
|
||||||
{
|
{
|
||||||
self_type(f).swap(*this);
|
self_type(f).swap(*this);
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifndef BOOST_NO_CXX11_RVALUE_REFERENCES
|
||||||
|
self_type& operator=(self_type&& f)
|
||||||
|
{
|
||||||
|
self_type(static_cast<self_type&&>(f)).swap(*this);
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
template<typename Functor>
|
template<typename Functor>
|
||||||
#ifndef BOOST_NO_SFINAE
|
#ifndef BOOST_NO_SFINAE
|
||||||
typename enable_if_c<
|
typename enable_if_c<
|
||||||
@@ -1097,6 +1138,14 @@ public:
|
|||||||
self_type(f).swap(*this);
|
self_type(f).swap(*this);
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifndef BOOST_NO_CXX11_RVALUE_REFERENCES
|
||||||
|
self_type& operator=(base_type&& f)
|
||||||
|
{
|
||||||
|
self_type(static_cast<base_type&&>(f)).swap(*this);
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
#undef BOOST_FUNCTION_PARTIAL_SPEC
|
#undef BOOST_FUNCTION_PARTIAL_SPEC
|
||||||
|
|||||||
@@ -690,6 +690,95 @@ static void test_call()
|
|||||||
test_call_cref(std::plus<int>());
|
test_call_cref(std::plus<int>());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
struct big_aggregating_structure {
|
||||||
|
int disable_small_objects_optimizations[32];
|
||||||
|
|
||||||
|
big_aggregating_structure()
|
||||||
|
{
|
||||||
|
++ global_int;
|
||||||
|
}
|
||||||
|
|
||||||
|
big_aggregating_structure(const big_aggregating_structure&)
|
||||||
|
{
|
||||||
|
++ global_int;
|
||||||
|
}
|
||||||
|
|
||||||
|
~big_aggregating_structure()
|
||||||
|
{
|
||||||
|
-- global_int;
|
||||||
|
}
|
||||||
|
|
||||||
|
void operator()()
|
||||||
|
{
|
||||||
|
++ global_int;
|
||||||
|
}
|
||||||
|
|
||||||
|
void operator()(int)
|
||||||
|
{
|
||||||
|
++ global_int;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
template <class FunctionT>
|
||||||
|
static void test_move_semantics()
|
||||||
|
{
|
||||||
|
typedef FunctionT f1_type;
|
||||||
|
|
||||||
|
big_aggregating_structure obj;
|
||||||
|
|
||||||
|
f1_type f1 = obj;
|
||||||
|
global_int = 0;
|
||||||
|
f1();
|
||||||
|
|
||||||
|
BOOST_CHECK(!f1.empty());
|
||||||
|
BOOST_CHECK(global_int == 1);
|
||||||
|
|
||||||
|
#ifndef BOOST_NO_CXX11_RVALUE_REFERENCES
|
||||||
|
// Testing rvalue constructors
|
||||||
|
f1_type f2(static_cast<f1_type&&>(f1));
|
||||||
|
BOOST_CHECK(f1.empty());
|
||||||
|
BOOST_CHECK(!f2.empty());
|
||||||
|
BOOST_CHECK(global_int == 1);
|
||||||
|
f2();
|
||||||
|
BOOST_CHECK(global_int == 2);
|
||||||
|
|
||||||
|
f1_type f3(static_cast<f1_type&&>(f2));
|
||||||
|
BOOST_CHECK(f1.empty());
|
||||||
|
BOOST_CHECK(f2.empty());
|
||||||
|
BOOST_CHECK(!f3.empty());
|
||||||
|
BOOST_CHECK(global_int == 2);
|
||||||
|
f3();
|
||||||
|
BOOST_CHECK(global_int == 3);
|
||||||
|
|
||||||
|
// Testing move assignment
|
||||||
|
f1_type f4;
|
||||||
|
BOOST_CHECK(f4.empty());
|
||||||
|
f4 = static_cast<f1_type&&>(f3);
|
||||||
|
BOOST_CHECK(f1.empty());
|
||||||
|
BOOST_CHECK(f2.empty());
|
||||||
|
BOOST_CHECK(f3.empty());
|
||||||
|
BOOST_CHECK(!f4.empty());
|
||||||
|
BOOST_CHECK(global_int == 3);
|
||||||
|
f4();
|
||||||
|
BOOST_CHECK(global_int == 4);
|
||||||
|
|
||||||
|
// Testing self move assignment
|
||||||
|
f4 = static_cast<f1_type&&>(f4);
|
||||||
|
BOOST_CHECK(!f4.empty());
|
||||||
|
BOOST_CHECK(global_int == 4);
|
||||||
|
|
||||||
|
// Testing, that no memory leaked when assigning to nonempty function
|
||||||
|
f4 = obj;
|
||||||
|
BOOST_CHECK(!f4.empty());
|
||||||
|
BOOST_CHECK(global_int == 4);
|
||||||
|
f1_type f5 = obj;
|
||||||
|
BOOST_CHECK(global_int == 5);
|
||||||
|
f4 = static_cast<f1_type&&>(f5);
|
||||||
|
BOOST_CHECK(global_int == 4);
|
||||||
|
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
int test_main(int, char* [])
|
int test_main(int, char* [])
|
||||||
{
|
{
|
||||||
test_zero_args();
|
test_zero_args();
|
||||||
@@ -702,6 +791,8 @@ int test_main(int, char* [])
|
|||||||
test_exception();
|
test_exception();
|
||||||
test_implicit();
|
test_implicit();
|
||||||
test_call();
|
test_call();
|
||||||
|
test_move_semantics<function<void()> >();
|
||||||
|
test_move_semantics<boost::function0<void> >();
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user