14#ifndef PQXX_H_TRANSACTION_BASE
15#define PQXX_H_TRANSACTION_BASE
17#if !defined(PQXX_HEADER_PRE)
18# error "Include libpqxx headers as <pqxx/header>, not <pqxx/header.hxx>."
32#include "pqxx/connection.hxx"
33#include "pqxx/internal/concat.hxx"
34#include "pqxx/internal/encoding_group.hxx"
35#include "pqxx/internal/stream_query.hxx"
36#include "pqxx/isolation.hxx"
37#include "pqxx/prepared_statement.hxx"
38#include "pqxx/result.hxx"
39#include "pqxx/row.hxx"
40#include "pqxx/util.hxx"
42namespace pqxx::internal::gate
44class transaction_subtransaction;
46class transaction_stream_to;
47class transaction_transaction_focus;
53using namespace std::literals;
150class PQXX_LIBEXPORT PQXX_NOVTABLE transaction_base
153 transaction_base() =
delete;
154 transaction_base(transaction_base
const &) =
delete;
155 transaction_base(transaction_base &&) =
delete;
156 transaction_base &operator=(transaction_base
const &) =
delete;
157 transaction_base &operator=(transaction_base &&) =
delete;
159 virtual ~transaction_base() = 0;
194 template<
typename... ARGS> [[nodiscard]]
auto esc(ARGS &&...args)
const
196 return conn().esc(std::forward<ARGS>(args)...);
211 template<
typename... ARGS> [[nodiscard]]
auto esc_raw(ARGS &&...args)
const
213 return conn().esc_raw(std::forward<ARGS>(args)...);
220 [[nodiscard, deprecated(
"Use unesc_bin() instead.")]] std::string
221 unesc_raw(zview text)
const
223#include "pqxx/internal/ignore-deprecated-pre.hxx"
224 return conn().unesc_raw(text);
225#include "pqxx/internal/ignore-deprecated-post.hxx"
232 [[nodiscard]]
bytes unesc_bin(zview text) {
return conn().unesc_bin(text); }
238 [[nodiscard, deprecated(
"Use unesc_bin() instead.")]] std::string
239 unesc_raw(
char const *text)
const
241#include "pqxx/internal/ignore-deprecated-pre.hxx"
242 return conn().unesc_raw(text);
243#include "pqxx/internal/ignore-deprecated-post.hxx"
252 return conn().unesc_bin(text);
257 template<
typename T> [[nodiscard]] std::string quote(T
const &t)
const
259 return conn().quote(t);
262 [[deprecated(
"Use bytes instead of binarystring.")]] std::string
263 quote(binarystring
const &t)
const
265 return conn().quote(t.bytes_view());
269 [[deprecated(
"Use quote(pqxx::bytes_view).")]] std::string
270 quote_raw(
unsigned char const bin[], std::size_t len)
const
276 [[deprecated(
"Use quote(pqxx::bytes_view).")]] std::string
277 quote_raw(zview bin)
const;
279#if defined(PQXX_HAVE_CONCEPTS) && defined(PQXX_HAVE_RANGES)
282 template<binary DATA>
283 [[nodiscard]] std::string quote_raw(DATA
const &data)
const
285 return conn().quote_raw(data);
290 [[nodiscard]] std::string quote_name(std::string_view identifier)
const
292 return conn().quote_name(identifier);
296 [[nodiscard]] std::string
297 esc_like(std::string_view bin,
char escape_char =
'\\')
const
299 return conn().esc_like(bin, escape_char);
345 [[deprecated(
"The desc parameter is going away.")]]
346 result exec(std::string_view query, std::string_view desc);
350 result exec(std::string_view query, params parms)
352 return internal_exec_params(query, parms.make_c_params());
360 result exec(std::string_view query)
362#include "pqxx/internal/ignore-deprecated-pre.hxx"
363 return exec(query, std::string_view{});
364#include "pqxx/internal/ignore-deprecated-post.hxx"
374 "Pass your query as a std::string_view, not stringstream.")]] result
375 exec(std::stringstream
const &query, std::string_view desc)
377#include "pqxx/internal/ignore-deprecated-pre.hxx"
378 return exec(query.str(), desc);
379#include "pqxx/internal/ignore-deprecated-post.hxx"
388 [[deprecated(
"Use exec(string_view) and call no_rows() on the result.")]]
389 result exec0(zview query, std::string_view desc)
391#include "pqxx/internal/ignore-deprecated-pre.hxx"
392 return exec(query, desc).no_rows();
393#include "pqxx/internal/ignore-deprecated-post.hxx"
402 [[deprecated(
"Use exec() and call no_rows() on the result.")]]
403 result exec0(zview query)
405 return exec(query).no_rows();
415 [[deprecated(
"Use exec(string_view), and call one_row() on the result.")]]
416 row exec1(zview query, std::string_view desc)
418#include "pqxx/internal/ignore-deprecated-pre.hxx"
419 return exec(query, desc).one_row();
420#include "pqxx/internal/ignore-deprecated-post.hxx"
430 [[deprecated(
"Use exec() instead, and call one_row() on the result.")]]
431 row exec1(zview query)
433 return exec(query).one_row();
442 [[deprecated(
"Use exec() instead, and call expect_rows() on the result.")]]
443 result exec_n(result::size_type rows, zview query, std::string_view desc);
451 [[deprecated(
"Use exec() instead, and call expect_rows() on the result.")]]
452 result exec_n(result::size_type rows, zview query)
454#include "pqxx/internal/ignore-deprecated-pre.hxx"
455 return exec(query, std::string_view{}).expect_rows(rows);
456#include "pqxx/internal/ignore-deprecated-post.hxx"
463 template<
typename TYPE>
464 [[deprecated(
"The desc parameter is going away.")]]
465 TYPE query_value(zview query, std::string_view desc)
467#include "pqxx/internal/ignore-deprecated-pre.hxx"
468 return exec(query, desc).one_field().as<TYPE>();
469#include "pqxx/internal/ignore-deprecated-post.hxx"
479 template<
typename TYPE> TYPE query_value(zview query)
481 return exec(query).one_field().as<TYPE>();
492 template<
typename... TYPE>
493 [[nodiscard]] std::tuple<TYPE...> query1(zview query)
495 return exec(query).expect_columns(
sizeof...(TYPE)).one_row().as<TYPE...>();
506 template<
typename... TYPE>
507 [[nodiscard]] std::optional<std::tuple<TYPE...>> query01(zview query)
509 std::optional<row>
const r{exec(query).opt_row()};
511 return {r->as<TYPE...>()};
568 template<
typename... TYPE>
569 [[nodiscard]]
auto stream(std::string_view query) &
571 return pqxx::internal::stream_query<TYPE...>{*
this, query};
604 template<
typename CALLABLE>
605 auto for_stream(std::string_view query, CALLABLE &&func)
609 param_types
const *
const sample{
nullptr};
610 auto data_stream{stream_like(query, sample)};
611 for (
auto const &fields : data_stream) std::apply(func, fields);
614 template<
typename CALLABLE>
616 "pqxx::transaction_base::for_each is now called for_stream.")]]
auto
617 for_each(std::string_view query, CALLABLE &&func)
619 return for_stream(query, std::forward<CALLABLE>(func));
654 template<
typename... TYPE>
auto query(zview query)
656 return exec(query).iter<TYPE...>();
660 template<
typename... TYPE>
661 [[deprecated(
"Use query() instead, and call expect_rows() on the result.")]]
662 auto query_n(result::size_type rows, zview query)
664 return exec(query).expect_rows(rows).iter<TYPE...>();
677 template<
typename CALLABLE>
void for_query(zview query, CALLABLE &&func)
679 exec(query).for_each(std::forward<CALLABLE>(func));
717 template<
typename... Args>
718 [[deprecated(
"Use exec(zview, params) instead.")]]
719 result exec_params(std::string_view query, Args &&...args)
721 return exec(query, params{args...});
727 template<
typename... Args>
728 [[deprecated(
"Use exec() instead, and call one_row() on the result.")]]
729 row exec_params1(zview query, Args &&...args)
731 return exec(query, params{args...}).one_row();
737 template<
typename... Args>
739 "Use exec(string_view, params) and call no_rows() on the result.")]]
740 result exec_params0(zview query, Args &&...args)
742 return exec(query, params{args...}).no_rows();
748 template<
typename... Args>
749 [[deprecated(
"Use exec(), and call expect_rows() on the result.")]]
750 result exec_params_n(std::size_t rows, zview query, Args &&...args)
752 return exec(query, params{args...})
753 .expect_rows(check_cast<result_size_type>(rows,
"number of rows"));
759 template<
typename... Args>
760 [[deprecated(
"Use exec(), and call expect_rows() on the result.")]]
761 result exec_params_n(result::size_type rows, zview query, Args &&...args)
763 return exec(query, params{args...}).expect_rows(rows);
800 template<
typename... TYPE>
auto query(zview query, params
const &parms)
802 return exec(query, parms).iter<TYPE...>();
815 template<
typename... TYPE>
816 [[deprecated(
"Use exec(), and call expect_rows() & iter() on the result.")]]
817 auto query_n(result::size_type rows, zview query, params
const &parms)
819 return exec(query, parms).expect_rows(rows).iter<TYPE...>();
829 template<
typename TYPE> TYPE query_value(zview query, params
const &parms)
831 return exec(query, parms).expect_columns(1).one_field().as<TYPE>();
842 template<
typename... TYPE>
844 std::tuple<TYPE...> query1(zview query, params
const &parms)
846 return exec(query, parms).one_row().as<TYPE...>();
857 template<
typename... TYPE>
858 [[nodiscard]] std::optional<std::tuple<TYPE...>>
859 query01(zview query, params
const &parms)
861 std::optional<row> r{exec(query, parms).opt_row()};
863 return {r->as<TYPE...>()};
881 template<
typename CALLABLE>
882 void for_query(zview query, CALLABLE &&func, params
const &parms)
884 exec(query, parms).for_each(std::forward<CALLABLE>(func));
903 void notify(std::string_view channel, std::string_view payload = {});
907 template<
typename... Args>
908 [[deprecated(
"Use exec(prepped, params) instead.")]]
909 result exec_prepared(zview statement, Args &&...args)
911 return exec(prepped{statement}, params{args...});
915 result exec(prepped statement)
918 return internal_exec_prepared(statement, pp.make_c_params());
927 template<
typename... TYPE>
928 auto query(prepped statement, params
const &parms = {})
930 return exec(statement, parms).iter<TYPE...>();
937 template<
typename TYPE>
938 TYPE query_value(prepped statement, params
const &parms = {})
940 return exec(statement, parms).expect_columns(1).one_field().as<TYPE>();
947 template<
typename CALLABLE>
948 void for_query(prepped statement, CALLABLE &&func, params
const &parms = {})
950 exec(statement, parms).for_each(std::forward<CALLABLE>(func));
954 result exec(prepped statement, params
const &parms)
956 return internal_exec_prepared(statement, parms.make_c_params());
962 template<
typename... Args>
964 "Use exec(string_view, params) and call one_row() on the result.")]]
965 row exec_prepared1(zview statement, Args &&...args)
967 return exec(prepped{statement}, params{args...}).one_row();
973 template<
typename... Args>
975 "Use exec(prepped, params), and call no_rows() on the result.")]]
976 result exec_prepared0(zview statement, Args &&...args)
978 return exec(prepped{statement}, params{args...}).no_rows();
985 template<
typename... Args>
987 "Use exec(prepped, params), and call expect_rows() on the result.")]]
989 exec_prepared_n(result::size_type rows, zview statement, Args &&...args)
991 return exec(pqxx::prepped{statement}, params{args...}).expect_rows(rows);
999 void process_notice(
char const msg[])
const { m_conn.process_notice(msg); }
1001 void process_notice(zview msg)
const { m_conn.process_notice(msg); }
1005 [[nodiscard]]
constexpr connection &conn() const noexcept {
return m_conn; }
1023 [[deprecated(
"Set transaction-local variables using SQL SET statements.")]]
1024 void set_variable(std::string_view var, std::string_view value);
1030 [[deprecated(
"Read variables using SQL SHOW statements.")]]
1031 std::string get_variable(std::string_view);
1035 [[nodiscard]] std::string_view name() const & noexcept {
return m_name; }
1043 connection &cx, std::string_view tname,
1044 std::shared_ptr<std::string> rollback_cmd) :
1045 m_conn{cx}, m_name{tname}, m_rollback_cmd{rollback_cmd}
1054 transaction_base(connection &cx, std::string_view tname);
1057 explicit transaction_base(connection &cx);
1060 void register_transaction();
1063 void close() noexcept;
1066 virtual
void do_commit() = 0;
1072 virtual
void do_abort();
1075 void set_rollback_cmd(std::shared_ptr<std::
string> cmd)
1077 m_rollback_cmd = cmd;
1081 result direct_exec(std::string_view, std::string_view desc =
""sv);
1083 direct_exec(std::shared_ptr<std::string>, std::string_view desc =
""sv);
1094 PQXX_PRIVATE
void check_pending_error();
1096 result internal_exec_prepared(
1097 std::string_view statement, internal::c_params
const &args);
1100 internal_exec_params(std::string_view query, internal::c_params
const &args);
1103 [[nodiscard]] std::string description()
const;
1105 friend class pqxx::internal::gate::transaction_transaction_focus;
1106 PQXX_PRIVATE
void register_focus(transaction_focus *);
1107 PQXX_PRIVATE
void unregister_focus(transaction_focus *)
noexcept;
1108 PQXX_PRIVATE
void register_pending_error(zview)
noexcept;
1109 PQXX_PRIVATE
void register_pending_error(std::string &&) noexcept;
1112 template<typename... ARGS>
1113 auto stream_like(std::string_view query, std::tuple<ARGS...> const *)
1115 return stream<ARGS...>(query);
1124 transaction_focus
const *m_focus =
nullptr;
1126 status m_status = status::active;
1127 bool m_registered =
false;
1129 std::string m_pending_error;
1132 std::shared_ptr<std::string> m_rollback_cmd;
1134 static constexpr std::string_view s_type_name{
"transaction"sv};
1141std::string_view transaction_base::query_value<std::string_view>(
1142 zview query, std::string_view desc) =
delete;
1145zview transaction_base::query_value<zview>(
1146 zview query, std::string_view desc) =
delete;
1154template<pqxx::isolation_level isolation, pqxx::write_policy rw>
1159inline constexpr zview begin_cmd<read_committed, write_policy::read_write>{
1163 "BEGIN READ ONLY"_zv};
1166 "BEGIN ISOLATION LEVEL REPEATABLE READ"_zv};
1169 "BEGIN ISOLATION LEVEL REPEATABLE READ READ ONLY"_zv};
1172 "BEGIN ISOLATION LEVEL SERIALIZABLE"_zv};
1175 "BEGIN ISOLATION LEVEL SERIALIZABLE READ ONLY"_zv};
1178#include "pqxx/internal/stream_query_impl.hxx"
Definition transaction-sql_cursor.hxx:6
Base class for things that monopolise a transaction's attention.
Definition transaction_focus.hxx:29
Marker-type wrapper: zero-terminated std::string_view.
Definition zview.hxx:38
Internal items for libpqxx' own use. Do not use these yourself.
Definition encodings.cxx:33
void PQXX_LIBEXPORT unesc_bin(std::string_view escaped_data, std::byte buffer[])
Reconstitute binary data from its escaped version.
Definition util.cxx:165
const zview begin_cmd
The SQL command for starting a given type of transaction.
decltype(strip_types(std::declval< TYPES... >())) strip_types_t
Take a tuple type and apply strip_t to its component types.
Definition util.hxx:629
The home of all libpqxx classes, functions, templates, etc.
Definition array.cxx:27
std::conditional< has_generic_bytes_char_traits, std::basic_string< std::byte >, std::basic_string< std::byte, byte_char_traits > >::type bytes
Type alias for a container containing bytes.
Definition util.hxx:373
bytes_view binary_cast(TYPE const &data)
End a code block started by "ignore-deprecated-pre.hxx".
Definition util.hxx:409