mysql-server/sql/xa/sql_xa_start.cc
2025-03-05 14:31:37 +07:00

88 lines
3.4 KiB
C++

/* Copyright (c) 2022, 2024, Oracle and/or its affiliates.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License, version 2.0,
as published by the Free Software Foundation.
This program is designed to work with certain software (including
but not limited to OpenSSL) that is licensed under separate terms,
as designated in a particular file or component or in included license
documentation. The authors of MySQL hereby grant you an additional
permission to link the program and your derivative works with the
separately licensed software that they have either included with
the program or referenced in the documentation.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License, version 2.0, for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
#include "sql/xa/sql_xa_start.h" // Sql_cmd_xa_start
#include "mysql/psi/mysql_transaction.h" // MYSQL_SET_TRANSACTION_XA_STATE
#include "mysqld_error.h" // Error codes
#include "sql/debug_sync.h" // DEBUG_SYNC
#include "sql/sql_class.h" // THD
#include "sql/transaction.h" // trans_begin, trans_rollback
#include "sql/transaction_info.h" // Transaction_ctx
#include "sql/xa/transaction_cache.h" // xa::Transaction_cache
Sql_cmd_xa_start::Sql_cmd_xa_start(xid_t *xid_arg,
enum xa_option_words xa_option)
: m_xid(xid_arg), m_xa_opt(xa_option) {}
enum_sql_command Sql_cmd_xa_start::sql_command_code() const {
return SQLCOM_XA_START;
}
bool Sql_cmd_xa_start::execute(THD *thd) {
bool st = trans_xa_start(thd);
if (!st) {
thd->rpl_detach_engine_ha_data();
my_ok(thd);
}
return st;
}
bool Sql_cmd_xa_start::trans_xa_start(THD *thd) {
XID_STATE *xid_state = thd->get_transaction()->xid_state();
DBUG_TRACE;
if (xid_state->has_state(XID_STATE::XA_IDLE) && m_xa_opt == XA_RESUME) {
bool not_equal = !xid_state->has_same_xid(m_xid);
if (not_equal)
my_error(ER_XAER_NOTA, MYF(0));
else {
xid_state->set_state(XID_STATE::XA_ACTIVE);
MYSQL_SET_TRANSACTION_XA_STATE(
thd->m_transaction_psi,
(int)thd->get_transaction()->xid_state()->get_state());
}
return not_equal;
}
/* TODO: JOIN is not supported yet. */
if (m_xa_opt != XA_NONE)
my_error(ER_XAER_INVAL, MYF(0));
else if (!xid_state->has_state(XID_STATE::XA_NOTR))
my_error(ER_XAER_RMFAIL, MYF(0), xid_state->state_name());
else if (thd->locked_tables_mode || thd->in_active_multi_stmt_transaction())
my_error(ER_XAER_OUTSIDE, MYF(0));
else if (!trans_begin(thd)) {
xid_state->start_normal_xa(m_xid);
MYSQL_SET_TRANSACTION_XID(thd->m_transaction_psi,
(const void *)xid_state->get_xid(),
(int)xid_state->get_state());
if (xa::Transaction_cache::insert(m_xid, thd->get_transaction())) {
xid_state->reset();
trans_rollback(thd);
}
}
return thd->is_error() || !xid_state->has_state(XID_STATE::XA_ACTIVE);
}