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

MySQL数据库

开发平台:

Visual C++

  1. /******************************************************
  2. The low-level file system
  3. (c) 1995 Innobase Oy
  4. Created 10/25/1995 Heikki Tuuri
  5. *******************************************************/
  6. #ifndef fil0fil_h
  7. #define fil0fil_h
  8. #include "univ.i"
  9. #include "sync0rw.h"
  10. #include "dict0types.h"
  11. #include "ibuf0types.h"
  12. #include "ut0byte.h"
  13. #include "os0file.h"
  14. /* When mysqld is run, the default directory "." is the mysqld datadir, but in
  15. ibbackup we must set it explicitly; the patgh must NOT contain the trailing
  16. '/' or '' */
  17. extern const char* fil_path_to_mysql_datadir;
  18. /* Initial size of a single-table tablespace in pages */
  19. #define FIL_IBD_FILE_INITIAL_SIZE 4
  20. /* 'null' (undefined) page offset in the context of file spaces */
  21. #define FIL_NULL ULINT32_UNDEFINED
  22. /* Space address data type; this is intended to be used when
  23. addresses accurate to a byte are stored in file pages. If the page part
  24. of the address is FIL_NULL, the address is considered undefined. */
  25. typedef byte fil_faddr_t; /* 'type' definition in C: an address
  26. stored in a file page is a string of bytes */
  27. #define FIL_ADDR_PAGE 0 /* first in address is the page offset */
  28. #define FIL_ADDR_BYTE 4 /* then comes 2-byte byte offset within page*/
  29. #define FIL_ADDR_SIZE 6 /* address size is 6 bytes */
  30. /* A struct for storing a space address FIL_ADDR, when it is used
  31. in C program data structures. */
  32. typedef struct fil_addr_struct fil_addr_t;
  33. struct fil_addr_struct{
  34. ulint page; /* page number within a space */
  35. ulint boffset; /* byte offset within the page */
  36. };
  37. /* Null file address */
  38. extern fil_addr_t fil_addr_null;
  39. /* The byte offsets on a file page for various variables */
  40. #define FIL_PAGE_SPACE_OR_CHKSUM 0 /* in < MySQL-4.0.14 space id the
  41. page belongs to (== 0) but in later
  42. versions the 'new' checksum of the
  43. page */
  44. #define FIL_PAGE_OFFSET 4 /* page offset inside space */
  45. #define FIL_PAGE_PREV 8 /* if there is a 'natural' predecessor
  46. of the page, its offset */
  47. #define FIL_PAGE_NEXT 12 /* if there is a 'natural' successor
  48. of the page, its offset */
  49. #define FIL_PAGE_LSN 16 /* lsn of the end of the newest
  50. modification log record to the page */
  51. #define FIL_PAGE_TYPE 24 /* file page type: FIL_PAGE_INDEX,...,
  52. 2 bytes */
  53. #define FIL_PAGE_FILE_FLUSH_LSN 26 /* this is only defined for the
  54. first page in a data file: the file
  55. has been flushed to disk at least up
  56. to this lsn */
  57. #define FIL_PAGE_ARCH_LOG_NO_OR_SPACE_ID  34 /* starting from 4.1.x this
  58. contains the space id of the page */
  59. #define FIL_PAGE_DATA 38 /* start of the data on the page */
  60. /* File page trailer */
  61. #define FIL_PAGE_END_LSN_OLD_CHKSUM 8 /* the low 4 bytes of this are used
  62. to store the page checksum, the
  63. last 4 bytes should be identical
  64. to the last 4 bytes of FIL_PAGE_LSN */
  65. #define FIL_PAGE_DATA_END 8
  66. /* File page types */
  67. #define FIL_PAGE_INDEX 17855
  68. #define FIL_PAGE_UNDO_LOG 2
  69. #define FIL_PAGE_INODE 3
  70. #define FIL_PAGE_IBUF_FREE_LIST 4
  71. /* Space types */
  72. #define FIL_TABLESPACE  501
  73. #define FIL_LOG 502
  74. extern ulint fil_n_pending_log_flushes;
  75. extern ulint fil_n_pending_tablespace_flushes;
  76. /***********************************************************************
  77. Returns the version number of a tablespace, -1 if not found. */
  78. ib_longlong
  79. fil_space_get_version(
  80. /*==================*/
  81. /* out: version number, -1 if the tablespace does not
  82. exist in the memory cache */
  83. ulint id); /* in: space id */
  84. /***********************************************************************
  85. Returns the latch of a file space. */
  86. rw_lock_t*
  87. fil_space_get_latch(
  88. /*================*/
  89. /* out: latch protecting storage allocation */
  90. ulint id); /* in: space id */
  91. /***********************************************************************
  92. Returns the type of a file space. */
  93. ulint
  94. fil_space_get_type(
  95. /*===============*/
  96. /* out: FIL_TABLESPACE or FIL_LOG */
  97. ulint id); /* in: space id */
  98. /***********************************************************************
  99. Returns the ibuf data of a file space. */
  100. ibuf_data_t*
  101. fil_space_get_ibuf_data(
  102. /*====================*/
  103. /* out: ibuf data for this space */
  104. ulint id); /* in: space id */
  105. /***********************************************************************
  106. Appends a new file to the chain of files of a space. File must be closed. */
  107. void
  108. fil_node_create(
  109. /*============*/
  110. const char* name, /* in: file name (file must be closed) */
  111. ulint size, /* in: file size in database blocks, rounded
  112. downwards to an integer */
  113. ulint id, /* in: space id where to append */
  114. ibool is_raw);/* in: TRUE if a raw device or
  115. a raw disk partition */
  116. /********************************************************************
  117. Drops files from the start of a file space, so that its size is cut by
  118. the amount given. */
  119. void
  120. fil_space_truncate_start(
  121. /*=====================*/
  122. ulint id, /* in: space id */
  123. ulint trunc_len); /* in: truncate by this much; it is an error
  124. if this does not equal to the combined size of
  125. some initial files in the space */
  126. /***********************************************************************
  127. Creates a space memory object and puts it to the 'fil system' hash table. If
  128. there is an error, prints an error message to the .err log. */
  129. ibool
  130. fil_space_create(
  131. /*=============*/
  132. /* out: TRUE if success */
  133. const char* name, /* in: space name */
  134. ulint id, /* in: space id */
  135. ulint purpose);/* in: FIL_TABLESPACE, or FIL_LOG if log */
  136. /***********************************************************************
  137. Frees a space object from a the tablespace memory cache. Closes the files in
  138. the chain but does not delete them. */
  139. ibool
  140. fil_space_free(
  141. /*===========*/
  142. /* out: TRUE if success */
  143. ulint id); /* in: space id */
  144. /***********************************************************************
  145. Returns the size of the space in pages. The tablespace must be cached in the
  146. memory cache. */
  147. ulint
  148. fil_space_get_size(
  149. /*===============*/
  150. /* out: space size, 0 if space not found */
  151. ulint id); /* in: space id */
  152. /***********************************************************************
  153. Checks if the pair space, page_no refers to an existing page in a tablespace
  154. file space. The tablespace must be cached in the memory cache. */
  155. ibool
  156. fil_check_adress_in_tablespace(
  157. /*===========================*/
  158. /* out: TRUE if the address is meaningful */
  159. ulint id, /* in: space id */
  160. ulint page_no);/* in: page number */
  161. /********************************************************************
  162. Initializes the tablespace memory cache. */
  163. void
  164. fil_init(
  165. /*=====*/
  166. ulint max_n_open); /* in: max number of open files */
  167. /***********************************************************************
  168. Opens all log files and system tablespace data files. They stay open until the
  169. database server shutdown. This should be called at a server startup after the
  170. space objects for the log and the system tablespace have been created. The
  171. purpose of this operation is to make sure we never run out of file descriptors
  172. if we need to read from the insert buffer or to write to the log. */
  173. void
  174. fil_open_log_and_system_tablespace_files(void);
  175. /*==========================================*/
  176. /***********************************************************************
  177. Closes all open files. There must not be any pending i/o's or not flushed
  178. modifications in the files. */
  179. void
  180. fil_close_all_files(void);
  181. /*=====================*/
  182. /***********************************************************************
  183. Sets the max tablespace id counter if the given number is bigger than the
  184. previous value. */
  185. void
  186. fil_set_max_space_id_if_bigger(
  187. /*===========================*/
  188. ulint max_id);/* in: maximum known id */
  189. /********************************************************************
  190. Initializes the ibuf data structure for space 0 == the system tablespace.
  191. This can be called after the file space headers have been created and the
  192. dictionary system has been initialized. */
  193. void
  194. fil_ibuf_init_at_db_start(void);
  195. /*===========================*/
  196. /********************************************************************
  197. Writes the flushed lsn and the latest archived log number to the page
  198. header of the first page of each data file in the system tablespace. */
  199. ulint
  200. fil_write_flushed_lsn_to_data_files(
  201. /*================================*/
  202. /* out: DB_SUCCESS or error number */
  203. dulint lsn, /* in: lsn to write */
  204. ulint arch_log_no); /* in: latest archived log file number */
  205. /***********************************************************************
  206. Reads the flushed lsn and arch no fields from a data file at database
  207. startup. */
  208. void
  209. fil_read_flushed_lsn_and_arch_log_no(
  210. /*=================================*/
  211. os_file_t data_file, /* in: open data file */
  212. ibool one_read_already, /* in: TRUE if min and max parameters
  213. below already contain sensible data */
  214. #ifdef UNIV_LOG_ARCHIVE
  215. ulint* min_arch_log_no, /* in/out: */
  216. ulint* max_arch_log_no, /* in/out: */
  217. #endif /* UNIV_LOG_ARCHIVE */
  218. dulint* min_flushed_lsn, /* in/out: */
  219. dulint* max_flushed_lsn); /* in/out: */
  220. /***********************************************************************
  221. Increments the count of pending insert buffer page merges, if space is not
  222. being deleted. */
  223. ibool
  224. fil_inc_pending_ibuf_merges(
  225. /*========================*/
  226. /* out: TRUE if being deleted, and ibuf merges should
  227. be skipped */
  228. ulint id); /* in: space id */
  229. /***********************************************************************
  230. Decrements the count of pending insert buffer page merges. */
  231. void
  232. fil_decr_pending_ibuf_merges(
  233. /*========================*/
  234. ulint id); /* in: space id */
  235. /***********************************************************************
  236. Parses the body of a log record written about an .ibd file operation. That is,
  237. the log record part after the standard (type, space id, page no) header of the
  238. log record.
  239. If desired, also replays the delete or rename operation if the .ibd file
  240. exists and the space id in it matches. Replays the create operation if a file
  241. at that path does not exist yet. If the database directory for the file to be
  242. created does not exist, then we create the directory, too.
  243. Note that ibbackup --apply-log sets fil_path_to_mysql_datadir to point to the
  244. datadir that we should use in replaying the file operations. */
  245. byte*
  246. fil_op_log_parse_or_replay(
  247. /*=======================*/
  248.                          /* out: end of log record, or NULL if the
  249. record was not completely contained between
  250. ptr and end_ptr */
  251.         byte*   ptr,     /* in: buffer containing the log record body,
  252. or an initial segment of it, if the record does
  253. not fir completely between ptr and end_ptr */
  254.         byte*   end_ptr, /* in: buffer end */
  255. ulint type, /* in: the type of this log record */
  256. ibool do_replay, /* in: TRUE if we want to replay the
  257. operation, and not just parse the log record */
  258. ulint space_id); /* in: if do_replay is TRUE, the space id of
  259. the tablespace in question; otherwise
  260. ignored */
  261. /***********************************************************************
  262. Deletes a single-table tablespace. The tablespace must be cached in the
  263. memory cache. */
  264. ibool
  265. fil_delete_tablespace(
  266. /*==================*/
  267. /* out: TRUE if success */
  268. ulint id); /* in: space id */
  269. /***********************************************************************
  270. Discards a single-table tablespace. The tablespace must be cached in the
  271. memory cache. Discarding is like deleting a tablespace, but
  272. 1) we do not drop the table from the data dictionary;
  273. 2) we remove all insert buffer entries for the tablespace immediately; in DROP
  274. TABLE they are only removed gradually in the background;
  275. 3) when the user does IMPORT TABLESPACE, the tablespace will have the same id
  276. as it originally had. */
  277. ibool
  278. fil_discard_tablespace(
  279. /*===================*/
  280. /* out: TRUE if success */
  281. ulint id); /* in: space id */
  282. /***********************************************************************
  283. Renames a single-table tablespace. The tablespace must be cached in the
  284. tablespace memory cache. */
  285. ibool
  286. fil_rename_tablespace(
  287. /*==================*/
  288. /* out: TRUE if success */
  289. const char* old_name, /* in: old table name in the standard
  290. databasename/tablename format of
  291. InnoDB, or NULL if we do the rename
  292. based on the space id only */
  293. ulint id, /* in: space id */
  294. const char* new_name); /* in: new table name in the standard
  295. databasename/tablename format
  296. of InnoDB */
  297. /***********************************************************************
  298. Creates a new single-table tablespace to a database directory of MySQL.
  299. Database directories are under the 'datadir' of MySQL. The datadir is the
  300. directory of a running mysqld program. We can refer to it by simply the
  301. path '.'. Tables created with CREATE TEMPORARY TABLE we place in the temp
  302. dir of the mysqld server. */
  303. ulint
  304. fil_create_new_single_table_tablespace(
  305. /*===================================*/
  306. /* out: DB_SUCCESS or error code */
  307. ulint* space_id, /* in/out: space id; if this is != 0,
  308. then this is an input parameter,
  309. otherwise output */
  310. const char* tablename, /* in: the table name in the usual
  311. databasename/tablename format
  312. of InnoDB, or a dir path to a temp
  313. table */
  314. ibool is_temp, /* in: TRUE if a table created with
  315. CREATE TEMPORARY TABLE */
  316. ulint size); /* in: the initial size of the
  317. tablespace file in pages,
  318. must be >= FIL_IBD_FILE_INITIAL_SIZE */
  319. /************************************************************************
  320. Tries to open a single-table tablespace and optionally checks the space id is
  321. right in it. If does not succeed, prints an error message to the .err log. This
  322. function is used to open a tablespace when we start up mysqld, and also in
  323. IMPORT TABLESPACE.
  324. NOTE that we assume this operation is used either at the database startup
  325. or under the protection of the dictionary mutex, so that two users cannot
  326. race here. This operation does not leave the file associated with the
  327. tablespace open, but closes it after we have looked at the space id in it. */
  328. ibool
  329. fil_open_single_table_tablespace(
  330. /*=============================*/
  331. /* out: TRUE if success */
  332. ibool check_space_id, /* in: should we check that the space
  333. id in the file is right; we assume
  334. that this function runs much faster
  335. if no check is made, since accessing
  336. the file inode probably is much
  337. faster (the OS caches them) than
  338. accessing the first page of the file */
  339. ulint id, /* in: space id */
  340. const char* name); /* in: table name in the
  341. databasename/tablename format */
  342. /************************************************************************
  343. It is possible, though very improbable, that the lsn's in the tablespace to be
  344. imported have risen above the current system lsn, if a lengthy purge, ibuf
  345. merge, or rollback was performed on a backup taken with ibbackup. If that is
  346. the case, reset page lsn's in the file. We assume that mysqld was shut down
  347. after it performed these cleanup operations on the .ibd file, so that it at
  348. the shutdown stamped the latest lsn to the FIL_PAGE_FILE_FLUSH_LSN in the
  349. first page of the .ibd file, and we can determine whether we need to reset the
  350. lsn's just by looking at that flush lsn. */
  351. ibool
  352. fil_reset_too_high_lsns(
  353. /*====================*/
  354. /* out: TRUE if success */
  355. const char* name, /* in: table name in the
  356. databasename/tablename format */
  357. dulint current_lsn); /* in: reset lsn's if the lsn stamped
  358. to FIL_PAGE_FILE_FLUSH_LSN in the
  359. first page is too high */
  360. /************************************************************************
  361. At the server startup, if we need crash recovery, scans the database
  362. directories under the MySQL datadir, looking for .ibd files. Those files are
  363. single-table tablespaces. We need to know the space id in each of them so that
  364. we know into which file we should look to check the contents of a page stored
  365. in the doublewrite buffer, also to know where to apply log records where the
  366. space id is != 0. */
  367. ulint
  368. fil_load_single_table_tablespaces(void);
  369. /*===================================*/
  370. /* out: DB_SUCCESS or error number */
  371. /************************************************************************
  372. If we need crash recovery, and we have called
  373. fil_load_single_table_tablespaces() and dict_load_single_table_tablespaces(),
  374. we can call this function to print an error message of orphaned .ibd files
  375. for which there is not a data dictionary entry with a matching table name
  376. and space id. */
  377. void
  378. fil_print_orphaned_tablespaces(void);
  379. /*================================*/
  380. /***********************************************************************
  381. Returns TRUE if a single-table tablespace does not exist in the memory cache,
  382. or is being deleted there. */
  383. ibool
  384. fil_tablespace_deleted_or_being_deleted_in_mem(
  385. /*===========================================*/
  386. /* out: TRUE if does not exist or is being
  387. deleted */
  388. ulint id, /* in: space id */
  389. ib_longlong version);/* in: tablespace_version should be this; if
  390. you pass -1 as the value of this, then this
  391. parameter is ignored */
  392. /***********************************************************************
  393. Returns TRUE if a single-table tablespace exists in the memory cache. */
  394. ibool
  395. fil_tablespace_exists_in_mem(
  396. /*=========================*/
  397. /* out: TRUE if exists */
  398. ulint id); /* in: space id */
  399. /***********************************************************************
  400. Returns TRUE if a matching tablespace exists in the InnoDB tablespace memory
  401. cache. Note that if we have not done a crash recovery at the database startup,
  402. there may be many tablespaces which are not yet in the memory cache. */
  403. ibool
  404. fil_space_for_table_exists_in_mem(
  405. /*==============================*/
  406. /* out: TRUE if a matching tablespace
  407. exists in the memory cache */
  408. ulint id, /* in: space id */
  409. const char* name, /* in: table name in the standard
  410. 'databasename/tablename' format or
  411. the dir path to a temp table */
  412. ibool is_temp, /* in: TRUE if created with CREATE
  413. TEMPORARY TABLE */
  414. ibool mark_space, /* in: in crash recovery, at database
  415. startup we mark all spaces which have
  416. an associated table in the InnoDB
  417. data dictionary, so that
  418. we can print a warning about orphaned
  419. tablespaces */
  420. ibool print_error_if_does_not_exist);
  421. /* in: print detailed error
  422. information to the .err log if a
  423. matching tablespace is not found from
  424. memory */
  425. /**************************************************************************
  426. Tries to extend a data file so that it would accommodate the number of pages
  427. given. The tablespace must be cached in the memory cache. If the space is big
  428. enough already, does nothing. */
  429. ibool
  430. fil_extend_space_to_desired_size(
  431. /*=============================*/
  432. /* out: TRUE if success */
  433. ulint* actual_size, /* out: size of the space after extension;
  434. if we ran out of disk space this may be lower
  435. than the desired size */
  436. ulint space_id, /* in: space id */
  437. ulint size_after_extend);/* in: desired size in pages after the
  438. extension; if the current space size is bigger
  439. than this already, the function does nothing */
  440. #ifdef UNIV_HOTBACKUP
  441. /************************************************************************
  442. Extends all tablespaces to the size stored in the space header. During the
  443. ibbackup --apply-log phase we extended the spaces on-demand so that log records
  444. could be appllied, but that may have left spaces still too small compared to
  445. the size stored in the space header. */
  446. void
  447. fil_extend_tablespaces_to_stored_len(void);
  448. /*======================================*/
  449. #endif
  450. /***********************************************************************
  451. Tries to reserve free extents in a file space. */
  452. ibool
  453. fil_space_reserve_free_extents(
  454. /*===========================*/
  455. /* out: TRUE if succeed */
  456. ulint id, /* in: space id */
  457. ulint n_free_now, /* in: number of free extents now */
  458. ulint n_to_reserve); /* in: how many one wants to reserve */
  459. /***********************************************************************
  460. Releases free extents in a file space. */
  461. void
  462. fil_space_release_free_extents(
  463. /*===========================*/
  464. ulint id, /* in: space id */
  465. ulint n_reserved); /* in: how many one reserved */
  466. /***********************************************************************
  467. Gets the number of reserved extents. If the database is silent, this number
  468. should be zero. */
  469. ulint
  470. fil_space_get_n_reserved_extents(
  471. /*=============================*/
  472. ulint id); /* in: space id */
  473. /************************************************************************
  474. Reads or writes data. This operation is asynchronous (aio). */
  475. ulint
  476. fil_io(
  477. /*===*/
  478. /* out: DB_SUCCESS, or DB_TABLESPACE_DELETED
  479. if we are trying to do i/o on a tablespace
  480. which does not exist */
  481. ulint type, /* in: OS_FILE_READ or OS_FILE_WRITE,
  482. ORed to OS_FILE_LOG, if a log i/o
  483. and ORed to OS_AIO_SIMULATED_WAKE_LATER
  484. if simulated aio and we want to post a
  485. batch of i/os; NOTE that a simulated batch
  486. may introduce hidden chances of deadlocks,
  487. because i/os are not actually handled until
  488. all have been posted: use with great
  489. caution! */
  490. ibool sync, /* in: TRUE if synchronous aio is desired */
  491. ulint space_id, /* in: space id */
  492. ulint block_offset, /* in: offset in number of blocks */
  493. ulint byte_offset, /* in: remainder of offset in bytes; in
  494. aio this must be divisible by the OS block
  495. size */
  496. ulint len, /* in: how many bytes to read or write; this
  497. must not cross a file boundary; in aio this
  498. must be a block size multiple */
  499. void* buf, /* in/out: buffer where to store read data
  500. or from where to write; in aio this must be
  501. appropriately aligned */
  502. void* message); /* in: message for aio handler if non-sync
  503. aio used, else ignored */
  504. /************************************************************************
  505. Reads data from a space to a buffer. Remember that the possible incomplete
  506. blocks at the end of file are ignored: they are not taken into account when
  507. calculating the byte offset within a space. */
  508. ulint
  509. fil_read(
  510. /*=====*/
  511. /* out: DB_SUCCESS, or DB_TABLESPACE_DELETED
  512. if we are trying to do i/o on a tablespace
  513. which does not exist */
  514. ibool sync, /* in: TRUE if synchronous aio is desired */
  515. ulint space_id, /* in: space id */
  516. ulint block_offset, /* in: offset in number of blocks */
  517. ulint byte_offset, /* in: remainder of offset in bytes; in aio
  518. this must be divisible by the OS block size */
  519. ulint len, /* in: how many bytes to read; this must not
  520. cross a file boundary; in aio this must be a
  521. block size multiple */
  522. void* buf, /* in/out: buffer where to store data read;
  523. in aio this must be appropriately aligned */
  524. void* message); /* in: message for aio handler if non-sync
  525. aio used, else ignored */
  526. /************************************************************************
  527. Writes data to a space from a buffer. Remember that the possible incomplete
  528. blocks at the end of file are ignored: they are not taken into account when
  529. calculating the byte offset within a space. */
  530. ulint
  531. fil_write(
  532. /*======*/
  533. /* out: DB_SUCCESS, or DB_TABLESPACE_DELETED
  534. if we are trying to do i/o on a tablespace
  535. which does not exist */
  536. ibool sync, /* in: TRUE if synchronous aio is desired */
  537. ulint space_id, /* in: space id */
  538. ulint block_offset, /* in: offset in number of blocks */
  539. ulint byte_offset, /* in: remainder of offset in bytes; in aio
  540. this must be divisible by the OS block size */
  541. ulint len, /* in: how many bytes to write; this must
  542. not cross a file boundary; in aio this must
  543. be a block size multiple */
  544. void* buf, /* in: buffer from which to write; in aio
  545. this must be appropriately aligned */
  546. void* message); /* in: message for aio handler if non-sync
  547. aio used, else ignored */
  548. /**************************************************************************
  549. Waits for an aio operation to complete. This function is used to write the
  550. handler for completed requests. The aio array of pending requests is divided
  551. into segments (see os0file.c for more info). The thread specifies which
  552. segment it wants to wait for. */
  553. void
  554. fil_aio_wait(
  555. /*=========*/
  556. ulint segment); /* in: the number of the segment in the aio
  557. array to wait for */ 
  558. /**************************************************************************
  559. Flushes to disk possible writes cached by the OS. If the space does not exist
  560. or is being dropped, does not do anything. */
  561. void
  562. fil_flush(
  563. /*======*/
  564. ulint space_id); /* in: file space id (this can be a group of
  565. log files or a tablespace of the database) */
  566. /**************************************************************************
  567. Flushes to disk writes in file spaces of the given type possibly cached by
  568. the OS. */
  569. void
  570. fil_flush_file_spaces(
  571. /*==================*/
  572. ulint purpose); /* in: FIL_TABLESPACE, FIL_LOG */
  573. /**********************************************************************
  574. Checks the consistency of the tablespace cache. */
  575. ibool
  576. fil_validate(void);
  577. /*==============*/
  578. /* out: TRUE if ok */
  579. /************************************************************************
  580. Returns TRUE if file address is undefined. */
  581. ibool
  582. fil_addr_is_null(
  583. /*=============*/
  584. /* out: TRUE if undefined */
  585. fil_addr_t addr); /* in: address */
  586. /************************************************************************
  587. Accessor functions for a file page */
  588. ulint
  589. fil_page_get_prev(byte* page);
  590. ulint
  591. fil_page_get_next(byte* page);
  592. /*************************************************************************
  593. Sets the file page type. */
  594. void
  595. fil_page_set_type(
  596. /*==============*/
  597. byte*  page, /* in: file page */
  598. ulint type); /* in: type */
  599. /*************************************************************************
  600. Gets the file page type. */
  601. ulint
  602. fil_page_get_type(
  603. /*==============*/
  604. /* out: type; NOTE that if the type has not been
  605. written to page, the return value not defined */
  606. byte*  page); /* in: file page */
  607. typedef struct fil_space_struct fil_space_t;
  608. #endif