//---------------------------------------------------------------------------// // Copyright (c) 2013 Kyle Lutz // // 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://boostorg.github.com/compute for more information. //---------------------------------------------------------------------------// #ifndef BOOST_COMPUTE_ITERATOR_DETAIL_SWIZZLE_ITERATOR_HPP #define BOOST_COMPUTE_ITERATOR_DETAIL_SWIZZLE_ITERATOR_HPP #include #include #include #include #include #include #include #include #include #include #include #include namespace boost { namespace compute { namespace detail { // forward declaration for swizzle_iterator template class swizzle_iterator; // meta-function returing the value_type for a swizzle_iterator template struct make_swizzle_iterator_value_type { typedef typename make_vector_type< typename scalar_type< typename std::iterator_traits::value_type >::type, Size >::type type; }; // helper class which defines the iterator_adaptor super-class // type for swizzle_iterator template class swizzle_iterator_base { public: typedef ::boost::iterator_adaptor< swizzle_iterator, InputIterator, typename make_swizzle_iterator_value_type::type, typename std::iterator_traits::iterator_category, typename make_swizzle_iterator_value_type::type > type; }; template struct swizzle_iterator_index_expr { typedef typename make_swizzle_iterator_value_type::type result_type; swizzle_iterator_index_expr(const InputIterator &input_iter, const IndexExpr &index_expr, const std::string &components) : m_input_iter(input_iter), m_index_expr(index_expr), m_components(components) { } InputIterator m_input_iter; IndexExpr m_index_expr; std::string m_components; }; template inline meta_kernel& operator<<(meta_kernel &kernel, const swizzle_iterator_index_expr &expr) { return kernel << expr.m_input_iter[expr.m_index_expr] << "." << expr.m_components; } template class swizzle_iterator : public swizzle_iterator_base::type { public: typedef typename swizzle_iterator_base::type super_type; typedef typename super_type::value_type value_type; typedef typename super_type::reference reference; typedef typename super_type::base_type base_type; typedef typename super_type::difference_type difference_type; BOOST_STATIC_CONSTANT(size_t, vector_size = Size); swizzle_iterator(InputIterator iterator, const std::string &components) : super_type(iterator), m_components(components) { BOOST_ASSERT(components.size() == Size); } swizzle_iterator(const swizzle_iterator &other) : super_type(other.base()), m_components(other.m_components) { BOOST_ASSERT(m_components.size() == Size); } swizzle_iterator& operator=(const swizzle_iterator &other) { if(this != &other){ super_type::operator=(other); m_components = other.m_components; } return *this; } ~swizzle_iterator() { } size_t get_index() const { return super_type::base().get_index(); } const buffer& get_buffer() const { return get_base_iterator_buffer(*this); } template swizzle_iterator_index_expr operator[](const IndexExpression &expr) const { return swizzle_iterator_index_expr(super_type::base(), expr, m_components); } private: friend class ::boost::iterator_core_access; reference dereference() const { return reference(); } private: std::string m_components; }; template inline swizzle_iterator make_swizzle_iterator(InputIterator iterator, const std::string &components) { return swizzle_iterator(iterator, components); } } // end detail namespace // is_device_iterator specialization for swizzle_iterator template struct is_device_iterator > : boost::true_type {}; } // end compute namespace } // end boost namespace #endif // BOOST_COMPUTE_ITERATOR_SWIZZLE_ITERATOR_HPP