hash_reclaim.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: hash_reclaim.c,v 11.4 2000/11/30 00:58:37 ubell Exp $";
  10. #endif /* not lint */
  11. #ifndef NO_SYSTEM_INCLUDES
  12. #include <sys/types.h>
  13. #include <string.h>
  14. #endif
  15. #include "db_int.h"
  16. #include "db_page.h"
  17. #include "db_shash.h"
  18. #include "hash.h"
  19. #include "lock.h"
  20. /*
  21.  * __ham_reclaim --
  22.  * Reclaim the pages from a subdatabase and return them to the
  23.  * parent free list.  For now, we link each freed page on the list
  24.  * separately.  If people really store hash databases in subdatabases
  25.  * and do a lot of creates and deletes, this is going to be a problem,
  26.  * because hash needs chunks of contiguous storage.  We may eventually
  27.  * need to go to a model where we maintain the free list with chunks of
  28.  * contiguous pages as well.
  29.  *
  30.  * PUBLIC: int __ham_reclaim __P((DB *, DB_TXN *txn));
  31.  */
  32. int
  33. __ham_reclaim(dbp, txn)
  34. DB *dbp;
  35. DB_TXN *txn;
  36. {
  37. DBC *dbc;
  38. HASH_CURSOR *hcp;
  39. int ret;
  40. /* Open up a cursor that we'll use for traversing. */
  41. if ((ret = dbp->cursor(dbp, txn, &dbc, 0)) != 0)
  42. return (ret);
  43. hcp = (HASH_CURSOR *)dbc->internal;
  44. if ((ret = __ham_get_meta(dbc)) != 0)
  45. goto err;
  46. if ((ret = __ham_traverse(dbp,
  47.     dbc, DB_LOCK_WRITE, __db_reclaim_callback, dbc)) != 0)
  48. goto err;
  49. if ((ret = dbc->c_close(dbc)) != 0)
  50. goto err;
  51. if ((ret = __ham_release_meta(dbc)) != 0)
  52. goto err;
  53. return (0);
  54. err: if (hcp->hdr != NULL)
  55. (void)__ham_release_meta(dbc);
  56. (void)dbc->c_close(dbc);
  57. return (ret);
  58. }