#pragma once
/*
* Copyright (C) 2024 Brett Terpstra
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
#ifndef BLT_ITERATOR_ZIP
#define BLT_ITERATOR_ZIP
#include
#include
namespace blt
{
namespace iterator
{
template
struct zip_wrapper : public base_wrapper>
{
public:
using iterator_category = meta::lowest_iterator_category_t;
using value_type = std::tuple...>;
using difference_type = blt::ptrdiff_t;
using pointer = value_type;
using reference = value_type;
explicit zip_wrapper(std::tuple iter): iter(std::move(iter))
{}
explicit zip_wrapper(Iter... iter): iter(std::make_tuple(iter...))
{}
std::tuple...> operator*() const
{
return std::apply([](auto& ... i) { return std::tuple...>{*i...}; }, iter);
}
zip_wrapper& operator++()
{
std::apply([](auto& ... i) { ((++i), ...); }, iter);
return *this;
}
zip_wrapper& operator--()
{
static_assert(meta::is_bidirectional_or_better_category_v, "Iterator must be bidirectional or better!");
std::apply([](auto& ... i) { ((--i), ...); }, this->iter);
return *this;
}
friend zip_wrapper operator+(const zip_wrapper& a, blt::ptrdiff_t n)
{
static_assert(meta::is_random_access_iterator_category_v, "Iterator must allow random access");
return std::apply([n](auto& ... i) { return zip_wrapper((i + n)...); }, a.iter);
}
friend zip_wrapper operator-(const zip_wrapper& a, blt::ptrdiff_t n)
{
static_assert(meta::is_random_access_iterator_category_v, "Iterator must allow random access");
return std::apply([n](auto& ... i) { return zip_wrapper((i - n)...); }, a.iter);
}
friend blt::ptrdiff_t operator-(const zip_wrapper& a, const zip_wrapper& b)
{
return sub(a, b, std::index_sequence_for());
}
auto base() const
{
return iter;
}
protected:
std::tuple iter;
template
static blt::ptrdiff_t sub(const zip_wrapper& a, const zip_wrapper& b,
std::integer_sequence)
{
blt::ptrdiff_t min = std::numeric_limits::max();
((min = std::min(min, std::get(a.iter) - std::get(b.iter))), ...);
return min;
}
};
template
struct iterator_pair
{
using type = Iter;
iterator_pair(Iter begin, Iter end): begin(std::move(begin)), end(std::move(end))
{}
Iter begin;
Iter end;
};
}
template
class zip_iterator_container : public iterator::iterator_container>
{
public:
using iterator::iterator_container>::iterator_container;
explicit zip_iterator_container(iterator::iterator_pair... iterator_pairs):
iterator::iterator_container>(iterator::zip_wrapper{std::move(iterator_pairs.begin)...},
iterator::zip_wrapper{std::move(iterator_pairs.end)...})
{}
};
/*
* CTAD for the zip containers
*/
template
zip_iterator_container(iterator::iterator_pair...) -> zip_iterator_container;
template
zip_iterator_container(std::initializer_list...) -> zip_iterator_container;
/*
* Helper functions for creating zip containers
*/
template
auto zip(Container& ... container)
{
return zip_iterator_container{iterator::iterator_pair{std::begin(container), std::end(container)}...};
}
template
auto zip(const Container& ... container)
{
return zip_iterator_container{iterator::iterator_pair{std::begin(container), std::end(container)}...};
}
template
static inline auto in_pairs(const T& container1, const G& container2)
{
return zip_iterator_container{iterator::iterator_pair{container1.begin(), container1.end()},
iterator::iterator_pair{container2.begin(), container2.end()}};
}
template
static inline auto in_pairs(T& container1, G& container2)
{
return zip_iterator_container{iterator::iterator_pair{container1.begin(), container1.end()},
iterator::iterator_pair{container2.begin(), container2.end()}};
}
template
static inline auto in_pairs(const T(& container1)[size], const G(& container2)[size])
{
return zip_iterator_container{iterator::iterator_pair{&container1[0], &container1[size]},
iterator::iterator_pair{&container2[0], &container2[size]}};
}
template
static inline auto in_pairs(T(& container1)[size], G(& container2)[size])
{
return zip_iterator_container{iterator::iterator_pair{&container1[0], &container1[size]},
iterator::iterator_pair{&container2[0], &container2[size]}};
}
}
#endif //BLT_ITERATOR_ZIP