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

MySQL数据库

开发平台:

Visual C++

  1. /******************************************************
  2. Transaction undo log record
  3. (c) 1996 Innobase Oy
  4. Created 3/26/1996 Heikki Tuuri
  5. *******************************************************/
  6. #ifndef trx0rec_h
  7. #define trx0rec_h
  8. #include "univ.i"
  9. #include "trx0types.h"
  10. #include "row0types.h"
  11. #include "mtr0mtr.h"
  12. #include "trx0sys.h"
  13. #include "dict0types.h"
  14. #include "que0types.h"
  15. #include "data0data.h"
  16. #include "rem0types.h"
  17. /***************************************************************************
  18. Copies the undo record to the heap. */
  19. UNIV_INLINE
  20. trx_undo_rec_t*
  21. trx_undo_rec_copy(
  22. /*==============*/
  23. /* out, own: copy of undo log record */
  24. trx_undo_rec_t* undo_rec, /* in: undo log record */
  25. mem_heap_t* heap); /* in: heap where copied */
  26. /**************************************************************************
  27. Reads the undo log record type. */
  28. UNIV_INLINE
  29. ulint
  30. trx_undo_rec_get_type(
  31. /*==================*/
  32. /* out: record type */
  33. trx_undo_rec_t* undo_rec); /* in: undo log record */
  34. /**************************************************************************
  35. Reads from an undo log record the record compiler info. */
  36. UNIV_INLINE
  37. ulint
  38. trx_undo_rec_get_cmpl_info(
  39. /*=======================*/
  40. /* out: compiler info */
  41. trx_undo_rec_t* undo_rec); /* in: undo log record */
  42. /**************************************************************************
  43. Reads the undo log record number. */
  44. UNIV_INLINE
  45. dulint
  46. trx_undo_rec_get_undo_no(
  47. /*=====================*/
  48. /* out: undo no */
  49. trx_undo_rec_t* undo_rec); /* in: undo log record */
  50. /**************************************************************************
  51. Reads from an undo log record the general parameters. */
  52. byte*
  53. trx_undo_rec_get_pars(
  54. /*==================*/
  55. /* out: remaining part of undo log
  56. record after reading these values */
  57. trx_undo_rec_t* undo_rec, /* in: undo log record */
  58. ulint* type, /* out: undo record type:
  59. TRX_UNDO_INSERT_REC, ... */
  60. ulint* cmpl_info, /* out: compiler info, relevant only
  61. for update type records */
  62. dulint* undo_no, /* out: undo log record number */
  63. dulint* table_id); /* out: table id */
  64. /***********************************************************************
  65. Builds a row reference from an undo log record. */
  66. byte*
  67. trx_undo_rec_get_row_ref(
  68. /*=====================*/
  69. /* out: pointer to remaining part of undo
  70. record */
  71. byte* ptr, /* in: remaining part of a copy of an undo log
  72. record, at the start of the row reference;
  73. NOTE that this copy of the undo log record must
  74. be preserved as long as the row reference is
  75. used, as we do NOT copy the data in the
  76. record! */
  77. dict_index_t* index, /* in: clustered index */
  78. dtuple_t** ref, /* out, own: row reference */
  79. mem_heap_t* heap); /* in: memory heap from which the memory
  80. needed is allocated */
  81. /***********************************************************************
  82. Skips a row reference from an undo log record. */
  83. byte*
  84. trx_undo_rec_skip_row_ref(
  85. /*======================*/
  86. /* out: pointer to remaining part of undo
  87. record */
  88. byte* ptr, /* in: remaining part in update undo log
  89. record, at the start of the row reference */
  90. dict_index_t* index); /* in: clustered index */
  91. /**************************************************************************
  92. Reads from an undo log update record the system field values of the old
  93. version. */
  94. byte*
  95. trx_undo_update_rec_get_sys_cols(
  96. /*=============================*/
  97. /* out: remaining part of undo log
  98. record after reading these values */
  99. byte* ptr, /* in: remaining part of undo log
  100. record after reading general
  101. parameters */
  102. dulint* trx_id, /* out: trx id */
  103. dulint* roll_ptr, /* out: roll ptr */
  104. ulint* info_bits); /* out: info bits state */
  105. /***********************************************************************
  106. Builds an update vector based on a remaining part of an undo log record. */
  107. byte*
  108. trx_undo_update_rec_get_update(
  109. /*===========================*/
  110. /* out: remaining part of the record */
  111. byte* ptr, /* in: remaining part in update undo log
  112. record, after reading the row reference
  113. NOTE that this copy of the undo log record must
  114. be preserved as long as the update vector is
  115. used, as we do NOT copy the data in the
  116. record! */
  117. dict_index_t* index, /* in: clustered index */
  118. ulint type, /* in: TRX_UNDO_UPD_EXIST_REC,
  119. TRX_UNDO_UPD_DEL_REC, or
  120. TRX_UNDO_DEL_MARK_REC; in the last case,
  121. only trx id and roll ptr fields are added to
  122. the update vector */
  123. dulint trx_id, /* in: transaction id from this undorecord */
  124. dulint roll_ptr,/* in: roll pointer from this undo record */
  125. ulint info_bits,/* in: info bits from this undo record */
  126. mem_heap_t* heap, /* in: memory heap from which the memory
  127. needed is allocated */
  128. upd_t** upd); /* out, own: update vector */
  129. /***********************************************************************
  130. Builds a partial row from an update undo log record. It contains the
  131. columns which occur as ordering in any index of the table. */
  132. byte*
  133. trx_undo_rec_get_partial_row(
  134. /*=========================*/
  135. /* out: pointer to remaining part of undo
  136. record */
  137. byte* ptr, /* in: remaining part in update undo log
  138. record of a suitable type, at the start of
  139. the stored index columns;
  140. NOTE that this copy of the undo log record must
  141. be preserved as long as the partial row is
  142. used, as we do NOT copy the data in the
  143. record! */
  144. dict_index_t* index, /* in: clustered index */
  145. dtuple_t** row, /* out, own: partial row */
  146. mem_heap_t* heap); /* in: memory heap from which the memory
  147. needed is allocated */
  148. /***************************************************************************
  149. Writes information to an undo log about an insert, update, or a delete marking
  150. of a clustered index record. This information is used in a rollback of the
  151. transaction and in consistent reads that must look to the history of this
  152. transaction. */
  153. ulint
  154. trx_undo_report_row_operation(
  155. /*==========================*/
  156. /* out: DB_SUCCESS or error code */
  157. ulint flags, /* in: if BTR_NO_UNDO_LOG_FLAG bit is
  158. set, does nothing */
  159. ulint op_type, /* in: TRX_UNDO_INSERT_OP or
  160. TRX_UNDO_MODIFY_OP */
  161. que_thr_t* thr, /* in: query thread */
  162. dict_index_t* index, /* in: clustered index */
  163. dtuple_t* clust_entry, /* in: in the case of an insert,
  164. index entry to insert into the
  165. clustered index, otherwise NULL */
  166. upd_t* update, /* in: in the case of an update,
  167. the update vector, otherwise NULL */
  168. ulint cmpl_info, /* in: compiler info on secondary
  169. index updates */
  170. rec_t* rec, /* in: case of an update or delete
  171. marking, the record in the clustered
  172. index, otherwise NULL */
  173. dulint* roll_ptr); /* out: rollback pointer to the
  174. inserted undo log record,
  175. ut_dulint_zero if BTR_NO_UNDO_LOG
  176. flag was specified */
  177. /**********************************************************************
  178. Copies an undo record to heap. This function can be called if we know that
  179. the undo log record exists. */
  180. trx_undo_rec_t*
  181. trx_undo_get_undo_rec_low(
  182. /*======================*/
  183. /* out, own: copy of the record */
  184. dulint roll_ptr, /* in: roll pointer to record */
  185. mem_heap_t* heap); /* in: memory heap where copied */
  186. /**********************************************************************
  187. Copies an undo record to heap. */
  188. ulint
  189. trx_undo_get_undo_rec(
  190. /*==================*/
  191. /* out: DB_SUCCESS, or
  192. DB_MISSING_HISTORY if the undo log
  193. has been truncated and we cannot
  194. fetch the old version; NOTE: the
  195. caller must have latches on the
  196. clustered index page and purge_view */
  197. dulint roll_ptr, /* in: roll pointer to record */
  198. dulint trx_id, /* in: id of the trx that generated
  199. the roll pointer: it points to an
  200. undo log of this transaction */
  201. trx_undo_rec_t** undo_rec, /* out, own: copy of the record */
  202. mem_heap_t* heap); /* in: memory heap where copied */
  203. /***********************************************************************
  204. Build a previous version of a clustered index record. This function checks
  205. that the caller has a latch on the index page of the clustered index record
  206. and an s-latch on the purge_view. This guarantees that the stack of versions
  207. is locked. */
  208. ulint
  209. trx_undo_prev_version_build(
  210. /*========================*/
  211. /* out: DB_SUCCESS, or DB_MISSING_HISTORY if
  212. the previous version is not >= purge_view,
  213. which means that it may have been removed */
  214. rec_t* index_rec,/* in: clustered index record in the
  215. index tree */
  216. mtr_t* index_mtr,/* in: mtr which contains the latch to
  217. index_rec page and purge_view */
  218. rec_t* rec, /* in: version of a clustered index record */
  219. dict_index_t* index, /* in: clustered index */
  220. mem_heap_t* heap, /* in: memory heap from which the memory
  221. needed is allocated */
  222. rec_t** old_vers);/* out, own: previous version, or NULL if
  223. rec is the first inserted version, or if
  224. history data has been deleted */
  225. /***************************************************************
  226. Parses a redo log record of adding an undo log record. */
  227. byte*
  228. trx_undo_parse_add_undo_rec(
  229. /*========================*/
  230. /* out: end of log record or NULL */
  231. byte* ptr, /* in: buffer */
  232. byte* end_ptr,/* in: buffer end */
  233. page_t* page); /* in: page or NULL */
  234. /***************************************************************
  235. Parses a redo log record of erasing of an undo page end. */
  236. byte*
  237. trx_undo_parse_erase_page_end(
  238. /*==========================*/
  239. /* out: end of log record or NULL */
  240. byte* ptr, /* in: buffer */
  241. byte* end_ptr,/* in: buffer end */
  242. page_t* page, /* in: page or NULL */
  243. mtr_t* mtr); /* in: mtr or NULL */
  244. /* Types of an undo log record: these have to be smaller than 16, as the
  245. compilation info multiplied by 16 is ORed to this value in an undo log
  246. record */
  247. #define TRX_UNDO_INSERT_REC 11 /* fresh insert into clustered index */
  248. #define TRX_UNDO_UPD_EXIST_REC 12 /* update of a non-delete-marked
  249. record */
  250. #define TRX_UNDO_UPD_DEL_REC 13 /* update of a delete marked record to
  251. a not delete marked record; also the
  252. fields of the record can change */
  253. #define TRX_UNDO_DEL_MARK_REC 14 /* delete marking of a record; fields
  254. do not change */
  255. #define TRX_UNDO_CMPL_INFO_MULT 16 /* compilation info is multiplied by
  256. this and ORed to the type above */
  257. /* Operation type flags used in trx_undo_report_row_operation */
  258. #define TRX_UNDO_INSERT_OP 1
  259. #define TRX_UNDO_MODIFY_OP 2
  260. #ifndef UNIV_NONINL
  261. #include "trx0rec.ic"
  262. #endif
  263. #endif