| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219 |
- //
- // Copyright (c) 2019-2023 Ruben Perez Hidalgo (rubenperez038 at gmail dot 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)
- //
- #ifndef BOOST_MYSQL_RESULTS_HPP
- #define BOOST_MYSQL_RESULTS_HPP
- #include <boost/mysql/execution_state.hpp>
- #include <boost/mysql/metadata_collection_view.hpp>
- #include <boost/mysql/rows.hpp>
- #include <boost/mysql/rows_view.hpp>
- #include <boost/mysql/string_view.hpp>
- #include <boost/mysql/detail/auxiliar/access_fwd.hpp>
- #include <cassert>
- namespace boost {
- namespace mysql {
- /**
- * \brief Holds the results of a SQL query.
- * \details The results (rows, metadata and additional info) are held in-memory.
- * \n
- * \par Thread safety
- * Distinct objects: safe. \n
- * Shared objects: unsafe. \n
- */
- class results
- {
- public:
- /**
- * \brief Default constructor.
- * \details Constructs an empty results object, with `this->has_value() == false`.
- *
- * \par Exception safety
- * No-throw guarantee.
- */
- results() = default;
- /**
- * \brief Copy constructor.
- * \par Exception safety
- * Strong guarantee. Internal allocations may throw.
- */
- results(const results& other) = default;
- /**
- * \brief Move constructor.
- * \par Exception safety
- * No-throw guarantee.
- *
- * \par Object lifetimes
- * View objects obtained from `other` remain valid.
- */
- results(results&& other) = default;
- /**
- * \brief Copy assignment.
- * \par Exception safety
- * Basic guarantee. Internal allocations may throw.
- *
- * \par Object lifetimes
- * View objects referencing `*this` are invalidated.
- */
- results& operator=(const results& other) = default;
- /**
- * \brief Move assignment.
- * \par Exception safety
- * Basic guarantee. Internal allocations may throw.
- *
- * \par Object lifetimes
- * View objects referencing `other` remain valid. View objects
- * referencing `*this` are invalidated.
- */
- results& operator=(results&& other) = default;
- /// Destructor
- ~results() = default;
- /**
- * \brief Returns whether the object holds a valid result.
- * \details Having `this->has_value()` is a precondition to call all data accessors.
- * Objects populated by \ref connection::query, \ref connection::execute_statement or their async
- * counterparts are guaranteed to have `this->has_value() == true`.
- *
- * \par Exception safety
- * No-throw guarantee.
- */
- bool has_value() const noexcept { return st_.complete(); }
- /**
- * \brief Returns the rows retrieved by the SQL query.
- * \par Preconditions
- * `this->has_value() == true`
- *
- * \par Exception safety
- * No-throw guarantee.
- *
- * \par Object lifetimes
- * This function returns a view object, with reference semantics. The returned view points into
- * memory owned by `*this`, and will be valid as long as `*this` or an object move-constructed
- * from `*this` are alive.
- */
- rows_view rows() const noexcept
- {
- assert(has_value());
- return rows_;
- }
- /**
- * \brief Returns metadata about the columns in the query.
- * \details
- * The returned collection will have as many \ref metadata objects as columns retrieved by
- * the SQL query, and in the same order.
- *
- * \par Preconditions
- * `this->has_value() == true`
- *
- * \par Exception safety
- * No-throw guarantee.
- *
- * \par Object lifetimes
- * This function returns a view object, with reference semantics. The returned view points into
- * memory owned by `*this`, and will be valid as long as `*this` or an object move-constructed
- * from `*this` are alive.
- */
- metadata_collection_view meta() const noexcept
- {
- assert(has_value());
- return st_.meta();
- }
- /**
- * \brief Returns the number of rows affected by the executed SQL statement.
- * \par Preconditions
- * `this->has_value() == true`
- *
- * \par Exception safety
- * No-throw guarantee.
- */
- std::uint64_t affected_rows() const noexcept
- {
- assert(has_value());
- return st_.affected_rows();
- }
- /**
- * \brief Returns the last insert ID produced by the executed SQL statement.
- * \par Preconditions
- * `this->has_value() == true`
- *
- * \par Exception safety
- * No-throw guarantee.
- */
- std::uint64_t last_insert_id() const noexcept
- {
- assert(has_value());
- return st_.last_insert_id();
- }
- /**
- * \brief Returns the number of warnings produced by the executed SQL statement.
- * \par Preconditions
- * `this->has_value() == true`
- *
- * \par Exception safety
- * No-throw guarantee.
- */
- unsigned warning_count() const noexcept
- {
- assert(has_value());
- return st_.warning_count();
- }
- /**
- * \brief Returns additionat text information about the execution of the SQL statement.
- * \details
- * The format of this information is documented by MySQL <a
- * href="https://dev.mysql.com/doc/c-api/8.0/en/mysql-info.html">here</a>.
- * \n
- * The returned string always uses ASCII encoding, regardless of the connection's character set.
- *
- * \par Preconditions
- * `this->has_value() == true`
- *
- * \par Exception safety
- * No-throw guarantee.
- *
- * \par Object lifetimes
- * This function returns a view object, with reference semantics. The returned view points into
- * memory owned by `*this`, and will be valid as long as `*this` or an object move-constructed
- * from `*this` are alive.
- */
- string_view info() const noexcept
- {
- assert(has_value());
- return st_.info();
- }
- private:
- execution_state st_;
- ::boost::mysql::rows rows_;
- #ifndef BOOST_MYSQL_DOXYGEN
- friend struct detail::results_access;
- #endif
- };
- } // namespace mysql
- } // namespace boost
- #include <boost/mysql/impl/results.hpp>
- #endif
|