btr0btr.h
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:13k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /******************************************************
  2. The B-tree
  3. (c) 1994-1996 Innobase Oy
  4. Created 6/2/1994 Heikki Tuuri
  5. *******************************************************/
  6. #ifndef btr0btr_h
  7. #define btr0btr_h
  8. #include "univ.i"
  9. #include "dict0dict.h"
  10. #include "data0data.h"
  11. #include "page0cur.h"
  12. #include "rem0rec.h"
  13. #include "mtr0mtr.h"
  14. #include "btr0types.h"
  15. /* Maximum record size which can be stored on a page, without using the
  16. special big record storage structure */
  17. #define BTR_PAGE_MAX_REC_SIZE (UNIV_PAGE_SIZE / 2 - 200)
  18. /* Maximum key size in a B-tree: the records on non-leaf levels must be
  19. shorter than this */
  20. #define BTR_PAGE_MAX_KEY_SIZE 1024
  21. /* If data in page drops below this limit, we try to compress it.
  22. NOTE! The value has to be > 2 * BTR_MAX_KEY_SIZE */
  23. #define BTR_COMPRESS_LIMIT (UNIV_PAGE_SIZE / 4 + 1);
  24. /* Latching modes for the search function (in btr0cur.*) */
  25. #define BTR_SEARCH_LEAF RW_S_LATCH
  26. #define BTR_MODIFY_LEAF RW_X_LATCH
  27. #define BTR_NO_LATCHES RW_NO_LATCH
  28. #define BTR_MODIFY_TREE 33
  29. #define BTR_CONT_MODIFY_TREE 34
  30. #define BTR_SEARCH_PREV 35
  31. #define BTR_MODIFY_PREV 36
  32. /* If this is ORed to the latch mode, it means that the search tuple will be
  33. inserted to the index, at the searched position */
  34. #define BTR_INSERT 512
  35. /* This flag ORed to latch mode says that we do the search in query
  36. optimization */
  37. #define BTR_ESTIMATE 1024
  38. /******************************************************************
  39. Gets a buffer page and declares its latching order level. */
  40. UNIV_INLINE
  41. page_t*
  42. btr_page_get(
  43. /*=========*/
  44. ulint space, /* in: space id */
  45. ulint page_no, /* in: page number */
  46. ulint mode, /* in: latch mode */
  47. mtr_t* mtr); /* in: mtr */
  48. /******************************************************************
  49. Gets the index id field of a page. */
  50. UNIV_INLINE
  51. dulint
  52. btr_page_get_index_id(
  53. /*==================*/
  54. /* out: index id */
  55. page_t* page); /* in: index page */
  56. /************************************************************
  57. Gets the node level field in an index page. */
  58. UNIV_INLINE
  59. ulint
  60. btr_page_get_level_low(
  61. /*===================*/
  62. /* out: level, leaf level == 0 */
  63. page_t* page); /* in: index page */
  64. /************************************************************
  65. Gets the node level field in an index page. */
  66. UNIV_INLINE
  67. ulint
  68. btr_page_get_level(
  69. /*===============*/
  70. /* out: level, leaf level == 0 */
  71. page_t* page, /* in: index page */
  72. mtr_t* mtr); /* in: mini-transaction handle */
  73. /************************************************************
  74. Gets the next index page number. */
  75. UNIV_INLINE
  76. ulint
  77. btr_page_get_next(
  78. /*==============*/
  79. /* out: next page number */
  80. page_t* page, /* in: index page */
  81. mtr_t* mtr); /* in: mini-transaction handle */
  82. /************************************************************
  83. Gets the previous index page number. */
  84. UNIV_INLINE
  85. ulint
  86. btr_page_get_prev(
  87. /*==============*/
  88. /* out: prev page number */
  89. page_t* page, /* in: index page */
  90. mtr_t* mtr); /* in: mini-transaction handle */
  91. /*****************************************************************
  92. Gets pointer to the previous user record in the tree. It is assumed
  93. that the caller has appropriate latches on the page and its neighbor. */
  94. rec_t*
  95. btr_get_prev_user_rec(
  96. /*==================*/
  97. /* out: previous user record, NULL if there is none */
  98. rec_t* rec, /* in: record on leaf level */
  99. mtr_t* mtr); /* in: mtr holding a latch on the page, and if
  100. needed, also to the previous page */
  101. /*****************************************************************
  102. Gets pointer to the next user record in the tree. It is assumed
  103. that the caller has appropriate latches on the page and its neighbor. */
  104. rec_t*
  105. btr_get_next_user_rec(
  106. /*==================*/
  107. /* out: next user record, NULL if there is none */
  108. rec_t* rec, /* in: record on leaf level */
  109. mtr_t* mtr); /* in: mtr holding a latch on the page, and if
  110. needed, also to the next page */
  111. /******************************************************************
  112. Releases the latch on a leaf page and bufferunfixes it. */
  113. UNIV_INLINE
  114. void
  115. btr_leaf_page_release(
  116. /*==================*/
  117. page_t* page, /* in: page */
  118. ulint latch_mode, /* in: BTR_SEARCH_LEAF or BTR_MODIFY_LEAF */
  119. mtr_t* mtr); /* in: mtr */
  120. /******************************************************************
  121. Gets the child node file address in a node pointer. */
  122. UNIV_INLINE
  123. ulint
  124. btr_node_ptr_get_child_page_no(
  125. /*===========================*/
  126.     /* out: child node address */
  127. rec_t* rec); /* in: node pointer record */
  128. /****************************************************************
  129. Creates the root node for a new index tree. */
  130. ulint
  131. btr_create(
  132. /*=======*/
  133. /* out: page number of the created root, FIL_NULL if
  134. did not succeed */
  135. ulint type, /* in: type of the index */
  136. ulint space, /* in: space where created */
  137. dulint index_id,/* in: index id */
  138. mtr_t* mtr); /* in: mini-transaction handle */
  139. /****************************************************************
  140. Frees a B-tree except the root page, which MUST be freed after this
  141. by calling btr_free_root. */
  142. void
  143. btr_free_but_not_root(
  144. /*==================*/
  145. ulint space, /* in: space where created */
  146. ulint root_page_no); /* in: root page number */
  147. /****************************************************************
  148. Frees the B-tree root page. Other tree MUST already have been freed. */
  149. void
  150. btr_free_root(
  151. /*==========*/
  152. ulint space, /* in: space where created */
  153. ulint root_page_no, /* in: root page number */
  154. mtr_t* mtr); /* in: a mini-transaction which has already
  155. been started */
  156. /*****************************************************************
  157. Makes tree one level higher by splitting the root, and inserts
  158. the tuple. It is assumed that mtr contains an x-latch on the tree.
  159. NOTE that the operation of this function must always succeed,
  160. we cannot reverse it: therefore enough free disk space must be
  161. guaranteed to be available before this function is called. */
  162. rec_t*
  163. btr_root_raise_and_insert(
  164. /*======================*/
  165. /* out: inserted record */
  166. btr_cur_t* cursor, /* in: cursor at which to insert: must be
  167. on the root page; when the function returns,
  168. the cursor is positioned on the predecessor
  169. of the inserted record */
  170. dtuple_t* tuple, /* in: tuple to insert */
  171. mtr_t* mtr); /* in: mtr */
  172. /*****************************************************************
  173. Reorganizes an index page. */
  174. void
  175. btr_page_reorganize(
  176. /*================*/
  177. page_t* page, /* in: page to be reorganized */
  178. mtr_t* mtr); /* in: mtr */
  179. /*****************************************************************
  180. Reorganizes an index page. */
  181. void
  182. btr_page_reorganize_low(
  183. /*====================*/
  184. ibool low, /* in: TRUE if locks should not be updated, i.e.,
  185. there cannot exist locks on the page */
  186. page_t* page, /* in: page to be reorganized */
  187. mtr_t* mtr); /* in: mtr */
  188. /*****************************************************************
  189. Decides if the page should be split at the convergence point of
  190. inserts converging to left. */
  191. ibool
  192. btr_page_get_split_rec_to_left(
  193. /*===========================*/
  194. /* out: TRUE if split recommended */
  195. btr_cur_t* cursor, /* in: cursor at which to insert */
  196. rec_t** split_rec);/* out: if split recommended,
  197. the first record on upper half page,
  198. or NULL if tuple should be first */
  199. /*****************************************************************
  200. Decides if the page should be split at the convergence point of
  201. inserts converging to right. */
  202. ibool
  203. btr_page_get_split_rec_to_right(
  204. /*============================*/
  205. /* out: TRUE if split recommended */
  206. btr_cur_t* cursor, /* in: cursor at which to insert */
  207. rec_t** split_rec);/* out: if split recommended,
  208. the first record on upper half page,
  209. or NULL if tuple should be first */
  210. /*****************************************************************
  211. Splits an index page to halves and inserts the tuple. It is assumed
  212. that mtr holds an x-latch to the index tree. NOTE: the tree x-latch
  213. is released within this function! NOTE that the operation of this
  214. function must always succeed, we cannot reverse it: therefore
  215. enough free disk space must be guaranteed to be available before
  216. this function is called. */
  217. rec_t*
  218. btr_page_split_and_insert(
  219. /*======================*/
  220. /* out: inserted record; NOTE: the tree
  221. x-latch is released! NOTE: 2 free disk
  222. pages must be available! */
  223. btr_cur_t* cursor, /* in: cursor at which to insert; when the
  224. function returns, the cursor is positioned
  225. on the predecessor of the inserted record */
  226. dtuple_t* tuple, /* in: tuple to insert */
  227. mtr_t* mtr); /* in: mtr */
  228. /***********************************************************
  229. Inserts a data tuple to a tree on a non-leaf level. It is assumed
  230. that mtr holds an x-latch on the tree. */
  231. void
  232. btr_insert_on_non_leaf_level(
  233. /*=========================*/
  234. dict_tree_t* tree, /* in: tree */
  235. ulint level, /* in: level, must be > 0 */
  236. dtuple_t* tuple, /* in: the record to be inserted */
  237. mtr_t* mtr); /* in: mtr */
  238. /********************************************************************
  239. Sets a record as the predefined minimum record. */
  240. void
  241. btr_set_min_rec_mark(
  242. /*=================*/
  243. rec_t* rec, /* in: record */
  244. mtr_t* mtr); /* in: mtr */
  245. /*****************************************************************
  246. Deletes on the upper level the node pointer to a page. */
  247. void
  248. btr_node_ptr_delete(
  249. /*================*/
  250. dict_tree_t* tree, /* in: index tree */
  251. page_t* page, /* in: page whose node pointer is deleted */
  252. mtr_t* mtr); /* in: mtr */
  253. /****************************************************************
  254. Checks that the node pointer to a page is appropriate. */
  255. ibool
  256. btr_check_node_ptr(
  257. /*===============*/
  258. /* out: TRUE */
  259. dict_tree_t* tree, /* in: index tree */
  260. page_t* page, /* in: index page */
  261. mtr_t* mtr); /* in: mtr */
  262. /*****************************************************************
  263. Tries to merge the page first to the left immediate brother if such a
  264. brother exists, and the node pointers to the current page and to the
  265. brother reside on the same page. If the left brother does not satisfy these
  266. conditions, looks at the right brother. If the page is the only one on that
  267. level lifts the records of the page to the father page, thus reducing the
  268. tree height. It is assumed that mtr holds an x-latch on the tree and on the
  269. page. If cursor is on the leaf level, mtr must also hold x-latches to
  270. the brothers, if they exist. NOTE: it is assumed that the caller has reserved
  271. enough free extents so that the compression will always succeed if done! */
  272. void
  273. btr_compress(
  274. /*=========*/
  275. btr_cur_t* cursor, /* in: cursor on the page to merge or lift;
  276. the page must not be empty: in record delete
  277. use btr_discard_page if the page would become
  278. empty */
  279. mtr_t* mtr); /* in: mtr */
  280. /*****************************************************************
  281. Discards a page from a B-tree. This is used to remove the last record from
  282. a B-tree page: the whole page must be removed at the same time. This cannot
  283. be used for the root page, which is allowed to be empty. */
  284. void
  285. btr_discard_page(
  286. /*=============*/
  287. btr_cur_t* cursor, /* in: cursor on the page to discard: not on
  288. the root page */
  289. mtr_t* mtr); /* in: mtr */
  290. /************************************************************************
  291. Declares the latching order level for the page latch in the debug version. */
  292. UNIV_INLINE
  293. void
  294. btr_declare_page_latch(
  295. /*===================*/
  296. page_t* page, /* in: page */
  297. ibool leaf); /* in: TRUE if a leaf */
  298. /********************************************************************
  299. Parses the redo log record for setting an index record as the predefined
  300. minimum record. */
  301. byte*
  302. btr_parse_set_min_rec_mark(
  303. /*=======================*/
  304. /* out: end of log record or NULL */
  305. byte* ptr, /* in: buffer */
  306. byte* end_ptr,/* in: buffer end */
  307. page_t* page, /* in: page or NULL */
  308. mtr_t* mtr); /* in: mtr or NULL */
  309. /***************************************************************
  310. Parses a redo log record of reorganizing a page. */
  311. byte*
  312. btr_parse_page_reorganize(
  313. /*======================*/
  314. /* out: end of log record or NULL */
  315. byte* ptr, /* in: buffer */
  316. byte* end_ptr,/* in: buffer end */
  317. page_t* page, /* in: page or NULL */
  318. mtr_t* mtr); /* in: mtr or NULL */
  319. /******************************************************************
  320. Gets the number of pages in a B-tree. */
  321. ulint
  322. btr_get_size(
  323. /*=========*/
  324. /* out: number of pages */
  325. dict_index_t* index, /* in: index */
  326. ulint flag); /* in: BTR_N_LEAF_PAGES or BTR_TOTAL_SIZE */
  327. /*****************************************************************
  328. Prints size info of a B-tree. */
  329. void
  330. btr_print_size(
  331. /*===========*/
  332. dict_tree_t* tree); /* in: index tree */
  333. /******************************************************************
  334. Prints directories and other info of all nodes in the tree. */
  335. void
  336. btr_print_tree(
  337. /*===========*/
  338. dict_tree_t* tree, /* in: tree */
  339. ulint width); /* in: print this many entries from start
  340. and end */
  341. /******************************************************************
  342. Checks the consistency of an index tree. */
  343. void
  344. btr_validate_tree(
  345. /*==============*/
  346. dict_tree_t* tree); /* in: tree */
  347. #define BTR_N_LEAF_PAGES  1
  348. #define BTR_TOTAL_SIZE 2
  349. #ifndef UNIV_NONINL
  350. #include "btr0btr.ic"
  351. #endif
  352. #endif