/*============================================================================= Copyright (c) 2006-2007 Tobias Schwinger Use modification and distribution are 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). ==============================================================================*/ #include #include #include #include #include #include #include #include #include #include #include #include #include namespace fusion = boost::fusion; namespace mpl = boost::mpl; using boost::noncopyable; typedef mpl::true_ no_nullary_call; template struct test_func : Base { template struct result : mpl::if_< mpl::and_< fusion::result_of::empty, RemoveNullary >, boost::blank, mpl::identity >::type { }; template long operator()(Seq const & seq) const { long state = 0; return fusion::fold(seq, state, fold_op()); } template < typename Seq > long operator()(Seq const & seq) { long state = 100; return fusion::fold(seq, state, fold_op()); } private: struct fold_op { template long operator()(T const & elem, long value) const { return value + sizeof(T) * elem; } template long operator()(T & elem, long value) const { elem += sizeof(T); return value; } template struct result : mpl::identity { }; }; }; void result_type_tests() { using boost::is_same; using boost::fusion::detail::has_type; typedef fusion::unfused_generic< test_func > test_func_1; typedef fusion::unfused_generic< test_func > test_func_0; BOOST_TEST(( has_type< test_func_0::result<> >::value )); BOOST_TEST(( has_type< test_func_1::result >::value )); BOOST_TEST(( ! has_type< test_func_1::result<> >::value )); BOOST_TEST(( is_same< boost::result_of< test_func_0() >::type, long >::value )); BOOST_TEST(( is_same< boost::result_of< test_func_1(int) >::type, long >::value )); } int main() { result_type_tests(); test_func f; fusion::unfused_generic< test_func<> > unfused_func; fusion::unfused_generic< test_func & > unfused_func_ref(f); fusion::unfused_generic< test_func<> const > unfused_func_c; fusion::unfused_generic< test_func<> > const unfused_func_c2; fusion::unfused_generic< test_func const & > unfused_func_c_ref(f); BOOST_TEST(unfused_func() == 100); BOOST_TEST(unfused_func_ref() == 100); BOOST_TEST(unfused_func_c() == 0); BOOST_TEST(unfused_func_c2() == 0); BOOST_TEST(unfused_func_c_ref() == 0); long lvalue = 12; static const long expected = 1*sizeof(int) + 2*sizeof(long) + 7*sizeof(char); BOOST_TEST(unfused_func(lvalue,lvalue,1,2l,'\007') == 100 + expected); BOOST_TEST(lvalue == 12 + 2*sizeof(long)); BOOST_TEST(unfused_func_ref(lvalue,lvalue,1,2l,'\007') == 100 + expected); BOOST_TEST(lvalue == 12 + 4*sizeof(long)); BOOST_TEST(unfused_func_c(lvalue,lvalue,1,2l,'\007') == 0 + expected); BOOST_TEST(lvalue == 12 + 6*sizeof(long)); BOOST_TEST(unfused_func_c2(lvalue,lvalue,1,2l,'\007') == 0 + expected); BOOST_TEST(lvalue == 12 + 8*sizeof(long)); BOOST_TEST(unfused_func_c_ref(lvalue,lvalue,1,2l,'\007') == 0 + expected); BOOST_TEST(lvalue == 12 + 10*sizeof(long)); return boost::report_errors(); }