2016-03-18 14:03:00 +01:00
|
|
|
/*
|
2022-06-30 20:33:03 +02:00
|
|
|
* Copyright 2013-2022 Max Kellermann <max.kellermann@gmail.com>
|
2016-03-18 14:03:00 +01:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
*
|
|
|
|
* - Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
*
|
|
|
|
* - Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the
|
|
|
|
* distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
* FOUNDATION OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
|
|
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
|
|
|
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
|
|
|
* OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2022-06-30 20:33:03 +02:00
|
|
|
#pragma once
|
2016-03-18 14:03:00 +01:00
|
|
|
|
|
|
|
#include "StringView.hxx"
|
|
|
|
|
|
|
|
#include <iterator>
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Split a string at a certain separator character into sub strings
|
|
|
|
* and allow iterating over the segments.
|
|
|
|
*
|
|
|
|
* Two consecutive separator characters result in an empty string.
|
|
|
|
*
|
|
|
|
* An empty input string returns one empty string.
|
|
|
|
*/
|
2017-09-12 19:11:22 +02:00
|
|
|
template<typename T>
|
|
|
|
class BasicIterableSplitString {
|
|
|
|
typedef BasicStringView<T> StringView;
|
|
|
|
|
2020-03-16 21:01:46 +01:00
|
|
|
using value_type = typename StringView::value_type;
|
2016-03-18 14:03:00 +01:00
|
|
|
|
2017-09-12 19:11:22 +02:00
|
|
|
StringView s;
|
|
|
|
value_type separator;
|
2016-03-18 14:03:00 +01:00
|
|
|
|
|
|
|
public:
|
2017-09-12 19:11:22 +02:00
|
|
|
constexpr BasicIterableSplitString(StringView _s,
|
2022-06-30 20:33:03 +02:00
|
|
|
value_type _separator) noexcept
|
2016-03-18 14:03:00 +01:00
|
|
|
:s(_s), separator(_separator) {}
|
|
|
|
|
|
|
|
class Iterator final {
|
2017-09-12 19:11:22 +02:00
|
|
|
friend class BasicIterableSplitString;
|
2016-03-18 14:03:00 +01:00
|
|
|
|
|
|
|
StringView current, rest;
|
|
|
|
|
2017-09-12 19:11:22 +02:00
|
|
|
value_type separator;
|
2016-03-18 14:03:00 +01:00
|
|
|
|
2022-06-30 20:33:03 +02:00
|
|
|
constexpr Iterator(StringView _s,
|
|
|
|
value_type _separator) noexcept
|
|
|
|
:rest(_s), separator(_separator)
|
|
|
|
{
|
2016-03-18 14:03:00 +01:00
|
|
|
Next();
|
|
|
|
}
|
|
|
|
|
2022-06-30 20:33:03 +02:00
|
|
|
constexpr Iterator(std::nullptr_t n) noexcept
|
2016-03-18 14:03:00 +01:00
|
|
|
:current(n), rest(n), separator(0) {}
|
|
|
|
|
2022-06-30 20:33:03 +02:00
|
|
|
constexpr void Next() noexcept {
|
2018-08-20 15:35:09 +02:00
|
|
|
if (rest == nullptr)
|
2016-03-18 14:03:00 +01:00
|
|
|
current = nullptr;
|
|
|
|
else {
|
2022-06-30 20:37:04 +02:00
|
|
|
const auto [a, b] = rest.Split(separator);
|
|
|
|
current = a;
|
|
|
|
rest = b;
|
2016-03-18 14:03:00 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
2020-03-16 21:01:46 +01:00
|
|
|
using iterator_category = std::forward_iterator_tag;
|
2016-03-18 14:03:00 +01:00
|
|
|
|
2022-06-30 20:33:03 +02:00
|
|
|
constexpr Iterator &operator++() noexcept{
|
2016-03-18 14:03:00 +01:00
|
|
|
Next();
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2022-06-30 20:33:03 +02:00
|
|
|
constexpr bool operator==(Iterator other) const noexcept {
|
2016-03-18 14:03:00 +01:00
|
|
|
return current.data == other.current.data;
|
|
|
|
}
|
|
|
|
|
2022-06-30 20:33:03 +02:00
|
|
|
constexpr bool operator!=(Iterator other) const noexcept {
|
2016-03-18 14:03:00 +01:00
|
|
|
return !(*this == other);
|
|
|
|
}
|
|
|
|
|
2022-06-30 20:33:03 +02:00
|
|
|
constexpr StringView operator*() const noexcept {
|
2016-03-18 14:03:00 +01:00
|
|
|
return current;
|
|
|
|
}
|
|
|
|
|
2022-06-30 20:33:03 +02:00
|
|
|
constexpr const StringView *operator->() const noexcept {
|
2016-03-18 14:03:00 +01:00
|
|
|
return ¤t;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-03-16 21:01:46 +01:00
|
|
|
using iterator = Iterator;
|
|
|
|
using const_iterator = Iterator;
|
2016-03-18 14:03:00 +01:00
|
|
|
|
2022-06-30 20:33:03 +02:00
|
|
|
constexpr const_iterator begin() const noexcept {
|
2016-03-18 14:03:00 +01:00
|
|
|
return {s, separator};
|
|
|
|
}
|
|
|
|
|
2022-06-30 20:33:03 +02:00
|
|
|
constexpr const_iterator end() const noexcept {
|
2016-03-18 14:03:00 +01:00
|
|
|
return {nullptr};
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-09-12 19:11:22 +02:00
|
|
|
using IterableSplitString = BasicIterableSplitString<char>;
|
|
|
|
|
2017-09-12 19:11:34 +02:00
|
|
|
#ifdef _UNICODE
|
|
|
|
using WIterableSplitString = BasicIterableSplitString<wchar_t>;
|
|
|
|
using TIterableSplitString = WIterableSplitString;
|
|
|
|
#else
|
|
|
|
using TIterableSplitString = IterableSplitString;
|
|
|
|
#endif
|