170 lines
3.3 KiB
C++
170 lines
3.3 KiB
C++
//
|
|
// Copyright (c) 2019 Vinnie Falco (vinnie.falco@gmail.com)
|
|
// Copyright (c) 2022 Alan de Freitas (alandefreitas@gmail.com)
|
|
//
|
|
// 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)
|
|
//
|
|
// Official repository: https://github.com/boostorg/url
|
|
//
|
|
|
|
#ifndef BOOST_URL_IMPL_SEGMENTS_REF_HPP
|
|
#define BOOST_URL_IMPL_SEGMENTS_REF_HPP
|
|
|
|
#include <boost/url/detail/config.hpp>
|
|
#include <boost/url/detail/any_segments_iter.hpp>
|
|
#include <boost/url/detail/segments_iter_impl.hpp>
|
|
#include <type_traits>
|
|
|
|
namespace boost {
|
|
namespace urls {
|
|
|
|
//------------------------------------------------
|
|
//
|
|
// Modifiers
|
|
//
|
|
//------------------------------------------------
|
|
|
|
inline
|
|
void
|
|
segments_ref::
|
|
clear() noexcept
|
|
{
|
|
erase(begin(), end());
|
|
}
|
|
|
|
template<class FwdIt>
|
|
void
|
|
segments_ref::
|
|
assign(FwdIt first, FwdIt last)
|
|
{
|
|
/* If you get a compile error here, it
|
|
means that the iterators you passed
|
|
do not meet the requirements stated
|
|
in the documentation.
|
|
*/
|
|
static_assert(
|
|
std::is_convertible<
|
|
typename std::iterator_traits<
|
|
FwdIt>::reference,
|
|
core::string_view>::value,
|
|
"Type requirements not met");
|
|
|
|
u_->edit_segments(
|
|
begin().it_,
|
|
end().it_,
|
|
detail::make_segments_iter(
|
|
first, last));
|
|
}
|
|
|
|
template<class FwdIt>
|
|
auto
|
|
segments_ref::
|
|
insert(
|
|
iterator before,
|
|
FwdIt first,
|
|
FwdIt last) ->
|
|
iterator
|
|
{
|
|
/* If you get a compile error here, it
|
|
means that the iterators you passed
|
|
do not meet the requirements stated
|
|
in the documentation.
|
|
*/
|
|
static_assert(
|
|
std::is_convertible<
|
|
typename std::iterator_traits<
|
|
FwdIt>::reference,
|
|
core::string_view>::value,
|
|
"Type requirements not met");
|
|
|
|
return insert(
|
|
before,
|
|
first,
|
|
last,
|
|
typename std::iterator_traits<
|
|
FwdIt>::iterator_category{});
|
|
}
|
|
|
|
inline
|
|
auto
|
|
segments_ref::
|
|
erase(
|
|
iterator pos) noexcept ->
|
|
iterator
|
|
{
|
|
return erase(pos, std::next(pos));
|
|
}
|
|
|
|
template<class FwdIt>
|
|
auto
|
|
segments_ref::
|
|
replace(
|
|
iterator from,
|
|
iterator to,
|
|
FwdIt first,
|
|
FwdIt last) ->
|
|
iterator
|
|
{
|
|
/* If you get a compile error here, it
|
|
means that the iterators you passed
|
|
do not meet the requirements stated
|
|
in the documentation.
|
|
*/
|
|
static_assert(
|
|
std::is_convertible<
|
|
typename std::iterator_traits<
|
|
FwdIt>::reference,
|
|
core::string_view>::value,
|
|
"Type requirements not met");
|
|
|
|
return u_->edit_segments(
|
|
from.it_,
|
|
to.it_,
|
|
detail::make_segments_iter(
|
|
first, last));
|
|
}
|
|
|
|
//------------------------------------------------
|
|
|
|
inline
|
|
void
|
|
segments_ref::
|
|
push_back(
|
|
core::string_view s)
|
|
{
|
|
insert(end(), s);
|
|
}
|
|
|
|
inline
|
|
void
|
|
segments_ref::
|
|
pop_back() noexcept
|
|
{
|
|
erase(std::prev(end()));
|
|
}
|
|
|
|
//------------------------------------------------
|
|
|
|
template<class FwdIt>
|
|
auto
|
|
segments_ref::
|
|
insert(
|
|
iterator before,
|
|
FwdIt first,
|
|
FwdIt last,
|
|
std::forward_iterator_tag) ->
|
|
iterator
|
|
{
|
|
return u_->edit_segments(
|
|
before.it_,
|
|
before.it_,
|
|
detail::make_segments_iter(
|
|
first, last));
|
|
}
|
|
|
|
} // urls
|
|
} // boost
|
|
|
|
#endif
|