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

MySQL数据库

开发平台:

Visual C++

  1. /*-
  2.  * See the file LICENSE for redistribution information.
  3.  *
  4.  * Copyright (c) 1997-2002
  5.  * Sleepycat Software.  All rights reserved.
  6.  */
  7. #include "db_config.h"
  8. #ifndef lint
  9. static const char revid[] = "$Id: cxx_mpool.cpp,v 11.20 2002/07/03 21:03:53 bostic Exp $";
  10. #endif /* not lint */
  11. #include <errno.h>
  12. #include "db_cxx.h"
  13. #include "dbinc/cxx_int.h"
  14. #include "db_int.h"
  15. // Helper macros for simple methods that pass through to the
  16. // underlying C method. It may return an error or raise an exception.
  17. // Note this macro expects that input _argspec is an argument
  18. // list element (e.g., "char *arg") and that _arglist is the arguments
  19. // that should be passed through to the C method (e.g., "(mpf, arg)")
  20. //
  21. #define DB_MPOOLFILE_METHOD(_name, _argspec, _arglist, _retok)
  22. int DbMpoolFile::_name _argspec
  23. {
  24. int ret;
  25. DB_MPOOLFILE *mpf = unwrap(this);
  26. if (mpf == NULL)
  27. ret = EINVAL;
  28. else
  29. ret = mpf->_name _arglist;
  30. if (!_retok(ret))
  31. DB_ERROR("DbMpoolFile::"#_name, ret, ON_ERROR_UNKNOWN);
  32. return (ret);
  33. }
  34. #define DB_MPOOLFILE_METHOD_VOID(_name, _argspec, _arglist)
  35. void DbMpoolFile::_name _argspec
  36. {
  37. DB_MPOOLFILE *mpf = unwrap(this);
  38. mpf->_name _arglist;
  39. }
  40. ////////////////////////////////////////////////////////////////////////
  41. //                                                                    //
  42. //                            DbMpoolFile                             //
  43. //                                                                    //
  44. ////////////////////////////////////////////////////////////////////////
  45. DbMpoolFile::DbMpoolFile()
  46. : imp_(0)
  47. {
  48. }
  49. DbMpoolFile::~DbMpoolFile()
  50. {
  51. }
  52. int DbMpoolFile::close(u_int32_t flags)
  53. {
  54. DB_MPOOLFILE *mpf = unwrap(this);
  55. int ret;
  56. if (mpf == NULL)
  57. ret = EINVAL;
  58. else
  59. ret = mpf->close(mpf, flags);
  60. imp_ = 0;                   // extra safety
  61. // This may seem weird, but is legal as long as we don't access
  62. // any data before returning.
  63. delete this;
  64. if (!DB_RETOK_STD(ret))
  65. DB_ERROR("DbMpoolFile::close", ret, ON_ERROR_UNKNOWN);
  66. return (ret);
  67. }
  68. DB_MPOOLFILE_METHOD(get, (db_pgno_t *pgnoaddr, u_int32_t flags, void *pagep),
  69.     (mpf, pgnoaddr, flags, pagep), DB_RETOK_MPGET)
  70. DB_MPOOLFILE_METHOD_VOID(last_pgno, (db_pgno_t *pgnoaddr), (mpf, pgnoaddr))
  71. DB_MPOOLFILE_METHOD(open,
  72.     (const char *file, u_int32_t flags, int mode, size_t pagesize),
  73.     (mpf, file, flags, mode, pagesize), DB_RETOK_STD)
  74. DB_MPOOLFILE_METHOD(put, (void *pgaddr, u_int32_t flags),
  75.     (mpf, pgaddr, flags), DB_RETOK_STD)
  76. DB_MPOOLFILE_METHOD_VOID(refcnt, (db_pgno_t *pgnoaddr), (mpf, pgnoaddr))
  77. DB_MPOOLFILE_METHOD(set, (void *pgaddr, u_int32_t flags),
  78.     (mpf, pgaddr, flags), DB_RETOK_STD)
  79. DB_MPOOLFILE_METHOD(set_clear_len, (u_int32_t len),
  80.     (mpf, len), DB_RETOK_STD)
  81. DB_MPOOLFILE_METHOD(set_fileid, (u_int8_t *fileid),
  82.     (mpf, fileid), DB_RETOK_STD)
  83. DB_MPOOLFILE_METHOD(set_ftype, (int ftype),
  84.     (mpf, ftype), DB_RETOK_STD)
  85. DB_MPOOLFILE_METHOD(set_lsn_offset, (int32_t offset),
  86.     (mpf, offset), DB_RETOK_STD)
  87. DB_MPOOLFILE_METHOD(set_pgcookie, (DBT *dbt),
  88.     (mpf, dbt), DB_RETOK_STD)
  89. DB_MPOOLFILE_METHOD_VOID(set_unlink, (int ul), (mpf, ul))
  90. DB_MPOOLFILE_METHOD(sync, (),
  91.     (mpf), DB_RETOK_STD)