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

MySQL数据库

开发平台:

Visual C++

  1. /*-
  2.  * See the file LICENSE for redistribution information.
  3.  *
  4.  * Copyright (c) 1999, 2000
  5.  * Sleepycat Software.  All rights reserved.
  6.  */
  7. #include "db_config.h"
  8. #ifndef lint
  9. static const char revid[] = "$Id: hash_meta.c,v 11.10 2000/12/21 21:54:35 margo 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 "hash.h"
  17. #include "db_shash.h"
  18. #include "lock.h"
  19. #include "txn.h"
  20. /*
  21.  * Acquire the meta-data page.
  22.  *
  23.  * PUBLIC: int __ham_get_meta __P((DBC *));
  24.  */
  25. int
  26. __ham_get_meta(dbc)
  27. DBC *dbc;
  28. {
  29. HASH_CURSOR *hcp;
  30. HASH *hashp;
  31. DB *dbp;
  32. int ret;
  33. hcp = (HASH_CURSOR *)dbc->internal;
  34. dbp = dbc->dbp;
  35. hashp = dbp->h_internal;
  36. if (dbp->dbenv != NULL &&
  37.     STD_LOCKING(dbc) && !F_ISSET(dbc, DBC_RECOVER)) {
  38. dbc->lock.pgno = hashp->meta_pgno;
  39. if ((ret = lock_get(dbp->dbenv, dbc->locker,
  40.     DB_NONBLOCK(dbc) ? DB_LOCK_NOWAIT : 0,
  41.     &dbc->lock_dbt, DB_LOCK_READ, &hcp->hlock)) != 0)
  42. return (ret);
  43. }
  44. if ((ret = memp_fget(dbc->dbp->mpf,
  45.     &hashp->meta_pgno, DB_MPOOL_CREATE, &(hcp->hdr))) != 0 &&
  46.     hcp->hlock.off != LOCK_INVALID) {
  47. (void)lock_put(dbc->dbp->dbenv, &hcp->hlock);
  48. hcp->hlock.off = LOCK_INVALID;
  49. }
  50. return (ret);
  51. }
  52. /*
  53.  * Release the meta-data page.
  54.  *
  55.  * PUBLIC: int __ham_release_meta __P((DBC *));
  56.  */
  57. int
  58. __ham_release_meta(dbc)
  59. DBC *dbc;
  60. {
  61. HASH_CURSOR *hcp;
  62. hcp = (HASH_CURSOR *)dbc->internal;
  63. if (hcp->hdr)
  64. (void)memp_fput(dbc->dbp->mpf, hcp->hdr,
  65.     F_ISSET(hcp, H_DIRTY) ? DB_MPOOL_DIRTY : 0);
  66. hcp->hdr = NULL;
  67. if (!F_ISSET(dbc, DBC_RECOVER) &&
  68.     dbc->txn == NULL && hcp->hlock.off != LOCK_INVALID)
  69. (void)lock_put(dbc->dbp->dbenv, &hcp->hlock);
  70. hcp->hlock.off = LOCK_INVALID;
  71. F_CLR(hcp, H_DIRTY);
  72. return (0);
  73. }
  74. /*
  75.  * Mark the meta-data page dirty.
  76.  *
  77.  * PUBLIC: int __ham_dirty_meta __P((DBC *));
  78.  */
  79. int
  80. __ham_dirty_meta(dbc)
  81. DBC *dbc;
  82. {
  83. DB *dbp;
  84. DB_LOCK _tmp;
  85. HASH *hashp;
  86. HASH_CURSOR *hcp;
  87. int ret;
  88. dbp = dbc->dbp;
  89. hashp = dbp->h_internal;
  90. hcp = (HASH_CURSOR *)dbc->internal;
  91. ret = 0;
  92. if (STD_LOCKING(dbc) && !F_ISSET(dbc, DBC_RECOVER)) {
  93. dbc->lock.pgno = hashp->meta_pgno;
  94. if ((ret = lock_get(dbp->dbenv, dbc->locker,
  95.     DB_NONBLOCK(dbc) ? DB_LOCK_NOWAIT : 0,
  96.     &dbc->lock_dbt, DB_LOCK_WRITE, &_tmp)) == 0) {
  97. ret = lock_put(dbp->dbenv, &hcp->hlock);
  98. hcp->hlock = _tmp;
  99. }
  100. }
  101. if (ret == 0)
  102. F_SET(hcp, H_DIRTY);
  103. return (ret);
  104. }