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

MySQL数据库

开发平台:

Visual C++

  1. /******************************************************
  2. Interface between Innobase row operations and MySQL.
  3. Contains also create table and other data dictionary operations.
  4. (c) 2000 Innobase Oy
  5. Created 9/17/2000 Heikki Tuuri
  6. *******************************************************/
  7. #ifndef row0mysql_h
  8. #define row0mysql_h
  9. #include "univ.i"
  10. #include "data0data.h"
  11. #include "que0types.h"
  12. #include "dict0types.h"
  13. #include "trx0types.h"
  14. #include "row0types.h"
  15. #include "btr0pcur.h"
  16. #include "trx0types.h"
  17. typedef struct row_prebuilt_struct row_prebuilt_t;
  18. /***********************************************************************
  19. Stores a variable-length field (like VARCHAR) length to dest, in the
  20. MySQL format. */
  21. UNIV_INLINE
  22. byte*
  23. row_mysql_store_var_len(
  24. /*====================*/
  25. /* out: dest + 2 */
  26. byte* dest, /* in: where to store */
  27. ulint len); /* in: length, must fit in two bytes */
  28. /***********************************************************************
  29. Reads a MySQL format variable-length field (like VARCHAR) length and
  30. returns pointer to the field data. */
  31. UNIV_INLINE
  32. byte*
  33. row_mysql_read_var_ref(
  34. /*===================*/
  35. /* out: field + 2 */
  36. ulint* len, /* out: variable-length field length */
  37. byte* field); /* in: field */
  38. /***********************************************************************
  39. Reads a MySQL format variable-length field (like VARCHAR) length and
  40. returns pointer to the field data. */
  41. byte*
  42. row_mysql_read_var_ref_noninline(
  43. /*=============================*/
  44. /* out: field + 2 */
  45. ulint* len, /* out: variable-length field length */
  46. byte* field); /* in: field */
  47. /***********************************************************************
  48. Frees the blob heap in prebuilt when no longer needed. */
  49. void
  50. row_mysql_prebuilt_free_blob_heap(
  51. /*==============================*/
  52. row_prebuilt_t* prebuilt); /* in: prebuilt struct of a
  53. ha_innobase:: table handle */
  54. /***********************************************************************
  55. Stores a reference to a BLOB in the MySQL format. */
  56. void
  57. row_mysql_store_blob_ref(
  58. /*=====================*/
  59. byte* dest, /* in: where to store */
  60. ulint col_len, /* in: dest buffer size: determines into
  61. how many bytes the BLOB length is stored,
  62. this may vary from 1 to 4 bytes */
  63. byte* data, /* in: BLOB data */
  64. ulint len); /* in: BLOB length */
  65. /***********************************************************************
  66. Reads a reference to a BLOB in the MySQL format. */
  67. byte*
  68. row_mysql_read_blob_ref(
  69. /*====================*/
  70. /* out: pointer to BLOB data */
  71. ulint* len, /* out: BLOB length */
  72. byte* ref, /* in: BLOB reference in the MySQL format */
  73. ulint col_len); /* in: BLOB reference length (not BLOB
  74. length) */
  75. /******************************************************************
  76. Stores a non-SQL-NULL field given in the MySQL format in the Innobase
  77. format. */
  78. UNIV_INLINE
  79. void
  80. row_mysql_store_col_in_innobase_format(
  81. /*===================================*/
  82. dfield_t* dfield, /* in/out: dfield */
  83. byte* buf, /* in/out: buffer for the converted
  84. value */
  85. byte* mysql_data, /* in: MySQL column value, not
  86. SQL NULL; NOTE that dfield may also
  87. get a pointer to mysql_data,
  88. therefore do not discard this as long
  89. as dfield is used! */
  90. ulint col_len, /* in: MySQL column length */
  91. ulint type, /* in: data type */
  92. ulint is_unsigned); /* in: != 0 if unsigned integer type */
  93. /********************************************************************
  94. Handles user errors and lock waits detected by the database engine. */
  95. ibool
  96. row_mysql_handle_errors(
  97. /*====================*/
  98. /* out: TRUE if it was a lock wait and
  99. we should continue running the query thread */
  100. ulint* new_err,/* out: possible new error encountered in
  101. rollback, or the old error which was
  102. during the function entry */
  103. trx_t* trx, /* in: transaction */
  104. que_thr_t* thr, /* in: query thread */
  105. trx_savept_t* savept);/* in: savepoint */
  106. /************************************************************************
  107. Create a prebuilt struct for a MySQL table handle. */
  108. row_prebuilt_t*
  109. row_create_prebuilt(
  110. /*================*/
  111. /* out, own: a prebuilt struct */
  112. dict_table_t* table); /* in: Innobase table handle */
  113. /************************************************************************
  114. Free a prebuilt struct for a MySQL table handle. */
  115. void
  116. row_prebuilt_free(
  117. /*==============*/
  118. row_prebuilt_t* prebuilt); /* in, own: prebuilt struct */
  119. /*************************************************************************
  120. Updates the transaction pointers in query graphs stored in the prebuilt
  121. struct. */
  122. void
  123. row_update_prebuilt_trx(
  124. /*====================*/
  125. /* out: prebuilt dtuple */
  126. row_prebuilt_t* prebuilt, /* in: prebuilt struct in MySQL
  127. handle */
  128. trx_t* trx); /* in: transaction handle */
  129. /*************************************************************************
  130. Unlocks an AUTO_INC type lock possibly reserved by trx. */
  131. void   
  132. row_unlock_table_autoinc_for_mysql(
  133. /*===============================*/
  134. trx_t* trx); /* in: transaction */
  135. /*************************************************************************
  136. Sets an AUTO_INC type lock on the table mentioned in prebuilt. The
  137. AUTO_INC lock gives exclusive access to the auto-inc counter of the
  138. table. The lock is reserved only for the duration of an SQL statement.
  139. It is not compatible with another AUTO_INC or exclusive lock on the
  140. table. */
  141. int
  142. row_lock_table_autoinc_for_mysql(
  143. /*=============================*/
  144. /* out: error code or DB_SUCCESS */
  145. row_prebuilt_t* prebuilt); /* in: prebuilt struct in the MySQL
  146. table handle */
  147. /*************************************************************************
  148. Unlocks all table locks explicitly requested by trx (with LOCK TABLES,
  149. lock type LOCK_TABLE_EXP). */
  150. void   
  151. row_unlock_tables_for_mysql(
  152. /*========================*/
  153. trx_t* trx); /* in: transaction */
  154. /*************************************************************************
  155. Sets a table lock on the table mentioned in prebuilt. */
  156. int
  157. row_lock_table_for_mysql(
  158. /*=====================*/
  159. /* out: error code or DB_SUCCESS */
  160. row_prebuilt_t* prebuilt, /* in: prebuilt struct in the MySQL
  161. table handle */
  162. dict_table_t* table, /* in: table to lock, or NULL
  163. if prebuilt->table should be
  164. locked as LOCK_TABLE_EXP |
  165. prebuilt->select_lock_type */
  166. ulint mode); /* in: lock mode of table */
  167.    
  168. /*************************************************************************
  169. Does an insert for MySQL. */
  170. int
  171. row_insert_for_mysql(
  172. /*=================*/
  173. /* out: error code or DB_SUCCESS */
  174. byte* mysql_rec, /* in: row in the MySQL format */
  175. row_prebuilt_t* prebuilt); /* in: prebuilt struct in MySQL
  176. handle */
  177. /*************************************************************************
  178. Builds a dummy query graph used in selects. */
  179. void
  180. row_prebuild_sel_graph(
  181. /*===================*/
  182. row_prebuilt_t* prebuilt); /* in: prebuilt struct in MySQL
  183. handle */
  184. /*************************************************************************
  185. Gets pointer to a prebuilt update vector used in updates. If the update
  186. graph has not yet been built in the prebuilt struct, then this function
  187. first builds it. */
  188. upd_t*
  189. row_get_prebuilt_update_vector(
  190. /*===========================*/
  191. /* out: prebuilt update vector */
  192. row_prebuilt_t* prebuilt); /* in: prebuilt struct in MySQL
  193. handle */
  194. /*************************************************************************
  195. Checks if a table is such that we automatically created a clustered
  196. index on it (on row id). */
  197. ibool
  198. row_table_got_default_clust_index(
  199. /*==============================*/
  200. dict_table_t* table);
  201. /*************************************************************************
  202. Calculates the key number used inside MySQL for an Innobase index. We have
  203. to take into account if we generated a default clustered index for the table */
  204. ulint
  205. row_get_mysql_key_number_for_index(
  206. /*===============================*/
  207. dict_index_t* index);
  208. /*************************************************************************
  209. Does an update or delete of a row for MySQL. */
  210. int
  211. row_update_for_mysql(
  212. /*=================*/
  213. /* out: error code or DB_SUCCESS */
  214. byte* mysql_rec, /* in: the row to be updated, in
  215. the MySQL format */
  216. row_prebuilt_t* prebuilt); /* in: prebuilt struct in MySQL
  217. handle */
  218. /*************************************************************************
  219. Creates an query graph node of 'update' type to be used in the MySQL
  220. interface. */
  221. upd_node_t*
  222. row_create_update_node_for_mysql(
  223. /*=============================*/
  224. /* out, own: update node */
  225. dict_table_t* table, /* in: table to update */
  226. mem_heap_t* heap); /* in: mem heap from which allocated */
  227. /**************************************************************************
  228. Does a cascaded delete or set null in a foreign key operation. */
  229. ulint
  230. row_update_cascade_for_mysql(
  231. /*=========================*/
  232. /* out: error code or DB_SUCCESS */
  233. que_thr_t* thr, /* in: query thread */
  234. upd_node_t* node, /* in: update node used in the cascade
  235. or set null operation */
  236. dict_table_t* table); /* in: table where we do the operation */
  237. /*************************************************************************
  238. Locks the data dictionary exclusively for performing a table create or other
  239. data dictionary modification operation. */
  240. void
  241. row_mysql_lock_data_dictionary(
  242. /*===========================*/
  243. trx_t* trx); /* in: transaction */
  244. /*************************************************************************
  245. Unlocks the data dictionary exclusive lock. */
  246. void
  247. row_mysql_unlock_data_dictionary(
  248. /*=============================*/
  249. trx_t* trx); /* in: transaction */
  250. /*************************************************************************
  251. Locks the data dictionary in shared mode from modifications, for performing
  252. foreign key check, rollback, or other operation invisible to MySQL. */
  253. void
  254. row_mysql_freeze_data_dictionary(
  255. /*=============================*/
  256. trx_t* trx); /* in: transaction */
  257. /*************************************************************************
  258. Unlocks the data dictionary shared lock. */
  259. void
  260. row_mysql_unfreeze_data_dictionary(
  261. /*===============================*/
  262. trx_t* trx); /* in: transaction */
  263. /*************************************************************************
  264. Does a table creation operation for MySQL. If the name of the created
  265. table ends to characters INNODB_MONITOR, then this also starts
  266. printing of monitor output by the master thread. */
  267. int
  268. row_create_table_for_mysql(
  269. /*=======================*/
  270. /* out: error code or DB_SUCCESS */
  271. dict_table_t* table, /* in: table definition */
  272. trx_t* trx); /* in: transaction handle */
  273. /*************************************************************************
  274. Does an index creation operation for MySQL. TODO: currently failure
  275. to create an index results in dropping the whole table! This is no problem
  276. currently as all indexes must be created at the same time as the table. */
  277. int
  278. row_create_index_for_mysql(
  279. /*=======================*/
  280. /* out: error number or DB_SUCCESS */
  281. dict_index_t* index, /* in: index defintion */
  282. trx_t* trx); /* in: transaction handle */
  283. /*************************************************************************
  284. Scans a table create SQL string and adds to the data dictionary
  285. the foreign key constraints declared in the string. This function
  286. should be called after the indexes for a table have been created.
  287. Each foreign key constraint must be accompanied with indexes in
  288. bot participating tables. The indexes are allowed to contain more
  289. fields than mentioned in the constraint. */
  290. int
  291. row_table_add_foreign_constraints(
  292. /*==============================*/
  293. /* out: error code or DB_SUCCESS */
  294. trx_t* trx, /* in: transaction */
  295. const char* sql_string, /* in: table create statement where
  296. foreign keys are declared like:
  297. FOREIGN KEY (a, b) REFERENCES table2(c, d),
  298. table2 can be written also with the
  299. database name before it: test.table2 */
  300. const char* name); /* in: table full name in the
  301. normalized form
  302. database_name/table_name */
  303. /*************************************************************************
  304. The master thread in srv0srv.c calls this regularly to drop tables which
  305. we must drop in background after queries to them have ended. Such lazy
  306. dropping of tables is needed in ALTER TABLE on Unix. */
  307. ulint
  308. row_drop_tables_for_mysql_in_background(void);
  309. /*=========================================*/
  310. /* out: how many tables dropped
  311. + remaining tables in list */
  312. /*************************************************************************
  313. Get the background drop list length. NOTE: the caller must own the kernel
  314. mutex! */
  315. ulint
  316. row_get_background_drop_list_len_low(void);
  317. /*======================================*/
  318. /* out: how many tables in list */
  319. /*************************************************************************
  320. Drops a table for MySQL. If the name of the dropped table ends to
  321. characters INNODB_MONITOR, then this also stops printing of monitor
  322. output by the master thread. */
  323. int
  324. row_drop_table_for_mysql(
  325. /*=====================*/
  326. /* out: error code or DB_SUCCESS */
  327. const char* name, /* in: table name */
  328. trx_t* trx, /* in: transaction handle */
  329. ibool drop_db);/* in: TRUE=dropping whole database */
  330. /*************************************************************************
  331. Discards the tablespace of a table which stored in an .ibd file. Discarding
  332. means that this function deletes the .ibd file and assigns a new table id for
  333. the table. Also the flag table->ibd_file_missing is set TRUE. */
  334. int
  335. row_discard_tablespace_for_mysql(
  336. /*=============================*/
  337. /* out: error code or DB_SUCCESS */
  338. const char* name, /* in: table name */
  339. trx_t* trx); /* in: transaction handle */
  340. /*********************************************************************
  341. Imports a tablespace. The space id in the .ibd file must match the space id
  342. of the table in the data dictionary. */
  343. int
  344. row_import_tablespace_for_mysql(
  345. /*============================*/
  346. /* out: error code or DB_SUCCESS */
  347. const char* name, /* in: table name */
  348. trx_t* trx); /* in: transaction handle */
  349. /*************************************************************************
  350. Drops a database for MySQL. */
  351. int
  352. row_drop_database_for_mysql(
  353. /*========================*/
  354. /* out: error code or DB_SUCCESS */
  355. const char* name, /* in: database name which ends to '/' */
  356. trx_t* trx); /* in: transaction handle */
  357. /*************************************************************************
  358. Renames a table for MySQL. */
  359. int
  360. row_rename_table_for_mysql(
  361. /*=======================*/
  362. /* out: error code or DB_SUCCESS */
  363. const char* old_name, /* in: old table name */
  364. const char* new_name, /* in: new table name */
  365. trx_t* trx); /* in: transaction handle */
  366. /*************************************************************************
  367. Checks a table for corruption. */
  368. ulint
  369. row_check_table_for_mysql(
  370. /*======================*/
  371. /* out: DB_ERROR or DB_SUCCESS */
  372. row_prebuilt_t* prebuilt); /* in: prebuilt struct in MySQL
  373. handle */
  374. /* A struct describing a place for an individual column in the MySQL
  375. row format which is presented to the table handler in ha_innobase.
  376. This template struct is used to speed up row transformations between
  377. Innobase and MySQL. */
  378. typedef struct mysql_row_templ_struct mysql_row_templ_t;
  379. struct mysql_row_templ_struct {
  380. ulint col_no; /* column number of the column */
  381. ulint rec_field_no; /* field number of the column in an
  382. Innobase record in the current index;
  383. not defined if template_type is
  384. ROW_MYSQL_WHOLE_ROW */
  385. ulint mysql_col_offset; /* offset of the column in the MySQL
  386. row format */
  387. ulint mysql_col_len; /* length of the column in the MySQL
  388. row format */
  389. ulint mysql_null_byte_offset; /* MySQL NULL bit byte offset in a
  390. MySQL record */
  391. ulint mysql_null_bit_mask; /* bit mask to get the NULL bit,
  392. zero if column cannot be NULL */
  393. ulint type; /* column type in Innobase mtype
  394. numbers DATA_CHAR... */
  395. ulint charset; /* MySQL charset-collation code
  396. of the column, or zero */
  397. ulint is_unsigned; /* if a column type is an integer
  398. type and this field is != 0, then
  399. it is an unsigned integer type */
  400. };
  401. #define MYSQL_FETCH_CACHE_SIZE 8
  402. /* After fetching this many rows, we start caching them in fetch_cache */
  403. #define MYSQL_FETCH_CACHE_THRESHOLD 4
  404. #define ROW_PREBUILT_ALLOCATED 78540783
  405. #define ROW_PREBUILT_FREED 26423527
  406. /* A struct for (sometimes lazily) prebuilt structures in an Innobase table
  407. handle used within MySQL; these are used to save CPU time. */
  408. struct row_prebuilt_struct {
  409. ulint magic_n; /* this magic number is set to
  410. ROW_PREBUILT_ALLOCATED when created
  411. and to ROW_PREBUILT_FREED when the
  412. struct has been freed; used in
  413. debugging */
  414. dict_table_t* table; /* Innobase table handle */
  415. trx_t* trx; /* current transaction handle */
  416. ibool sql_stat_start; /* TRUE when we start processing of
  417. an SQL statement: we may have to set
  418. an intention lock on the table,
  419. create a consistent read view etc. */
  420.         ibool           mysql_has_locked; /* this is set TRUE when MySQL
  421.                 calls external_lock on this handle
  422.                 with a lock flag, and set FALSE when
  423.                 with the F_UNLOCK flag */
  424. ibool clust_index_was_generated;
  425. /* if the user did not define a
  426. primary key in MySQL, then Innobase
  427. automatically generated a clustered
  428. index where the ordering column is
  429. the row id: in this case this flag
  430. is set to TRUE */
  431. dict_index_t* index; /* current index for a search, if
  432. any */
  433. ulint read_just_key; /* set to 1 when MySQL calls
  434. ha_innobase::extra with the
  435. argument HA_EXTRA_KEYREAD; it is enough
  436. to read just columns defined in
  437. the index (i.e., no read of the
  438. clustered index record necessary) */
  439. ibool used_in_HANDLER;/* TRUE if we have been using this
  440. handle in a MySQL HANDLER low level
  441. index cursor command: then we must
  442. store the pcur position even in a
  443. unique search from a clustered index,
  444. because HANDLER allows NEXT and PREV
  445. in such a situation */
  446. ulint template_type; /* ROW_MYSQL_WHOLE_ROW, 
  447. ROW_MYSQL_REC_FIELDS,
  448. ROW_MYSQL_DUMMY_TEMPLATE, or
  449. ROW_MYSQL_NO_TEMPLATE */
  450. ulint n_template; /* number of elements in the
  451. template */
  452. ulint null_bitmap_len;/* number of bytes in the SQL NULL
  453. bitmap at the start of a row in the
  454. MySQL format */
  455. ibool need_to_access_clustered; /* if we are fetching
  456. columns through a secondary index
  457. and at least one column is not in
  458. the secondary index, then this is
  459. set to TRUE */
  460. ibool templ_contains_blob;/* TRUE if the template contains
  461. BLOB column(s) */
  462. mysql_row_templ_t* mysql_template;/* template used to transform
  463. rows fast between MySQL and Innobase
  464. formats; memory for this template
  465. is not allocated from 'heap' */
  466. mem_heap_t* heap; /* memory heap from which
  467. these auxiliary structures are
  468. allocated when needed */
  469. ins_node_t* ins_node; /* Innobase SQL insert node
  470. used to perform inserts
  471. to the table */
  472. byte* ins_upd_rec_buff;/* buffer for storing data converted
  473. to the Innobase format from the MySQL
  474. format */
  475. ulint hint_need_to_fetch_extra_cols;
  476. /* normally this is set to 0; if this
  477. is set to ROW_RETRIEVE_PRIMARY_KEY,
  478. then we should at least retrieve all
  479. columns in the primary key; if this
  480. is set to ROW_RETRIEVE_ALL_COLS, then
  481. we must retrieve all columns in the
  482. key (if read_just_key == 1), or all
  483. columns in the table */
  484. upd_node_t* upd_node; /* Innobase SQL update node used
  485. to perform updates and deletes */
  486. que_fork_t* ins_graph; /* Innobase SQL query graph used
  487. in inserts */
  488. que_fork_t* upd_graph; /* Innobase SQL query graph used
  489. in updates or deletes */
  490. btr_pcur_t* pcur; /* persistent cursor used in selects
  491. and updates */
  492. btr_pcur_t* clust_pcur; /* persistent cursor used in
  493. some selects and updates */
  494. que_fork_t* sel_graph; /* dummy query graph used in
  495. selects */
  496. dtuple_t* search_tuple; /* prebuilt dtuple used in selects */
  497. byte row_id[DATA_ROW_ID_LEN];
  498. /* if the clustered index was generated,
  499. the row id of the last row fetched is
  500. stored here */
  501. dtuple_t* clust_ref; /* prebuilt dtuple used in
  502. sel/upd/del */
  503. ulint select_lock_type;/* LOCK_NONE, LOCK_S, or LOCK_X */
  504. ulint stored_select_lock_type;/* this field is used to
  505. remember the original select_lock_type
  506. that was decided in ha_innodb.cc,
  507. ::store_lock(), ::external_lock(),
  508. etc. */
  509. ulint mysql_row_len; /* length in bytes of a row in the
  510. MySQL format */
  511. ulint n_rows_fetched; /* number of rows fetched after
  512. positioning the current cursor */
  513. ulint fetch_direction;/* ROW_SEL_NEXT or ROW_SEL_PREV */
  514. byte* fetch_cache[MYSQL_FETCH_CACHE_SIZE];
  515. /* a cache for fetched rows if we
  516. fetch many rows from the same cursor:
  517. it saves CPU time to fetch them in a
  518. batch; we reserve mysql_row_len
  519. bytes for each such row; these
  520. pointers point 4 bytes past the
  521. allocated mem buf start, because
  522. there is a 4 byte magic number at the
  523. start and at the end */
  524. ulint fetch_cache_first;/* position of the first not yet
  525. fetched row in fetch_cache */
  526. ulint n_fetch_cached; /* number of not yet fetched rows
  527. in fetch_cache */
  528. mem_heap_t* blob_heap; /* in SELECTS BLOB fie lds are copied
  529. to this heap */
  530. mem_heap_t* old_vers_heap; /* memory heap where a previous
  531. version is built in consistent read */
  532. ulint magic_n2; /* this should be the same as
  533. magic_n */
  534. };
  535. #define ROW_PREBUILT_FETCH_MAGIC_N 465765687
  536. #define ROW_MYSQL_WHOLE_ROW 0
  537. #define ROW_MYSQL_REC_FIELDS 1
  538. #define ROW_MYSQL_NO_TEMPLATE 2
  539. #define ROW_MYSQL_DUMMY_TEMPLATE 3 /* dummy template used in
  540. row_scan_and_check_index */
  541. /* Values for hint_need_to_fetch_extra_cols */
  542. #define ROW_RETRIEVE_PRIMARY_KEY 1
  543. #define ROW_RETRIEVE_ALL_COLS 2
  544. #ifndef UNIV_NONINL
  545. #include "row0mysql.ic"
  546. #endif
  547. #endif