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

MySQL数据库

开发平台:

Visual C++

  1. /*-
  2.  * See the file LICENSE for redistribution information.
  3.  *
  4.  * Copyright (c) 1996-2002
  5.  * Sleepycat Software.  All rights reserved.
  6.  */
  7. #include "db_config.h"
  8. #ifndef lint
  9. static const char revid[] = "$Id: bt_conv.c,v 11.13 2002/08/06 06:11:12 bostic Exp $";
  10. #endif /* not lint */
  11. #ifndef NO_SYSTEM_INCLUDES
  12. #include <sys/types.h>
  13. #endif
  14. #include "db_int.h"
  15. #include "dbinc/db_page.h"
  16. #include "dbinc/db_swap.h"
  17. #include "dbinc/btree.h"
  18. /*
  19.  * __bam_pgin --
  20.  * Convert host-specific page layout from the host-independent format
  21.  * stored on disk.
  22.  *
  23.  * PUBLIC: int __bam_pgin __P((DB_ENV *, DB *, db_pgno_t, void *, DBT *));
  24.  */
  25. int
  26. __bam_pgin(dbenv, dummydbp, pg, pp, cookie)
  27. DB_ENV *dbenv;
  28. DB *dummydbp;
  29. db_pgno_t pg;
  30. void *pp;
  31. DBT *cookie;
  32. {
  33. DB_PGINFO *pginfo;
  34. PAGE *h;
  35. pginfo = (DB_PGINFO *)cookie->data;
  36. if (!F_ISSET(pginfo, DB_AM_SWAP))
  37. return (0);
  38. h = pp;
  39. return (TYPE(h) == P_BTREEMETA ?  __bam_mswap(pp) :
  40.     __db_byteswap(dbenv, dummydbp, pg, pp, pginfo->db_pagesize, 1));
  41. }
  42. /*
  43.  * __bam_pgout --
  44.  * Convert host-specific page layout to the host-independent format
  45.  * stored on disk.
  46.  *
  47.  * PUBLIC: int __bam_pgout __P((DB_ENV *, DB *, db_pgno_t, void *, DBT *));
  48.  */
  49. int
  50. __bam_pgout(dbenv, dummydbp, pg, pp, cookie)
  51. DB_ENV *dbenv;
  52. DB *dummydbp;
  53. db_pgno_t pg;
  54. void *pp;
  55. DBT *cookie;
  56. {
  57. DB_PGINFO *pginfo;
  58. PAGE *h;
  59. pginfo = (DB_PGINFO *)cookie->data;
  60. if (!F_ISSET(pginfo, DB_AM_SWAP))
  61. return (0);
  62. h = pp;
  63. return (TYPE(h) == P_BTREEMETA ?  __bam_mswap(pp) :
  64.     __db_byteswap(dbenv, dummydbp, pg, pp, pginfo->db_pagesize, 0));
  65. }
  66. /*
  67.  * __bam_mswap --
  68.  * Swap the bytes on the btree metadata page.
  69.  *
  70.  * PUBLIC: int __bam_mswap __P((PAGE *));
  71.  */
  72. int
  73. __bam_mswap(pg)
  74. PAGE *pg;
  75. {
  76. u_int8_t *p;
  77. __db_metaswap(pg);
  78. p = (u_int8_t *)pg + sizeof(DBMETA);
  79. SWAP32(p); /* maxkey */
  80. SWAP32(p); /* minkey */
  81. SWAP32(p); /* re_len */
  82. SWAP32(p); /* re_pad */
  83. SWAP32(p); /* root */
  84. p += 92 * sizeof(u_int32_t); /* unused */
  85. SWAP32(p); /* crypto_magic */
  86. return (0);
  87. }