// // 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_IMPL_INTERNAL_SANSIO_EXECUTE_HPP #define BOOST_MYSQL_IMPL_INTERNAL_SANSIO_EXECUTE_HPP #include #include #include #include #include #include #include #include #include #include namespace boost { namespace mysql { namespace detail { class read_execute_response_algo { int resume_point_{0}; read_resultset_head_algo read_head_st_; read_some_rows_algo read_some_rows_st_; public: // We pass false because they are subordinate algos. This suppresses state checks. // This is always a subordinate algo, so it never performs state checks. read_execute_response_algo(execution_processor* proc) noexcept : read_head_st_({proc}, false), read_some_rows_st_({proc, output_ref()}, false) { } execution_processor& processor() { return read_head_st_.processor(); } next_action resume(connection_state_data& st, diagnostics& diag, error_code ec) { next_action act; switch (resume_point_) { case 0: while (!processor().is_complete()) { if (processor().is_reading_head()) { read_head_st_.reset(); while (!(act = read_head_st_.resume(st, diag, ec)).is_done()) BOOST_MYSQL_YIELD(resume_point_, 1, act) if (act.error()) return act; } else if (processor().is_reading_rows()) { read_some_rows_st_.reset(); while (!(act = read_some_rows_st_.resume(st, diag, ec)).is_done()) BOOST_MYSQL_YIELD(resume_point_, 2, act) if (act.error()) return act; } } } return next_action(); } }; class execute_algo { int resume_point_{0}; start_execution_algo start_execution_st_; read_execute_response_algo read_response_st_; execution_processor& processor() { return read_response_st_.processor(); } public: // We pass false to the start execution algo's constructor because it's a subordinate algo. // This disables state checks. execute_algo(execute_algo_params params) noexcept : start_execution_st_({params.req, params.proc}, false), read_response_st_(params.proc) { } next_action resume(connection_state_data& st, diagnostics& diag, error_code ec) { next_action act; switch (resume_point_) { case 0: // Check status ec = st.check_status_ready(); if (ec) return ec; // Send request and read the first response while (!(act = start_execution_st_.resume(st, diag, ec)).is_done()) BOOST_MYSQL_YIELD(resume_point_, 1, act) if (act.error()) return act; // Read anything else while (!(act = read_response_st_.resume(st, diag, ec)).is_done()) BOOST_MYSQL_YIELD(resume_point_, 2, act) return act; } return next_action(); } }; } // namespace detail } // namespace mysql } // namespace boost #endif