MySQL 8.2.0
Source Code Documentation
lock.h
Go to the documentation of this file.
1/* Copyright (c) 2010, 2023, Oracle and/or its affiliates.
2
3 This program is free software; you can redistribute it and/or modify
4 it under the terms of the GNU General Public License, version 2.0,
5 as published by the Free Software Foundation.
6
7 This program is also distributed with certain software (including
8 but not limited to OpenSSL) that is licensed under separate terms,
9 as designated in a particular file or component or in included license
10 documentation. The authors of MySQL hereby grant you an additional
11 permission to link the program and your derivative works with the
12 separately licensed software that they have included with MySQL.
13
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License, version 2.0, for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
22
23#ifndef LOCK_INCLUDED
24#define LOCK_INCLUDED
25
26#include <stddef.h>
27#include <sys/types.h>
28#include <string>
29
30#include "map_helpers.h"
31#include "sql/mdl.h"
32
33class THD;
34// Forward declarations
35struct TABLE;
36struct THR_LOCK_DATA;
37
38struct MYSQL_LOCK {
42};
43
45 uint flags);
46void mysql_unlock_tables(THD *thd, MYSQL_LOCK *sql_lock);
47void mysql_unlock_read_tables(THD *thd, MYSQL_LOCK *sql_lock);
48void mysql_unlock_some_tables(THD *thd, TABLE **table, uint count);
49void mysql_lock_remove(THD *thd, MYSQL_LOCK *locked, TABLE *table);
52/* Lock based on name */
53bool lock_schema_name(THD *thd, const char *db);
54
55// Hash set to hold set of tablespace names.
57
58// Lock tablespace names.
59bool lock_tablespace_names(THD *thd, Tablespace_hash_set *tablespace_set,
60 ulong lock_wait_timeout, MEM_ROOT *mem_root);
61
62/* Lock based on stored routine name */
64 const char *db, const char *name);
65
66/* Acquire protection against the global read lock. */
67bool acquire_shared_global_read_lock(THD *thd, unsigned long lock_wait_timeout);
68
69#endif /* LOCK_INCLUDED */
For each client connection we create a separate thread with THD serving as a thread/connection descri...
Definition: sql_lexer_thd.h:35
std::unordered_set, but with my_malloc, so that you can track the memory used using PSI memory keys.
Definition: map_helpers.h:167
static MEM_ROOT mem_root
Definition: client_plugin.cc:113
void mysql_unlock_read_tables(THD *thd, MYSQL_LOCK *sql_lock)
unlock all tables locked for read.
Definition: lock.cc:434
void mysql_unlock_tables(THD *thd, MYSQL_LOCK *sql_lock)
Definition: lock.cc:409
bool acquire_shared_global_read_lock(THD *thd, unsigned long lock_wait_timeout)
Acquire protection against the global read lock.
Definition: lock.cc:1012
MYSQL_LOCK * mysql_lock_merge(MYSQL_LOCK *a, MYSQL_LOCK *b)
Definition: lock.cc:566
bool lock_object_name(THD *thd, MDL_key::enum_mdl_namespace mdl_type, const char *db, const char *name)
Obtain an exclusive metadata lock on an object name.
Definition: lock.cc:846
MYSQL_LOCK * mysql_lock_tables(THD *thd, TABLE **table, size_t count, uint flags)
Lock tables.
Definition: lock.cc:315
bool lock_schema_name(THD *thd, const char *db)
Obtain an exclusive metadata lock on a schema name.
Definition: lock.cc:738
bool lock_tablespace_names(THD *thd, Tablespace_hash_set *tablespace_set, ulong lock_wait_timeout, MEM_ROOT *mem_root)
Acquire IX MDL lock each tablespace name from the given set.
Definition: lock.cc:794
void mysql_lock_abort_for_thread(THD *thd, TABLE *table)
Abort one thread / table combination.
Definition: lock.cc:553
void mysql_lock_remove(THD *thd, MYSQL_LOCK *locked, TABLE *table)
Try to find the table in the list of locked tables.
Definition: lock.cc:491
void mysql_unlock_some_tables(THD *thd, TABLE **table, uint count)
Unlock some of the tables locked by mysql_lock_tables.
Definition: lock.cc:424
static int flags[50]
Definition: hp_test1.cc:39
malloc_unordered_set< std::string > Tablespace_hash_set
Definition: lock.h:56
static int count
Definition: myisam_ftdump.cc:44
static PFS_engine_table_share_proxy table
Definition: pfs.cc:60
case opt name
Definition: sslopt-case.h:32
enum_mdl_namespace
Object namespaces.
Definition: mdl.h:399
The MEM_ROOT is a simple arena, where allocations are carved out of larger blocks.
Definition: my_alloc.h:82
Definition: lock.h:38
THR_LOCK_DATA ** locks
Definition: lock.h:41
uint table_count
Definition: lock.h:40
TABLE ** table
Definition: lock.h:39
uint lock_count
Definition: lock.h:40
Definition: table.h:1396
Definition: thr_lock.h:123