cxx_dbc.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_dbc.cpp,v 11.55 2002/07/03 21:03:52 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. // Helper macro for simple methods that pass through to the
  23. // underlying C method. It may return an error or raise an exception.
  24. // Note this macro expects that input _argspec is an argument
  25. // list element (e.g., "char *arg") and that _arglist is the arguments
  26. // that should be passed through to the C method (e.g., "(db, arg)")
  27. //
  28. #define DBC_METHOD(_name, _argspec, _arglist, _retok)
  29. int Dbc::_name _argspec
  30. {
  31. int ret;
  32. DBC *dbc = this;
  33. ret = dbc->c_##_name _arglist;
  34. if (!_retok(ret))
  35. DB_ERROR("Dbc::" # _name, ret, ON_ERROR_UNKNOWN);
  36. return (ret);
  37. }
  38. // It's private, and should never be called, but VC4.0 needs it resolved
  39. //
  40. Dbc::~Dbc()
  41. {
  42. }
  43. DBC_METHOD(close, (void), (dbc), DB_RETOK_STD)
  44. DBC_METHOD(count, (db_recno_t *countp, u_int32_t _flags),
  45.     (dbc, countp, _flags), DB_RETOK_STD)
  46. DBC_METHOD(del, (u_int32_t _flags),
  47.     (dbc, _flags), DB_RETOK_DBCDEL)
  48. int Dbc::dup(Dbc** cursorp, u_int32_t _flags)
  49. {
  50. int ret;
  51. DBC *dbc = this;
  52. DBC *new_cursor = 0;
  53. ret = dbc->c_dup(dbc, &new_cursor, _flags);
  54. if (DB_RETOK_STD(ret))
  55. // The following cast implies that Dbc can be no larger than DBC
  56. *cursorp = (Dbc*)new_cursor;
  57. else
  58. DB_ERROR("Dbc::dup", ret, ON_ERROR_UNKNOWN);
  59. return (ret);
  60. }
  61. int Dbc::get(Dbt* key, Dbt *data, u_int32_t _flags)
  62. {
  63. int ret;
  64. DBC *dbc = this;
  65. ret = dbc->c_get(dbc, key, data, _flags);
  66. if (!DB_RETOK_DBCGET(ret)) {
  67. if (ret == ENOMEM && DB_OVERFLOWED_DBT(key))
  68. DB_ERROR_DBT("Dbc::get", key, ON_ERROR_UNKNOWN);
  69. else if (ret == ENOMEM && DB_OVERFLOWED_DBT(data))
  70. DB_ERROR_DBT("Dbc::get", data, ON_ERROR_UNKNOWN);
  71. else
  72. DB_ERROR("Dbc::get", ret, ON_ERROR_UNKNOWN);
  73. }
  74. return (ret);
  75. }
  76. int Dbc::pget(Dbt* key, Dbt *pkey, Dbt *data, u_int32_t _flags)
  77. {
  78. int ret;
  79. DBC *dbc = this;
  80. ret = dbc->c_pget(dbc, key, pkey, data, _flags);
  81. /* Logic is the same as for Dbc::get - reusing macro. */
  82. if (!DB_RETOK_DBCGET(ret)) {
  83. if (ret == ENOMEM && DB_OVERFLOWED_DBT(key))
  84. DB_ERROR_DBT("Dbc::pget", key, ON_ERROR_UNKNOWN);
  85. else if (ret == ENOMEM && DB_OVERFLOWED_DBT(data))
  86. DB_ERROR_DBT("Dbc::pget", data, ON_ERROR_UNKNOWN);
  87. else
  88. DB_ERROR("Dbc::pget", ret, ON_ERROR_UNKNOWN);
  89. }
  90. return (ret);
  91. }
  92. DBC_METHOD(put, (Dbt* key, Dbt *data, u_int32_t _flags),
  93.     (dbc, key, data, _flags), DB_RETOK_DBCPUT)