// (C) Copyright Gennadiy Rozental 2011-2014. // 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) // See http://www.boost.org/libs/test for the library home page. // ///@file ///Defines monomorphic dataset based on C type arrays // *************************************************************************** #ifndef BOOST_TEST_DATA_MONOMORPHIC_ARRAY_HPP_121411GER #define BOOST_TEST_DATA_MONOMORPHIC_ARRAY_HPP_121411GER // Boost.Test #include #include #include //____________________________________________________________________________// namespace boost { namespace unit_test { namespace data { namespace monomorphic { // ************************************************************************** // // ************** array ************** // // ************************************************************************** // /// Dataset view of an C array template class array : public monomorphic::dataset { typedef monomorphic::dataset base; typedef typename base::iter_ptr iter_ptr; struct iterator : public base::iterator { // Constructor explicit iterator( T const* begin, data::size_t size ) : m_it( begin ) , m_singleton( size == 1 ) {} // forward iterator interface virtual T const& operator*() { return *m_it; } virtual void operator++() { if( !m_singleton ) ++m_it; } private: // Data members T const* m_it; bool m_singleton; }; public: enum { arity = 1 }; // Constructor array( T const* arr, std::size_t size ) : m_arr( arr ) , m_size( size ) {} // dataset interface virtual data::size_t size() const { return m_size; } virtual iter_ptr begin() const { return boost::make_shared( m_arr, m_size ); } private: // Data members T const* m_arr; std::size_t m_size; }; //____________________________________________________________________________// //! An array dataset is a dataset template struct is_dataset > : mpl::true_ {}; } // namespace monomorphic //! @overload boost::unit_test::data::make() template inline monomorphic::array< typename boost::remove_const::type > make( T (&a)[size] ) { return monomorphic::array< typename boost::remove_const::type >( a, size ); } //! @overload boost::unit_test::data::make() template inline monomorphic::array< typename boost::remove_const::type > make( T const (&a)[size] ) { return monomorphic::array( a, size ); } template inline monomorphic::array< typename boost::remove_const::type > make( T a[size] ) { return monomorphic::array( a, size ); } //____________________________________________________________________________// } // namespace data } // namespace unit_test } // namespace boost #include #endif // BOOST_TEST_DATA_MONOMORPHIC_ARRAY_HPP_121411GER