1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
|
/*-
* See the file LICENSE for redistribution information.
*
* Copyright (c) 1997-2001
* Sleepycat Software. All rights reserved.
*/
#include "db_config.h"
#ifndef lint
static const char revid[] = "Id: cxx_db.cpp,v 11.49 2001/07/28 20:01:18 dda Exp ";
#endif /* not lint */
#include <errno.h>
#include <string.h>
#include "db_cxx.h"
#include "cxx_int.h"
#include "db_int.h"
#include "db_page.h"
#include "db_auto.h"
#include "crdel_auto.h"
#include "db_ext.h"
#include "common_ext.h"
// A truism for the Db object is that there is a valid
// DB handle from the constructor until close().
// After the close, the DB handle is invalid and
// no operations are permitted on the Db (other than
// destructor). Leaving the Db handle open and not
// doing a close is generally considered an error.
//
// We used to allow Db objects to be closed and reopened.
// This implied always keeping a valid DB object, and
// coordinating the open objects between Db/DbEnv turned
// out to be overly complicated. Now we do not allow this.
Db::Db(DbEnv *env, u_int32_t flags)
: imp_(0)
, env_(env)
, construct_error_(0)
, flags_(0)
, construct_flags_(flags)
{
if (env_ == 0)
flags_ |= DB_CXX_PRIVATE_ENV;
initialize();
}
// Note: if the user has not closed, we call _destroy_check
// to warn against this non-safe programming practice.
// We can't close, because the environment may already
// be closed/destroyed.
//
Db::~Db()
{
DB *db;
db = unwrap(this);
if (db != NULL) {
DbEnv::_destroy_check("Db", 0);
cleanup();
}
}
// private method to initialize during constructor.
// initialize must create a backing DB object,
// and if that creates a new DB_ENV, it must be tied to a new DbEnv.
// If there is an error, construct_error_ is set; this is examined
// during open.
//
int Db::initialize()
{
u_int32_t cxx_flags;
DB *db;
int err;
DB_ENV *cenv = unwrap(env_);
cxx_flags = construct_flags_ & DB_CXX_NO_EXCEPTIONS;
// Create a new underlying DB object.
// We rely on the fact that if a NULL DB_ENV* is given,
// one is allocated by DB.
//
if ((err = db_create(&db, cenv,
construct_flags_ & ~cxx_flags)) != 0) {
construct_error_ = err;
return (err);
}
// Associate the DB with this object
imp_ = wrap(db);
db->cj_internal = this;
// Create a new DbEnv from a DB_ENV* if it was created locally.
// It is deleted in Db::close().
//
if ((flags_ & DB_CXX_PRIVATE_ENV) != 0)
env_ = new DbEnv(db->dbenv, cxx_flags);
return (0);
}
// private method to cleanup after destructor or during close.
// If the environment was created by this Db object, we optionally
// delete it, or return it so the caller can delete it after
// last use.
//
void Db::cleanup()
{
DB *db = unwrap(this);
if (db != NULL) {
// extra safety
db->cj_internal = 0;
imp_ = 0;
// we must dispose of the DbEnv object if
// we created it. This will be the case
// if a NULL DbEnv was passed into the constructor.
// The underlying DB_ENV object will be inaccessible
// after the close, so we must clean it up now.
//
if ((flags_ & DB_CXX_PRIVATE_ENV) != 0) {
env_->cleanup();
delete env_;
env_ = 0;
}
}
construct_error_ = 0;
}
// Return a tristate value corresponding to whether we should
// throw exceptions on errors:
// ON_ERROR_RETURN
// ON_ERROR_THROW
// ON_ERROR_UNKNOWN
//
int Db::error_policy()
{
if (env_ != NULL)
return (env_->error_policy());
else {
// If the env_ is null, that means that the user
// did not attach an environment, so the correct error
// policy can be deduced from constructor flags
// for this Db.
//
if ((construct_flags_ & DB_CXX_NO_EXCEPTIONS) != 0) {
return (ON_ERROR_RETURN);
}
else {
return (ON_ERROR_THROW);
}
}
}
int Db::close(u_int32_t flags)
{
DB *db = unwrap(this);
int err;
// after a DB->close (no matter if success or failure),
// the underlying DB object must not be accessed,
// so we clean up in advance.
//
cleanup();
// It's safe to throw an error after the close,
// since our error mechanism does not peer into
// the DB* structures.
//
if ((err = db->close(db, flags)) != 0 && err != DB_INCOMPLETE)
DB_ERROR("Db::close", err, error_policy());
return (err);
}
int Db::cursor(DbTxn *txnid, Dbc **cursorp, u_int32_t flags)
{
DB *db = unwrap(this);
DBC *dbc = 0;
int err;
if ((err = db->cursor(db, unwrap(txnid), &dbc, flags)) != 0) {
DB_ERROR("Db::cursor", err, error_policy());
return (err);
}
// The following cast implies that Dbc can be no larger than DBC
*cursorp = (Dbc*)dbc;
return (0);
}
int Db::del(DbTxn *txnid, Dbt *key, u_int32_t flags)
{
DB *db = unwrap(this);
int err;
if ((err = db->del(db, unwrap(txnid), key, flags)) != 0) {
// DB_NOTFOUND is a "normal" return, so should not be
// thrown as an error
//
if (err != DB_NOTFOUND) {
DB_ERROR("Db::del", err, error_policy());
return (err);
}
}
return (err);
}
void Db::err(int error, const char *format, ...)
{
va_list args;
DB *db = unwrap(this);
va_start(args, format);
__db_real_err(db->dbenv, error, 1, 1, format, args);
va_end(args);
}
void Db::errx(const char *format, ...)
{
va_list args;
DB *db = unwrap(this);
va_start(args, format);
__db_real_err(db->dbenv, 0, 0, 1, format, args);
va_end(args);
}
int Db::fd(int *fdp)
{
DB *db = unwrap(this);
int err;
if ((err = db->fd(db, fdp)) != 0) {
DB_ERROR("Db::fd", err, error_policy());
return (err);
}
return (0);
}
int Db::get(DbTxn *txnid, Dbt *key, Dbt *value, u_int32_t flags)
{
DB *db = unwrap(this);
int err;
if ((err = db->get(db, unwrap(txnid), key, value, flags)) != 0) {
// DB_NOTFOUND and DB_KEYEMPTY are "normal" returns,
// so should not be thrown as an error
//
if (err != DB_NOTFOUND && err != DB_KEYEMPTY) {
const char *name = "Db::get";
if (err == ENOMEM && DB_OVERFLOWED_DBT(value))
DB_ERROR_DBT(name, value, error_policy());
else
DB_ERROR(name, err, error_policy());
return (err);
}
}
return (err);
}
int Db::get_byteswapped(int *isswapped)
{
DB *db = (DB *)unwrapConst(this);
return (db->get_byteswapped(db, isswapped));
}
int Db::get_type(DBTYPE *dbtype)
{
DB *db = (DB *)unwrapConst(this);
return (db->get_type(db, dbtype));
}
int Db::join(Dbc **curslist, Dbc **cursorp, u_int32_t flags)
{
// Dbc is a "compatible" subclass of DBC -
// that is, no virtual functions or even extra data members,
// so this cast, although technically non-portable,
// "should" always be okay.
//
DBC **list = (DBC **)(curslist);
DB *db = unwrap(this);
DBC *dbc = 0;
int err;
if ((err = db->join(db, list, &dbc, flags)) != 0) {
DB_ERROR("Db::join_cursor", err, error_policy());
return (err);
}
*cursorp = (Dbc*)dbc;
return (0);
}
int Db::key_range(DbTxn *txnid, Dbt *key,
DB_KEY_RANGE *results, u_int32_t flags)
{
DB *db = unwrap(this);
int err;
if ((err = db->key_range(db, unwrap(txnid), key,
results, flags)) != 0) {
DB_ERROR("Db::key_range", err, error_policy());
return (err);
}
return (0);
}
// If an error occurred during the constructor, report it now.
// Otherwise, call the underlying DB->open method.
//
int Db::open(const char *file, const char *database,
DBTYPE type, u_int32_t flags, int mode)
{
int err;
DB *db = unwrap(this);
if ((err = construct_error_) != 0)
DB_ERROR("Db::open", construct_error_, error_policy());
else if ((err = db->open(db, file, database, type, flags, mode)) != 0)
DB_ERROR("Db::open", err, error_policy());
return (err);
}
int Db::pget(DbTxn *txnid, Dbt *key, Dbt *pkey, Dbt *value, u_int32_t flags)
{
DB *db = unwrap(this);
int err;
if ((err = db->pget(db, unwrap(txnid), key, pkey,
value, flags)) != 0) {
// DB_NOTFOUND and DB_KEYEMPTY are "normal" returns,
// so should not be thrown as an error
//
if (err != DB_NOTFOUND && err != DB_KEYEMPTY) {
const char *name = "Db::pget";
if (err == ENOMEM && DB_OVERFLOWED_DBT(value))
DB_ERROR_DBT(name, value, error_policy());
else
DB_ERROR(name, err, error_policy());
return (err);
}
}
return (err);
}
int Db::put(DbTxn *txnid, Dbt *key, Dbt *value, u_int32_t flags)
{
int err;
DB *db = unwrap(this);
if ((err = db->put(db, unwrap(txnid), key, value, flags)) != 0) {
// DB_KEYEXIST is a "normal" return, so should not be
// thrown as an error
//
if (err != DB_KEYEXIST) {
DB_ERROR("Db::put", err, error_policy());
return (err);
}
}
return (err);
}
int Db::rename(const char *file, const char *database,
const char *newname, u_int32_t flags)
{
int err = 0;
DB *db = unwrap(this);
if (!db) {
DB_ERROR("Db::rename", EINVAL, error_policy());
return (EINVAL);
}
// after a DB->rename (no matter if success or failure),
// the underlying DB object must not be accessed,
// so we clean up in advance.
//
cleanup();
if ((err = db->rename(db, file, database, newname, flags)) != 0) {
DB_ERROR("Db::rename", err, error_policy());
return (err);
}
return (0);
}
int Db::remove(const char *file, const char *database, u_int32_t flags)
{
int err = 0;
DB *db = unwrap(this);
if (!db) {
DB_ERROR("Db::remove", EINVAL, error_policy());
return (EINVAL);
}
// after a DB->remove (no matter if success or failure),
// the underlying DB object must not be accessed,
// so we clean up in advance.
//
cleanup();
if ((err = db->remove(db, file, database, flags)) != 0)
DB_ERROR("Db::remove", err, error_policy());
return (err);
}
int Db::truncate(DbTxn *txnid, u_int32_t *countp, u_int32_t flags)
{
int err = 0;
DB *db = unwrap(this);
if (!db) {
DB_ERROR("Db::truncate", EINVAL, error_policy());
return (EINVAL);
}
if ((err = db->truncate(db, unwrap(txnid), countp, flags)) != 0) {
DB_ERROR("Db::truncate", err, error_policy());
return (err);
}
return (0);
}
int Db::stat(void *sp, u_int32_t flags)
{
int err;
DB *db = unwrap(this);
if (!db) {
DB_ERROR("Db::stat", EINVAL, error_policy());
return (EINVAL);
}
if ((err = db->stat(db, sp, flags)) != 0) {
DB_ERROR("Db::stat", err, error_policy());
return (err);
}
return (0);
}
int Db::sync(u_int32_t flags)
{
int err;
DB *db = unwrap(this);
if (!db) {
DB_ERROR("Db::sync", EINVAL, error_policy());
return (EINVAL);
}
if ((err = db->sync(db, flags)) != 0 && err != DB_INCOMPLETE) {
DB_ERROR("Db::sync", err, error_policy());
return (err);
}
return (err);
}
int Db::upgrade(const char *name, u_int32_t flags)
{
int err;
DB *db = unwrap(this);
if (!db) {
DB_ERROR("Db::upgrade", EINVAL, error_policy());
return (EINVAL);
}
if ((err = db->upgrade(db, name, flags)) != 0) {
DB_ERROR("Db::upgrade", err, error_policy());
return (err);
}
return (0);
}
////////////////////////////////////////////////////////////////////////
//
// callbacks
//
// *_intercept_c are 'glue' functions that must be declared
// as extern "C" so to be typesafe. Using a C++ method, even
// a static class method with 'correct' arguments, will not pass
// the test; some picky compilers do not allow mixing of function
// pointers to 'C' functions with function pointers to C++ functions.
//
// One wart with this scheme is that the *_callback_ method pointer
// must be declared public to be accessible by the C intercept.
// It's possible to accomplish the goal without this, and with
// another public transfer method, but it's just too much overhead.
// These callbacks are supposed to be *fast*.
//
// The DBTs we receive in these callbacks from the C layer may be
// manufactured there, but we want to treat them as a Dbts.
// Technically speaking, these DBTs were not constructed as a Dbts,
// but it should be safe to cast them as such given that Dbt is a
// *very* thin extension of the DBT. That is, Dbt has no additional
// data elements, does not use virtual functions, virtual inheritance,
// multiple inheritance, RTI, or any other language feature that
// causes the structure to grow or be displaced. Although this may
// sound risky, a design goal of C++ is complete structure
// compatibility with C, and has the philosophy 'if you don't use it,
// you shouldn't incur the overhead'. If the C/C++ compilers you're
// using on a given machine do not have matching struct layouts, then
// a lot more things will be broken than just this.
//
// The alternative, creating a Dbt here in the callback, and populating
// it from the DBT, is just too slow and cumbersome to be very useful.
/* associate callback */
extern "C" int _db_associate_intercept_c(DB *secondary,
const DBT *key,
const DBT *data,
DBT *retval)
{
Db *cxxthis;
DB_ASSERT(secondary != NULL);
cxxthis = (Db *)secondary->cj_internal;
DB_ASSERT(cxxthis != NULL);
DB_ASSERT(cxxthis->associate_callback_ != 0);
return (*cxxthis->associate_callback_)(cxxthis,
Dbt::get_const_Dbt(key),
Dbt::get_const_Dbt(data),
Dbt::get_Dbt(retval));
}
int Db::associate(Db *secondary, int (*callback)(Db *, const Dbt *,
const Dbt *, Dbt *), u_int32_t flags)
{
DB *cthis = unwrap(this);
/* Since the secondary Db is used as the first argument
* to the callback, we store the C++ callback on it
* rather than on 'this'.
*/
secondary->associate_callback_ = callback;
return ((*(cthis->associate))
(cthis, unwrap(secondary), _db_associate_intercept_c, flags));
}
/* feedback callback */
extern "C" void _db_feedback_intercept_c(DB *cthis, int opcode, int pct)
{
Db *cxxthis;
DB_ASSERT(cthis != NULL);
cxxthis = (Db *)cthis->cj_internal;
DB_ASSERT(cxxthis != NULL);
DB_ASSERT(cxxthis->feedback_callback_ != 0);
(*cxxthis->feedback_callback_)(cxxthis, opcode, pct);
return;
}
int Db::set_feedback(void (*arg)(Db *cxxthis, int opcode, int pct))
{
DB *cthis = unwrap(this);
feedback_callback_ = arg;
return ((*(cthis->set_feedback))
(cthis, _db_feedback_intercept_c));
}
/* append_recno callback */
extern "C" int _db_append_recno_intercept_c(DB *cthis, DBT *data,
db_recno_t recno)
{
Db *cxxthis;
DB_ASSERT(cthis != NULL);
cxxthis = (Db *)cthis->cj_internal;
DB_ASSERT(cxxthis != NULL);
DB_ASSERT(cxxthis->append_recno_callback_ != 0);
return (*cxxthis->append_recno_callback_)(cxxthis,
Dbt::get_Dbt(data),
recno);
}
int Db::set_append_recno(int (*arg)(Db *cxxthis, Dbt *data, db_recno_t recno))
{
DB *cthis = unwrap(this);
append_recno_callback_ = arg;
return ((*(cthis->set_append_recno))
(cthis, _db_append_recno_intercept_c));
}
/* bt_compare callback */
extern "C" int _db_bt_compare_intercept_c(DB *cthis, const DBT *data1,
const DBT *data2)
{
Db *cxxthis;
DB_ASSERT(cthis != NULL);
cxxthis = (Db *)cthis->cj_internal;
DB_ASSERT(cxxthis != NULL);
DB_ASSERT(cxxthis->bt_compare_callback_ != 0);
return (*cxxthis->bt_compare_callback_)(cxxthis,
Dbt::get_const_Dbt(data1),
Dbt::get_const_Dbt(data2));
}
int Db::set_bt_compare(int (*arg)(Db *cxxthis, const Dbt *data1,
const Dbt *data2))
{
DB *cthis = unwrap(this);
bt_compare_callback_ = arg;
return ((*(cthis->set_bt_compare))
(cthis, _db_bt_compare_intercept_c));
}
/* bt_prefix callback */
extern "C" size_t _db_bt_prefix_intercept_c(DB *cthis, const DBT *data1,
const DBT *data2)
{
Db *cxxthis;
DB_ASSERT(cthis != NULL);
cxxthis = (Db *)cthis->cj_internal;
DB_ASSERT(cxxthis != NULL);
DB_ASSERT(cxxthis->bt_prefix_callback_ != 0);
return (*cxxthis->bt_prefix_callback_)(cxxthis,
Dbt::get_const_Dbt(data1),
Dbt::get_const_Dbt(data2));
}
int Db::set_bt_prefix(size_t (*arg)(Db *cxxthis, const Dbt *data1,
const Dbt *data2))
{
DB *cthis = unwrap(this);
bt_prefix_callback_ = arg;
return ((*(cthis->set_bt_prefix))
(cthis, _db_bt_prefix_intercept_c));
}
/* dup_compare callback */
extern "C" int _db_dup_compare_intercept_c(DB *cthis, const DBT *data1,
const DBT *data2)
{
Db *cxxthis;
DB_ASSERT(cthis != NULL);
cxxthis = (Db *)cthis->cj_internal;
DB_ASSERT(cxxthis != NULL);
DB_ASSERT(cxxthis->dup_compare_callback_ != 0);
return (*cxxthis->dup_compare_callback_)(cxxthis,
Dbt::get_const_Dbt(data1),
Dbt::get_const_Dbt(data2));
}
int Db::set_dup_compare(int (*arg)(Db *cxxthis, const Dbt *data1,
const Dbt *data2))
{
DB *cthis = unwrap(this);
dup_compare_callback_ = arg;
return ((*(cthis->set_dup_compare))
(cthis, _db_dup_compare_intercept_c));
}
/* h_hash callback */
extern "C" u_int32_t _db_h_hash_intercept_c(DB *cthis, const void *data,
u_int32_t len)
{
Db *cxxthis;
DB_ASSERT(cthis != NULL);
cxxthis = (Db *)cthis->cj_internal;
DB_ASSERT(cxxthis != NULL);
DB_ASSERT(cxxthis->h_hash_callback_ != 0);
return (*cxxthis->h_hash_callback_)(cxxthis, data, len);
}
int Db::set_h_hash(u_int32_t (*arg)(Db *cxxthis, const void *data,
u_int32_t len))
{
DB *cthis = unwrap(this);
h_hash_callback_ = arg;
return ((*(cthis->set_h_hash))
(cthis, _db_h_hash_intercept_c));
}
// This is a 'glue' function declared as extern "C" so it will
// be compatible with picky compilers that do not allow mixing
// of function pointers to 'C' functions with function pointers
// to C++ functions.
//
extern "C"
int _verify_callback_c(void *handle, const void *str_arg)
{
char *str;
ostream *out;
str = (char *)str_arg;
out = (ostream *)handle;
(*out) << str;
if (out->fail())
return (EIO);
return (0);
}
int Db::verify(const char *name, const char *subdb,
ostream *ostr, u_int32_t flags)
{
int err;
DB *db = unwrap(this);
if (!db) {
DB_ERROR("Db::verify", EINVAL, error_policy());
return (EINVAL);
}
if ((err = __db_verify_internal(db, name, subdb, ostr,
_verify_callback_c, flags)) != 0) {
DB_ERROR("Db::verify", err, error_policy());
return (err);
}
return (0);
}
// This is a variant of the DB_WO_ACCESS macro to define a simple set_
// method calling the underlying C method, but unlike a simple
// set method, it may return an error or raise an exception.
// Note this macro expects that input _argspec is an argument
// list element (e.g. "char *arg") defined in terms of "arg".
//
#define DB_DB_ACCESS(_name, _argspec) \
\
int Db::set_##_name(_argspec) \
{ \
int ret; \
DB *db = unwrap(this); \
\
if ((ret = (*(db->set_##_name))(db, arg)) != 0) { \
DB_ERROR("Db::set_" # _name, ret, error_policy()); \
} \
return (ret); \
}
#define DB_DB_ACCESS_NORET(_name, _argspec) \
\
void Db::set_##_name(_argspec) \
{ \
DB *db = unwrap(this); \
\
(*(db->set_##_name))(db, arg); \
return; \
}
DB_DB_ACCESS(bt_compare, bt_compare_fcn_type arg)
DB_DB_ACCESS(bt_maxkey, u_int32_t arg)
DB_DB_ACCESS(bt_minkey, u_int32_t arg)
DB_DB_ACCESS(bt_prefix, bt_prefix_fcn_type arg)
DB_DB_ACCESS(dup_compare, dup_compare_fcn_type arg)
DB_DB_ACCESS_NORET(errfile, FILE *arg)
DB_DB_ACCESS_NORET(errpfx, const char *arg)
DB_DB_ACCESS(flags, u_int32_t arg)
DB_DB_ACCESS(h_ffactor, u_int32_t arg)
DB_DB_ACCESS(h_hash, h_hash_fcn_type arg)
DB_DB_ACCESS(h_nelem, u_int32_t arg)
DB_DB_ACCESS(lorder, int arg)
DB_DB_ACCESS(pagesize, u_int32_t arg)
DB_DB_ACCESS(re_delim, int arg)
DB_DB_ACCESS(re_len, u_int32_t arg)
DB_DB_ACCESS(re_pad, int arg)
DB_DB_ACCESS(re_source, char *arg)
DB_DB_ACCESS(q_extentsize, u_int32_t arg)
// Here are the get/set methods that don't fit the above mold.
//
int Db::set_alloc(db_malloc_fcn_type malloc_fcn,
db_realloc_fcn_type realloc_fcn,
db_free_fcn_type free_fcn)
{
DB *db;
db = unwrap(this);
return db->set_alloc(db, malloc_fcn, realloc_fcn, free_fcn);
}
void Db::set_errcall(void (*arg)(const char *, char *))
{
env_->set_errcall(arg);
}
void *Db::get_app_private() const
{
return unwrapConst(this)->app_private;
}
void Db::set_app_private(void *value)
{
unwrap(this)->app_private = value;
}
int Db::set_cachesize(u_int32_t gbytes, u_int32_t bytes, int ncache)
{
int ret;
DB *db = unwrap(this);
if ((ret = (*(db->set_cachesize))(db, gbytes, bytes, ncache)) != 0) {
DB_ERROR("Db::set_cachesize", ret, error_policy());
}
return (ret);
}
int Db::set_paniccall(void (*callback)(DbEnv *, int))
{
return (env_->set_paniccall(callback));
}
void Db::set_error_stream(ostream *error_stream)
{
env_->set_error_stream(error_stream);
}
|