14#if !defined(PQXX_HEADER_PRE)
15# error "Include libpqxx headers as <pqxx/header>, not <pqxx/header.hxx>."
25#if __has_include(<charconv>)
29#if defined(PQXX_HAVE_RANGES) && __has_include(<ranges>)
33#include "pqxx/except.hxx"
34#include "pqxx/util.hxx"
35#include "pqxx/zview.hxx"
81template<
typename TYPE>
92template<
typename TYPE,
typename ENABLE =
void>
struct nullness
109 [[nodiscard]]
static TYPE
null();
140 [[nodiscard]]
static constexpr bool is_null(TYPE
const &)
noexcept
174 [[nodiscard]]
static inline zview
175 to_buf(
char *begin,
char *end, TYPE
const &value);
185 static inline char *
into_buf(
char *begin,
char *end, TYPE
const &value);
199 [[nodiscard]]
static inline std::size_t
205template<
typename ENUM>
228 [[nodiscard]]
static constexpr zview
229 to_buf(
char *begin,
char *end, ENUM
const &value)
234 static constexpr char *
into_buf(
char *begin,
char *end, ENUM
const &value)
244 [[nodiscard]]
static std::size_t
size_buffer(ENUM
const &value)
noexcept
251 static constexpr impl_type to_underlying(ENUM
const &value)
noexcept
271#define PQXX_DECLARE_ENUM_CONVERSION(ENUM) \
272 template<> struct string_traits<ENUM> : pqxx::internal::enum_traits<ENUM> \
274 template<> inline std::string const type_name<ENUM> \
295template<
typename TYPE>
326 value = from_string<T>(
text);
336template<
typename TYPE>
inline std::string
to_string(TYPE
const &value);
347template<
typename... TYPE>
348[[nodiscard]]
inline std::vector<std::string_view>
349to_buf(
char *here,
char const *end, TYPE... value)
351 return {[&here, end](
auto v) {
355 auto len{
static_cast<std::size_t
>(here - begin) - 1};
356 return std::string_view{begin, len};
364template<
typename TYPE>
369template<
typename TYPE>
370[[nodiscard]]
inline constexpr bool is_null(TYPE
const &value)
noexcept
380template<
typename... TYPE>
381[[nodiscard]]
inline std::size_t
size_buffer(TYPE
const &...value)
noexcept
441template<
typename TYPE>
450 return {begin, traits::into_buf(begin, end, value) - begin - 1};
454#if defined(PQXX_HAVE_CONCEPTS)
463concept binary = std::ranges::contiguous_range<TYPE> and
464 std::is_same_v<strip_t<value_type<TYPE>>, std::byte>;
470#include "pqxx/internal/conversions.hxx"
The home of all libpqxx classes, functions, templates, etc.
Definition: array.hxx:27
std::string const type_name
A human-readable name for a type, used in error messages and such.
Definition: strconv.hxx:82
void into_string(TYPE const &value, std::string &out)
Convert a value to a readable string that PostgreSQL will understand.
std::remove_cv_t< std::remove_reference_t< TYPE > > strip_t
Remove any constness, volatile, and reference-ness from a type.
Definition: types.hxx:91
std::vector< std::string_view > to_buf(char *here, char const *end, TYPE... value)
Convert multiple values to strings inside a single buffer.
Definition: strconv.hxx:349
constexpr char array_separator
Element separator between SQL array elements of this type.
Definition: strconv.hxx:414
constexpr bool is_unquoted_safe
Can we use this type in arrays and composite types without quoting them?
Definition: strconv.hxx:410
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:381
constexpr bool is_null(TYPE const &value) noexcept
Is value null?
Definition: strconv.hxx:370
zview generic_to_buf(char *begin, char *end, TYPE const &value)
Implement string_traits<TYPE>::to_buf by calling into_buf.
Definition: strconv.hxx:442
constexpr format param_format(TYPE const &)
What's the preferred format for passing non-null parameters of this type?
Definition: strconv.hxx:425
constexpr bool is_sql_array
Does this type translate to an SQL array?
Definition: strconv.hxx:394
std::string to_string(field const &value)
Convert a field to a string.
Definition: result.cxx:533
T from_string(field const &value)
Convert a field's value to type T.
Definition: field.hxx:506
format
Format code: is data text or binary?
Definition: types.hxx:81
Internal items for libpqxx' own use. Do not use these yourself.
Definition: composite.hxx:83
std::string demangle_type_name(char const[])
Attempt to demangle std::type_info::name() to something human-readable.
Definition: strconv.cxx:230
Traits describing a type's "null value," if any.
Definition: strconv.hxx:93
static bool is_null(TYPE const &value)
Is value a null?
static TYPE null()
Return a null value.
static bool has_null
Does this type have a null value?
Definition: strconv.hxx:95
static bool always_null
Is this type always null?
Definition: strconv.hxx:98
Nullness traits describing a type which does not have a null value.
Definition: strconv.hxx:115
static constexpr bool always_null
Are all values of this type null?
Definition: strconv.hxx:133
static constexpr bool has_null
Does TYPE have a "built-in null value"?
Definition: strconv.hxx:127
static constexpr bool is_null(TYPE const &) noexcept
Does a given value correspond to an SQL null value?
Definition: strconv.hxx:140
Traits class for use in string conversions.
Definition: strconv.hxx:155
static std::size_t size_buffer(TYPE const &value) noexcept
Estimate how much buffer space is needed to represent value.
static zview to_buf(char *begin, char *end, TYPE const &value)
Return a string_view representing value, plus terminating zero.
static TYPE from_string(std::string_view text)
Parse a string representation of a TYPE value.
Definition: strconv.cxx:744
static char * into_buf(char *begin, char *end, TYPE const &value)
Write value's string representation into buffer at begin.
Helper class for defining enum conversions.
Definition: strconv.hxx:224
static std::size_t size_buffer(ENUM const &value) noexcept
Definition: strconv.hxx:244
static constexpr zview to_buf(char *begin, char *end, ENUM const &value)
Definition: strconv.hxx:229
std::underlying_type_t< ENUM > impl_type
Definition: strconv.hxx:225
static ENUM from_string(std::string_view text)
Definition: strconv.hxx:239
static constexpr char * into_buf(char *begin, char *end, ENUM const &value)
Definition: strconv.hxx:234
Marker-type wrapper: zero-terminated std::string_view.
Definition: zview.hxx:38