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

MySQL数据库

开发平台:

Visual C++

  1. /*-
  2.  * See the file LICENSE for redistribution information.
  3.  *
  4.  * Copyright (c) 1996, 1997, 1998, 1999, 2000
  5.  * Sleepycat Software.  All rights reserved.
  6.  *
  7.  * $Id: db_page.h,v 11.28 2000/12/06 19:55:45 ubell Exp $
  8.  */
  9. #ifndef _DB_PAGE_H_
  10. #define _DB_PAGE_H_
  11. #if defined(__cplusplus)
  12. extern "C" {
  13. #endif
  14. /*
  15.  * DB page formats.
  16.  *
  17.  * !!!
  18.  * This implementation requires that values within the following structures
  19.  * NOT be padded -- note, ANSI C permits random padding within structures.
  20.  * If your compiler pads randomly you can just forget ever making DB run on
  21.  * your system.  In addition, no data type can require larger alignment than
  22.  * its own size, e.g., a 4-byte data element may not require 8-byte alignment.
  23.  *
  24.  * Note that key/data lengths are often stored in db_indx_t's -- this is
  25.  * not accidental, nor does it limit the key/data size.  If the key/data
  26.  * item fits on a page, it's guaranteed to be small enough to fit into a
  27.  * db_indx_t, and storing it in one saves space.
  28.  */
  29. #define PGNO_INVALID 0 /* Invalid page number in any database. */
  30. #define PGNO_BASE_MD 0 /* Base database: metadata page number. */
  31. /* Page types. */
  32. #define P_INVALID 0 /* Invalid page type. */
  33. #define __P_DUPLICATE 1 /* Duplicate. DEPRECATED in 3.1 */
  34. #define P_HASH 2 /* Hash. */
  35. #define P_IBTREE 3 /* Btree internal. */
  36. #define P_IRECNO 4 /* Recno internal. */
  37. #define P_LBTREE 5 /* Btree leaf. */
  38. #define P_LRECNO 6 /* Recno leaf. */
  39. #define P_OVERFLOW 7 /* Overflow. */
  40. #define P_HASHMETA 8 /* Hash metadata page. */
  41. #define P_BTREEMETA 9 /* Btree metadata page. */
  42. #define P_QAMMETA 10 /* Queue metadata page. */
  43. #define P_QAMDATA 11 /* Queue data page. */
  44. #define P_LDUP 12 /* Off-page duplicate leaf. */
  45. #define P_PAGETYPE_MAX 13
  46. /*
  47.  * When we create pages in mpool, we ask mpool to clear some number of bytes
  48.  * in the header.  This number must be at least as big as the regular page
  49.  * headers and cover enough of the btree and hash meta-data pages to obliterate
  50.  * the page type.
  51.  */
  52. #define DB_PAGE_DB_LEN 32
  53. #define DB_PAGE_QUEUE_LEN 0
  54. /************************************************************************
  55.  GENERIC METADATA PAGE HEADER
  56.  *
  57.  * !!!
  58.  * The magic and version numbers have to be in the same place in all versions
  59.  * of the metadata page as the application may not have upgraded the database.
  60.  ************************************************************************/
  61. typedef struct _dbmeta31 {
  62. DB_LSN   lsn; /* 00-07: LSN. */
  63. db_pgno_t pgno; /* 08-11: Current page number. */
  64. u_int32_t magic; /* 12-15: Magic number. */
  65. u_int32_t version; /* 16-19: Version. */
  66. u_int32_t pagesize; /* 20-23: Pagesize. */
  67. u_int8_t  unused1[1]; /*    24: Unused. */
  68. u_int8_t  type; /*    25: Page type. */
  69. u_int8_t  unused2[2]; /* 26-27: Unused. */
  70. u_int32_t free; /* 28-31: Free list page number. */
  71. DB_LSN   unused3; /* 32-39: former Lsn for allocation */
  72. u_int32_t key_count; /* 40-43: Cached key count. */
  73. u_int32_t record_count; /* 44-47: Cached record count. */
  74. u_int32_t flags; /* 48-51: Flags: unique to each AM. */
  75. /* 52-71: Unique file ID. */
  76. u_int8_t  uid[DB_FILE_ID_LEN];
  77. } DBMETA31, DBMETA;
  78. /************************************************************************
  79.  BTREE METADATA PAGE LAYOUT
  80.  ************************************************************************/
  81. typedef struct _btmeta31 {
  82. #define BTM_DUP 0x001 /*   Duplicates. */
  83. #define BTM_RECNO 0x002 /*   Recno tree. */
  84. #define BTM_RECNUM 0x004 /*   Btree: maintain record count. */
  85. #define BTM_FIXEDLEN 0x008 /*   Recno: fixed length records. */
  86. #define BTM_RENUMBER 0x010 /*   Recno: renumber on insert/delete. */
  87. #define BTM_SUBDB 0x020 /*   Subdatabases. */
  88. #define BTM_DUPSORT 0x040 /*   Duplicates are sorted. */
  89. #define BTM_MASK 0x07f
  90. DBMETA dbmeta; /* 00-71: Generic meta-data header. */
  91. u_int32_t maxkey; /* 72-75: Btree: Maxkey. */
  92. u_int32_t minkey; /* 76-79: Btree: Minkey. */
  93. u_int32_t re_len; /* 80-83: Recno: fixed-length record length. */
  94. u_int32_t re_pad; /* 84-87: Recno: fixed-length record pad. */
  95. u_int32_t root; /* 88-92: Root page. */
  96. /*
  97.  * Minimum page size is 128.
  98.  */
  99. } BTMETA31, BTMETA;
  100. /************************************************************************
  101.  HASH METADATA PAGE LAYOUT
  102.  ************************************************************************/
  103. typedef struct _hashmeta31 {
  104. #define DB_HASH_DUP 0x01 /*   Duplicates. */
  105. #define DB_HASH_SUBDB 0x02 /*   Subdatabases. */
  106. #define DB_HASH_DUPSORT 0x04 /*   Duplicates are sorted. */
  107. DBMETA dbmeta; /* 00-71: Generic meta-data page header. */
  108. u_int32_t max_bucket; /* 72-75: ID of Maximum bucket in use */
  109. u_int32_t high_mask; /* 76-79: Modulo mask into table */
  110. u_int32_t low_mask; /* 80-83: Modulo mask into table lower half */
  111. u_int32_t ffactor; /* 84-87: Fill factor */
  112. u_int32_t nelem; /* 88-91: Number of keys in hash table */
  113. u_int32_t h_charkey; /* 92-95: Value of hash(CHARKEY) */
  114. #define NCACHED 32 /* number of spare points */
  115. /* 96-223: Spare pages for overflow */
  116. u_int32_t spares[NCACHED];
  117. /*
  118.  * Minimum page size is 256.
  119.  */
  120. } HMETA31, HMETA;
  121. /************************************************************************
  122.  QUEUE METADATA PAGE LAYOUT
  123.  ************************************************************************/
  124. /*
  125.  * QAM Meta data page structure
  126.  *
  127.  */
  128. typedef struct _qmeta32 {
  129. DBMETA    dbmeta; /* 00-71: Generic meta-data header. */
  130. u_int32_t first_recno; /* 72-75: First not deleted record. */
  131. u_int32_t cur_recno; /* 76-79: Last recno allocated. */
  132. u_int32_t re_len; /* 80-83: Fixed-length record length. */
  133. u_int32_t re_pad; /* 84-87: Fixed-length record pad. */
  134. u_int32_t rec_page; /* 88-91: Records Per Page. */
  135. u_int32_t page_ext; /* 92-95: Pages per extent */
  136. /*
  137.  * Minimum page size is 128.
  138.  */
  139. } QMETA32, QMETA;
  140. /*
  141.  * DBMETASIZE is a constant used by __db_file_setup and DB->verify
  142.  * as a buffer which is guaranteed to be larger than any possible
  143.  * metadata page size and smaller than any disk sector.
  144.  */
  145. #define DBMETASIZE 256
  146. /************************************************************************
  147.  BTREE/HASH MAIN PAGE LAYOUT
  148.  ************************************************************************/
  149. /*
  150.  * +-----------------------------------+
  151.  * |    lsn    |   pgno    | prev pgno |
  152.  * +-----------------------------------+
  153.  * | next pgno |  entries  | hf offset |
  154.  * +-----------------------------------+
  155.  * |   level   |   type    |   index   |
  156.  * +-----------------------------------+
  157.  * |   index   | free -->              |
  158.  * +-----------+-----------------------+
  159.  * |  F R E E A R E A            |
  160.  * +-----------------------------------+
  161.  * |              <-- free |   item    |
  162.  * +-----------------------------------+
  163.  * |   item    |   item    |   item    |
  164.  * +-----------------------------------+
  165.  *
  166.  * sizeof(PAGE) == 26 bytes, and the following indices are guaranteed to be
  167.  * two-byte aligned.
  168.  *
  169.  * For hash and btree leaf pages, index items are paired, e.g., inp[0] is the
  170.  * key for inp[1]'s data.  All other types of pages only contain single items.
  171.  */
  172. typedef struct _db_page {
  173. DB_LSN   lsn; /* 00-07: Log sequence number. */
  174. db_pgno_t pgno; /* 08-11: Current page number. */
  175. db_pgno_t prev_pgno; /* 12-15: Previous page number. */
  176. db_pgno_t next_pgno; /* 16-19: Next page number. */
  177. db_indx_t entries; /* 20-21: Number of items on the page. */
  178. db_indx_t hf_offset; /* 22-23: High free byte page offset. */
  179. /*
  180.  * The btree levels are numbered from the leaf to the root, starting
  181.  * with 1, so the leaf is level 1, its parent is level 2, and so on.
  182.  * We maintain this level on all btree pages, but the only place that
  183.  * we actually need it is on the root page.  It would not be difficult
  184.  * to hide the byte on the root page once it becomes an internal page,
  185.  * so we could get this byte back if we needed it for something else.
  186.  */
  187. #define LEAFLEVEL   1
  188. #define MAXBTREELEVEL 255
  189. u_int8_t  level; /*    24: Btree tree level. */
  190. u_int8_t  type; /*    25: Page type. */
  191. db_indx_t inp[1]; /* Variable length index of items. */
  192. } PAGE;
  193. /* PAGE element macros. */
  194. #define LSN(p) (((PAGE *)p)->lsn)
  195. #define PGNO(p) (((PAGE *)p)->pgno)
  196. #define PREV_PGNO(p) (((PAGE *)p)->prev_pgno)
  197. #define NEXT_PGNO(p) (((PAGE *)p)->next_pgno)
  198. #define NUM_ENT(p) (((PAGE *)p)->entries)
  199. #define HOFFSET(p) (((PAGE *)p)->hf_offset)
  200. #define LEVEL(p) (((PAGE *)p)->level)
  201. #define TYPE(p) (((PAGE *)p)->type)
  202. /************************************************************************
  203.  QUEUE MAIN PAGE LAYOUT
  204.  ************************************************************************/
  205. typedef struct _qpage {
  206. DB_LSN   lsn; /* 00-07: Log sequence number. */
  207. db_pgno_t pgno; /* 08-11: Current page number. */
  208. u_int32_t unused0[3]; /* 12-23: Unused. */
  209. u_int8_t  unused1[1]; /*    24: Unused. */
  210. u_int8_t  type; /*    25: Page type. */
  211. u_int8_t  unused2[2]; /* 26-27: Unused. */
  212. } QPAGE;
  213. /*
  214.  * !!!
  215.  * The next_pgno and prev_pgno fields are not maintained for btree and recno
  216.  * internal pages.  Doing so only provides a minor performance improvement,
  217.  * it's hard to do when deleting internal pages, and it increases the chance
  218.  * of deadlock during deletes and splits because we have to re-link pages at
  219.  * more than the leaf level.
  220.  *
  221.  * !!!
  222.  * The btree/recno access method needs db_recno_t bytes of space on the root
  223.  * page to specify how many records are stored in the tree.  (The alternative
  224.  * is to store the number of records in the meta-data page, which will create
  225.  * a second hot spot in trees being actively modified, or recalculate it from
  226.  * the BINTERNAL fields on each access.)  Overload the PREV_PGNO field.
  227.  */
  228. #define RE_NREC(p)
  229. ((TYPE(p) == P_IBTREE || TYPE(p) == P_IRECNO) ?
  230. PREV_PGNO(p) : (TYPE(p) == P_LBTREE ? NUM_ENT(p) / 2 : NUM_ENT(p)))
  231. #define RE_NREC_ADJ(p, adj)
  232. PREV_PGNO(p) += adj;
  233. #define RE_NREC_SET(p, num)
  234. PREV_PGNO(p) = num;
  235. /*
  236.  * Initialize a page.
  237.  *
  238.  * !!!
  239.  * Don't modify the page's LSN, code depends on it being unchanged after a
  240.  * P_INIT call.
  241.  */
  242. #define P_INIT(pg, pg_size, n, pg_prev, pg_next, btl, pg_type) do {
  243. PGNO(pg) = n;
  244. PREV_PGNO(pg) = pg_prev;
  245. NEXT_PGNO(pg) = pg_next;
  246. NUM_ENT(pg) = 0;
  247. HOFFSET(pg) = pg_size;
  248. LEVEL(pg) = btl;
  249. TYPE(pg) = pg_type;
  250. } while (0)
  251. /* Page header length (offset to first index). */
  252. #define P_OVERHEAD (SSZA(PAGE, inp))
  253. /* First free byte. */
  254. #define LOFFSET(pg) (P_OVERHEAD + NUM_ENT(pg) * sizeof(db_indx_t))
  255. /* Free space on a regular page. */
  256. #define P_FREESPACE(pg) (HOFFSET(pg) - LOFFSET(pg))
  257. /* Get a pointer to the bytes at a specific index. */
  258. #define P_ENTRY(pg, indx) ((u_int8_t *)pg + ((PAGE *)pg)->inp[indx])
  259. /************************************************************************
  260.  OVERFLOW PAGE LAYOUT
  261.  ************************************************************************/
  262. /*
  263.  * Overflow items are referenced by HOFFPAGE and BOVERFLOW structures, which
  264.  * store a page number (the first page of the overflow item) and a length
  265.  * (the total length of the overflow item).  The overflow item consists of
  266.  * some number of overflow pages, linked by the next_pgno field of the page.
  267.  * A next_pgno field of PGNO_INVALID flags the end of the overflow item.
  268.  *
  269.  * Overflow page overloads:
  270.  * The amount of overflow data stored on each page is stored in the
  271.  * hf_offset field.
  272.  *
  273.  * The implementation reference counts overflow items as it's possible
  274.  * for them to be promoted onto btree internal pages.  The reference
  275.  * count is stored in the entries field.
  276.  */
  277. #define OV_LEN(p) (((PAGE *)p)->hf_offset)
  278. #define OV_REF(p) (((PAGE *)p)->entries)
  279. /* Maximum number of bytes that you can put on an overflow page. */
  280. #define P_MAXSPACE(psize) ((psize) - P_OVERHEAD)
  281. /* Free space on an overflow page. */
  282. #define P_OVFLSPACE(psize, pg) (P_MAXSPACE(psize) - HOFFSET(pg))
  283. /************************************************************************
  284.  HASH PAGE LAYOUT
  285.  ************************************************************************/
  286. /* Each index references a group of bytes on the page. */
  287. #define H_KEYDATA 1 /* Key/data item. */
  288. #define H_DUPLICATE 2 /* Duplicate key/data item. */
  289. #define H_OFFPAGE 3 /* Overflow key/data item. */
  290. #define H_OFFDUP 4 /* Overflow page of duplicates. */
  291. /*
  292.  * !!!
  293.  * Items on hash pages are (potentially) unaligned, so we can never cast the
  294.  * (page + offset) pointer to an HKEYDATA, HOFFPAGE or HOFFDUP structure, as
  295.  * we do with B+tree on-page structures.  Because we frequently want the type
  296.  * field, it requires no alignment, and it's in the same location in all three
  297.  * structures, there's a pair of macros.
  298.  */
  299. #define HPAGE_PTYPE(p) (*(u_int8_t *)p)
  300. #define HPAGE_TYPE(pg, indx) (*P_ENTRY(pg, indx))
  301. /*
  302.  * The first and second types are H_KEYDATA and H_DUPLICATE, represented
  303.  * by the HKEYDATA structure:
  304.  *
  305.  * +-----------------------------------+
  306.  * |    type   | key/data ...          |
  307.  * +-----------------------------------+
  308.  *
  309.  * For duplicates, the data field encodes duplicate elements in the data
  310.  * field:
  311.  *
  312.  * +---------------------------------------------------------------+
  313.  * |    type   | len1 | element1 | len1 | len2 | element2 | len2   |
  314.  * +---------------------------------------------------------------+
  315.  *
  316.  * Thus, by keeping track of the offset in the element, we can do both
  317.  * backward and forward traversal.
  318.  */
  319. typedef struct _hkeydata {
  320. u_int8_t  type; /*    00: Page type. */
  321. u_int8_t  data[1]; /* Variable length key/data item. */
  322. } HKEYDATA;
  323. #define HKEYDATA_DATA(p) (((u_int8_t *)p) + SSZA(HKEYDATA, data))
  324. /*
  325.  * The length of any HKEYDATA item. Note that indx is an element index,
  326.  * not a PAIR index.
  327.  */
  328. #define LEN_HITEM(pg, pgsize, indx)
  329. (((indx) == 0 ? pgsize :
  330. ((PAGE *)(pg))->inp[indx - 1]) - ((PAGE *)(pg))->inp[indx])
  331. #define LEN_HKEYDATA(pg, psize, indx)
  332. (LEN_HITEM(pg, psize, indx) - HKEYDATA_SIZE(0))
  333. /*
  334.  * Page space required to add a new HKEYDATA item to the page, with and
  335.  * without the index value.
  336.  */
  337. #define HKEYDATA_SIZE(len)
  338. ((len) + SSZA(HKEYDATA, data))
  339. #define HKEYDATA_PSIZE(len)
  340. (HKEYDATA_SIZE(len) + sizeof(db_indx_t))
  341. /* Put a HKEYDATA item at the location referenced by a page entry. */
  342. #define PUT_HKEYDATA(pe, kd, len, type) {
  343. ((HKEYDATA *)pe)->type = type;
  344. memcpy((u_int8_t *)pe + sizeof(u_int8_t), kd, len);
  345. }
  346. /*
  347.  * Macros the describe the page layout in terms of key-data pairs.
  348.  */
  349. #define H_NUMPAIRS(pg) (NUM_ENT(pg) / 2)
  350. #define H_KEYINDEX(indx) (indx)
  351. #define H_DATAINDEX(indx) ((indx) + 1)
  352. #define H_PAIRKEY(pg, indx) P_ENTRY(pg, H_KEYINDEX(indx))
  353. #define H_PAIRDATA(pg, indx) P_ENTRY(pg, H_DATAINDEX(indx))
  354. #define H_PAIRSIZE(pg, psize, indx)
  355. (LEN_HITEM(pg, psize, H_KEYINDEX(indx)) +
  356. LEN_HITEM(pg, psize, H_DATAINDEX(indx)))
  357. #define LEN_HDATA(p, psize, indx) LEN_HKEYDATA(p, psize, H_DATAINDEX(indx))
  358. #define LEN_HKEY(p, psize, indx) LEN_HKEYDATA(p, psize, H_KEYINDEX(indx))
  359. /*
  360.  * The third type is the H_OFFPAGE, represented by the HOFFPAGE structure:
  361.  */
  362. typedef struct _hoffpage {
  363. u_int8_t  type; /*    00: Page type and delete flag. */
  364. u_int8_t  unused[3]; /* 01-03: Padding, unused. */
  365. db_pgno_t pgno; /* 04-07: Offpage page number. */
  366. u_int32_t tlen; /* 08-11: Total length of item. */
  367. } HOFFPAGE;
  368. #define HOFFPAGE_PGNO(p) (((u_int8_t *)p) + SSZ(HOFFPAGE, pgno))
  369. #define HOFFPAGE_TLEN(p) (((u_int8_t *)p) + SSZ(HOFFPAGE, tlen))
  370. /*
  371.  * Page space required to add a new HOFFPAGE item to the page, with and
  372.  * without the index value.
  373.  */
  374. #define HOFFPAGE_SIZE (sizeof(HOFFPAGE))
  375. #define HOFFPAGE_PSIZE (HOFFPAGE_SIZE + sizeof(db_indx_t))
  376. /*
  377.  * The fourth type is H_OFFDUP represented by the HOFFDUP structure:
  378.  */
  379. typedef struct _hoffdup {
  380. u_int8_t  type; /*    00: Page type and delete flag. */
  381. u_int8_t  unused[3]; /* 01-03: Padding, unused. */
  382. db_pgno_t pgno; /* 04-07: Offpage page number. */
  383. } HOFFDUP;
  384. #define HOFFDUP_PGNO(p) (((u_int8_t *)p) + SSZ(HOFFDUP, pgno))
  385. /*
  386.  * Page space required to add a new HOFFDUP item to the page, with and
  387.  * without the index value.
  388.  */
  389. #define HOFFDUP_SIZE (sizeof(HOFFDUP))
  390. /************************************************************************
  391.  BTREE PAGE LAYOUT
  392.  ************************************************************************/
  393. /* Each index references a group of bytes on the page. */
  394. #define B_KEYDATA 1 /* Key/data item. */
  395. #define B_DUPLICATE 2 /* Duplicate key/data item. */
  396. #define B_OVERFLOW 3 /* Overflow key/data item. */
  397. /*
  398.  * We have to store a deleted entry flag in the page.   The reason is complex,
  399.  * but the simple version is that we can't delete on-page items referenced by
  400.  * a cursor -- the return order of subsequent insertions might be wrong.  The
  401.  * delete flag is an overload of the top bit of the type byte.
  402.  */
  403. #define B_DELETE (0x80)
  404. #define B_DCLR(t) (t) &= ~B_DELETE
  405. #define B_DSET(t) (t) |= B_DELETE
  406. #define B_DISSET(t) ((t) & B_DELETE)
  407. #define B_TYPE(t) ((t) & ~B_DELETE)
  408. #define B_TSET(t, type, deleted) {
  409. (t) = (type);
  410. if (deleted)
  411. B_DSET(t);
  412. }
  413. /*
  414.  * The first type is B_KEYDATA, represented by the BKEYDATA structure:
  415.  */
  416. typedef struct _bkeydata {
  417. db_indx_t len; /* 00-01: Key/data item length. */
  418. u_int8_t  type; /*    02: Page type AND DELETE FLAG. */
  419. u_int8_t  data[1]; /* Variable length key/data item. */
  420. } BKEYDATA;
  421. /* Get a BKEYDATA item for a specific index. */
  422. #define GET_BKEYDATA(pg, indx)
  423. ((BKEYDATA *)P_ENTRY(pg, indx))
  424. /*
  425.  * Page space required to add a new BKEYDATA item to the page, with and
  426.  * without the index value.
  427.  */
  428. #define BKEYDATA_SIZE(len)
  429. ALIGN((len) + SSZA(BKEYDATA, data), sizeof(u_int32_t))
  430. #define BKEYDATA_PSIZE(len)
  431. (BKEYDATA_SIZE(len) + sizeof(db_indx_t))
  432. /*
  433.  * The second and third types are B_DUPLICATE and B_OVERFLOW, represented
  434.  * by the BOVERFLOW structure.
  435.  */
  436. typedef struct _boverflow {
  437. db_indx_t unused1; /* 00-01: Padding, unused. */
  438. u_int8_t  type; /*    02: Page type AND DELETE FLAG. */
  439. u_int8_t  unused2; /*    03: Padding, unused. */
  440. db_pgno_t pgno; /* 04-07: Next page number. */
  441. u_int32_t tlen; /* 08-11: Total length of item. */
  442. } BOVERFLOW;
  443. /* Get a BOVERFLOW item for a specific index. */
  444. #define GET_BOVERFLOW(pg, indx)
  445. ((BOVERFLOW *)P_ENTRY(pg, indx))
  446. /*
  447.  * Page space required to add a new BOVERFLOW item to the page, with and
  448.  * without the index value.
  449.  */
  450. #define BOVERFLOW_SIZE
  451. ALIGN(sizeof(BOVERFLOW), sizeof(u_int32_t))
  452. #define BOVERFLOW_PSIZE
  453. (BOVERFLOW_SIZE + sizeof(db_indx_t))
  454. /*
  455.  * Btree leaf and hash page layouts group indices in sets of two, one for the
  456.  * key and one for the data.  Everything else does it in sets of one to save
  457.  * space.  Use the following macros so that it's real obvious what's going on.
  458.  */
  459. #define O_INDX 1
  460. #define P_INDX 2
  461. /************************************************************************
  462.  BTREE INTERNAL PAGE LAYOUT
  463.  ************************************************************************/
  464. /*
  465.  * Btree internal entry.
  466.  */
  467. typedef struct _binternal {
  468. db_indx_t  len; /* 00-01: Key/data item length. */
  469. u_int8_t   type; /*    02: Page type AND DELETE FLAG. */
  470. u_int8_t   unused; /*    03: Padding, unused. */
  471. db_pgno_t  pgno; /* 04-07: Page number of referenced page. */
  472. db_recno_t nrecs; /* 08-11: Subtree record count. */
  473. u_int8_t   data[1]; /* Variable length key item. */
  474. } BINTERNAL;
  475. /* Get a BINTERNAL item for a specific index. */
  476. #define GET_BINTERNAL(pg, indx)
  477. ((BINTERNAL *)P_ENTRY(pg, indx))
  478. /*
  479.  * Page space required to add a new BINTERNAL item to the page, with and
  480.  * without the index value.
  481.  */
  482. #define BINTERNAL_SIZE(len)
  483. ALIGN((len) + SSZA(BINTERNAL, data), sizeof(u_int32_t))
  484. #define BINTERNAL_PSIZE(len)
  485. (BINTERNAL_SIZE(len) + sizeof(db_indx_t))
  486. /************************************************************************
  487.  RECNO INTERNAL PAGE LAYOUT
  488.  ************************************************************************/
  489. /*
  490.  * The recno internal entry.
  491.  */
  492. typedef struct _rinternal {
  493. db_pgno_t  pgno; /* 00-03: Page number of referenced page. */
  494. db_recno_t nrecs; /* 04-07: Subtree record count. */
  495. } RINTERNAL;
  496. /* Get a RINTERNAL item for a specific index. */
  497. #define GET_RINTERNAL(pg, indx)
  498. ((RINTERNAL *)P_ENTRY(pg, indx))
  499. /*
  500.  * Page space required to add a new RINTERNAL item to the page, with and
  501.  * without the index value.
  502.  */
  503. #define RINTERNAL_SIZE
  504. ALIGN(sizeof(RINTERNAL), sizeof(u_int32_t))
  505. #define RINTERNAL_PSIZE
  506. (RINTERNAL_SIZE + sizeof(db_indx_t))
  507. #if defined(__cplusplus)
  508. }
  509. #endif
  510. #endif /* _DB_PAGE_H_ */