123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- //
- // Copyright (c) 2019-2024 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_IMPL_INTERNAL_SANSIO_READ_RESULTSET_HEAD_HPP
- #define BOOST_MYSQL_IMPL_INTERNAL_SANSIO_READ_RESULTSET_HEAD_HPP
- #include <boost/mysql/diagnostics.hpp>
- #include <boost/mysql/error_code.hpp>
- #include <boost/mysql/detail/algo_params.hpp>
- #include <boost/mysql/detail/execution_processor/execution_processor.hpp>
- #include <boost/mysql/impl/internal/coroutine.hpp>
- #include <boost/mysql/impl/internal/sansio/connection_state_data.hpp>
- namespace boost {
- namespace mysql {
- namespace detail {
- inline error_code process_execution_response(
- connection_state_data& st,
- execution_processor& proc,
- span<const std::uint8_t> msg,
- diagnostics& diag
- )
- {
- auto response = deserialize_execute_response(msg, st.flavor, diag);
- error_code err;
- switch (response.type)
- {
- case execute_response::type_t::error: err = response.data.err; break;
- case execute_response::type_t::ok_packet:
- st.backslash_escapes = response.data.ok_pack.backslash_escapes();
- err = proc.on_head_ok_packet(response.data.ok_pack, diag);
- break;
- case execute_response::type_t::num_fields: proc.on_num_meta(response.data.num_fields); break;
- }
- return err;
- }
- inline error_code process_field_definition(
- execution_processor& proc,
- span<const std::uint8_t> msg,
- diagnostics& diag
- )
- {
- // Deserialize the message
- coldef_view coldef{};
- auto err = deserialize_column_definition(msg, coldef);
- if (err)
- return err;
- // Notify the processor
- return proc.on_meta(coldef, diag);
- }
- class read_resultset_head_algo
- {
- diagnostics* diag_;
- execution_processor* proc_;
- struct state_t
- {
- int resume_point{0};
- } state_;
- public:
- read_resultset_head_algo(read_resultset_head_algo_params params) noexcept
- : diag_(params.diag), proc_(params.proc)
- {
- }
- void reset() { state_ = state_t{}; }
- diagnostics& diag() { return *diag_; }
- execution_processor& processor() { return *proc_; }
- next_action resume(connection_state_data& st, error_code ec)
- {
- if (ec)
- return ec;
- switch (state_.resume_point)
- {
- case 0:
- // Clear diagnostics
- diag_->clear();
- // If we're not reading head, return
- if (!proc_->is_reading_head())
- return next_action();
- // Read the response
- BOOST_MYSQL_YIELD(state_.resume_point, 1, st.read(proc_->sequence_number()))
- // Response may be: ok_packet, err_packet, local infile request
- // (not implemented), or response with fields
- ec = process_execution_response(st, *proc_, st.reader.message(), *diag_);
- if (ec)
- return ec;
- // Read all of the field definitions
- while (proc_->is_reading_meta())
- {
- // Read a message
- BOOST_MYSQL_YIELD(state_.resume_point, 2, st.read(proc_->sequence_number()))
- // Process the metadata packet
- ec = process_field_definition(*proc_, st.reader.message(), *diag_);
- if (ec)
- return ec;
- }
- // No EOF packet is expected here, as we require deprecate EOF capabilities
- }
- return next_action();
- }
- };
- } // namespace detail
- } // namespace mysql
- } // namespace boost
- #endif
|