1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131
|
/*****************************************************************************
Copyright (c) 2020, 2025, 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
*****************************************************************************/
#define LOCK_MODULE_IMPLEMENTATION
#include "lock0guards.h"
#include "lock0priv.h"
#include "sync0rw.h"
namespace locksys {
/* Global_exclusive_latch_guard */
Global_exclusive_latch_guard::Global_exclusive_latch_guard(
ut::Location location) {
lock_sys->latches.global_latch.x_lock(location);
}
Global_exclusive_latch_guard::~Global_exclusive_latch_guard() {
lock_sys->latches.global_latch.x_unlock();
}
/* Global_exclusive_try_latch */
Global_exclusive_try_latch::Global_exclusive_try_latch(ut::Location location) {
m_owns_exclusive_global_latch =
lock_sys->latches.global_latch.try_x_lock(location);
}
Global_exclusive_try_latch::~Global_exclusive_try_latch() {
if (m_owns_exclusive_global_latch) {
lock_sys->latches.global_latch.x_unlock();
m_owns_exclusive_global_latch = false;
}
}
/* Shard_naked_latch_guard */
Shard_naked_latch_guard::Shard_naked_latch_guard(ut::Location location,
Lock_mutex &shard_mutex)
: m_shard_mutex{shard_mutex} {
ut_ad(owns_shared_global_latch());
mutex_enter_inline(&m_shard_mutex, location);
}
Shard_naked_latch_guard::Shard_naked_latch_guard(ut::Location location,
const table_id_t &table_id)
: Shard_naked_latch_guard{
location, lock_sys->latches.table_shards.get_mutex(table_id)} {}
Shard_naked_latch_guard::Shard_naked_latch_guard(ut::Location location,
const page_id_t &page_id)
: Shard_naked_latch_guard{
location, lock_sys->latches.page_shards.get_mutex(page_id)} {}
// Please note, that the hash_table argument is ignored, but differentiates this
// overload from the one for table_id_t which is uint64_t as well.
Shard_naked_latch_guard::Shard_naked_latch_guard(ut::Location location,
hash_table_t *,
uint64_t cell_id)
: Shard_naked_latch_guard{
location, lock_sys->latches.page_shards.get_mutex(cell_id)} {}
Shard_naked_latch_guard::~Shard_naked_latch_guard() {
mutex_exit(&m_shard_mutex);
}
/* Global_shared_latch_guard */
Global_shared_latch_guard::Global_shared_latch_guard(ut::Location location) {
lock_sys->latches.global_latch.s_lock(location);
}
Global_shared_latch_guard::~Global_shared_latch_guard() {
lock_sys->latches.global_latch.s_unlock();
}
bool Global_shared_latch_guard::is_x_blocked_by_us() {
return lock_sys->latches.global_latch.is_x_blocked_by_our_s();
}
/* Shard_naked_latches_guard */
Shard_naked_latches_guard::Shard_naked_latches_guard(Lock_mutex &shard_mutex_a,
Lock_mutex &shard_mutex_b)
: m_shard_mutex_1{*std::min(&shard_mutex_a, &shard_mutex_b, MUTEX_ORDER)},
m_shard_mutex_2{*std::max(&shard_mutex_a, &shard_mutex_b, MUTEX_ORDER)} {
ut_ad(owns_shared_global_latch());
if (&m_shard_mutex_1 != &m_shard_mutex_2) {
mutex_enter(&m_shard_mutex_1);
}
mutex_enter(&m_shard_mutex_2);
}
Shard_naked_latches_guard::Shard_naked_latches_guard(const buf_block_t &block_a,
const buf_block_t &block_b)
: Shard_naked_latches_guard{
lock_sys->latches.page_shards.get_mutex(block_a.get_page_id()),
lock_sys->latches.page_shards.get_mutex(block_b.get_page_id())} {}
Shard_naked_latches_guard::~Shard_naked_latches_guard() {
mutex_exit(&m_shard_mutex_2);
if (&m_shard_mutex_1 != &m_shard_mutex_2) {
mutex_exit(&m_shard_mutex_1);
}
}
} // namespace locksys
|