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

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. #include "db_config.h"
  8. #ifndef lint
  9. static const char revid[] = "$Id: bt_conv.c,v 11.6 2000/03/31 00:30:26 ubell Exp $";
  10. #endif /* not lint */
  11. #ifndef NO_SYSTEM_INCLUDES
  12. #include <sys/types.h>
  13. #endif
  14. #include "db_int.h"
  15. #include "db_page.h"
  16. #include "db_swap.h"
  17. #include "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_pgno_t, void *, DBT *));
  24.  */
  25. int
  26. __bam_pgin(dbenv, pg, pp, cookie)
  27. DB_ENV *dbenv;
  28. db_pgno_t pg;
  29. void *pp;
  30. DBT *cookie;
  31. {
  32. DB_PGINFO *pginfo;
  33. PAGE *h;
  34. pginfo = (DB_PGINFO *)cookie->data;
  35. if (!pginfo->needswap)
  36. return (0);
  37. h = pp;
  38. return (TYPE(h) == P_BTREEMETA ?  __bam_mswap(pp) :
  39.      __db_byteswap(dbenv, pg, pp, pginfo->db_pagesize, 1));
  40. }
  41. /*
  42.  * __bam_pgout --
  43.  * Convert host-specific page layout to the host-independent format
  44.  * stored on disk.
  45.  *
  46.  * PUBLIC: int __bam_pgout __P((DB_ENV *, db_pgno_t, void *, DBT *));
  47.  */
  48. int
  49. __bam_pgout(dbenv, pg, pp, cookie)
  50. DB_ENV *dbenv;
  51. db_pgno_t pg;
  52. void *pp;
  53. DBT *cookie;
  54. {
  55. DB_PGINFO *pginfo;
  56. PAGE *h;
  57. pginfo = (DB_PGINFO *)cookie->data;
  58. if (!pginfo->needswap)
  59. return (0);
  60. h = pp;
  61. return (TYPE(h) == P_BTREEMETA ?  __bam_mswap(pp) :
  62.     __db_byteswap(dbenv, pg, pp, pginfo->db_pagesize, 0));
  63. }
  64. /*
  65.  * __bam_mswap --
  66.  * Swap the bytes on the btree metadata page.
  67.  *
  68.  * PUBLIC: int __bam_mswap __P((PAGE *));
  69.  */
  70. int
  71. __bam_mswap(pg)
  72. PAGE *pg;
  73. {
  74. u_int8_t *p;
  75. __db_metaswap(pg);
  76. p = (u_int8_t *)pg + sizeof(DBMETA);
  77. SWAP32(p); /* maxkey */
  78. SWAP32(p); /* minkey */
  79. SWAP32(p); /* re_len */
  80. SWAP32(p); /* re_pad */
  81. SWAP32(p); /* root */
  82. return (0);
  83. }