| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209 |
- //
- // Copyright (c) 2019-2025 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_CLIENT_ERRC_HPP
- #define BOOST_MYSQL_CLIENT_ERRC_HPP
- #include <boost/mysql/error_code.hpp>
- #include <boost/mysql/detail/config.hpp>
- #include <boost/system/error_category.hpp>
- namespace boost {
- namespace mysql {
- /**
- * \brief MySQL client-defined error codes.
- * \details These errors are produced by the client itself, rather than the server.
- */
- enum class client_errc : int
- {
- /**
- * \brief An incomplete message was received from the server (indicates a deserialization error or
- * packet mismatch).
- */
- incomplete_message = 1,
- /**
- * \brief An unexpected value was found in a server-received message (indicates a deserialization
- * error or packet mismatch).
- */
- protocol_value_error,
- /// The server does not support the minimum required capabilities to establish the connection.
- server_unsupported,
- /**
- * \brief Unexpected extra bytes at the end of a message were received (indicates a deserialization
- * error or packet mismatch).
- */
- extra_bytes,
- /// Mismatched sequence numbers (usually caused by a packet mismatch).
- sequence_number_mismatch,
- /// The user employs an authentication plugin not known to this library.
- unknown_auth_plugin,
- /**
- * \brief (Legacy) The authentication plugin requires the connection to use SSL.
- * This code is no longer used, since all supported plugins support plaintext connections.
- */
- auth_plugin_requires_ssl,
- /**
- * \brief The number of parameters passed to the prepared statement does not match the number of
- * actual parameters.
- */
- wrong_num_params,
- /// The connection mandates SSL, but the server doesn't accept SSL connections.
- server_doesnt_support_ssl,
- /**
- * \brief
- * The static interface detected a mismatch between your C++ type definitions and what the server
- * returned in the query.
- */
- metadata_check_failed,
- /**
- * \brief The static interface detected a mismatch between the number of row types passed to
- * \ref static_results or \ref static_execution_state and the number of resultsets returned by your query.
- */
- num_resultsets_mismatch,
- /// The `StaticRow` type passed to read_some_rows does not correspond to the resultset type being read.
- row_type_mismatch,
- /// The static interface encountered an error when parsing a field into a C++ data structure.
- static_row_parsing_error,
- /**
- * \brief Getting a connection from a connection_pool was cancelled before
- * the pool was run. Ensure that you're calling connection_pool::async_run.
- */
- pool_not_running,
- /**
- * \brief Getting a connection from a connection_pool failed because the
- * pool was cancelled.
- */
- pool_cancelled,
- /**
- * \brief Getting a connection from a connection_pool was cancelled before
- * a connection was available.
- */
- no_connection_available,
- /// An invalid byte sequence was found while trying to decode a string.
- invalid_encoding,
- /// A formatting operation could not format one of its arguments.
- unformattable_value,
- /// A format string containing invalid syntax was provided to a SQL formatting function.
- format_string_invalid_syntax,
- /**
- * \brief A format string with an invalid byte sequence was provided to a SQL formatting
- * function.
- */
- format_string_invalid_encoding,
- /// A format string mixes manual (e.g. {0}) and automatic (e.g. {}) indexing.
- format_string_manual_auto_mix,
- /// The supplied format specifier (e.g. {:i}) is not supported by the type being formatted.
- format_string_invalid_specifier,
- /**
- * \brief A format argument referenced by a format string was not found. Check the number
- * of format arguments passed and their names.
- */
- format_arg_not_found,
- /**
- * \brief The character set used by the connection is not known by the client. Use
- * \ref any_connection::set_character_set or \ref any_connection::async_set_character_set
- * before invoking operations that require a known charset.
- */
- unknown_character_set,
- /**
- * \brief An operation attempted to read or write a packet larger than the maximum buffer
- * size. Try increasing \ref any_connection_params::max_buffer_size.
- */
- max_buffer_size_exceeded,
- /**
- * \brief Another operation is currently in progress for this connection. Make sure
- * that a single connection does not run two asynchronous operations in parallel.
- */
- operation_in_progress,
- /**
- * \brief The requested operation requires an established session.
- * Call `async_connect` before invoking other operations.
- */
- not_connected,
- /**
- * \brief The connection is currently engaged in a multi-function operation.
- * Finish the current operation by calling `async_read_some_rows` and `async_read_resultset_head`
- * before starting any other operation.
- */
- engaged_in_multi_function,
- /**
- * \brief The operation requires the connection to be engaged in a multi-function operation.
- * Use `async_start_execution` to start one.
- */
- not_engaged_in_multi_function,
- /**
- * \brief During handshake, the server sent a packet type that is not allowed in the current state
- * (protocol violation).
- */
- bad_handshake_packet_type,
- /// An OpenSSL function failed and did not provide any extra diagnostics.
- unknown_openssl_error,
- };
- BOOST_MYSQL_DECL
- const boost::system::error_category& get_client_category() noexcept;
- /// Creates an \ref error_code from a \ref client_errc.
- inline error_code make_error_code(client_errc error)
- {
- return error_code(static_cast<int>(error), get_client_category());
- }
- } // namespace mysql
- #ifndef BOOST_MYSQL_DOXYGEN
- namespace system {
- template <>
- struct is_error_code_enum<::boost::mysql::client_errc>
- {
- static constexpr bool value = true;
- };
- } // namespace system
- #endif
- } // namespace boost
- #ifdef BOOST_MYSQL_HEADER_ONLY
- #include <boost/mysql/impl/error_categories.ipp>
- #endif
- #endif
|