-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Expand file tree
/
Copy pathhash0hash.ic
More file actions
207 lines (176 loc) · 7.22 KB
/
Copy pathhash0hash.ic
File metadata and controls
207 lines (176 loc) · 7.22 KB
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
/*****************************************************************************
Copyright (c) 1997, 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
*****************************************************************************/
/** @file include/hash0hash.ic
The simple hash table utility
Created 5/20/1997 Heikki Tuuri
*******************************************************/
#include "ut0rnd.h"
static inline hash_cell_t *hash_get_nth_cell(hash_table_t *table, size_t n) {
ut_ad(table);
ut_ad(table->magic_n == hash_table_t::HASH_TABLE_MAGIC_N);
ut_ad(n < table->get_n_cells());
return &table->cells[n];
}
/** Clears a hash table so that all the cells become empty. */
static inline void hash_table_clear(
hash_table_t *table) /*!< in/out: hash table */
{
ut_ad(table);
ut_ad(table->magic_n == hash_table_t::HASH_TABLE_MAGIC_N);
memset(table->cells.get(), 0x0, table->get_n_cells() * sizeof(hash_cell_t));
}
static inline size_t hash_get_n_cells(hash_table_t const *table) {
ut_ad(table);
ut_ad(table->magic_n == hash_table_t::HASH_TABLE_MAGIC_N);
return table->get_n_cells();
}
static inline uint64_t hash_calc_cell_id(uint64_t hash_value,
hash_table_t const *table) {
ut_ad(table);
ut_ad(table->magic_n == hash_table_t::HASH_TABLE_MAGIC_N);
return hash_value % table->get_n_cells_fast_modulo();
}
#ifndef UNIV_HOTBACKUP
/** Gets the sync object index for a hash value in a hash table.
@return index */
static inline uint64_t hash_get_sync_obj_index(
hash_table_t *table, /*!< in: hash table */
uint64_t hash_value) /*!< in: hash value */
{
ut_ad(table);
ut_ad(table->magic_n == hash_table_t::HASH_TABLE_MAGIC_N);
ut_ad(table->type != HASH_TABLE_SYNC_NONE);
ut_ad(ut_is_2pow(table->n_sync_obj));
return ut_2pow_remainder(hash_calc_cell_id(hash_value, table),
table->n_sync_obj);
}
/** Gets the heap for a hash value in a hash table.
@return mem heap */
static inline mem_heap_t *hash_get_heap(
hash_table_t *table) /*!< in: hash table */
{
ut_ad(table);
ut_ad(table->magic_n == hash_table_t::HASH_TABLE_MAGIC_N);
ut_ad(table->n_sync_obj == 0);
ut_ad(table->type == HASH_TABLE_SYNC_NONE);
ut_ad(table->heap != nullptr);
return table->heap;
}
/** Gets the nth rw_lock in a hash table.
@return rw_lock */
static inline rw_lock_t *hash_get_nth_lock(
hash_table_t *table, /*!< in: hash table */
size_t i) /*!< in: index of the rw_lock */
{
ut_ad(table);
ut_ad(table->magic_n == hash_table_t::HASH_TABLE_MAGIC_N);
ut_ad(table->type == HASH_TABLE_SYNC_RW_LOCK);
ut_ad(i < table->n_sync_obj);
return table->rw_locks + i;
}
/** Gets the rw_lock for a hash value in a hash table.
@return rw_lock */
static inline rw_lock_t *hash_get_lock(
hash_table_t *table, /*!< in: hash table */
uint64_t hash_value) /*!< in: hash value */
{
ut_ad(table);
ut_ad(table->type == HASH_TABLE_SYNC_RW_LOCK);
ut_ad(table->magic_n == hash_table_t::HASH_TABLE_MAGIC_N);
const auto i = hash_get_sync_obj_index(table, hash_value);
return hash_get_nth_lock(table, i);
}
/** If not appropriate rw_lock for a hash value in a hash table,
relock S-lock the another rw_lock until appropriate for a hash value.
@param[in] hash_lock latched rw_lock to be confirmed
@param[in] table hash table
@param[in] hash_value hash value
@return latched rw_lock */
static inline rw_lock_t *hash_lock_s_confirm(rw_lock_t *hash_lock,
hash_table_t *table,
uint64_t hash_value) {
ut_ad(rw_lock_own(hash_lock, RW_LOCK_S));
rw_lock_t *hash_lock_tmp = hash_get_lock(table, hash_value);
while (hash_lock_tmp != hash_lock) {
rw_lock_s_unlock(hash_lock);
hash_lock = hash_lock_tmp;
rw_lock_s_lock(hash_lock, UT_LOCATION_HERE);
hash_lock_tmp = hash_get_lock(table, hash_value);
}
return hash_lock;
}
/** If not appropriate rw_lock for a hash value in a hash table,
relock X-lock the another rw_lock until appropriate for a hash value.
@param[in] hash_lock latched rw_lock to be confirmed
@param[in] table hash table
@param[in] hash_value hash value
@return latched rw_lock */
static inline rw_lock_t *hash_lock_x_confirm(rw_lock_t *hash_lock,
hash_table_t *table,
uint64_t hash_value) {
ut_ad(rw_lock_own(hash_lock, RW_LOCK_X));
rw_lock_t *hash_lock_tmp = hash_get_lock(table, hash_value);
while (hash_lock_tmp != hash_lock) {
rw_lock_x_unlock(hash_lock);
hash_lock = hash_lock_tmp;
rw_lock_x_lock(hash_lock, UT_LOCATION_HERE);
hash_lock_tmp = hash_get_lock(table, hash_value);
}
return hash_lock;
}
#endif /* !UNIV_HOTBACKUP */
/** Assert that the synchronization object in a hash operation involving
possible change in the hash table is held.
We assert that the specific rw_lock is held in exclusive mode.
@param[in] table The hash table
@param[in] hash_value The hash value for which the modification is performed
*/
static inline void hash_assert_can_modify(hash_table_t *table,
uint64_t hash_value) {
#ifdef UNIV_DEBUG
if (table->type == HASH_TABLE_SYNC_RW_LOCK) {
#ifndef UNIV_HOTBACKUP
rw_lock_t *lock = hash_get_lock(table, hash_value);
ut_ad(rw_lock_own(lock, RW_LOCK_X));
#endif /*!UNIV_HOTBACKUP*/
} else {
ut_ad(table->type == HASH_TABLE_SYNC_NONE);
}
#endif /* UNIV_DEBUG */
}
/** Assert that the synchronization object in a hash search operation is held.
We assert that the specific rw_lock is held either in x-mode or s-mode.
@param[in] table The hash table
@param[in] hash_value The hash value for which the search is performed
*/
static inline void hash_assert_can_search(hash_table_t *table,
uint64_t hash_value) {
#ifdef UNIV_DEBUG
if (table->type == HASH_TABLE_SYNC_RW_LOCK) {
#ifndef UNIV_HOTBACKUP
rw_lock_t *lock = hash_get_lock(table, hash_value);
ut_ad(rw_lock_own(lock, RW_LOCK_X) || rw_lock_own(lock, RW_LOCK_S));
#endif /*!UNIV_HOTBACKUP*/
} else {
ut_ad(table->type == HASH_TABLE_SYNC_NONE);
}
#endif
}