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

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_logc.cpp,v 11.8 2002/07/03 21:03:53 bostic Exp $";
  10. #endif /* not lint */
  11. #include <errno.h>
  12. #include <string.h>
  13. #include "db_cxx.h"
  14. #include "dbinc/cxx_int.h"
  15. #include "db_int.h"
  16. #include "dbinc/db_page.h"
  17. #include "dbinc_auto/db_auto.h"
  18. #include "dbinc_auto/crdel_auto.h"
  19. #include "dbinc/db_dispatch.h"
  20. #include "dbinc_auto/db_ext.h"
  21. #include "dbinc_auto/common_ext.h"
  22. // It's private, and should never be called,
  23. // but some compilers need it resolved
  24. //
  25. DbLogc::~DbLogc()
  26. {
  27. }
  28. // The name _flags prevents a name clash with __db_log_cursor::flags
  29. int DbLogc::close(u_int32_t _flags)
  30. {
  31. DB_LOGC *logc = this;
  32. int ret;
  33. ret = logc->close(logc, _flags);
  34. if (!DB_RETOK_STD(ret))
  35. DB_ERROR("DbLogc::close", ret, ON_ERROR_UNKNOWN);
  36. return (ret);
  37. }
  38. // The name _flags prevents a name clash with __db_log_cursor::flags
  39. int DbLogc::get(DbLsn *lsn, Dbt *data, u_int32_t _flags)
  40. {
  41. DB_LOGC *logc = this;
  42. int ret;
  43. ret = logc->get(logc, lsn, data, _flags);
  44. if (!DB_RETOK_LGGET(ret)) {
  45. if (ret == ENOMEM && DB_OVERFLOWED_DBT(data))
  46. DB_ERROR_DBT("DbLogc::get", data, ON_ERROR_UNKNOWN);
  47. else
  48. DB_ERROR("DbLogc::get", ret, ON_ERROR_UNKNOWN);
  49. }
  50. return (ret);
  51. }