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

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_upgrade.c,v 11.25 2002/08/06 06:11:13 bostic Exp $";
  10. #endif /* not lint */
  11. #ifndef NO_SYSTEM_INCLUDES
  12. #include <sys/types.h>
  13. #include <limits.h>
  14. #include <string.h>
  15. #endif
  16. #include "db_int.h"
  17. #include "dbinc/db_page.h"
  18. #include "dbinc/db_am.h"
  19. #include "dbinc/db_upgrade.h"
  20. /*
  21.  * __bam_30_btreemeta --
  22.  * Upgrade the metadata pages from version 6 to version 7.
  23.  *
  24.  * PUBLIC: int __bam_30_btreemeta __P((DB *, char *, u_int8_t *));
  25.  */
  26. int
  27. __bam_30_btreemeta(dbp, real_name, buf)
  28. DB *dbp;
  29. char *real_name;
  30. u_int8_t *buf;
  31. {
  32. BTMETA30 *newmeta;
  33. BTMETA2X *oldmeta;
  34. DB_ENV *dbenv;
  35. int ret;
  36. dbenv = dbp->dbenv;
  37. newmeta = (BTMETA30 *)buf;
  38. oldmeta = (BTMETA2X *)buf;
  39. /*
  40.  * Move things from the end up, so we do not overwrite things.
  41.  * We are going to create a new uid, so we can move the stuff
  42.  * at the end of the structure first, overwriting the uid.
  43.  */
  44. newmeta->re_pad = oldmeta->re_pad;
  45. newmeta->re_len = oldmeta->re_len;
  46. newmeta->minkey = oldmeta->minkey;
  47. newmeta->maxkey = oldmeta->maxkey;
  48. newmeta->dbmeta.free = oldmeta->free;
  49. newmeta->dbmeta.flags = oldmeta->flags;
  50. newmeta->dbmeta.type  = P_BTREEMETA;
  51. newmeta->dbmeta.version = 7;
  52. /* Replace the unique ID. */
  53. if ((ret = __os_fileid(dbenv, real_name, 1, buf + 36)) != 0)
  54. return (ret);
  55. newmeta->root = 1;
  56. return (0);
  57. }
  58. /*
  59.  * __bam_31_btreemeta --
  60.  * Upgrade the database from version 7 to version 8.
  61.  *
  62.  * PUBLIC: int __bam_31_btreemeta
  63.  * PUBLIC:      __P((DB *, char *, u_int32_t, DB_FH *, PAGE *, int *));
  64.  */
  65. int
  66. __bam_31_btreemeta(dbp, real_name, flags, fhp, h, dirtyp)
  67. DB *dbp;
  68. char *real_name;
  69. u_int32_t flags;
  70. DB_FH *fhp;
  71. PAGE *h;
  72. int *dirtyp;
  73. {
  74. BTMETA31 *newmeta;
  75. BTMETA30 *oldmeta;
  76. COMPQUIET(dbp, NULL);
  77. COMPQUIET(real_name, NULL);
  78. COMPQUIET(fhp, NULL);
  79. newmeta = (BTMETA31 *)h;
  80. oldmeta = (BTMETA30 *)h;
  81. /*
  82.  * Copy the effected fields down the page.
  83.  * The fields may overlap each other so we
  84.  * start at the bottom and use memmove.
  85.  */
  86. newmeta->root = oldmeta->root;
  87. newmeta->re_pad = oldmeta->re_pad;
  88. newmeta->re_len = oldmeta->re_len;
  89. newmeta->minkey = oldmeta->minkey;
  90. newmeta->maxkey = oldmeta->maxkey;
  91. memmove(newmeta->dbmeta.uid,
  92.     oldmeta->dbmeta.uid, sizeof(oldmeta->dbmeta.uid));
  93. newmeta->dbmeta.flags = oldmeta->dbmeta.flags;
  94. newmeta->dbmeta.record_count = 0;
  95. newmeta->dbmeta.key_count = 0;
  96. ZERO_LSN(newmeta->dbmeta.unused3);
  97. /* Set the version number. */
  98. newmeta->dbmeta.version = 8;
  99. /* Upgrade the flags. */
  100. if (LF_ISSET(DB_DUPSORT))
  101. F_SET(&newmeta->dbmeta, BTM_DUPSORT);
  102. *dirtyp = 1;
  103. return (0);
  104. }
  105. /*
  106.  * __bam_31_lbtree --
  107.  * Upgrade the database btree leaf pages.
  108.  *
  109.  * PUBLIC: int __bam_31_lbtree
  110.  * PUBLIC:      __P((DB *, char *, u_int32_t, DB_FH *, PAGE *, int *));
  111.  */
  112. int
  113. __bam_31_lbtree(dbp, real_name, flags, fhp, h, dirtyp)
  114. DB *dbp;
  115. char *real_name;
  116. u_int32_t flags;
  117. DB_FH *fhp;
  118. PAGE *h;
  119. int *dirtyp;
  120. {
  121. BKEYDATA *bk;
  122. db_pgno_t pgno;
  123. db_indx_t indx;
  124. int ret;
  125. ret = 0;
  126. for (indx = O_INDX; indx < NUM_ENT(h); indx += P_INDX) {
  127. bk = GET_BKEYDATA(dbp, h, indx);
  128. if (B_TYPE(bk->type) == B_DUPLICATE) {
  129. pgno = GET_BOVERFLOW(dbp, h, indx)->pgno;
  130. if ((ret = __db_31_offdup(dbp, real_name, fhp,
  131.     LF_ISSET(DB_DUPSORT) ? 1 : 0, &pgno)) != 0)
  132. break;
  133. if (pgno != GET_BOVERFLOW(dbp, h, indx)->pgno) {
  134. *dirtyp = 1;
  135. GET_BOVERFLOW(dbp, h, indx)->pgno = pgno;
  136. }
  137. }
  138. }
  139. return (ret);
  140. }