client_errc.hpp 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. //
  2. // Copyright (c) 2019-2023 Ruben Perez Hidalgo (rubenperez038 at gmail dot com)
  3. //
  4. // Distributed under the Boost Software License, Version 1.0. (See accompanying
  5. // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  6. //
  7. #ifndef BHO_MYSQL_CLIENT_ERRC_HPP
  8. #define BHO_MYSQL_CLIENT_ERRC_HPP
  9. #include <asio2/bho/mysql/error_code.hpp>
  10. #include <asio2/bho/mysql/detail/config.hpp>
  11. #include <asio/error.hpp>
  12. namespace bho {
  13. namespace mysql {
  14. /**
  15. * \brief MySQL client-defined error codes.
  16. * \details These errors are produced by the client itself, rather than the server.
  17. */
  18. enum class client_errc : int
  19. {
  20. /// An incomplete message was received from the server (indicates a deserialization error or
  21. /// packet mismatch).
  22. incomplete_message = 1,
  23. /// An unexpected value was found in a server-received message (indicates a deserialization
  24. /// error or packet mismatch).
  25. protocol_value_error,
  26. /// The server does not support the minimum required capabilities to establish the connection.
  27. server_unsupported,
  28. /// Unexpected extra bytes at the end of a message were received (indicates a deserialization
  29. /// error or packet mismatch).
  30. extra_bytes,
  31. /// Mismatched sequence numbers (usually caused by a packet mismatch).
  32. sequence_number_mismatch,
  33. /// The user employs an authentication plugin not known to this library.
  34. unknown_auth_plugin,
  35. /// The authentication plugin requires the connection to use SSL.
  36. auth_plugin_requires_ssl,
  37. /// The number of parameters passed to the prepared statement does not match the number of
  38. /// actual parameters.
  39. wrong_num_params,
  40. /// The connection mandatory SSL, but the server doesn't accept SSL connections.
  41. server_doesnt_support_ssl,
  42. /// The static interface detected a mismatch between your C++ type definitions and what the server
  43. /// returned in the query.
  44. metadata_check_failed,
  45. /// The static interface detected a mismatch between the number of row types passed to `static_results`
  46. /// or `static_execution_state` and the number of resultsets returned by your query.
  47. num_resultsets_mismatch,
  48. /// The StaticRow type passed to read_some_rows does not correspond to the resultset type being read.
  49. row_type_mismatch,
  50. /// The static interface encountered an error when parsing a field into a C++ data structure.
  51. static_row_parsing_error,
  52. };
  53. BHO_MYSQL_DECL
  54. const asio::error_category& get_client_category() noexcept;
  55. /// Creates an \ref error_code from a \ref client_errc.
  56. inline error_code make_error_code(client_errc error)
  57. {
  58. return error_code(static_cast<int>(error), get_client_category());
  59. }
  60. } // namespace mysql
  61. } // namespace bho
  62. #ifndef BHO_MYSQL_DOXYGEN
  63. namespace std {
  64. template <>
  65. struct is_error_code_enum<::bho::mysql::client_errc>
  66. {
  67. static constexpr bool value = true;
  68. };
  69. } // namespace std
  70. #endif
  71. #ifdef BHO_MYSQL_HEADER_ONLY
  72. #include <asio2/bho/mysql/impl/error_categories.ipp>
  73. #endif
  74. #endif