db_cxx.h 49 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573
  1. /*-
  2. * See the file LICENSE for redistribution information.
  3. *
  4. * Copyright (c) 1997, 2015 Oracle and/or its affiliates. All rights reserved.
  5. *
  6. * $Id$
  7. */
  8. #ifndef _DB_CXX_H_
  9. #define _DB_CXX_H_
  10. //
  11. // C++ assumptions:
  12. //
  13. // To ensure portability to many platforms, both new and old, we make
  14. // few assumptions about the C++ compiler and library. For example,
  15. // we do not expect STL, templates or namespaces to be available. The
  16. // "newest" C++ feature used is exceptions, which are used liberally
  17. // to transmit error information. Even the use of exceptions can be
  18. // disabled at runtime, to do so, use the DB_CXX_NO_EXCEPTIONS flags
  19. // with the DbEnv or Db constructor.
  20. //
  21. // C++ naming conventions:
  22. //
  23. // - All top level class names start with Db.
  24. // - All class members start with lower case letter.
  25. // - All private data members are suffixed with underscore.
  26. // - Use underscores to divide names into multiple words.
  27. // - Simple data accessors are named with get_ or set_ prefix.
  28. // - All method names are taken from names of functions in the C
  29. // layer of db (usually by dropping a prefix like "db_").
  30. // These methods have the same argument types and order,
  31. // other than dropping the explicit arg that acts as "this".
  32. //
  33. // As a rule, each DbFoo object has exactly one underlying DB_FOO struct
  34. // (defined in db.h) associated with it. In some cases, we inherit directly
  35. // from the DB_FOO structure to make this relationship explicit. Often,
  36. // the underlying C layer allocates and deallocates these structures, so
  37. // there is no easy way to add any data to the DbFoo class. When you see
  38. // a comment about whether data is permitted to be added, this is what
  39. // is going on. Of course, if we need to add data to such C++ classes
  40. // in the future, we will arrange to have an indirect pointer to the
  41. // DB_FOO struct (as some of the classes already have).
  42. //
  43. ////////////////////////////////////////////////////////////////
  44. ////////////////////////////////////////////////////////////////
  45. //
  46. // Forward declarations
  47. //
  48. #include <stdarg.h>
  49. #define HAVE_CXX_STDHEADERS 1
  50. #ifdef HAVE_CXX_STDHEADERS
  51. #include <iostream>
  52. #include <exception>
  53. #define __DB_STD(x) std::x
  54. #else
  55. #include <iostream.h>
  56. #include <exception.h>
  57. #define __DB_STD(x) x
  58. #endif
  59. #include "db.h"
  60. class Db; // forward
  61. class Dbc; // forward
  62. class DbChannel; // forward
  63. class DbEnv; // forward
  64. class DbHeapRecordId; // forward
  65. class DbInfo; // forward
  66. class DbLock; // forward
  67. class DbLogc; // forward
  68. class DbLsn; // forward
  69. class DbMpoolFile; // forward
  70. class DbPreplist; // forward
  71. class DbSequence; // forward
  72. class DbSite; // forward
  73. class DbStream; // forward
  74. class Dbt; // forward
  75. class DbTxn; // forward
  76. class DbMultipleIterator; // forward
  77. class DbMultipleKeyDataIterator; // forward
  78. class DbMultipleRecnoDataIterator; // forward
  79. class DbMultipleDataIterator; // forward
  80. class DbException; // forward
  81. class DbDeadlockException; // forward
  82. class DbLockNotGrantedException; // forward
  83. class DbMemoryException; // forward
  84. class DbRepHandleDeadException; // forward
  85. class DbRunRecoveryException; // forward
  86. ////////////////////////////////////////////////////////////////
  87. ////////////////////////////////////////////////////////////////
  88. //
  89. // Turn off inappropriate compiler warnings
  90. //
  91. #ifdef _MSC_VER
  92. // These are level 4 warnings that are explicitly disabled.
  93. // With Visual C++, by default you do not see above level 3 unless
  94. // you use /W4. But we like to compile with the highest level
  95. // warnings to catch other errors.
  96. //
  97. // 4201: nameless struct/union
  98. // triggered by standard include file <winnt.h>
  99. //
  100. // 4514: unreferenced inline function has been removed
  101. // certain include files in MSVC define methods that are not called
  102. //
  103. #pragma warning(push)
  104. #pragma warning(disable: 4201 4514)
  105. #endif
  106. ////////////////////////////////////////////////////////////////
  107. ////////////////////////////////////////////////////////////////
  108. //
  109. // Mechanisms for declaring classes
  110. //
  111. //
  112. // Every class defined in this file has an _exported next to the class name.
  113. // This is needed for WinTel machines so that the class methods can
  114. // be exported or imported in a DLL as appropriate. Users of the DLL
  115. // use the define DB_USE_DLL. When the DLL is built, DB_CREATE_DLL
  116. // must be defined.
  117. //
  118. #if defined(_MSC_VER)
  119. # if defined(DB_CREATE_DLL)
  120. # define _exported __declspec(dllexport) // creator of dll
  121. # elif defined(DB_USE_DLL)
  122. # define _exported __declspec(dllimport) // user of dll
  123. # else
  124. # define _exported // static lib creator or user
  125. # endif
  126. #else /* _MSC_VER */
  127. # define _exported
  128. #endif /* _MSC_VER */
  129. // Some interfaces can be customized by allowing users to define
  130. // callback functions. For performance and logistical reasons, some
  131. // callback functions must be declared in extern "C" blocks. For others,
  132. // we allow you to declare the callbacks in C++ or C (or an extern "C"
  133. // block) as you wish. See the set methods for the callbacks for
  134. // the choices.
  135. //
  136. extern "C" {
  137. typedef void * (*db_malloc_fcn_type)
  138. (size_t);
  139. typedef void * (*db_realloc_fcn_type)
  140. (void *, size_t);
  141. typedef void (*db_free_fcn_type)
  142. (void *);
  143. typedef int (*bt_compare_fcn_type) /*C++ version available*/
  144. (DB *, const DBT *, const DBT *, size_t *);
  145. typedef size_t (*bt_prefix_fcn_type) /*C++ version available*/
  146. (DB *, const DBT *, const DBT *);
  147. typedef int (*dup_compare_fcn_type) /*C++ version available*/
  148. (DB *, const DBT *, const DBT *, size_t *);
  149. typedef int (*h_compare_fcn_type) /*C++ version available*/
  150. (DB *, const DBT *, const DBT *, size_t *);
  151. typedef u_int32_t (*h_hash_fcn_type) /*C++ version available*/
  152. (DB *, const void *, u_int32_t);
  153. typedef int (*pgin_fcn_type)
  154. (DB_ENV *dbenv, db_pgno_t pgno, void *pgaddr, DBT *pgcookie);
  155. typedef int (*pgout_fcn_type)
  156. (DB_ENV *dbenv, db_pgno_t pgno, void *pgaddr, DBT *pgcookie);
  157. }
  158. //
  159. // Represents a database table = a set of keys with associated values.
  160. //
  161. class _exported Db
  162. {
  163. friend class DbEnv;
  164. public:
  165. Db(DbEnv*, u_int32_t); // Create a Db object.
  166. virtual ~Db(); // Calls close() if the user hasn't.
  167. // These methods exactly match those in the C interface.
  168. //
  169. virtual int associate(DbTxn *txn, Db *secondary, int (*callback)
  170. (Db *, const Dbt *, const Dbt *, Dbt *), u_int32_t flags);
  171. virtual int associate_foreign(Db *foreign, int (*callback)
  172. (Db *, const Dbt *, Dbt *, const Dbt *, int *), u_int32_t flags);
  173. virtual int close(u_int32_t flags);
  174. virtual int compact(DbTxn *txnid, Dbt *start,
  175. Dbt *stop, DB_COMPACT *c_data, u_int32_t flags, Dbt *end);
  176. virtual int cursor(DbTxn *txnid, Dbc **cursorp, u_int32_t flags);
  177. virtual int del(DbTxn *txnid, Dbt *key, u_int32_t flags);
  178. virtual void err(int, const char *, ...);
  179. virtual void errx(const char *, ...);
  180. virtual int exists(DbTxn *txnid, Dbt *key, u_int32_t flags);
  181. virtual int fd(int *fdp);
  182. virtual int get(DbTxn *txnid, Dbt *key, Dbt *data, u_int32_t flags);
  183. virtual int get_alloc(
  184. db_malloc_fcn_type *, db_realloc_fcn_type *, db_free_fcn_type *);
  185. virtual int get_append_recno(int (**)(Db *, Dbt *, db_recno_t));
  186. virtual int get_blob_dir(const char **);
  187. virtual int get_blob_threshold(u_int32_t *);
  188. virtual int get_bt_compare(
  189. int (**)(Db *, const Dbt *, const Dbt *, size_t *));
  190. virtual int get_bt_compress(
  191. int (**)(
  192. Db *, const Dbt *, const Dbt *, const Dbt *, const Dbt *, Dbt *),
  193. int (**)(Db *, const Dbt *, const Dbt *, Dbt *, Dbt *, Dbt *));
  194. virtual int get_bt_minkey(u_int32_t *);
  195. virtual int get_bt_prefix(size_t (**)(Db *, const Dbt *, const Dbt *));
  196. virtual int get_byteswapped(int *);
  197. virtual int get_cachesize(u_int32_t *, u_int32_t *, int *);
  198. virtual int get_create_dir(const char **);
  199. virtual int get_dbname(const char **, const char **);
  200. virtual int get_dup_compare(
  201. int (**)(Db *, const Dbt *, const Dbt *, size_t *));
  202. virtual int get_encrypt_flags(u_int32_t *);
  203. virtual void get_errcall(
  204. void (**)(const DbEnv *, const char *, const char *));
  205. virtual void get_errfile(FILE **);
  206. virtual void get_errpfx(const char **);
  207. virtual int get_feedback(void (**)(Db *, int, int));
  208. virtual int get_flags(u_int32_t *);
  209. virtual int get_heapsize(u_int32_t *, u_int32_t *);
  210. virtual int get_heap_regionsize(u_int32_t *);
  211. virtual int get_h_compare(
  212. int (**)(Db *, const Dbt *, const Dbt *, size_t *));
  213. virtual int get_h_ffactor(u_int32_t *);
  214. virtual int get_h_hash(u_int32_t (**)(Db *, const void *, u_int32_t));
  215. virtual int get_h_nelem(u_int32_t *);
  216. virtual int get_lk_exclusive(bool *, bool *);
  217. virtual int get_lorder(int *);
  218. virtual void get_msgcall(void (**)(const DbEnv *, const char *));
  219. virtual void get_msgfile(FILE **);
  220. virtual int get_multiple();
  221. virtual int get_open_flags(u_int32_t *);
  222. virtual int get_pagesize(u_int32_t *);
  223. virtual int get_partition_callback(
  224. u_int32_t *, u_int32_t (**)(Db *, Dbt *key));
  225. virtual int get_partition_dirs(const char ***);
  226. virtual int get_partition_keys(u_int32_t *, Dbt **);
  227. virtual int get_priority(DB_CACHE_PRIORITY *);
  228. virtual int get_q_extentsize(u_int32_t *);
  229. virtual int get_re_delim(int *);
  230. virtual int get_re_len(u_int32_t *);
  231. virtual int get_re_pad(int *);
  232. virtual int get_re_source(const char **);
  233. virtual int get_transactional();
  234. virtual int get_type(DBTYPE *);
  235. virtual int join(Dbc **curslist, Dbc **dbcp, u_int32_t flags);
  236. virtual int key_range(DbTxn *, Dbt *, DB_KEY_RANGE *, u_int32_t);
  237. virtual int open(DbTxn *txnid,
  238. const char *, const char *subname, DBTYPE, u_int32_t, int);
  239. virtual int pget(DbTxn *txnid,
  240. Dbt *key, Dbt *pkey, Dbt *data, u_int32_t flags);
  241. virtual int put(DbTxn *, Dbt *, Dbt *, u_int32_t);
  242. virtual int remove(const char *, const char *, u_int32_t);
  243. virtual int rename(const char *, const char *, const char *, u_int32_t);
  244. virtual int set_alloc(
  245. db_malloc_fcn_type, db_realloc_fcn_type, db_free_fcn_type);
  246. virtual void set_app_private(void *);
  247. virtual int set_append_recno(int (*)(Db *, Dbt *, db_recno_t));
  248. virtual int set_blob_dir(const char *);
  249. virtual int set_blob_threshold(u_int32_t, u_int32_t);
  250. virtual int set_bt_compare(bt_compare_fcn_type); /*deprecated*/
  251. virtual int set_bt_compare(
  252. int (*)(Db *, const Dbt *, const Dbt *, size_t *));
  253. virtual int set_bt_compress(
  254. int (*)
  255. (Db *, const Dbt *, const Dbt *, const Dbt *, const Dbt *, Dbt *),
  256. int (*)(Db *, const Dbt *, const Dbt *, Dbt *, Dbt *, Dbt *));
  257. virtual int set_bt_minkey(u_int32_t);
  258. virtual int set_bt_prefix(bt_prefix_fcn_type); /*deprecated*/
  259. virtual int set_bt_prefix(size_t (*)(Db *, const Dbt *, const Dbt *));
  260. virtual int set_cachesize(u_int32_t, u_int32_t, int);
  261. virtual int set_create_dir(const char *);
  262. virtual int set_dup_compare(dup_compare_fcn_type); /*deprecated*/
  263. virtual int set_dup_compare(
  264. int (*)(Db *, const Dbt *, const Dbt *, size_t *));
  265. virtual int set_encrypt(const char *, u_int32_t);
  266. virtual void set_errcall(
  267. void (*)(const DbEnv *, const char *, const char *));
  268. virtual void set_errfile(FILE *);
  269. virtual void set_errpfx(const char *);
  270. virtual int set_feedback(void (*)(Db *, int, int));
  271. virtual int set_flags(u_int32_t);
  272. virtual int set_heapsize(u_int32_t, u_int32_t);
  273. virtual int set_heap_regionsize(u_int32_t);
  274. virtual int set_h_compare(h_compare_fcn_type); /*deprecated*/
  275. virtual int set_h_compare(
  276. int (*)(Db *, const Dbt *, const Dbt *, size_t *));
  277. virtual int set_h_ffactor(u_int32_t);
  278. virtual int set_h_hash(h_hash_fcn_type); /*deprecated*/
  279. virtual int set_h_hash(u_int32_t (*)(Db *, const void *, u_int32_t));
  280. virtual int set_h_nelem(u_int32_t);
  281. virtual int set_lk_exclusive(bool);
  282. virtual int set_lorder(int);
  283. virtual void set_msgcall(void (*)(const DbEnv *, const char *));
  284. virtual void set_msgfile(FILE *);
  285. virtual int set_pagesize(u_int32_t);
  286. virtual int set_paniccall(void (*)(DbEnv *, int));
  287. virtual int set_partition(
  288. u_int32_t, Dbt *, u_int32_t (*)(Db *, Dbt *));
  289. virtual int set_partition_dirs(const char **);
  290. virtual int set_priority(DB_CACHE_PRIORITY);
  291. virtual int set_q_extentsize(u_int32_t);
  292. virtual int set_re_delim(int);
  293. virtual int set_re_len(u_int32_t);
  294. virtual int set_re_pad(int);
  295. virtual int set_re_source(const char *);
  296. virtual int sort_multiple(Dbt *, Dbt *, u_int32_t);
  297. virtual int stat(DbTxn *, void *sp, u_int32_t flags);
  298. virtual int stat_print(u_int32_t flags);
  299. virtual int sync(u_int32_t flags);
  300. virtual int truncate(DbTxn *, u_int32_t *, u_int32_t);
  301. virtual int upgrade(const char *name, u_int32_t flags);
  302. virtual int verify(
  303. const char *, const char *, __DB_STD(ostream) *, u_int32_t);
  304. // These additional methods are not in the C interface, and
  305. // are only available for C++.
  306. //
  307. virtual void *get_app_private() const;
  308. virtual __DB_STD(ostream) *get_error_stream();
  309. virtual void set_error_stream(__DB_STD(ostream) *);
  310. virtual __DB_STD(ostream) *get_message_stream();
  311. virtual void set_message_stream(__DB_STD(ostream) *);
  312. virtual DbEnv *get_env();
  313. virtual DbMpoolFile *get_mpf();
  314. virtual ENV *get_ENV()
  315. {
  316. return imp_->env;
  317. }
  318. virtual DB *get_DB()
  319. {
  320. return imp_;
  321. }
  322. virtual const DB *get_const_DB() const
  323. {
  324. return imp_;
  325. }
  326. static Db* get_Db(DB *db)
  327. {
  328. return (Db *)db->api_internal;
  329. }
  330. static const Db* get_const_Db(const DB *db)
  331. {
  332. return (const Db *)db->api_internal;
  333. }
  334. u_int32_t get_create_flags() const
  335. {
  336. return construct_flags_;
  337. }
  338. private:
  339. // no copying
  340. Db(const Db &);
  341. Db &operator = (const Db &);
  342. void cleanup();
  343. int initialize();
  344. int error_policy();
  345. // instance data
  346. DB *imp_;
  347. DbEnv *dbenv_;
  348. DbMpoolFile *mpf_;
  349. int construct_error_;
  350. u_int32_t flags_;
  351. u_int32_t construct_flags_;
  352. static int alt_close(DB *, u_int32_t);
  353. public:
  354. // These are public only because they need to be called
  355. // via C callback functions. They should never be used by
  356. // external users of this class.
  357. //
  358. int (*append_recno_callback_)(Db *, Dbt *, db_recno_t);
  359. int (*associate_callback_)(Db *, const Dbt *, const Dbt *, Dbt *);
  360. int (*associate_foreign_callback_)
  361. (Db *, const Dbt *, Dbt *, const Dbt *, int *);
  362. int (*bt_compare_callback_)(Db *, const Dbt *, const Dbt *, size_t *);
  363. int (*bt_compress_callback_)(
  364. Db *, const Dbt *, const Dbt *, const Dbt *, const Dbt *, Dbt *);
  365. int (*bt_decompress_callback_)(
  366. Db *, const Dbt *, const Dbt *, Dbt *, Dbt *, Dbt *);
  367. size_t (*bt_prefix_callback_)(Db *, const Dbt *, const Dbt *);
  368. u_int32_t (*db_partition_callback_)(Db *, Dbt *);
  369. int (*dup_compare_callback_)(Db *, const Dbt *, const Dbt *, size_t *);
  370. void (*feedback_callback_)(Db *, int, int);
  371. int (*h_compare_callback_)(Db *, const Dbt *, const Dbt *, size_t *);
  372. u_int32_t (*h_hash_callback_)(Db *, const void *, u_int32_t);
  373. };
  374. //
  375. // Cursor
  376. //
  377. class _exported Dbc : protected DBC
  378. {
  379. friend class Db;
  380. public:
  381. int close();
  382. int cmp(Dbc *other_csr, int *result, u_int32_t flags);
  383. int count(db_recno_t *countp, u_int32_t flags);
  384. int db_stream(DbStream **dbsp, u_int32_t flags);
  385. int del(u_int32_t flags);
  386. int dup(Dbc** cursorp, u_int32_t flags);
  387. int get(Dbt* key, Dbt *data, u_int32_t flags);
  388. int get_priority(DB_CACHE_PRIORITY *priorityp);
  389. int pget(Dbt* key, Dbt* pkey, Dbt *data, u_int32_t flags);
  390. int put(Dbt* key, Dbt *data, u_int32_t flags);
  391. int set_priority(DB_CACHE_PRIORITY priority);
  392. private:
  393. // No data is permitted in this class (see comment at top)
  394. // Note: use Db::cursor() to get pointers to a Dbc,
  395. // and call Dbc::close() rather than delete to release them.
  396. //
  397. Dbc();
  398. ~Dbc();
  399. // no copying
  400. Dbc(const Dbc &);
  401. Dbc &operator = (const Dbc &);
  402. };
  403. //
  404. // A channel in replication group
  405. //
  406. class _exported DbChannel
  407. {
  408. friend class DbEnv;
  409. public:
  410. int close();
  411. int send_msg(Dbt *msg, u_int32_t nmsg, u_int32_t flags);
  412. int send_request(Dbt *request, u_int32_t nrequest, Dbt *response,
  413. db_timeout_t timeout, u_int32_t flags);
  414. int set_timeout(db_timeout_t timeout);
  415. virtual DB_CHANNEL *get_DB_CHANNEL()
  416. {
  417. return imp_;
  418. }
  419. virtual const DB_CHANNEL *get_const_DB_CHANNEL() const
  420. {
  421. return imp_;
  422. }
  423. private:
  424. DbChannel();
  425. virtual ~DbChannel();
  426. // no copying
  427. DbChannel(const DbChannel &);
  428. DbChannel &operator = (const DbChannel &);
  429. DB_CHANNEL *imp_;
  430. DbEnv *dbenv_;
  431. };
  432. //
  433. // Berkeley DB environment class. Provides functions for opening databases.
  434. // User of this library can use this class as a starting point for
  435. // developing a DB application - derive their application class from
  436. // this one, add application control logic.
  437. //
  438. // Note that if you use the default constructor, you must explicitly
  439. // call appinit() before any other db activity (e.g. opening files)
  440. //
  441. class _exported DbEnv
  442. {
  443. friend class Db;
  444. friend class DbLock;
  445. friend class DbMpoolFile;
  446. public:
  447. // After using this constructor, you can set any needed
  448. // parameters for the environment using the set_* methods.
  449. // Then call open() to finish initializing the environment
  450. // and attaching it to underlying files.
  451. //
  452. DbEnv(u_int32_t flags);
  453. virtual ~DbEnv();
  454. // These methods match those in the C interface.
  455. //
  456. virtual int add_data_dir(const char *);
  457. virtual int backup(const char *target, u_int32_t flags);
  458. virtual int cdsgroup_begin(DbTxn **tid);
  459. virtual int close(u_int32_t);
  460. virtual int dbbackup(
  461. const char *dbfile, const char *target, u_int32_t flags);
  462. virtual int dbremove(DbTxn *txn, const char *name, const char *subdb,
  463. u_int32_t flags);
  464. virtual int dbrename(DbTxn *txn, const char *name, const char *subdb,
  465. const char *newname, u_int32_t flags);
  466. virtual void err(int, const char *, ...);
  467. virtual void errx(const char *, ...);
  468. virtual int failchk(u_int32_t);
  469. virtual int fileid_reset(const char *, u_int32_t);
  470. virtual int get_alloc(db_malloc_fcn_type *, db_realloc_fcn_type *,
  471. db_free_fcn_type *);
  472. virtual void *get_app_private() const;
  473. virtual int get_home(const char **);
  474. virtual int get_open_flags(u_int32_t *);
  475. virtual int open(const char *, u_int32_t, int);
  476. virtual int remove(const char *, u_int32_t);
  477. virtual int stat_print(u_int32_t flags);
  478. virtual int set_alloc(db_malloc_fcn_type, db_realloc_fcn_type,
  479. db_free_fcn_type);
  480. virtual void set_app_private(void *);
  481. virtual int get_backup_callbacks(
  482. int (**)(DbEnv *, const char *, const char *, void **),
  483. int (**)(DbEnv *, u_int32_t, u_int32_t, u_int32_t, u_int8_t *, void *),
  484. int (**)(DbEnv *, const char *, void *));
  485. virtual int set_backup_callbacks(
  486. int (*)(DbEnv *, const char *, const char *, void **),
  487. int (*)(DbEnv *, u_int32_t, u_int32_t, u_int32_t, u_int8_t *, void *),
  488. int (*)(DbEnv *, const char *, void *));
  489. virtual int get_backup_config(DB_BACKUP_CONFIG, u_int32_t *);
  490. virtual int set_backup_config(DB_BACKUP_CONFIG, u_int32_t);
  491. virtual int get_blob_dir(const char **);
  492. virtual int set_blob_dir(const char *);
  493. virtual int get_blob_threshold(u_int32_t *);
  494. virtual int set_blob_threshold(u_int32_t, u_int32_t);
  495. virtual int get_cachesize(u_int32_t *, u_int32_t *, int *);
  496. virtual int set_cachesize(u_int32_t, u_int32_t, int);
  497. virtual int get_cache_max(u_int32_t *, u_int32_t *);
  498. virtual int set_cache_max(u_int32_t, u_int32_t);
  499. virtual int get_create_dir(const char **);
  500. virtual int set_create_dir(const char *);
  501. virtual int get_data_dirs(const char ***);
  502. virtual int set_data_dir(const char *);
  503. virtual int get_encrypt_flags(u_int32_t *);
  504. virtual int get_intermediate_dir_mode(const char **);
  505. virtual int set_intermediate_dir_mode(const char *);
  506. virtual int get_isalive(
  507. int (**)(DbEnv *, pid_t, db_threadid_t, u_int32_t));
  508. virtual int set_isalive(
  509. int (*)(DbEnv *, pid_t, db_threadid_t, u_int32_t));
  510. virtual int set_encrypt(const char *, u_int32_t);
  511. virtual void get_errcall(
  512. void (**)(const DbEnv *, const char *, const char *));
  513. virtual void set_errcall(
  514. void (*)(const DbEnv *, const char *, const char *));
  515. virtual void get_errfile(FILE **);
  516. virtual void set_errfile(FILE *);
  517. virtual void get_errpfx(const char **);
  518. virtual void set_errpfx(const char *);
  519. virtual int set_event_notify(void (*)(DbEnv *, u_int32_t, void *));
  520. virtual int get_flags(u_int32_t *);
  521. virtual int set_flags(u_int32_t, int);
  522. virtual bool is_bigendian();
  523. virtual int lsn_reset(const char *, u_int32_t);
  524. virtual int get_feedback(void (**)(DbEnv *, int, int));
  525. virtual int set_feedback(void (*)(DbEnv *, int, int));
  526. virtual int get_lg_bsize(u_int32_t *);
  527. virtual int set_lg_bsize(u_int32_t);
  528. virtual int get_lg_dir(const char **);
  529. virtual int set_lg_dir(const char *);
  530. virtual int get_lg_filemode(int *);
  531. virtual int set_lg_filemode(int);
  532. virtual int get_lg_max(u_int32_t *);
  533. virtual int set_lg_max(u_int32_t);
  534. virtual int get_lg_regionmax(u_int32_t *);
  535. virtual int set_lg_regionmax(u_int32_t);
  536. virtual int get_lk_conflicts(const u_int8_t **, int *);
  537. virtual int set_lk_conflicts(u_int8_t *, int);
  538. virtual int get_lk_detect(u_int32_t *);
  539. virtual int set_lk_detect(u_int32_t);
  540. virtual int get_lk_max_lockers(u_int32_t *);
  541. virtual int set_lk_max_lockers(u_int32_t);
  542. virtual int get_lk_max_locks(u_int32_t *);
  543. virtual int set_lk_max_locks(u_int32_t);
  544. virtual int get_lk_max_objects(u_int32_t *);
  545. virtual int set_lk_max_objects(u_int32_t);
  546. virtual int get_lk_partitions(u_int32_t *);
  547. virtual int set_lk_partitions(u_int32_t);
  548. virtual int get_lk_priority(u_int32_t, u_int32_t *);
  549. virtual int set_lk_priority(u_int32_t, u_int32_t);
  550. virtual int get_lk_tablesize(u_int32_t *);
  551. virtual int set_lk_tablesize(u_int32_t);
  552. virtual int get_memory_init(DB_MEM_CONFIG, u_int32_t *);
  553. virtual int set_memory_init(DB_MEM_CONFIG, u_int32_t);
  554. virtual int get_memory_max(u_int32_t *, u_int32_t *);
  555. virtual int set_memory_max(u_int32_t, u_int32_t);
  556. virtual int get_metadata_dir(const char **);
  557. virtual int set_metadata_dir(const char *);
  558. virtual int get_mp_mmapsize(size_t *);
  559. virtual int set_mp_mmapsize(size_t);
  560. virtual int get_mp_max_openfd(int *);
  561. virtual int set_mp_max_openfd(int);
  562. virtual int get_mp_max_write(int *, db_timeout_t *);
  563. virtual int set_mp_max_write(int, db_timeout_t);
  564. virtual int get_mp_pagesize(u_int32_t *);
  565. virtual int set_mp_pagesize(u_int32_t);
  566. virtual int get_mp_tablesize(u_int32_t *);
  567. virtual int set_mp_tablesize(u_int32_t);
  568. virtual void get_msgcall(void (**)(const DbEnv *, const char *));
  569. virtual void set_msgcall(void (*)(const DbEnv *, const char *));
  570. virtual void get_msgfile(FILE **);
  571. virtual void set_msgfile(FILE *);
  572. virtual int set_paniccall(void (*)(DbEnv *, int));
  573. virtual int get_shm_key(long *);
  574. virtual int set_shm_key(long);
  575. virtual int get_timeout(db_timeout_t *, u_int32_t);
  576. virtual int set_timeout(db_timeout_t, u_int32_t);
  577. virtual int get_tmp_dir(const char **);
  578. virtual int set_tmp_dir(const char *);
  579. virtual int get_tx_max(u_int32_t *);
  580. virtual int set_tx_max(u_int32_t);
  581. virtual int get_app_dispatch(
  582. int (**)(DbEnv *, Dbt *, DbLsn *, db_recops));
  583. virtual int set_app_dispatch(int (*)(DbEnv *,
  584. Dbt *, DbLsn *, db_recops));
  585. virtual int get_tx_timestamp(time_t *);
  586. virtual int set_tx_timestamp(time_t *);
  587. virtual int get_verbose(u_int32_t which, int *);
  588. virtual int set_verbose(u_int32_t which, int);
  589. // Version information. Static methods, can be called at any time.
  590. //
  591. static char *version(int *major, int *minor, int *patch);
  592. static char *full_version(int *family, int *release,
  593. int *major, int *minor, int *patch);
  594. // Convert DB errors to strings
  595. static char *strerror(int);
  596. // If an error is detected and the error call function
  597. // or stream is set, a message is dispatched or printed.
  598. // If a prefix is set, each message is prefixed.
  599. //
  600. // You can use set_errcall() or set_errfile() above to control
  601. // error functionality. Alternatively, you can call
  602. // set_error_stream() to force all errors to a C++ stream.
  603. // It is unwise to mix these approaches.
  604. //
  605. virtual __DB_STD(ostream) *get_error_stream();
  606. virtual void set_error_stream(__DB_STD(ostream) *);
  607. virtual __DB_STD(ostream) *get_message_stream();
  608. virtual void set_message_stream(__DB_STD(ostream) *);
  609. // used internally
  610. static void runtime_error(DbEnv *dbenv, const char *caller, int err,
  611. int error_policy);
  612. static void runtime_error_dbt(DbEnv *dbenv, const char *caller, Dbt *dbt,
  613. int error_policy);
  614. static void runtime_error_lock_get(DbEnv *dbenv, const char *caller,
  615. int err, db_lockop_t op, db_lockmode_t mode,
  616. Dbt *obj, DbLock lock, int index,
  617. int error_policy);
  618. // Lock functions
  619. //
  620. virtual int lock_detect(u_int32_t flags, u_int32_t atype, int *aborted);
  621. virtual int lock_get(u_int32_t locker, u_int32_t flags, Dbt *obj,
  622. db_lockmode_t lock_mode, DbLock *lock);
  623. virtual int lock_id(u_int32_t *idp);
  624. virtual int lock_id_free(u_int32_t id);
  625. virtual int lock_put(DbLock *lock);
  626. virtual int lock_stat(DB_LOCK_STAT **statp, u_int32_t flags);
  627. virtual int lock_stat_print(u_int32_t flags);
  628. virtual int lock_vec(u_int32_t locker, u_int32_t flags,
  629. DB_LOCKREQ list[], int nlist, DB_LOCKREQ **elistp);
  630. // Log functions
  631. //
  632. virtual int log_archive(char **list[], u_int32_t flags);
  633. static int log_compare(const DbLsn *lsn0, const DbLsn *lsn1);
  634. virtual int log_cursor(DbLogc **cursorp, u_int32_t flags);
  635. virtual int log_file(DbLsn *lsn, char *namep, size_t len);
  636. virtual int log_flush(const DbLsn *lsn);
  637. virtual int log_get_config(u_int32_t, int *);
  638. virtual int log_put(DbLsn *lsn, const Dbt *data, u_int32_t flags);
  639. virtual int log_printf(DbTxn *, const char *, ...);
  640. virtual int log_set_config(u_int32_t, int);
  641. virtual int log_stat(DB_LOG_STAT **spp, u_int32_t flags);
  642. virtual int log_stat_print(u_int32_t flags);
  643. virtual int log_verify(DB_LOG_VERIFY_CONFIG *);
  644. // Mpool functions
  645. //
  646. virtual int memp_fcreate(DbMpoolFile **dbmfp, u_int32_t flags);
  647. virtual int memp_register(int ftype,
  648. pgin_fcn_type pgin_fcn,
  649. pgout_fcn_type pgout_fcn);
  650. virtual int memp_stat(DB_MPOOL_STAT
  651. **gsp, DB_MPOOL_FSTAT ***fsp, u_int32_t flags);
  652. virtual int memp_stat_print(u_int32_t flags);
  653. virtual int memp_sync(DbLsn *lsn);
  654. virtual int memp_trickle(int pct, int *nwrotep);
  655. // Mpool functions
  656. //
  657. virtual int mutex_alloc(u_int32_t, db_mutex_t *);
  658. virtual int mutex_free(db_mutex_t);
  659. virtual int mutex_get_align(u_int32_t *);
  660. virtual int mutex_get_increment(u_int32_t *);
  661. virtual int mutex_get_init(u_int32_t *);
  662. virtual int mutex_get_max(u_int32_t *);
  663. virtual int mutex_get_tas_spins(u_int32_t *);
  664. virtual int mutex_lock(db_mutex_t);
  665. virtual int mutex_set_align(u_int32_t);
  666. virtual int mutex_set_increment(u_int32_t);
  667. virtual int mutex_set_init(u_int32_t);
  668. virtual int mutex_set_max(u_int32_t);
  669. virtual int mutex_set_tas_spins(u_int32_t);
  670. virtual int mutex_stat(DB_MUTEX_STAT **, u_int32_t);
  671. virtual int mutex_stat_print(u_int32_t);
  672. virtual int mutex_unlock(db_mutex_t);
  673. // Transaction functions
  674. //
  675. virtual int txn_begin(DbTxn *pid, DbTxn **tid, u_int32_t flags);
  676. virtual int txn_checkpoint(u_int32_t kbyte, u_int32_t min,
  677. u_int32_t flags);
  678. virtual int txn_recover(DbPreplist *preplist, long count,
  679. long *retp, u_int32_t flags);
  680. virtual int txn_stat(DB_TXN_STAT **statp, u_int32_t flags);
  681. virtual int txn_stat_print(u_int32_t flags);
  682. // Replication functions
  683. //
  684. virtual int rep_elect(u_int32_t, u_int32_t, u_int32_t);
  685. virtual int rep_flush();
  686. virtual int rep_process_message(Dbt *, Dbt *, int, DbLsn *);
  687. virtual int rep_start(Dbt *, u_int32_t);
  688. virtual int rep_stat(DB_REP_STAT **statp, u_int32_t flags);
  689. virtual int rep_stat_print(u_int32_t flags);
  690. virtual int rep_get_clockskew(u_int32_t *, u_int32_t *);
  691. virtual int rep_set_clockskew(u_int32_t, u_int32_t);
  692. virtual int rep_get_limit(u_int32_t *, u_int32_t *);
  693. virtual int rep_set_limit(u_int32_t, u_int32_t);
  694. virtual int rep_set_transport(int, int (*)(DbEnv *,
  695. const Dbt *, const Dbt *, const DbLsn *, int, u_int32_t));
  696. virtual int rep_set_request(u_int32_t, u_int32_t);
  697. virtual int rep_get_request(u_int32_t *, u_int32_t *);
  698. virtual int get_thread_count(u_int32_t *);
  699. virtual int set_thread_count(u_int32_t);
  700. virtual int get_thread_id_fn(
  701. void (**)(DbEnv *, pid_t *, db_threadid_t *));
  702. virtual int set_thread_id(void (*)(DbEnv *, pid_t *, db_threadid_t *));
  703. virtual int get_thread_id_string_fn(
  704. char *(**)(DbEnv *, pid_t, db_threadid_t, char *));
  705. virtual int set_thread_id_string(char *(*)(DbEnv *,
  706. pid_t, db_threadid_t, char *));
  707. virtual int rep_set_config(u_int32_t, int);
  708. virtual int rep_get_config(u_int32_t, int *);
  709. virtual int rep_sync(u_int32_t flags);
  710. // Advanced replication functions
  711. //
  712. virtual int rep_get_nsites(u_int32_t *n);
  713. virtual int rep_set_nsites(u_int32_t n);
  714. virtual int rep_get_priority(u_int32_t *priorityp);
  715. virtual int rep_set_priority(u_int32_t priority);
  716. virtual int rep_get_timeout(int which, db_timeout_t *timeout);
  717. virtual int rep_set_timeout(int which, db_timeout_t timeout);
  718. virtual int rep_set_view(int (*)(DbEnv *,
  719. const char *, int *, u_int32_t));
  720. virtual int repmgr_channel(int eid, DbChannel **channel,
  721. u_int32_t flags);
  722. virtual int repmgr_get_ack_policy(int *policy);
  723. virtual int repmgr_set_ack_policy(int policy);
  724. virtual int repmgr_local_site(DbSite **site);
  725. virtual int repmgr_msg_dispatch(void (*) (DbEnv *,
  726. DbChannel *, Dbt *, u_int32_t, u_int32_t), u_int32_t flags);
  727. virtual int repmgr_site(const char *host, u_int port, DbSite **site,
  728. u_int32_t flags);
  729. virtual int repmgr_site_by_eid(int eid, DbSite **site);
  730. virtual int repmgr_site_list(u_int *countp, DB_REPMGR_SITE **listp);
  731. virtual int repmgr_start(int nthreads, u_int32_t flags);
  732. virtual int repmgr_stat(DB_REPMGR_STAT **statp, u_int32_t flags);
  733. virtual int repmgr_stat_print(u_int32_t flags);
  734. // Conversion functions
  735. //
  736. virtual ENV *get_ENV()
  737. {
  738. return imp_->env;
  739. }
  740. virtual DB_ENV *get_DB_ENV()
  741. {
  742. return imp_;
  743. }
  744. virtual const DB_ENV *get_const_DB_ENV() const
  745. {
  746. return imp_;
  747. }
  748. static DbEnv* get_DbEnv(DB_ENV *dbenv)
  749. {
  750. return dbenv ? (DbEnv *)dbenv->api1_internal : 0;
  751. }
  752. static const DbEnv* get_const_DbEnv(const DB_ENV *dbenv)
  753. {
  754. return dbenv ? (const DbEnv *)dbenv->api1_internal : 0;
  755. }
  756. u_int32_t get_create_flags() const
  757. {
  758. return construct_flags_;
  759. }
  760. // For internal use only.
  761. static DbEnv* wrap_DB_ENV(DB_ENV *dbenv);
  762. // These are public only because they need to be called
  763. // via C functions. They should never be called by users
  764. // of this class.
  765. //
  766. static int _app_dispatch_intercept(DB_ENV *dbenv, DBT *dbt, DB_LSN *lsn,
  767. db_recops op);
  768. static int _backup_close_intercept(DB_ENV *dbenv,
  769. const char *dbname, void *handle);
  770. static int _backup_open_intercept(DB_ENV *dbenv,
  771. const char *dbname, const char *target, void **handle);
  772. static int _backup_write_intercept(DB_ENV *dbenv, u_int32_t off_gbytes,
  773. u_int32_t off_bytes, u_int32_t size, u_int8_t *buf, void *handle);
  774. static void _paniccall_intercept(DB_ENV *dbenv, int errval);
  775. static int _partial_rep_intercept(DB_ENV *dbenv,
  776. const char *name, int *result, u_int32_t flags);
  777. static void _feedback_intercept(DB_ENV *dbenv, int opcode, int pct);
  778. static void _event_func_intercept(DB_ENV *dbenv, u_int32_t, void *);
  779. static int _isalive_intercept(DB_ENV *dbenv, pid_t pid,
  780. db_threadid_t thrid, u_int32_t flags);
  781. static int _rep_send_intercept(DB_ENV *dbenv, const DBT *cntrl,
  782. const DBT *data, const DB_LSN *lsn, int id, u_int32_t flags);
  783. static void _stream_error_function(const DB_ENV *dbenv,
  784. const char *prefix, const char *message);
  785. static void _stream_message_function(const DB_ENV *dbenv,
  786. const char *message);
  787. static void _thread_id_intercept(DB_ENV *dbenv, pid_t *pidp,
  788. db_threadid_t *thridp);
  789. static char *_thread_id_string_intercept(DB_ENV *dbenv, pid_t pid,
  790. db_threadid_t thrid, char *buf);
  791. static void _message_dispatch_intercept(DB_ENV *dbenv,
  792. DB_CHANNEL *dbchannel, DBT *request, u_int32_t nrequest,
  793. u_int32_t cb_flags);
  794. private:
  795. void cleanup();
  796. int initialize(DB_ENV *dbenv);
  797. int error_policy();
  798. // For internal use only.
  799. DbEnv(DB_ENV *, u_int32_t flags);
  800. // no copying
  801. DbEnv(const DbEnv &);
  802. void operator = (const DbEnv &);
  803. // instance data
  804. DB_ENV *imp_;
  805. int construct_error_;
  806. u_int32_t construct_flags_;
  807. __DB_STD(ostream) *error_stream_;
  808. __DB_STD(ostream) *message_stream_;
  809. int (*app_dispatch_callback_)(DbEnv *, Dbt *, DbLsn *, db_recops);
  810. int (*backup_close_callback_)(DbEnv *, const char *, void *);
  811. int (*backup_open_callback_)(
  812. DbEnv *, const char *, const char *, void **);
  813. int (*backup_write_callback_)(
  814. DbEnv *, u_int32_t, u_int32_t, u_int32_t, u_int8_t *, void *);
  815. int (*isalive_callback_)(DbEnv *, pid_t, db_threadid_t, u_int32_t);
  816. void (*error_callback_)(const DbEnv *, const char *, const char *);
  817. void (*feedback_callback_)(DbEnv *, int, int);
  818. void (*message_callback_)(const DbEnv *, const char *);
  819. void (*paniccall_callback_)(DbEnv *, int);
  820. int (*partial_rep_callback_)(DbEnv *, const char *, int *, u_int32_t);
  821. void (*event_func_callback_)(DbEnv *, u_int32_t, void *);
  822. int (*rep_send_callback_)(DbEnv *, const Dbt *, const Dbt *,
  823. const DbLsn *, int, u_int32_t);
  824. void (*thread_id_callback_)(DbEnv *, pid_t *, db_threadid_t *);
  825. char *(*thread_id_string_callback_)(DbEnv *, pid_t, db_threadid_t,
  826. char *);
  827. void (*message_dispatch_callback_)(DbEnv *, DbChannel *, Dbt *,
  828. u_int32_t, u_int32_t);
  829. };
  830. //
  831. // Heap record id
  832. //
  833. class _exported DbHeapRecordId : private DB_HEAP_RID
  834. {
  835. public:
  836. db_pgno_t get_pgno() const { return pgno; }
  837. void set_pgno(db_pgno_t value) { pgno = value; }
  838. db_indx_t get_indx() const { return indx; }
  839. void set_indx(db_indx_t value) { indx = value; }
  840. DB_HEAP_RID *get_DB_HEAP_RID() { return (DB_HEAP_RID *)this; }
  841. const DB_HEAP_RID *get_const_DB_HEAP_RID() const
  842. { return (const DB_HEAP_RID *)this; }
  843. static DbHeapRecordId* get_DbHeapRecordId(DB_HEAP_RID *rid)
  844. { return (DbHeapRecordId *)rid; }
  845. static const DbHeapRecordId* get_const_DbHeapRecordId(DB_HEAP_RID *rid)
  846. { return (const DbHeapRecordId *)rid; }
  847. DbHeapRecordId(db_pgno_t pgno, db_indx_t indx);
  848. DbHeapRecordId();
  849. ~DbHeapRecordId();
  850. DbHeapRecordId(const DbHeapRecordId &);
  851. DbHeapRecordId &operator = (const DbHeapRecordId &);
  852. };
  853. //
  854. // Lock
  855. //
  856. class _exported DbLock
  857. {
  858. friend class DbEnv;
  859. public:
  860. DbLock();
  861. DbLock(const DbLock &);
  862. DbLock &operator = (const DbLock &);
  863. protected:
  864. // We can add data to this class if needed
  865. // since its contained class is not allocated by db.
  866. // (see comment at top)
  867. DbLock(DB_LOCK);
  868. DB_LOCK lock_;
  869. };
  870. //
  871. // Log cursor
  872. //
  873. class _exported DbLogc : protected DB_LOGC
  874. {
  875. friend class DbEnv;
  876. public:
  877. int close(u_int32_t _flags);
  878. int get(DbLsn *lsn, Dbt *data, u_int32_t _flags);
  879. int version(u_int32_t *versionp, u_int32_t _flags);
  880. private:
  881. // No data is permitted in this class (see comment at top)
  882. // Note: use Db::cursor() to get pointers to a Dbc,
  883. // and call Dbc::close() rather than delete to release them.
  884. //
  885. DbLogc();
  886. ~DbLogc();
  887. // no copying
  888. DbLogc(const Dbc &);
  889. DbLogc &operator = (const Dbc &);
  890. };
  891. //
  892. // Log sequence number
  893. //
  894. class _exported DbLsn : public DB_LSN
  895. {
  896. friend class DbEnv; // friendship needed to cast to base class
  897. friend class DbLogc; // friendship needed to cast to base class
  898. };
  899. //
  900. // Memory pool file
  901. //
  902. class _exported DbMpoolFile
  903. {
  904. friend class DbEnv;
  905. friend class Db;
  906. public:
  907. int close(u_int32_t flags);
  908. int get(db_pgno_t *pgnoaddr, DbTxn *txn, u_int32_t flags, void *pagep);
  909. int get_clear_len(u_int32_t *len);
  910. int get_fileid(u_int8_t *fileid);
  911. int get_flags(u_int32_t *flagsp);
  912. int get_ftype(int *ftype);
  913. int get_last_pgno(db_pgno_t *pgnop);
  914. int get_lsn_offset(int32_t *offsetp);
  915. int get_maxsize(u_int32_t *gbytes, u_int32_t *bytes);
  916. int get_pgcookie(DBT *dbt);
  917. int get_priority(DB_CACHE_PRIORITY *priorityp);
  918. int get_transactional(void);
  919. int open(const char *file, u_int32_t flags, int mode, size_t pagesize);
  920. int put(void *pgaddr, DB_CACHE_PRIORITY priority, u_int32_t flags);
  921. int set_clear_len(u_int32_t len);
  922. int set_fileid(u_int8_t *fileid);
  923. int set_flags(u_int32_t flags, int onoff);
  924. int set_ftype(int ftype);
  925. int set_lsn_offset(int32_t offset);
  926. int set_maxsize(u_int32_t gbytes, u_int32_t bytes);
  927. int set_pgcookie(DBT *dbt);
  928. int set_priority(DB_CACHE_PRIORITY priority);
  929. int sync();
  930. virtual DB_MPOOLFILE *get_DB_MPOOLFILE()
  931. {
  932. return imp_;
  933. }
  934. virtual const DB_MPOOLFILE *get_const_DB_MPOOLFILE() const
  935. {
  936. return imp_;
  937. }
  938. private:
  939. DB_MPOOLFILE *imp_;
  940. // We can add data to this class if needed
  941. // since it is implemented via a pointer.
  942. // (see comment at top)
  943. // Note: use DbEnv::memp_fcreate() to get pointers to a DbMpoolFile,
  944. // and call DbMpoolFile::close() rather than delete to release them.
  945. //
  946. DbMpoolFile();
  947. // Shut g++ up.
  948. protected:
  949. virtual ~DbMpoolFile();
  950. private:
  951. // no copying
  952. DbMpoolFile(const DbMpoolFile &);
  953. void operator = (const DbMpoolFile &);
  954. };
  955. //
  956. // This is filled in and returned by the DbEnv::txn_recover() method.
  957. //
  958. class _exported DbPreplist
  959. {
  960. public:
  961. DbTxn *txn;
  962. u_int8_t gid[DB_GID_SIZE];
  963. };
  964. //
  965. // A sequence record in a database
  966. //
  967. class _exported DbSequence
  968. {
  969. public:
  970. DbSequence(Db *db, u_int32_t flags);
  971. virtual ~DbSequence();
  972. int open(DbTxn *txnid, Dbt *key, u_int32_t flags);
  973. int initial_value(db_seq_t value);
  974. int close(u_int32_t flags);
  975. int remove(DbTxn *txnid, u_int32_t flags);
  976. int stat(DB_SEQUENCE_STAT **sp, u_int32_t flags);
  977. int stat_print(u_int32_t flags);
  978. int get(DbTxn *txnid, u_int32_t delta, db_seq_t *retp, u_int32_t flags);
  979. int get_cachesize(u_int32_t *sizep);
  980. int set_cachesize(u_int32_t size);
  981. int get_flags(u_int32_t *flagsp);
  982. int set_flags(u_int32_t flags);
  983. int get_range(db_seq_t *minp, db_seq_t *maxp);
  984. int set_range(db_seq_t min, db_seq_t max);
  985. Db *get_db();
  986. Dbt *get_key();
  987. virtual DB_SEQUENCE *get_DB_SEQUENCE()
  988. {
  989. return imp_;
  990. }
  991. virtual const DB_SEQUENCE *get_const_DB_SEQUENCE() const
  992. {
  993. return imp_;
  994. }
  995. static DbSequence* get_DbSequence(DB_SEQUENCE *seq)
  996. {
  997. return (DbSequence *)seq->api_internal;
  998. }
  999. static const DbSequence* get_const_DbSequence(const DB_SEQUENCE *seq)
  1000. {
  1001. return (const DbSequence *)seq->api_internal;
  1002. }
  1003. // For internal use only.
  1004. static DbSequence* wrap_DB_SEQUENCE(DB_SEQUENCE *seq);
  1005. private:
  1006. DbSequence(DB_SEQUENCE *seq);
  1007. // no copying
  1008. DbSequence(const DbSequence &);
  1009. DbSequence &operator = (const DbSequence &);
  1010. DB_SEQUENCE *imp_;
  1011. DBT key_;
  1012. };
  1013. //
  1014. // A site in replication group
  1015. //
  1016. class _exported DbSite
  1017. {
  1018. friend class DbEnv;
  1019. public:
  1020. int close();
  1021. int get_address(const char **hostp, u_int *port);
  1022. int get_config(u_int32_t which, u_int32_t *value);
  1023. int get_eid(int *eidp);
  1024. int remove();
  1025. int set_config(u_int32_t which, u_int32_t value);
  1026. virtual DB_SITE *get_DB_SITE()
  1027. {
  1028. return imp_;
  1029. }
  1030. virtual const DB_SITE *get_const_DB_SITE() const
  1031. {
  1032. return imp_;
  1033. }
  1034. private:
  1035. DbSite();
  1036. virtual ~DbSite();
  1037. // no copying
  1038. DbSite(const DbSite &);
  1039. DbSite &operator = (const DbSite &);
  1040. DB_SITE *imp_;
  1041. };
  1042. //
  1043. // DbStream
  1044. //
  1045. class _exported DbStream : protected DB_STREAM
  1046. {
  1047. friend class Dbc;
  1048. public:
  1049. int close(u_int32_t flags);
  1050. int read(Dbt *data, db_off_t offset, u_int32_t size, u_int32_t flags);
  1051. int size(db_off_t *size, u_int32_t flags);
  1052. int write(Dbt *data, db_off_t offset, u_int32_t flags);
  1053. private:
  1054. // No data is permitted in this class (see comment at top)
  1055. // Note: use Dbc::dbstream() to get pointers to a DbStream,
  1056. // and call Dbstream::close() rather than delete to release them.
  1057. //
  1058. DbStream();
  1059. ~DbStream();
  1060. // no copying
  1061. DbStream(const DbStream &);
  1062. DbStream &operator = (const DbStream &);
  1063. };
  1064. //
  1065. // Transaction
  1066. //
  1067. class _exported DbTxn
  1068. {
  1069. friend class DbEnv;
  1070. public:
  1071. int abort();
  1072. int commit(u_int32_t flags);
  1073. int discard(u_int32_t flags);
  1074. u_int32_t id();
  1075. int get_name(const char **namep);
  1076. int get_priority(u_int32_t *priorityp);
  1077. int prepare(u_int8_t *gid);
  1078. int set_name(const char *name);
  1079. int set_priority(u_int32_t priority);
  1080. int set_timeout(db_timeout_t timeout, u_int32_t flags);
  1081. virtual DB_TXN *get_DB_TXN()
  1082. {
  1083. return imp_;
  1084. }
  1085. virtual const DB_TXN *get_const_DB_TXN() const
  1086. {
  1087. return imp_;
  1088. }
  1089. static DbTxn* get_DbTxn(DB_TXN *txn)
  1090. {
  1091. return (DbTxn *)txn->api_internal;
  1092. }
  1093. static const DbTxn* get_const_DbTxn(const DB_TXN *txn)
  1094. {
  1095. return (const DbTxn *)txn->api_internal;
  1096. }
  1097. // For internal use only.
  1098. static DbTxn* wrap_DB_TXN(DB_TXN *txn);
  1099. void remove_child_txn(DbTxn *kid);
  1100. void add_child_txn(DbTxn *kid);
  1101. void set_parent(DbTxn *ptxn)
  1102. {
  1103. parent_txn_ = ptxn;
  1104. }
  1105. private:
  1106. DB_TXN *imp_;
  1107. // We use a TAILQ to store this object's kids of DbTxn objects, and
  1108. // each kid has a "parent_txn_" to point to this DbTxn object.
  1109. //
  1110. // If imp_ has a parent transaction which is not wrapped by DbTxn
  1111. // class, parent_txn_ will be NULL since we don't need to maintain
  1112. // this parent-kid relationship. This relationship only helps to
  1113. // delete unresolved kids when the parent is resolved.
  1114. DbTxn *parent_txn_;
  1115. // We can add data to this class if needed
  1116. // since it is implemented via a pointer.
  1117. // (see comment at top)
  1118. // Note: use DbEnv::txn_begin() to get pointers to a DbTxn,
  1119. // and call DbTxn::abort() or DbTxn::commit rather than
  1120. // delete to release them.
  1121. //
  1122. DbTxn(DbTxn *ptxn);
  1123. // For internal use only.
  1124. DbTxn(DB_TXN *txn, DbTxn *ptxn);
  1125. virtual ~DbTxn();
  1126. // no copying
  1127. DbTxn(const DbTxn &);
  1128. void operator = (const DbTxn &);
  1129. /*
  1130. * !!!
  1131. * Explicit representations of structures from queue.h.
  1132. * TAILQ_HEAD(__children, DbTxn) children;
  1133. */
  1134. struct __children {
  1135. DbTxn *tqh_first;
  1136. DbTxn **tqh_last;
  1137. } children;
  1138. /*
  1139. * !!!
  1140. * Explicit representations of structures from queue.h.
  1141. * TAILQ_ENTRY(DbTxn) child_entry;
  1142. */
  1143. struct {
  1144. DbTxn *tqe_next;
  1145. DbTxn **tqe_prev;
  1146. } child_entry;
  1147. };
  1148. //
  1149. // A chunk of data, maybe a key or value.
  1150. //
  1151. class _exported Dbt : private DBT
  1152. {
  1153. friend class Db;
  1154. friend class Dbc;
  1155. friend class DbEnv;
  1156. friend class DbLogc;
  1157. friend class DbSequence;
  1158. friend class DbStream;
  1159. public:
  1160. // key/data
  1161. void *get_data() const { return data; }
  1162. void set_data(void *value) { data = value; }
  1163. // key/data length
  1164. u_int32_t get_size() const { return size; }
  1165. void set_size(u_int32_t value) { size = value; }
  1166. // RO: length of user buffer.
  1167. u_int32_t get_ulen() const { return ulen; }
  1168. void set_ulen(u_int32_t value) { ulen = value; }
  1169. // RO: get/put record length.
  1170. u_int32_t get_dlen() const { return dlen; }
  1171. void set_dlen(u_int32_t value) { dlen = value; }
  1172. // RO: get/put record offset.
  1173. u_int32_t get_doff() const { return doff; }
  1174. void set_doff(u_int32_t value) { doff = value; }
  1175. // flags
  1176. u_int32_t get_flags() const { return flags; }
  1177. void set_flags(u_int32_t value) { flags = value; }
  1178. // Conversion functions
  1179. DBT *get_DBT() { return (DBT *)this; }
  1180. const DBT *get_const_DBT() const { return (const DBT *)this; }
  1181. static Dbt* get_Dbt(DBT *dbt) { return (Dbt *)dbt; }
  1182. static const Dbt* get_const_Dbt(const DBT *dbt)
  1183. { return (const Dbt *)dbt; }
  1184. Dbt(void *data, u_int32_t size);
  1185. Dbt();
  1186. ~Dbt();
  1187. Dbt(const Dbt &);
  1188. Dbt &operator = (const Dbt &);
  1189. private:
  1190. // Note: no extra data appears in this class (other than
  1191. // inherited from DBT) since we need DBT and Dbt objects
  1192. // to have interchangable pointers.
  1193. //
  1194. // When subclassing this class, remember that callback
  1195. // methods like bt_compare, bt_prefix, dup_compare may
  1196. // internally manufacture DBT objects (which later are
  1197. // cast to Dbt), so such callbacks might receive objects
  1198. // not of your subclassed type.
  1199. };
  1200. ////////////////////////////////////////////////////////////////
  1201. ////////////////////////////////////////////////////////////////
  1202. //
  1203. // multiple key/data/recno iterator classes
  1204. //
  1205. // DbMultipleIterator is a shared private base class for the three types
  1206. // of bulk-return Iterator; it should never be instantiated directly,
  1207. // but it handles the functionality shared by its subclasses.
  1208. class _exported DbMultipleIterator
  1209. {
  1210. public:
  1211. DbMultipleIterator(const Dbt &dbt);
  1212. protected:
  1213. u_int8_t *data_;
  1214. u_int32_t *p_;
  1215. };
  1216. class _exported DbMultipleKeyDataIterator : private DbMultipleIterator
  1217. {
  1218. public:
  1219. DbMultipleKeyDataIterator(const Dbt &dbt) : DbMultipleIterator(dbt) {}
  1220. bool next(Dbt &key, Dbt &data);
  1221. };
  1222. class _exported DbMultipleRecnoDataIterator : private DbMultipleIterator
  1223. {
  1224. public:
  1225. DbMultipleRecnoDataIterator(const Dbt &dbt) : DbMultipleIterator(dbt) {}
  1226. bool next(db_recno_t &recno, Dbt &data);
  1227. };
  1228. class _exported DbMultipleDataIterator : private DbMultipleIterator
  1229. {
  1230. public:
  1231. DbMultipleDataIterator(const Dbt &dbt) : DbMultipleIterator(dbt) {}
  1232. bool next(Dbt &data);
  1233. };
  1234. ////////////////////////////////////////////////////////////////
  1235. ////////////////////////////////////////////////////////////////
  1236. //
  1237. // multiple key/data/recno builder classes
  1238. //
  1239. // DbMultipleBuilder is a shared private base class for the three types
  1240. // of bulk buffer builders; it should never be instantiated directly,
  1241. // but it handles the functionality shared by its subclasses.
  1242. class _exported DbMultipleBuilder
  1243. {
  1244. public:
  1245. DbMultipleBuilder(Dbt &dbt);
  1246. protected:
  1247. Dbt &dbt_;
  1248. void *p_;
  1249. };
  1250. class _exported DbMultipleDataBuilder : DbMultipleBuilder
  1251. {
  1252. public:
  1253. DbMultipleDataBuilder(Dbt &dbt) : DbMultipleBuilder(dbt) {}
  1254. bool append(void *dbuf, size_t dlen);
  1255. bool reserve(void *&ddest, size_t dlen);
  1256. };
  1257. class _exported DbMultipleKeyDataBuilder : DbMultipleBuilder
  1258. {
  1259. public:
  1260. DbMultipleKeyDataBuilder(Dbt &dbt) : DbMultipleBuilder(dbt) {}
  1261. bool append(void *kbuf, size_t klen, void *dbuf, size_t dlen);
  1262. bool reserve(void *&kdest, size_t klen, void *&ddest, size_t dlen);
  1263. };
  1264. class _exported DbMultipleRecnoDataBuilder
  1265. {
  1266. public:
  1267. DbMultipleRecnoDataBuilder(Dbt &dbt);
  1268. bool append(db_recno_t recno, void *dbuf, size_t dlen);
  1269. bool reserve(db_recno_t recno, void *&ddest, size_t dlen);
  1270. protected:
  1271. Dbt &dbt_;
  1272. void *p_;
  1273. };
  1274. ////////////////////////////////////////////////////////////////
  1275. ////////////////////////////////////////////////////////////////
  1276. //
  1277. // Exception classes
  1278. //
  1279. // Almost any error in the DB library throws a DbException.
  1280. // Every exception should be considered an abnormality
  1281. // (e.g. bug, misuse of DB, file system error).
  1282. //
  1283. class _exported DbException : public __DB_STD(exception)
  1284. {
  1285. public:
  1286. virtual ~DbException() throw();
  1287. DbException(int err);
  1288. DbException(const char *description);
  1289. DbException(const char *description, int err);
  1290. DbException(const char *prefix, const char *description, int err);
  1291. int get_errno() const;
  1292. virtual const char *what() const throw();
  1293. DbEnv *get_env() const;
  1294. void set_env(DbEnv *dbenv);
  1295. DbException(const DbException &);
  1296. DbException &operator = (const DbException &);
  1297. private:
  1298. void describe(const char *prefix, const char *description);
  1299. char *what_;
  1300. int err_; // errno
  1301. DbEnv *dbenv_;
  1302. };
  1303. //
  1304. // A specific sort of exception that occurs when
  1305. // an operation is aborted to resolve a deadlock.
  1306. //
  1307. class _exported DbDeadlockException : public DbException
  1308. {
  1309. public:
  1310. virtual ~DbDeadlockException() throw();
  1311. DbDeadlockException(const char *description);
  1312. DbDeadlockException(const DbDeadlockException &);
  1313. DbDeadlockException &operator = (const DbDeadlockException &);
  1314. };
  1315. //
  1316. // A specific sort of exception that occurs when
  1317. // a lock is not granted, e.g. by lock_get or lock_vec.
  1318. // Note that the Dbt is only live as long as the Dbt used
  1319. // in the offending call.
  1320. //
  1321. class _exported DbLockNotGrantedException : public DbException
  1322. {
  1323. public:
  1324. virtual ~DbLockNotGrantedException() throw();
  1325. DbLockNotGrantedException(const char *prefix, db_lockop_t op,
  1326. db_lockmode_t mode, const Dbt *obj, const DbLock lock, int index);
  1327. DbLockNotGrantedException(const char *description);
  1328. DbLockNotGrantedException(const DbLockNotGrantedException &);
  1329. DbLockNotGrantedException &operator =
  1330. (const DbLockNotGrantedException &);
  1331. db_lockop_t get_op() const;
  1332. db_lockmode_t get_mode() const;
  1333. const Dbt* get_obj() const;
  1334. DbLock *get_lock() const;
  1335. int get_index() const;
  1336. private:
  1337. db_lockop_t op_;
  1338. db_lockmode_t mode_;
  1339. const Dbt *obj_;
  1340. DbLock *lock_;
  1341. int index_;
  1342. };
  1343. //
  1344. // A specific sort of exception that occurs when
  1345. // user declared memory is insufficient in a Dbt.
  1346. //
  1347. class _exported DbMemoryException : public DbException
  1348. {
  1349. public:
  1350. virtual ~DbMemoryException() throw();
  1351. DbMemoryException(Dbt *dbt);
  1352. DbMemoryException(const char *prefix, Dbt *dbt);
  1353. DbMemoryException(const DbMemoryException &);
  1354. DbMemoryException &operator = (const DbMemoryException &);
  1355. Dbt *get_dbt() const;
  1356. private:
  1357. Dbt *dbt_;
  1358. };
  1359. //
  1360. // A specific sort of exception that occurs when a change of replication
  1361. // master requires that all handles be re-opened.
  1362. //
  1363. class _exported DbRepHandleDeadException : public DbException
  1364. {
  1365. public:
  1366. virtual ~DbRepHandleDeadException() throw();
  1367. DbRepHandleDeadException(const char *description);
  1368. DbRepHandleDeadException(const DbRepHandleDeadException &);
  1369. DbRepHandleDeadException &operator = (const DbRepHandleDeadException &);
  1370. };
  1371. //
  1372. // A specific sort of exception that occurs when
  1373. // recovery is required before continuing DB activity.
  1374. //
  1375. class _exported DbRunRecoveryException : public DbException
  1376. {
  1377. public:
  1378. virtual ~DbRunRecoveryException() throw();
  1379. DbRunRecoveryException(const char *description);
  1380. DbRunRecoveryException(const DbRunRecoveryException &);
  1381. DbRunRecoveryException &operator = (const DbRunRecoveryException &);
  1382. };
  1383. //
  1384. // A specific sort of exception that occurs when
  1385. ////////////////////////////////////////////////////////////////
  1386. ////////////////////////////////////////////////////////////////
  1387. //
  1388. // Restore default compiler warnings
  1389. //
  1390. #ifdef _MSC_VER
  1391. #pragma warning(pop)
  1392. #endif
  1393. #endif /* !_DB_CXX_H_ */