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

MySQL数据库

开发平台:

Visual C++

  1. /******************************************************
  2. Mini-transaction buffer
  3. (c) 1995 Innobase Oy
  4. Created 11/26/1995 Heikki Tuuri
  5. *******************************************************/
  6. #include "mtr0mtr.h"
  7. #ifdef UNIV_NONINL
  8. #include "mtr0mtr.ic"
  9. #endif
  10. #include "buf0buf.h"
  11. #include "page0types.h"
  12. #include "mtr0log.h"
  13. #include "log0log.h"
  14. /*******************************************************************
  15. Starts a mini-transaction and creates a mini-transaction handle 
  16. and buffer in the memory buffer given by the caller. */
  17. mtr_t*
  18. mtr_start_noninline(
  19. /*================*/
  20. /* out: mtr buffer which also acts as
  21. the mtr handle */
  22. mtr_t* mtr) /* in: memory buffer for the mtr buffer */
  23. {
  24. return(mtr_start(mtr));
  25. }
  26. /*********************************************************************
  27. Releases the item in the slot given. */
  28. UNIV_INLINE
  29. void
  30. mtr_memo_slot_release(
  31. /*==================*/
  32. mtr_t* mtr, /* in: mtr */
  33. mtr_memo_slot_t* slot) /* in: memo slot */
  34. {
  35. void* object;
  36. ulint type;
  37. ut_ad(mtr && slot);
  38. object = slot->object;
  39. type = slot->type;
  40. if (object != NULL) {
  41. if (type <= MTR_MEMO_BUF_FIX) {
  42. buf_page_release((buf_block_t*)object, type, mtr);
  43. } else if (type == MTR_MEMO_S_LOCK) {
  44. rw_lock_s_unlock((rw_lock_t*)object);
  45. #ifndef UNIV_DEBUG
  46. } else {
  47. rw_lock_x_unlock((rw_lock_t*)object);
  48. }
  49. #endif
  50. #ifdef UNIV_DEBUG
  51. } else if (type == MTR_MEMO_X_LOCK) {
  52. rw_lock_x_unlock((rw_lock_t*)object);
  53. } else {
  54. ut_ad(type == MTR_MEMO_MODIFY);
  55. ut_ad(mtr_memo_contains(mtr, object,
  56. MTR_MEMO_PAGE_X_FIX));
  57. }
  58. #endif
  59. }
  60. slot->object = NULL;
  61. }
  62. /**************************************************************
  63. Releases the mlocks and other objects stored in an mtr memo. They are released
  64. in the order opposite to which they were pushed to the memo. NOTE! It is
  65. essential that the x-rw-lock on a modified buffer page is not released before
  66. buf_page_note_modification is called for that page! Otherwise, some thread
  67. might race to modify it, and the flush list sort order on lsn would be
  68. destroyed. */
  69. UNIV_INLINE
  70. void
  71. mtr_memo_pop_all(
  72. /*=============*/
  73. mtr_t* mtr) /* in: mtr */
  74. {
  75. mtr_memo_slot_t* slot;
  76. dyn_array_t* memo;
  77. ulint offset;
  78. ut_ad(mtr);
  79. ut_ad(mtr->magic_n == MTR_MAGIC_N);
  80. ut_ad(mtr->state == MTR_COMMITTING); /* Currently only used in
  81. commit */
  82. memo = &(mtr->memo);
  83. offset = dyn_array_get_data_size(memo);
  84. while (offset > 0) {
  85. offset -= sizeof(mtr_memo_slot_t);
  86. slot = dyn_array_get_element(memo, offset);
  87. mtr_memo_slot_release(mtr, slot);
  88. }
  89. }
  90. /****************************************************************
  91. Writes to the log the contents of a full page. This is called when the
  92. database is in the online backup state. */
  93. static
  94. void
  95. mtr_log_write_full_page(
  96. /*====================*/
  97. page_t* page, /* in: page to write */
  98. ulint i, /* in: i'th page for mtr */
  99. ulint n_pages,/* in: total number of pages for mtr */
  100. mtr_t* mtr) /* in: mtr */
  101. {
  102. byte* buf;
  103. byte* ptr;
  104. ulint len;
  105. buf = mem_alloc(UNIV_PAGE_SIZE + 50);
  106. ptr = mlog_write_initial_log_record_fast(page, MLOG_FULL_PAGE, buf,
  107. mtr);
  108. ut_memcpy(ptr, page, UNIV_PAGE_SIZE);
  109. len = (ptr - buf) + UNIV_PAGE_SIZE;
  110. if (i == n_pages - 1) {
  111. if (n_pages > 1) {
  112. *(buf + len) = MLOG_MULTI_REC_END;
  113. len++;
  114. } else {
  115. *buf = (byte)((ulint)*buf | MLOG_SINGLE_REC_FLAG);
  116. }
  117. }
  118. ut_ad(len < UNIV_PAGE_SIZE + 50);
  119. log_write_low(buf, len);
  120. mem_free(buf);
  121. }
  122. /****************************************************************
  123. Parses a log record which contains the full contents of a page. */
  124. byte*
  125. mtr_log_parse_full_page(
  126. /*====================*/
  127. /* out: end of log record or NULL */
  128. byte* ptr, /* in: buffer */
  129. byte* end_ptr,/* in: buffer end */
  130. page_t* page) /* in: page or NULL */
  131. {
  132. if (end_ptr < ptr + UNIV_PAGE_SIZE) {
  133. return(NULL);
  134. if (page) {
  135. ut_memcpy(page, ptr, UNIV_PAGE_SIZE);
  136. }
  137. return(ptr + UNIV_PAGE_SIZE);
  138. }
  139. /****************************************************************
  140. Writes to the database log the full contents of the pages that this mtr has
  141. modified. */
  142. void
  143. mtr_log_write_backup_full_pages(
  144. /*============================*/
  145. mtr_t* mtr, /* in: mini-transaction */
  146. ulint n_pages)/* in: number of pages modified by mtr */ 
  147. {
  148. mtr_memo_slot_t* slot;
  149. dyn_array_t* memo;
  150. buf_block_t* block;
  151. ulint offset;
  152. ulint type;
  153. ulint i;
  154. ut_ad(mtr);
  155. ut_ad(mtr->magic_n == MTR_MAGIC_N);
  156. ut_ad(mtr->state == MTR_COMMITTING);
  157. /* Open the database log for log_write_low */
  158. mtr->start_lsn = log_reserve_and_open(n_pages * (UNIV_PAGE_SIZE + 50));
  159. memo = &(mtr->memo);
  160. offset = dyn_array_get_data_size(memo);
  161. i = 0;
  162. while (offset > 0) {
  163. offset -= sizeof(mtr_memo_slot_t);
  164. slot = dyn_array_get_element(memo, offset);
  165. block = slot->object;
  166. type = slot->type;
  167. if ((block != NULL) && (type == MTR_MEMO_PAGE_X_FIX)) {
  168. mtr_log_write_full_page(block->frame, i, n_pages, mtr);
  169. i++;
  170. }
  171. }
  172. ut_ad(i == n_pages);
  173. }
  174. /****************************************************************
  175. Checks if mtr is the first to modify any page after online_backup_lsn. */
  176. static
  177. ibool
  178. mtr_first_to_modify_page_after_backup(
  179. /*==================================*/
  180. /* out: TRUE if first for a page */
  181. mtr_t* mtr, /* in: mini-transaction */
  182. ulint* n_pages) /* out: number of modified pages (all modified
  183. pages, backup_lsn does not matter here) */
  184. {
  185. mtr_memo_slot_t* slot;
  186. dyn_array_t* memo;
  187. ulint offset;
  188. buf_block_t* block;
  189. ulint type;
  190. dulint backup_lsn;
  191. ibool ret = FALSE;
  192. ut_ad(mtr);
  193. ut_ad(mtr->magic_n == MTR_MAGIC_N);
  194. ut_ad(mtr->state == MTR_COMMITTING);
  195. backup_lsn = log_get_online_backup_lsn_low();
  196. memo = &(mtr->memo);
  197. offset = dyn_array_get_data_size(memo);
  198. *n_pages = 0;
  199. while (offset > 0) {
  200. offset -= sizeof(mtr_memo_slot_t);
  201. slot = dyn_array_get_element(memo, offset);
  202. block = slot->object;
  203. type = slot->type;
  204. if ((block != NULL) && (type == MTR_MEMO_PAGE_X_FIX)) {
  205. *n_pages = *n_pages + 1;
  206. if (ut_dulint_cmp(buf_frame_get_newest_modification(
  207. block->frame),
  208. backup_lsn) <= 0) {
  209. printf("Page %lu newest %lu backup %lun",
  210. block->offset,
  211. ut_dulint_get_low(
  212. buf_frame_get_newest_modification(
  213. block->frame)),
  214. ut_dulint_get_low(backup_lsn));
  215. ret = TRUE;
  216. }
  217. }
  218. }
  219. return(ret);
  220. }
  221. /****************************************************************
  222. Writes the contents of a mini-transaction log, if any, to the database log. */
  223. static
  224. void
  225. mtr_log_reserve_and_write(
  226. /*======================*/
  227. mtr_t* mtr) /* in: mtr */
  228. {
  229. dyn_array_t* mlog;
  230. dyn_block_t* block;
  231. ulint data_size;
  232. ibool success;
  233. byte* first_data;
  234. ulint n_modified_pages;
  235. ut_ad(mtr);
  236. mlog = &(mtr->log);
  237. first_data = dyn_block_get_data(mlog);
  238. if (mtr->n_log_recs > 1) {
  239. mlog_catenate_ulint(mtr, MLOG_MULTI_REC_END, MLOG_1BYTE);
  240. } else {
  241. *first_data = (byte)((ulint)*first_data | MLOG_SINGLE_REC_FLAG);
  242. }
  243. if (mlog->heap == NULL) {
  244. mtr->end_lsn = log_reserve_and_write_fast(first_data,
  245. dyn_block_get_used(mlog),
  246. &(mtr->start_lsn), &success);
  247. if (success) {
  248. return;
  249. }
  250. }
  251. data_size = dyn_array_get_data_size(mlog);
  252. /* Open the database log for log_write_low */
  253. mtr->start_lsn = log_reserve_and_open(data_size); 
  254. if (mtr->log_mode == MTR_LOG_ALL) {
  255. if (log_get_online_backup_state_low()
  256.     && mtr_first_to_modify_page_after_backup(mtr,
  257.      &n_modified_pages)) {
  258.     
  259. /* The database is in the online backup state: write
  260. to the log the full contents of all the pages if this
  261. mtr is the first to modify any page in the buffer pool
  262. after online_backup_lsn */
  263. log_close();
  264. log_release();
  265. mtr_log_write_backup_full_pages(mtr, n_modified_pages);
  266. } else {
  267. block = mlog;
  268. while (block != NULL) {
  269. log_write_low(dyn_block_get_data(block),
  270. dyn_block_get_used(block));
  271. block = dyn_array_get_next_block(mlog, block);
  272. }
  273. }
  274. } else {
  275. ut_ad(mtr->log_mode == MTR_LOG_NONE);
  276. /* Do nothing */
  277. }
  278. mtr->end_lsn = log_close();
  279. }
  280. /*******************************************************************
  281. Commits a mini-transaction. */
  282. void
  283. mtr_commit(
  284. /*=======*/
  285. mtr_t* mtr) /* in: mini-transaction */
  286. {
  287. ut_ad(mtr);
  288. ut_ad(mtr->magic_n == MTR_MAGIC_N);
  289. ut_ad(mtr->state == MTR_ACTIVE);
  290. #ifdef UNIV_DEBUG
  291. mtr->state = MTR_COMMITTING;
  292. #endif
  293. if (mtr->modifications) {
  294. mtr_log_reserve_and_write(mtr);
  295. }
  296. /* We first update the modification info to buffer pages, and only
  297. after that release the log mutex: this guarantees that when the log
  298. mutex is free, all buffer pages contain an up-to-date info of their
  299. modifications. This fact is used in making a checkpoint when we look
  300. at the oldest modification of any page in the buffer pool. It is also
  301. required when we insert modified buffer pages in to the flush list
  302. which must be sorted on oldest_modification. */
  303. mtr_memo_pop_all(mtr);
  304. if (mtr->modifications) {
  305. log_release();
  306. }
  307. #ifdef UNIV_DEBUG
  308. mtr->state = MTR_COMMITTED;
  309. #endif
  310. dyn_array_free(&(mtr->memo));
  311. dyn_array_free(&(mtr->log));
  312. }
  313. /**************************************************************
  314. Releases the latches stored in an mtr memo down to a savepoint.
  315. NOTE! The mtr must not have made changes to buffer pages after the
  316. savepoint, as these can be handled only by mtr_commit. */
  317. void
  318. mtr_rollback_to_savepoint(
  319. /*======================*/
  320. mtr_t* mtr, /* in: mtr */
  321. ulint savepoint) /* in: savepoint */
  322. {
  323. mtr_memo_slot_t* slot;
  324. dyn_array_t* memo;
  325. ulint offset;
  326. ut_ad(mtr);
  327. ut_ad(mtr->magic_n == MTR_MAGIC_N);
  328. ut_ad(mtr->state == MTR_ACTIVE);
  329. memo = &(mtr->memo);
  330. offset = dyn_array_get_data_size(memo);
  331. ut_ad(offset >= savepoint);
  332. while (offset > savepoint) {
  333. offset -= sizeof(mtr_memo_slot_t);
  334. slot = dyn_array_get_element(memo, offset);
  335. ut_ad(slot->type != MTR_MEMO_MODIFY);
  336. mtr_memo_slot_release(mtr, slot);
  337. }
  338. }
  339. /*******************************************************
  340. Releases an object in the memo stack. */
  341. void
  342. mtr_memo_release(
  343. /*=============*/
  344. mtr_t* mtr, /* in: mtr */
  345. void* object, /* in: object */
  346. ulint type) /* in: object type: MTR_MEMO_S_LOCK, ... */
  347. {
  348. mtr_memo_slot_t* slot;
  349. dyn_array_t* memo;
  350. ulint offset;
  351. ut_ad(mtr);
  352. ut_ad(mtr->magic_n == MTR_MAGIC_N);
  353. ut_ad(mtr->state == MTR_ACTIVE);
  354. memo = &(mtr->memo);
  355.   offset = dyn_array_get_data_size(memo);
  356. while (offset > 0) {
  357. offset -= sizeof(mtr_memo_slot_t);
  358. slot = dyn_array_get_element(memo, offset);
  359. if ((object == slot->object) && (type == slot->type)) {
  360. mtr_memo_slot_release(mtr, slot);
  361. break;
  362. }
  363. }
  364. }
  365. /************************************************************
  366. Reads 1 - 4 bytes from a file page buffered in the buffer pool. */
  367. ulint
  368. mtr_read_ulint(
  369. /*===========*/
  370. /* out: value read */
  371. byte* ptr, /* in: pointer from where to read */
  372. ulint type, /* in: MLOG_1BYTE, MLOG_2BYTES, MLOG_4BYTES */
  373. mtr_t* mtr) /* in: mini-transaction handle */
  374. {
  375. ut_ad(mtr->state == MTR_ACTIVE);
  376. ut_ad(mtr_memo_contains(mtr, buf_block_align(ptr), 
  377. MTR_MEMO_PAGE_S_FIX) ||
  378.       mtr_memo_contains(mtr, buf_block_align(ptr), 
  379. MTR_MEMO_PAGE_X_FIX));
  380. if (type == MLOG_1BYTE) {
  381. return(mach_read_from_1(ptr));
  382. } else if (type == MLOG_2BYTES) {
  383. return(mach_read_from_2(ptr));
  384. } else {
  385. ut_ad(type == MLOG_4BYTES);
  386. return(mach_read_from_4(ptr));
  387. }
  388. }
  389. /************************************************************
  390. Reads 8 bytes from a file page buffered in the buffer pool. */
  391. dulint
  392. mtr_read_dulint(
  393. /*===========*/
  394. /* out: value read */
  395. byte* ptr, /* in: pointer from where to read */
  396. ulint type, /* in: MLOG_8BYTES */
  397. mtr_t* mtr) /* in: mini-transaction handle */
  398. {
  399. ut_ad(mtr->state == MTR_ACTIVE);
  400. ut_ad(ptr && mtr);
  401. ut_ad(type == MLOG_8BYTES);
  402. ut_ad(mtr_memo_contains(mtr, buf_block_align(ptr), 
  403. MTR_MEMO_PAGE_S_FIX) ||
  404.       mtr_memo_contains(mtr, buf_block_align(ptr), 
  405. MTR_MEMO_PAGE_X_FIX));
  406. return(mach_read_from_8(ptr));
  407. }
  408. /*************************************************************
  409. Prints info of an mtr handle. */
  410. void
  411. mtr_print(
  412. /*======*/
  413. mtr_t* mtr) /* in: mtr */
  414. {
  415. printf(
  416. "Mini-transaction handle: memo size %lu bytes log size %lu bytesn",
  417. dyn_array_get_data_size(&(mtr->memo)),
  418. dyn_array_get_data_size(&(mtr->log)));
  419. }