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

MySQL数据库

开发平台:

Visual C++

  1. /******************************************************
  2. The transaction
  3. (c) 1996 Innobase Oy
  4. Created 3/26/1996 Heikki Tuuri
  5. *******************************************************/
  6. #ifndef trx0trx_h
  7. #define trx0trx_h
  8. #include "univ.i"
  9. #include "trx0types.h"
  10. #include "lock0types.h"
  11. #include "usr0types.h"
  12. #include "que0types.h"
  13. #include "mem0mem.h"
  14. #include "read0types.h"
  15. /* If this flag is defined, then unneeded update undo logs are discarded,
  16. saving CPU time. The kernel mutex contention is increased, however. */
  17. #define TRX_UPDATE_UNDO_OPT
  18. extern ulint trx_n_mysql_transactions;
  19. /********************************************************************
  20. Creates and initializes a transaction object. */
  21. trx_t*
  22. trx_create(
  23. /*=======*/
  24. /* out, own: the transaction */
  25. sess_t* sess); /* in: session or NULL */
  26. /************************************************************************
  27. Creates a transaction object for MySQL. */
  28. trx_t*
  29. trx_allocate_for_mysql(void);
  30. /*========================*/
  31. /* out, own: transaction object */
  32. /************************************************************************
  33. Frees a transaction object. */
  34. void
  35. trx_free(
  36. /*=====*/
  37. trx_t* trx); /* in, own: trx object */
  38. /************************************************************************
  39. Frees a transaction object for MySQL. */
  40. void
  41. trx_free_for_mysql(
  42. /*===============*/
  43. trx_t* trx); /* in, own: trx object */
  44. /********************************************************************
  45. Creates trx objects for transactions and initializes the trx list of
  46. trx_sys at database start. Rollback segment and undo log lists must
  47. already exist when this function is called, because the lists of
  48. transactions to be rolled back or cleaned up are built based on the
  49. undo log lists. */
  50. void
  51. trx_lists_init_at_db_start(void);
  52. /*============================*/
  53. /********************************************************************
  54. Starts a new transaction. */
  55. ibool
  56. trx_start(
  57. /*======*/
  58. /* out: TRUE if success, FALSE if the rollback
  59. segment could not support this many transactions */
  60. trx_t*  trx, /* in: transaction */
  61. ulint rseg_id);/* in: rollback segment id; if ULINT_UNDEFINED
  62. is passed, the system chooses the rollback segment
  63. automatically in a round-robin fashion */
  64. /********************************************************************
  65. Starts a new transaction. */
  66. ibool
  67. trx_start_low(
  68. /*==========*/
  69. /* out: TRUE */
  70. trx_t*  trx, /* in: transaction */
  71. ulint rseg_id);/* in: rollback segment id; if ULINT_UNDEFINED
  72. is passed, the system chooses the rollback segment
  73. automatically in a round-robin fashion */
  74. /*****************************************************************
  75. Starts the transaction if it is not yet started. */
  76. UNIV_INLINE
  77. void
  78. trx_start_if_not_started(
  79. /*=====================*/
  80. trx_t* trx); /* in: transaction */
  81. /********************************************************************
  82. Commits a transaction. */
  83. void
  84. trx_commit_off_kernel(
  85. /*==================*/
  86. trx_t* trx); /* in: transaction */
  87. /**************************************************************************
  88. Does the transaction commit for MySQL. */
  89. ulint
  90. trx_commit_for_mysql(
  91. /*=================*/
  92. /* out: 0 or error number */
  93. trx_t* trx); /* in: trx handle */
  94. /**************************************************************************
  95. Marks the latest SQL statement ended. */
  96. void
  97. trx_mark_sql_stat_end(
  98. /*==================*/
  99. trx_t* trx); /* in: trx handle */
  100. /************************************************************************
  101. Assigns a read view for a consistent read query. All the consistent reads
  102. within the same transaction will get the same read view, which is created
  103. when this function is first called for a new started transaction. */
  104. read_view_t*
  105. trx_assign_read_view(
  106. /*=================*/
  107. /* out: consistent read view */
  108. trx_t* trx); /* in: active transaction */
  109. /***************************************************************
  110. The transaction must be in the TRX_QUE_LOCK_WAIT state. Puts it to
  111. the TRX_QUE_RUNNING state and releases query threads which were
  112. waiting for a lock in the wait_thrs list. */
  113. void
  114. trx_end_lock_wait(
  115. /*==============*/
  116. trx_t* trx); /* in: transaction */
  117. /********************************************************************
  118. Sends a signal to a trx object. */
  119. ibool
  120. trx_sig_send(
  121. /*=========*/
  122. /* out: TRUE if the signal was
  123. successfully delivered */
  124. trx_t* trx, /* in: trx handle */
  125. ulint type, /* in: signal type */
  126. ulint sender, /* in: TRX_SIG_SELF or
  127. TRX_SIG_OTHER_SESS */
  128. ibool reply, /* in: TRUE if the sender of the signal
  129. wants reply after the operation induced
  130. by the signal is completed; if type
  131. is TRX_SIG_END_WAIT, this must be
  132. FALSE */
  133. que_thr_t* receiver_thr, /* in: query thread which wants the
  134. reply, or NULL */
  135. trx_savept_t*  savept, /* in: possible rollback savepoint, or
  136. NULL */
  137. que_thr_t** next_thr); /* in/out: next query thread to run;
  138. if the value which is passed in is
  139. a pointer to a NULL pointer, then the
  140. calling function can start running
  141. a new query thread; if the parameter
  142. is NULL, it is ignored */
  143. /********************************************************************
  144. Send the reply message when a signal in the queue of the trx has
  145. been handled. */
  146. void
  147. trx_sig_reply(
  148. /*==========*/
  149. trx_t* trx, /* in: trx handle */
  150. trx_sig_t* sig, /* in: signal */
  151. que_thr_t** next_thr); /* in/out: next query thread to run;
  152. if the value which is passed in is
  153. a pointer to a NULL pointer, then the
  154. calling function can start running
  155. a new query thread */
  156. /********************************************************************
  157. Removes the signal object from a trx signal queue. */
  158. void
  159. trx_sig_remove(
  160. /*===========*/
  161. trx_t* trx, /* in: trx handle */
  162. trx_sig_t* sig); /* in, own: signal */
  163. /********************************************************************
  164. Starts handling of a trx signal. */
  165. void
  166. trx_sig_start_handle(
  167. /*=================*/
  168. trx_t* trx, /* in: trx handle */
  169. que_thr_t** next_thr); /* in/out: next query thread to run;
  170. if the value which is passed in is
  171. a pointer to a NULL pointer, then the
  172. calling function can start running
  173. a new query thread */
  174. /********************************************************************
  175. Ends signal handling. If the session is in the error state, and
  176. trx->graph_before_signal_handling != NULL, returns control to the error
  177. handling routine of the graph (currently only returns the control to the
  178. graph root which then sends an error message to the client). */
  179. void
  180. trx_end_signal_handling(
  181. /*====================*/
  182. trx_t* trx); /* in: trx */
  183. /*************************************************************************
  184. Creates a commit command node struct. */
  185. commit_node_t*
  186. commit_node_create(
  187. /*===============*/
  188. /* out, own: commit node struct */
  189. mem_heap_t* heap); /* in: mem heap where created */
  190. /***************************************************************
  191. Performs an execution step for a commit type node in a query graph. */
  192. que_thr_t*
  193. trx_commit_step(
  194. /*============*/
  195. /* out: query thread to run next, or NULL */
  196. que_thr_t* thr); /* in: query thread */
  197. /* Signal to a transaction */
  198. struct trx_sig_struct{
  199. ulint type; /* signal type */
  200. ulint state; /* TRX_SIG_WAITING or
  201. TRX_SIG_BEING_HANDLED */
  202. ulint sender; /* TRX_SIG_SELF or
  203. TRX_SIG_OTHER_SESS */
  204. ibool reply; /* TRUE if the sender of the signal
  205. wants reply after the operation induced
  206. by the signal is completed; if this
  207. field is TRUE and the receiver field
  208. below is NULL, then a SUCCESS message
  209. is sent to the client of the session
  210. to which this trx belongs */
  211. que_thr_t* receiver; /* query thread which wants the reply,
  212. or NULL */
  213. trx_savept_t savept; /* possible rollback savepoint */
  214. UT_LIST_NODE_T(trx_sig_t)
  215. signals; /* queue of pending signals to the
  216. transaction */
  217. UT_LIST_NODE_T(trx_sig_t)
  218. reply_signals; /* list of signals for which the sender
  219. transaction is waiting a reply */
  220. };
  221. /* The transaction handle; every session has a trx object which is freed only
  222. when the session is freed; in addition there may be session-less transactions
  223. rolling back after a database recovery */
  224. struct trx_struct{
  225. /* All the next fields are protected by the kernel mutex, except the
  226. undo logs which are protected by undo_mutex */
  227. ulint type; /* TRX_USER, TRX_PURGE */
  228. ulint conc_state; /* state of the trx from the point
  229. of view of concurrency control:
  230. TRX_ACTIVE, TRX_COMMITTED_IN_MEMORY,
  231. ... */
  232. dulint id; /* transaction id */
  233. dulint no; /* transaction serialization number ==
  234. max trx id when the transaction is 
  235. moved to COMMITTED_IN_MEMORY state */
  236. ibool dict_operation; /* TRUE if the trx is used to create
  237. a table, create an index, or drop a
  238. table */
  239. dulint table_id; /* table id if the preceding field is
  240. TRUE */
  241. os_thread_id_t mysql_thread_id;/* id of the MySQL thread associated
  242. with this transaction object */
  243. ulint n_mysql_tables_in_use; /* number of Innobase tables
  244. used in the processing of the current
  245. SQL statement in MySQL */
  246. UT_LIST_NODE_T(trx_t) 
  247. trx_list; /* list of transactions */
  248. /*------------------------------*/
  249. mutex_t undo_mutex; /* mutex protecting the fields in this
  250. section (down to undo_no_arr), EXCEPT
  251. last_sql_stat_start, which can be
  252. accessed only when we know that there
  253. cannot be any activity in the undo
  254. logs! */
  255. dulint undo_no; /* next undo log record number to
  256. assign */
  257. trx_savept_t last_sql_stat_start;
  258. /* undo_no when the last sql statement
  259. was started: in case of an error, trx
  260. is rolled back down to this undo
  261. number; see note at undo_mutex! */
  262. trx_rseg_t* rseg; /* rollback segment assigned to the
  263. transaction, or NULL if not assigned
  264. yet */
  265. trx_undo_t* insert_undo; /* pointer to the insert undo log, or 
  266. NULL if no inserts performed yet */
  267. trx_undo_t*  update_undo; /* pointer to the update undo log, or
  268. NULL if no update performed yet */
  269. dulint roll_limit; /* least undo number to undo during
  270. a rollback */
  271. ulint pages_undone; /* number of undo log pages undone
  272. since the last undo log truncation */
  273. trx_undo_arr_t* undo_no_arr; /* array of undo numbers of undo log
  274. records which are currently processed
  275. by a rollback operation */
  276. /*------------------------------*/
  277. ulint error_state; /* 0 if no error, otherwise error
  278. number */
  279. void* error_info; /* if the error number indicates a
  280. duplicate key error, a pointer to
  281. the problematic index is stored here */
  282. sess_t* sess; /* session of the trx, NULL if none */
  283.   ulint que_state; /* TRX_QUE_RUNNING, TRX_QUE_LOCK_WAIT,
  284. ... */
  285. que_t* graph; /* query currently run in the session,
  286. or NULL if none; NOTE that the query
  287. belongs to the session, and it can
  288. survive over a transaction commit, if
  289. it is a stored procedure with a COMMIT
  290. WORK statement, for instance */
  291. ulint n_active_thrs; /* number of active query threads */
  292. ibool handling_signals;/* this is TRUE as long as the trx
  293. is handling signals */
  294. que_t* graph_before_signal_handling;
  295. /* value of graph when signal handling
  296. for this trx started: this is used to
  297. return control to the original query
  298. graph for error processing */
  299. trx_sig_t sig; /* one signal object can be allocated
  300. in this space, avoiding mem_alloc */
  301. UT_LIST_BASE_NODE_T(trx_sig_t)
  302. signals; /* queue of processed or pending
  303. signals to the trx */
  304. UT_LIST_BASE_NODE_T(trx_sig_t)
  305. reply_signals; /* list of signals sent by the query
  306. threads of this trx for which a thread
  307. is waiting for a reply; if this trx is
  308. killed, the reply requests in the list
  309. must be canceled */
  310. /*------------------------------*/
  311. lock_t* wait_lock; /* if trx execution state is
  312. TRX_QUE_LOCK_WAIT, this points to
  313. the lock request, otherwise this is
  314. NULL */
  315. UT_LIST_BASE_NODE_T(que_thr_t)
  316. wait_thrs; /* query threads belonging to this
  317. trx that are in the QUE_THR_LOCK_WAIT
  318. state */
  319. /*------------------------------*/
  320. mem_heap_t* lock_heap; /* memory heap for the locks of the
  321. transaction; protected by
  322. lock_heap_mutex */
  323. UT_LIST_BASE_NODE_T(lock_t) 
  324. trx_locks; /* locks reserved by the transaction;
  325. protected by lock_heap_mutex */
  326. /*------------------------------*/
  327. mem_heap_t* read_view_heap; /* memory heap for the read view */
  328. read_view_t* read_view; /* consistent read view or NULL */
  329. };
  330. #define TRX_MAX_N_THREADS 32 /* maximum number of concurrent
  331. threads running a single operation of
  332. a transaction, e.g., a parallel query */
  333. /* Transaction types */
  334. #define TRX_USER 1 /* normal user transaction */
  335. #define TRX_PURGE 2 /* purge transaction: this is not
  336. inserted to the trx list of trx_sys
  337. and no rollback segment is assigned to
  338. this */
  339. /* Transaction concurrency states */
  340. #define TRX_NOT_STARTED 1
  341. #define TRX_ACTIVE 2
  342. #define TRX_COMMITTED_IN_MEMORY 3
  343. /* Transaction execution states when trx state is TRX_ACTIVE */
  344. #define TRX_QUE_RUNNING 1 /* transaction is running */
  345. #define TRX_QUE_LOCK_WAIT 2 /* transaction is waiting for a lock */
  346. #define TRX_QUE_ROLLING_BACK 3 /* transaction is rolling back */
  347. #define TRX_QUE_COMMITTING 4 /* transaction is committing */
  348. /* Types of a trx signal */
  349. #define TRX_SIG_NO_SIGNAL 100
  350. #define TRX_SIG_TOTAL_ROLLBACK 1
  351. #define TRX_SIG_ROLLBACK_TO_SAVEPT 2
  352. #define TRX_SIG_COMMIT 3
  353. #define TRX_SIG_ERROR_OCCURRED 4
  354. #define TRX_SIG_BREAK_EXECUTION 5
  355. /* Sender types of a signal */
  356. #define TRX_SIG_SELF 1 /* sent by the session itself, or
  357. by an error occurring within this
  358. session */
  359. #define TRX_SIG_OTHER_SESS 2 /* sent by another session (which
  360. must hold rights to this) */
  361. /* Signal states */
  362. #define TRX_SIG_WAITING 1
  363. #define TRX_SIG_BEING_HANDLED 2
  364. /* Commit command node in a query graph */
  365. struct commit_node_struct{
  366. que_common_t common; /* node type: QUE_NODE_COMMIT */
  367. ulint state; /* node execution state */
  368. };
  369. /* Commit node states */
  370. #define COMMIT_NODE_SEND 1
  371. #define COMMIT_NODE_WAIT 2
  372. #ifndef UNIV_NONINL
  373. #include "trx0trx.ic"
  374. #endif
  375. #endif