11 #ifndef PQXX_H_SEPARATED_LIST 12 #define PQXX_H_SEPARATED_LIST 17 #include "pqxx/strconv.hxx" 37 template<
typename ITER,
typename ACCESS>
38 [[nodiscard]]
inline std::string
52 std::size_t budget{0};
53 for (ITER cnt{begin}; cnt != end; ++cnt)
56 static_cast<std::size_t
>(std::distance(begin, end)) * std::size(sep);
61 char *
const data{
result.data()};
63 char *stop{data + budget};
64 here = traits::into_buf(here, stop, access(begin)) - 1;
65 for (++begin; begin != end; ++begin)
67 here += sep.copy(here, std::size(sep));
68 here = traits::into_buf(here, stop, access(begin)) - 1;
70 result.resize(static_cast<std::size_t>(here - data));
76 template<
typename ITER>
77 [[nodiscard]]
inline std::string
85 template<
typename CONTAINER>
86 [[nodiscard]]
inline auto 93 ->
typename std::enable_if<
94 (not std::is_void<decltype(std::begin(c))>::value and
95 not std::is_void<decltype(std::end(c))>::value),
104 typename TUPLE, std::size_t INDEX = 0,
typename ACCESS,
105 typename std::enable_if<
106 (INDEX == std::tuple_size<TUPLE>::value - 1),
int>::type = 0>
108 std::string_view , TUPLE
const &t, ACCESS
const &access)
110 return to_string(access(&std::get<INDEX>(t)));
114 typename TUPLE, std::size_t INDEX = 0,
typename ACCESS,
115 typename std::enable_if<
116 (INDEX < std::tuple_size<TUPLE>::value - 1),
int>::type = 0>
117 [[nodiscard]]
inline std::string
120 std::string out{
to_string(access(&std::get<INDEX>(t)))};
122 out.append(separated_list<TUPLE, INDEX + 1>(sep, t, access));
127 typename TUPLE, std::size_t INDEX = 0,
128 typename std::enable_if<
129 (INDEX <= std::tuple_size<TUPLE>::value),
int>::type = 0>
130 [[nodiscard]]
inline std::string
134 return separated_list(sep, t, [](TUPLE
const &tup) {
return *tup; });
std::size_t size_buffer(TYPE const &...value) noexcept
Estimate how much buffer space is needed to represent values as a string.
Definition: strconv.hxx:375
Traits class for use in string conversions.
Definition: strconv.hxx:152
Result set containing data returned by a query or command.
Definition: result.hxx:67
std::string to_string(field const &value)
Convert a field to a string.
Definition: result.cxx:528
The home of all libpqxx classes, functions, templates, etc.
Definition: array.hxx:22
std::remove_cv_t< std::remove_reference_t< TYPE > > strip_t
Remove any constness, volatile, and reference-ness from a type.
Definition: types.hxx:87
std::string separated_list(std::string_view sep, ITER begin, ITER end, ACCESS access)
Represent sequence of values as a string, joined by a given separator.
Definition: separated_list.hxx:39