| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- //
- // 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_DIAGNOSTICS_HPP
- #define BOOST_MYSQL_DIAGNOSTICS_HPP
- #include <boost/mysql/string_view.hpp>
- #include <boost/mysql/detail/auxiliar/access_fwd.hpp>
- #include <ostream>
- #include <string>
- namespace boost {
- namespace mysql {
- /**
- * \brief Contains additional information about errors.
- * \details
- * This class is a container for additional diagnostics about an operation that
- * failed. Currently, it's used to hold any error messages sent by the server on
- * error (\ref server_message). More members may be added in the future.
- */
- class diagnostics
- {
- public:
- /**
- * \brief Constructs a diagnostics object with an empty error message.
- * \par Exception safety
- * No-throw guarantee.
- */
- diagnostics() = default;
- /**
- * \brief Gets the server-generated error message.
- * \details
- * It's encoded according to `character_set_results` character set, which
- * usually matches the connection's character set. It may potentially contain user input.
- *
- * \par Exception safety
- * No-throw guarantee.
- *
- * \par Object lifetimes
- * The returned view is valid as long as `*this` is alive, hasn't been assigned-to
- * or moved-from, and \ref clear hasn't been called. Moving `*this` invalidates the view.
- */
- string_view server_message() const noexcept { return msg_; }
- /**
- * \brief Clears the error message.
- * \par Exception safety
- * No-throw guarantee.
- */
- void clear() noexcept { msg_.clear(); }
- private:
- std::string msg_;
- #ifndef BOOST_MYSQL_DOXYGEN
- friend struct detail::diagnostics_access;
- #endif
- };
- /**
- * \relates diagnostics
- * \brief Compares two diagnostics objects.
- * \par Exception safety
- * No-throw guarantee.
- */
- inline bool operator==(const diagnostics& lhs, const diagnostics& rhs) noexcept
- {
- return lhs.server_message() == rhs.server_message();
- }
- /**
- * \relates diagnostics
- * \brief Compares two diagnostics objects.
- * \par Exception safety
- * No-throw guarantee.
- */
- inline bool operator!=(const diagnostics& lhs, const diagnostics& rhs) noexcept { return !(lhs == rhs); }
- } // namespace mysql
- } // namespace boost
- #include <boost/mysql/impl/diagnostics.hpp>
- #endif
|