lock0lock.h
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:24k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /******************************************************
  2. The transaction lock system
  3. (c) 1996 Innobase Oy
  4. Created 5/7/1996 Heikki Tuuri
  5. *******************************************************/
  6. #ifndef lock0lock_h
  7. #define lock0lock_h
  8. #include "univ.i"
  9. #include "trx0types.h"
  10. #include "rem0types.h"
  11. #include "dict0types.h"
  12. #include "que0types.h"
  13. #include "page0types.h"
  14. #include "lock0types.h"
  15. #include "read0types.h"
  16. #include "hash0hash.h"
  17. extern ibool lock_print_waits;
  18. /* Buffer for storing information about the most recent deadlock error */
  19. extern FILE* lock_latest_err_file;
  20. /*************************************************************************
  21. Gets the size of a lock struct. */
  22. ulint
  23. lock_get_size(void);
  24. /*===============*/
  25. /* out: size in bytes */
  26. /*************************************************************************
  27. Creates the lock system at database start. */
  28. void
  29. lock_sys_create(
  30. /*============*/
  31. ulint n_cells); /* in: number of slots in lock hash table */
  32. /*************************************************************************
  33. Checks if some transaction has an implicit x-lock on a record in a secondary
  34. index. */
  35. trx_t*
  36. lock_sec_rec_some_has_impl_off_kernel(
  37. /*==================================*/
  38. /* out: transaction which has the x-lock, or
  39. NULL */
  40. rec_t* rec, /* in: user record */
  41. dict_index_t* index); /* in: secondary index */
  42. /*************************************************************************
  43. Checks if some transaction has an implicit x-lock on a record in a clustered
  44. index. */
  45. UNIV_INLINE
  46. trx_t*
  47. lock_clust_rec_some_has_impl(
  48. /*=========================*/
  49. /* out: transaction which has the x-lock, or
  50. NULL */
  51. rec_t* rec, /* in: user record */
  52. dict_index_t* index); /* in: clustered index */
  53. /*****************************************************************
  54. Resets the lock bits for a single record. Releases transactions
  55. waiting for lock requests here. */
  56. void
  57. lock_rec_reset_and_release_wait(
  58. /*============================*/
  59. rec_t* rec); /* in: record whose locks bits should be reset */
  60. /*****************************************************************
  61. Makes a record to inherit the locks of another record as gap type
  62. locks, but does not reset the lock bits of the other record. Also
  63. waiting lock requests on rec are inherited as GRANTED gap locks. */
  64. void
  65. lock_rec_inherit_to_gap(
  66. /*====================*/
  67. rec_t* heir, /* in: record which inherits */
  68. rec_t* rec); /* in: record from which inherited; does NOT reset
  69. the locks on this record */
  70. /*****************************************************************
  71. Updates the lock table when we have reorganized a page. NOTE: we copy
  72. also the locks set on the infimum of the page; the infimum may carry
  73. locks if an update of a record is occurring on the page, and its locks
  74. were temporarily stored on the infimum. */
  75. void
  76. lock_move_reorganize_page(
  77. /*======================*/
  78. page_t* page, /* in: old index page */
  79. page_t* new_page); /* in: reorganized page */
  80. /*****************************************************************
  81. Moves the explicit locks on user records to another page if a record
  82. list end is moved to another page. */
  83. void
  84. lock_move_rec_list_end(
  85. /*===================*/
  86. page_t* new_page, /* in: index page to move to */
  87. page_t* page, /* in: index page */
  88. rec_t* rec); /* in: record on page: this is the
  89. first record moved */
  90. /*****************************************************************
  91. Moves the explicit locks on user records to another page if a record
  92. list start is moved to another page. */
  93. void
  94. lock_move_rec_list_start(
  95. /*=====================*/
  96. page_t* new_page, /* in: index page to move to */
  97. page_t* page, /* in: index page */
  98. rec_t* rec, /* in: record on page: this is the
  99. first record NOT copied */
  100. rec_t* old_end); /* in: old previous-to-last record on
  101. new_page before the records were copied */
  102. /*****************************************************************
  103. Updates the lock table when a page is split to the right. */
  104. void
  105. lock_update_split_right(
  106. /*====================*/
  107. page_t* right_page, /* in: right page */
  108. page_t* left_page); /* in: left page */
  109. /*****************************************************************
  110. Updates the lock table when a page is merged to the right. */
  111. void
  112. lock_update_merge_right(
  113. /*====================*/
  114. rec_t* orig_succ, /* in: original successor of infimum
  115. on the right page before merge */
  116. page_t* left_page); /* in: merged index page which will be
  117. discarded */
  118. /*****************************************************************
  119. Updates the lock table when the root page is copied to another in
  120. btr_root_raise_and_insert. Note that we leave lock structs on the
  121. root page, even though they do not make sense on other than leaf
  122. pages: the reason is that in a pessimistic update the infimum record
  123. of the root page will act as a dummy carrier of the locks of the record
  124. to be updated. */
  125. void
  126. lock_update_root_raise(
  127. /*===================*/
  128. page_t* new_page, /* in: index page to which copied */
  129. page_t* root); /* in: root page */
  130. /*****************************************************************
  131. Updates the lock table when a page is copied to another and the original page
  132. is removed from the chain of leaf pages, except if page is the root! */
  133. void
  134. lock_update_copy_and_discard(
  135. /*=========================*/
  136. page_t* new_page, /* in: index page to which copied */
  137. page_t* page); /* in: index page; NOT the root! */
  138. /*****************************************************************
  139. Updates the lock table when a page is split to the left. */
  140. void
  141. lock_update_split_left(
  142. /*===================*/
  143. page_t* right_page, /* in: right page */
  144. page_t* left_page); /* in: left page */
  145. /*****************************************************************
  146. Updates the lock table when a page is merged to the left. */
  147. void
  148. lock_update_merge_left(
  149. /*===================*/
  150. page_t* left_page, /* in: left page to which merged */
  151. rec_t* orig_pred, /* in: original predecessor of supremum
  152. on the left page before merge */
  153. page_t* right_page); /* in: merged index page which will be
  154. discarded */
  155. /*****************************************************************
  156. Resets the original locks on heir and replaces them with gap type locks
  157. inherited from rec. */
  158. void
  159. lock_rec_reset_and_inherit_gap_locks(
  160. /*=================================*/
  161. rec_t* heir, /* in: heir record */
  162. rec_t* rec); /* in: record */
  163. /*****************************************************************
  164. Updates the lock table when a page is discarded. */
  165. void
  166. lock_update_discard(
  167. /*================*/
  168. rec_t* heir, /* in: record which will inherit the locks */
  169. page_t* page); /* in: index page which will be discarded */
  170. /*****************************************************************
  171. Updates the lock table when a new user record is inserted. */
  172. void
  173. lock_update_insert(
  174. /*===============*/
  175. rec_t* rec); /* in: the inserted record */
  176. /*****************************************************************
  177. Updates the lock table when a record is removed. */
  178. void
  179. lock_update_delete(
  180. /*===============*/
  181. rec_t* rec); /* in: the record to be removed */
  182. /*************************************************************************
  183. Stores on the page infimum record the explicit locks of another record.
  184. This function is used to store the lock state of a record when it is
  185. updated and the size of the record changes in the update. The record
  186. is in such an update moved, perhaps to another page. The infimum record
  187. acts as a dummy carrier record, taking care of lock releases while the
  188. actual record is being moved. */
  189. void
  190. lock_rec_store_on_page_infimum(
  191. /*===========================*/
  192. rec_t* rec); /* in: record whose lock state is stored
  193. on the infimum record of the same page; lock
  194. bits are reset on the record */
  195. /*************************************************************************
  196. Restores the state of explicit lock requests on a single record, where the
  197. state was stored on the infimum of the page. */
  198. void
  199. lock_rec_restore_from_page_infimum(
  200. /*===============================*/
  201. rec_t* rec, /* in: record whose lock state is restored */
  202. page_t* page); /* in: page (rec is not necessarily on this page)
  203. whose infimum stored the lock state; lock bits are
  204. reset on the infimum */ 
  205. /*************************************************************************
  206. Returns TRUE if there are explicit record locks on a page. */
  207. ibool
  208. lock_rec_expl_exist_on_page(
  209. /*========================*/
  210. /* out: TRUE if there are explicit record locks on
  211. the page */
  212. ulint space, /* in: space id */
  213. ulint page_no);/* in: page number */
  214. /*************************************************************************
  215. Checks if locks of other transactions prevent an immediate insert of
  216. a record. If they do, first tests if the query thread should anyway
  217. be suspended for some reason; if not, then puts the transaction and
  218. the query thread to the lock wait state and inserts a waiting request
  219. for a gap x-lock to the lock queue. */
  220. ulint
  221. lock_rec_insert_check_and_lock(
  222. /*===========================*/
  223. /* out: DB_SUCCESS, DB_LOCK_WAIT,
  224. DB_DEADLOCK, or DB_QUE_THR_SUSPENDED */
  225. ulint flags, /* in: if BTR_NO_LOCKING_FLAG bit is set,
  226. does nothing */
  227. rec_t* rec, /* in: record after which to insert */
  228. dict_index_t* index, /* in: index */
  229. que_thr_t* thr, /* in: query thread */
  230. ibool* inherit);/* out: set to TRUE if the new inserted
  231. record maybe should inherit LOCK_GAP type
  232. locks from the successor record */
  233. /*************************************************************************
  234. Checks if locks of other transactions prevent an immediate modify (update,
  235. delete mark, or delete unmark) of a clustered index record. If they do,
  236. first tests if the query thread should anyway be suspended for some
  237. reason; if not, then puts the transaction and the query thread to the
  238. lock wait state and inserts a waiting request for a record x-lock to the
  239. lock queue. */
  240. ulint
  241. lock_clust_rec_modify_check_and_lock(
  242. /*=================================*/
  243. /* out: DB_SUCCESS, DB_LOCK_WAIT,
  244. DB_DEADLOCK, or DB_QUE_THR_SUSPENDED */
  245. ulint flags, /* in: if BTR_NO_LOCKING_FLAG bit is set,
  246. does nothing */
  247. rec_t* rec, /* in: record which should be modified */
  248. dict_index_t* index, /* in: clustered index */
  249. que_thr_t* thr); /* in: query thread */
  250. /*************************************************************************
  251. Checks if locks of other transactions prevent an immediate modify
  252. (delete mark or delete unmark) of a secondary index record. */
  253. ulint
  254. lock_sec_rec_modify_check_and_lock(
  255. /*===============================*/
  256. /* out: DB_SUCCESS, DB_LOCK_WAIT,
  257. DB_DEADLOCK, or DB_QUE_THR_SUSPENDED */
  258. ulint flags, /* in: if BTR_NO_LOCKING_FLAG bit is set,
  259. does nothing */
  260. rec_t* rec, /* in: record which should be modified;
  261. NOTE: as this is a secondary index, we
  262. always have to modify the clustered index
  263. record first: see the comment below */
  264. dict_index_t* index, /* in: secondary index */
  265. que_thr_t* thr); /* in: query thread */
  266. /*************************************************************************
  267. Like the counterpart for a clustered index below, but now we read a
  268. secondary index record. */
  269. ulint
  270. lock_sec_rec_read_check_and_lock(
  271. /*=============================*/
  272. /* out: DB_SUCCESS, DB_LOCK_WAIT,
  273. DB_DEADLOCK, or DB_QUE_THR_SUSPENDED */
  274. ulint flags, /* in: if BTR_NO_LOCKING_FLAG bit is set,
  275. does nothing */
  276. rec_t* rec, /* in: user record or page supremum record
  277. which should be read or passed over by a read
  278. cursor */
  279. dict_index_t* index, /* in: secondary index */
  280. ulint mode, /* in: mode of the lock which the read cursor
  281. should set on records: LOCK_S or LOCK_X; the
  282. latter is possible in SELECT FOR UPDATE */
  283. ulint gap_mode,/* in: LOCK_ORDINARY, LOCK_GAP, or
  284. LOCK_REC_NOT_GAP */
  285. que_thr_t* thr); /* in: query thread */
  286. /*************************************************************************
  287. Checks if locks of other transactions prevent an immediate read, or passing
  288. over by a read cursor, of a clustered index record. If they do, first tests
  289. if the query thread should anyway be suspended for some reason; if not, then
  290. puts the transaction and the query thread to the lock wait state and inserts a
  291. waiting request for a record lock to the lock queue. Sets the requested mode
  292. lock on the record. */
  293. ulint
  294. lock_clust_rec_read_check_and_lock(
  295. /*===============================*/
  296. /* out: DB_SUCCESS, DB_LOCK_WAIT,
  297. DB_DEADLOCK, or DB_QUE_THR_SUSPENDED */
  298. ulint flags, /* in: if BTR_NO_LOCKING_FLAG bit is set,
  299. does nothing */
  300. rec_t* rec, /* in: user record or page supremum record
  301. which should be read or passed over by a read
  302. cursor */
  303. dict_index_t* index, /* in: clustered index */
  304. ulint mode, /* in: mode of the lock which the read cursor
  305. should set on records: LOCK_S or LOCK_X; the
  306. latter is possible in SELECT FOR UPDATE */
  307. ulint gap_mode,/* in: LOCK_ORDINARY, LOCK_GAP, or
  308. LOCK_REC_NOT_GAP */
  309. que_thr_t* thr); /* in: query thread */
  310. /*************************************************************************
  311. Checks that a record is seen in a consistent read. */
  312. ibool
  313. lock_clust_rec_cons_read_sees(
  314. /*==========================*/
  315. /* out: TRUE if sees, or FALSE if an earlier
  316. version of the record should be retrieved */
  317. rec_t* rec, /* in: user record which should be read or
  318. passed over by a read cursor */
  319. dict_index_t* index, /* in: clustered index */
  320. read_view_t* view); /* in: consistent read view */
  321. /*************************************************************************
  322. Checks that a non-clustered index record is seen in a consistent read. */
  323. ulint
  324. lock_sec_rec_cons_read_sees(
  325. /*========================*/
  326. /* out: TRUE if certainly sees, or FALSE if an
  327. earlier version of the clustered index record
  328. might be needed: NOTE that a non-clustered
  329. index page contains so little information on
  330. its modifications that also in the case FALSE,
  331. the present version of rec may be the right,
  332. but we must check this from the clustered
  333. index record */
  334. rec_t* rec, /* in: user record which should be read or
  335. passed over by a read cursor */
  336. dict_index_t* index, /* in: non-clustered index */
  337. read_view_t* view); /* in: consistent read view */
  338. /*************************************************************************
  339. Locks the specified database table in the mode given. If the lock cannot
  340. be granted immediately, the query thread is put to wait. */
  341. ulint
  342. lock_table(
  343. /*=======*/
  344. /* out: DB_SUCCESS, DB_LOCK_WAIT,
  345. DB_DEADLOCK, or DB_QUE_THR_SUSPENDED */
  346. ulint flags, /* in: if BTR_NO_LOCKING_FLAG bit is set,
  347. does nothing;
  348. if LOCK_TABLE_EXP bits are set,
  349. creates an explicit table lock */
  350. dict_table_t* table, /* in: database table in dictionary cache */
  351. ulint mode, /* in: lock mode */
  352. que_thr_t* thr); /* in: query thread */
  353. /*************************************************************************
  354. Checks if there are any locks set on the table. */
  355. ibool
  356. lock_is_on_table(
  357. /*=============*/
  358. /* out: TRUE if there are lock(s) */
  359. dict_table_t* table); /* in: database table in dictionary cache */
  360. /*************************************************************************
  361. Releases a table lock.
  362. Releases possible other transactions waiting for this lock. */
  363. void
  364. lock_table_unlock(
  365. /*==============*/
  366. lock_t* lock); /* in: lock */
  367. /*************************************************************************
  368. Releases an auto-inc lock a transaction possibly has on a table.
  369. Releases possible other transactions waiting for this lock. */
  370. void
  371. lock_table_unlock_auto_inc(
  372. /*=======================*/
  373. trx_t* trx); /* in: transaction */
  374. /*************************************************************************
  375. Releases transaction locks, and releases possible other transactions waiting
  376. because of these locks. */
  377. void
  378. lock_release_off_kernel(
  379. /*====================*/
  380. trx_t* trx); /* in: transaction */
  381. /*************************************************************************
  382. Releases table locks explicitly requested with LOCK TABLES (indicated by
  383. lock type LOCK_TABLE_EXP), and releases possible other transactions waiting
  384. because of these locks. */
  385. void
  386. lock_release_tables_off_kernel(
  387. /*===========================*/
  388. trx_t* trx); /* in: transaction */
  389. /*************************************************************************
  390. Cancels a waiting lock request and releases possible other transactions
  391. waiting behind it. */
  392. void
  393. lock_cancel_waiting_and_release(
  394. /*============================*/
  395. lock_t* lock); /* in: waiting lock request */
  396. /*************************************************************************
  397. Resets all locks, both table and record locks, on a table to be dropped.
  398. No lock is allowed to be a wait lock. */
  399. void
  400. lock_reset_all_on_table(
  401. /*====================*/
  402. dict_table_t* table); /* in: table to be dropped */
  403. /*************************************************************************
  404. Calculates the fold value of a page file address: used in inserting or
  405. searching for a lock in the hash table. */
  406. UNIV_INLINE
  407. ulint
  408. lock_rec_fold(
  409. /*===========*/
  410. /* out: folded value */
  411. ulint space, /* in: space */
  412. ulint page_no);/* in: page number */
  413. /*************************************************************************
  414. Calculates the hash value of a page file address: used in inserting or
  415. searching for a lock in the hash table. */
  416. UNIV_INLINE
  417. ulint
  418. lock_rec_hash(
  419. /*==========*/
  420. /* out: hashed value */
  421. ulint space, /* in: space */
  422. ulint page_no);/* in: page number */
  423. /*************************************************************************
  424. Gets the source table of an ALTER TABLE transaction.  The table must be
  425. covered by an IX or IS table lock. */
  426. dict_table_t*
  427. lock_get_src_table(
  428. /*===============*/
  429. /* out: the source table of transaction,
  430. if it is covered by an IX or IS table lock;
  431. dest if there is no source table, and
  432. NULL if the transaction is locking more than
  433. two tables or an inconsistency is found */
  434. trx_t* trx, /* in: transaction */
  435. dict_table_t* dest, /* in: destination of ALTER TABLE */
  436. ulint* mode); /* out: lock mode of the source table */
  437. /*************************************************************************
  438. Determine if the given table is exclusively "owned" by the given
  439. transaction, i.e., transaction holds LOCK_IX and possibly LOCK_AUTO_INC
  440. on the table. */
  441. ibool
  442. lock_is_table_exclusive(
  443. /*====================*/
  444. /* out: TRUE if table is only locked by trx,
  445. with LOCK_IX, and possibly LOCK_AUTO_INC */
  446. dict_table_t* table, /* in: table */
  447. trx_t* trx); /* in: transaction */
  448. /*************************************************************************
  449. Checks that a transaction id is sensible, i.e., not in the future. */
  450. ibool
  451. lock_check_trx_id_sanity(
  452. /*=====================*/
  453. /* out: TRUE if ok */
  454. dulint trx_id, /* in: trx id */
  455. rec_t* rec, /* in: user record */
  456. dict_index_t* index, /* in: clustered index */
  457. ibool has_kernel_mutex);/* in: TRUE if the caller owns the
  458. kernel mutex */
  459. /*************************************************************************
  460. Validates the lock queue on a single record. */
  461. ibool
  462. lock_rec_queue_validate(
  463. /*====================*/
  464. /* out: TRUE if ok */
  465. rec_t* rec, /* in: record to look at */
  466. dict_index_t* index); /* in: index, or NULL if not known */
  467. /*************************************************************************
  468. Prints info of a table lock. */
  469. void
  470. lock_table_print(
  471. /*=============*/
  472. FILE* file, /* in: file where to print */
  473. lock_t* lock); /* in: table type lock */
  474. /*************************************************************************
  475. Prints info of a record lock. */
  476. void
  477. lock_rec_print(
  478. /*===========*/
  479. FILE* file, /* in: file where to print */
  480. lock_t* lock); /* in: record type lock */
  481. /*************************************************************************
  482. Prints info of locks for all transactions. */
  483. void
  484. lock_print_info_summary(
  485. /*====================*/
  486. FILE* file); /* in: file where to print */
  487. /*************************************************************************
  488. Prints info of locks for each transaction. */
  489. void
  490. lock_print_info_all_transactions(
  491. /*=============================*/
  492. FILE* file); /* in: file where to print */
  493. /*************************************************************************
  494. Validates the lock queue on a table. */
  495. ibool
  496. lock_table_queue_validate(
  497. /*======================*/
  498. /* out: TRUE if ok */
  499. dict_table_t* table); /* in: table */
  500. /*************************************************************************
  501. Validates the record lock queues on a page. */
  502. ibool
  503. lock_rec_validate_page(
  504. /*===================*/
  505. /* out: TRUE if ok */
  506. ulint space, /* in: space id */
  507. ulint page_no);/* in: page number */
  508. /*************************************************************************
  509. Validates the lock system. */
  510. ibool
  511. lock_validate(void);
  512. /*===============*/
  513. /* out: TRUE if ok */
  514. /* The lock system */
  515. extern lock_sys_t* lock_sys;
  516. /* Lock modes and types */
  517. /* Basic modes */
  518. #define LOCK_NONE 0 /* this flag is used elsewhere to note
  519. consistent read */
  520. #define LOCK_IS 2 /* intention shared */
  521. #define LOCK_IX 3 /* intention exclusive */
  522. #define LOCK_S 4 /* shared */
  523. #define LOCK_X 5 /* exclusive */
  524. #define LOCK_AUTO_INC 6 /* locks the auto-inc counter of a table
  525. in an exclusive mode */
  526. #define LOCK_MODE_MASK 0xFUL /* mask used to extract mode from the
  527. type_mode field in a lock */
  528. /* Lock types */
  529. #define LOCK_TABLE 16 /* these type values should be so high that */
  530. #define LOCK_REC 32 /* they can be ORed to the lock mode */
  531. #define LOCK_TABLE_EXP 80 /* explicit table lock (80 = 16 + 64) */
  532. #define LOCK_TYPE_MASK 0xF0UL /* mask used to extract lock type from the
  533. type_mode field in a lock */
  534. /* Waiting lock flag */
  535. #define LOCK_WAIT 256 /* this wait bit should be so high that
  536. it can be ORed to the lock mode and type;
  537. when this bit is set, it means that the
  538. lock has not yet been granted, it is just
  539. waiting for its turn in the wait queue */
  540. /* Precise modes */
  541. #define LOCK_ORDINARY 0 /* this flag denotes an ordinary next-key lock
  542. in contrast to LOCK_GAP or LOCK_REC_NOT_GAP */ 
  543. #define LOCK_GAP 512 /* this gap bit should be so high that
  544. it can be ORed to the other flags;
  545. when this bit is set, it means that the
  546. lock holds only on the gap before the record;
  547. for instance, an x-lock on the gap does not
  548. give permission to modify the record on which
  549. the bit is set; locks of this type are created
  550. when records are removed from the index chain
  551. of records */
  552. #define LOCK_REC_NOT_GAP 1024  /* this bit means that the lock is only on
  553. the index record and does NOT block inserts
  554. to the gap before the index record; this is
  555. used in the case when we retrieve a record
  556. with a unique key, and is also used in
  557. locking plain SELECTs (not part of UPDATE
  558. or DELETE) when the user has set the READ
  559. COMMITTED isolation level */
  560. #define LOCK_INSERT_INTENTION 2048 /* this bit is set when we place a waiting
  561. gap type record lock request in order to let
  562. an insert of an index record to wait until
  563. there are no conflicting locks by other
  564. transactions on the gap; note that this flag
  565. remains set when the waiting lock is granted,
  566. or if the lock is inherited to a neighboring
  567. record */
  568. /* When lock bits are reset, the following flags are available: */
  569. #define LOCK_RELEASE_WAIT 1
  570. #define LOCK_NOT_RELEASE_WAIT 2
  571. /* Lock operation struct */
  572. typedef struct lock_op_struct lock_op_t;
  573. struct lock_op_struct{
  574. dict_table_t* table; /* table to be locked */
  575. ulint mode; /* lock mode */
  576. };
  577. #define LOCK_OP_START 1
  578. #define LOCK_OP_COMPLETE 2
  579. /* The lock system struct */
  580. struct lock_sys_struct{
  581. hash_table_t* rec_hash; /* hash table of the record locks */
  582. };
  583. /* The lock system */
  584. extern lock_sys_t* lock_sys;
  585. #ifndef UNIV_NONINL
  586. #include "lock0lock.ic"
  587. #endif
  588. #endif