// Boost.Function library // Copyright Douglas Gregor 2001-2003. Use, modification and // distribution is subject to 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) // For more information, see http://www.boost.org #include #include #include #include using namespace std; using namespace boost; static int alloc_count = 0; static int dealloc_count = 0; template struct counting_allocator : public std::allocator { template struct rebind { typedef counting_allocator other; }; counting_allocator() { } template counting_allocator( counting_allocator ) { } T* allocate(std::size_t n) { alloc_count++; return std::allocator::allocate(n); } void deallocate(T* p, std::size_t n) { dealloc_count++; std::allocator::deallocate(p, n); } }; struct enable_small_object_optimization { }; struct disable_small_object_optimization { int unused_state_data[32]; }; template struct plus_int: base { int operator()(int x, int y) const { return x + y; } }; static int do_minus(int x, int y) { return x-y; } template struct DoNothing: base { void operator()() const {} }; static void do_nothing() {} int test_main(int, char*[]) { function2 f; f.assign( plus_int(), counting_allocator() ); f.clear(); BOOST_CHECK(alloc_count == 1); BOOST_CHECK(dealloc_count == 1); alloc_count = 0; dealloc_count = 0; f.assign( plus_int(), counting_allocator() ); f.clear(); BOOST_CHECK(alloc_count == 0); BOOST_CHECK(dealloc_count == 0); f.assign( plus_int(), std::allocator() ); f.clear(); f.assign( plus_int(), std::allocator() ); f.clear(); alloc_count = 0; dealloc_count = 0; f.assign( &do_minus, counting_allocator() ); f.clear(); BOOST_CHECK(alloc_count == 0); BOOST_CHECK(dealloc_count == 0); f.assign( &do_minus, std::allocator() ); f.clear(); function0 fv; alloc_count = 0; dealloc_count = 0; fv.assign( DoNothing(), counting_allocator() ); fv.clear(); BOOST_CHECK(alloc_count == 1); BOOST_CHECK(dealloc_count == 1); alloc_count = 0; dealloc_count = 0; fv.assign( DoNothing(), counting_allocator() ); fv.clear(); BOOST_CHECK(alloc_count == 0); BOOST_CHECK(dealloc_count == 0); fv.assign( DoNothing(), std::allocator() ); fv.clear(); fv.assign( DoNothing(), std::allocator() ); fv.clear(); alloc_count = 0; dealloc_count = 0; fv.assign( &do_nothing, counting_allocator() ); fv.clear(); BOOST_CHECK(alloc_count == 0); BOOST_CHECK(dealloc_count == 0); fv.assign( &do_nothing, std::allocator() ); fv.clear(); function0 fv2; fv.assign(&do_nothing, std::allocator() ); fv2.assign(fv, std::allocator() ); return 0; }