18 #include "pqxx/array.hxx" 19 #include "pqxx/composite.hxx" 20 #include "pqxx/result.hxx" 21 #include "pqxx/strconv.hxx" 22 #include "pqxx/types.hxx" 41 "Do not construct fields yourself. Get them from the row.")]]
field(
row const &r,
row_size_type c) noexcept;
45 "Do not construct fields yourself. Get them from the row.")]]
field() =
69 [[nodiscard]] PQXX_PURE
bool operator==(
field const &)
const;
76 return not operator==(rhs);
84 [[nodiscard]] PQXX_PURE
char const *name() const &;
88 [[nodiscard]] oid PQXX_PURE type() const;
91 [[nodiscard]] PQXX_PURE oid table() const;
104 [[nodiscard]] PQXX_PURE std::string_view view() const &
107 return std::string_view(c_str(), size());
120 [[nodiscard]] PQXX_PURE
char const *c_str() const &;
123 [[nodiscard]] PQXX_PURE
bool is_null() const noexcept;
126 [[nodiscard]] PQXX_PURE size_type size() const noexcept;
133 auto to(T &obj) const -> typename
std::enable_if_t<
134 (not
std::is_pointer<T>::value or
std::is_same<T,
char const *>::value),
143 auto const bytes{c_str()};
169 template<
typename T>
bool operator>>(T &obj)
const {
return to(obj); }
183 auto to(T &obj, T
const &default_value)
const ->
typename std::enable_if_t<
184 (not std::is_pointer<T>::value or std::is_same<T, char const *>::value),
191 obj = from_string<T>(this->view());
199 template<
typename T> T
as(T
const &default_value)
const 202 return default_value;
204 return from_string<T>(this->view());
213 template<
typename T> T
as()
const 224 return from_string<T>(this->view());
232 template<
typename T,
template<
typename>
class O = std::optional>
233 constexpr O<T>
get()
const 261 m_col{col_num}, m_home{r}, m_row{row_num}
276 template<>
inline bool field::to<std::string>(std::string &obj)
const 280 obj = std::string{view()};
286 inline bool field::to<std::string>(
287 std::string &obj, std::string
const &default_value)
const 293 obj = std::string{view()};
304 template<>
inline bool field::to<char const *>(
char const *&obj)
const 313 template<>
inline bool field::to<std::string_view>(std::string_view &obj)
const 323 inline bool field::to<std::string_view>(
324 std::string_view &obj, std::string_view
const &default_value)
const 335 template<>
inline std::string_view field::as<std::string_view>()
const 345 inline std::string_view
346 field::as<std::string_view>(std::string_view
const &default_value)
const 348 return is_null() ? default_value : view();
352 template<>
inline bool field::to<zview>(
zview &obj)
const 362 inline bool field::to<zview>(
zview &obj,
zview const &default_value)
const 373 template<>
inline zview field::as<zview>()
const 382 template<>
inline zview field::as<zview>(
zview const &default_value)
const 388 template<
typename CHAR =
char,
typename TRAITS = std::
char_traits<CHAR>>
403 virtual int sync()
override {
return traits_type::eof(); }
407 return traits_type::eof();
411 return traits_type::eof();
417 field const &m_field;
421 auto g{
static_cast<char_type *
>(
const_cast<char *
>(m_field.
c_str()))};
422 this->setg(g, g, g + std::size(m_field));
423 return int_type(std::size(m_field));
437 template<
typename CHAR =
char,
typename TRAITS = std::
char_traits<CHAR>>
440 using super = std::basic_istream<CHAR, TRAITS>;
455 field_streambuf<CHAR, TRAITS> m_buf;
481 template<
typename CHAR>
482 inline std::basic_ostream<CHAR> &
483 operator<<(std::basic_ostream<CHAR> &s,
field const &value)
485 s.write(value.c_str(), std::streamsize(std::size(value)));
505 return from_string<T>(value.
view());
518 inline std::nullptr_t from_string<std::nullptr_t>(
field const &value)
520 if (not value.is_null())
522 "Extracting non-null field into nullptr_t variable."};
528 template<> PQXX_LIBEXPORT std::string
to_string(field
const &value);
bool operator>>(T &obj) const
Read value into obj; or leave obj untouched and return false if null.
Definition: field.hxx:169
row_size_type col() const noexcept
Definition: field.hxx:255
Definition: field.hxx:389
Reference to one row in a result.
Definition: row.hxx:42
void parse_composite(pqxx::internal::encoding_group enc, std::string_view text, T &...fields)
Parse a string representation of a value of a composite type.
Definition: composite.hxx:31
size_type size() const noexcept
Definition: row.hxx:100
T as(T const &default_value) const
Return value as object of given type, or default value if null.
Definition: field.hxx:199
virtual int_type underflow() override
Definition: field.hxx:414
typename traits_type::int_type int_type
Definition: field.hxx:445
virtual pos_type seekpos(pos_type, openmode) override
Definition: field.hxx:409
Marker-type wrapper: zero-terminated std::string_view.
Definition: zview.hxx:37
field_streambuf(field const &f)
Definition: field.hxx:400
bool composite_to(T &...fields) const
Read field as a composite value, write its components into fields.
Definition: field.hxx:155
Reference to a field in a result set.
Definition: field.hxx:30
virtual int_type overflow(int_type) override
Definition: field.hxx:413
Result set containing data returned by a query or command.
Definition: result.hxx:67
void PQXX_COLD throw_null_conversion(std::string const &type)
Definition: strconv.cxx:252
PQXX_PURE std::string_view view() const &
Read as string_view, or an empty one if null.
Definition: field.hxx:105
std::string to_string(field const &value)
Convert a field to a string.
Definition: result.cxx:528
std::ios::seekdir seekdir
Definition: field.hxx:398
result_size_type size_type
Definition: result.hxx:70
bool is_null(TYPE const &value) noexcept
Is value null?
Definition: strconv.hxx:364
Input stream that gets its data from a result field.
Definition: field.hxx:438
typename traits_type::int_type int_type
Definition: field.hxx:394
T from_string(field const &value)
Convert a field's value to type T.
Definition: field.hxx:494
Value conversion failed, e.g. when converting "Hello" to int.
Definition: except.hxx:175
Low-level array parser.
Definition: array.hxx:43
field_size_type size_type
Definition: field.hxx:33
int result_size_type
Number of rows in a result set.
Definition: types.hxx:24
basic_fieldstream(field const &f)
Definition: field.hxx:449
PQXX_PURE bool operator!=(field const &rhs) const
Byte-by-byte comparison (all nulls are considered equal)
Definition: field.hxx:74
typename traits_type::pos_type pos_type
Definition: field.hxx:446
result const & home() const noexcept
Definition: field.hxx:253
CHAR char_type
Definition: field.hxx:443
auto to(T &obj, T const &default_value) const -> typename std::enable_if_t<(not std::is_pointer< T >::value or std::is_same< T, char const *>::value), bool >
Read value into obj; or if null, use default value and return false.
Definition: field.hxx:183
TRAITS traits_type
Definition: field.hxx:393
The home of all libpqxx classes, functions, templates, etc.
Definition: array.hxx:22
typename traits_type::off_type off_type
Definition: field.hxx:447
array_parser as_array() const &
Parse the field as an SQL array.
Definition: field.hxx:245
T as() const
Return value as object of given type, or throw exception if null.
Definition: field.hxx:213
field(result const &r, result_size_type row_num, row_size_type col_num)
Definition: field.hxx:260
std::size_t field_size_type
Number of bytes in a field of database data.
Definition: types.hxx:36
int row_size_type
Number of fields in a row of database data.
Definition: types.hxx:30
TRAITS traits_type
Definition: field.hxx:444
virtual pos_type seekoff(off_type, seekdir, openmode) override
Definition: field.hxx:405
typename traits_type::pos_type pos_type
Definition: field.hxx:395
result::size_type idx() const noexcept
Definition: field.hxx:254
PQXX_PURE bool is_null() const noexcept
Is this field's value null?
Definition: field.cxx:66
PQXX_PURE char const * c_str() const &
Read as plain C string.
Definition: field.cxx:60
row_size_type m_col
Definition: field.hxx:268
std::ios::openmode openmode
Definition: field.hxx:397
typename traits_type::off_type off_type
Definition: field.hxx:396
Traits describing a type's "null value," if any.
Definition: strconv.hxx:88
CHAR char_type
Definition: field.hxx:392
static TYPE null()
Return a null value.
virtual int sync() override
Definition: field.hxx:403