ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/BDB/BDB.xs
(Generate patch)

Comparing BDB/BDB.xs (file contents):
Revision 1.13 by root, Sun Jul 8 11:12:12 2007 UTC vs.
Revision 1.46 by root, Wed Jul 9 21:16:14 2008 UTC

40typedef DB_TXN DB_TXN_ornull; 40typedef DB_TXN DB_TXN_ornull;
41typedef DBC DBC_ornull; 41typedef DBC DBC_ornull;
42typedef DB DB_ornull; 42typedef DB DB_ornull;
43typedef DB_SEQUENCE DB_SEQUENCE_ornull; 43typedef DB_SEQUENCE DB_SEQUENCE_ornull;
44 44
45typedef DB_ENV DB_ENV_ornuked;
46typedef DB_TXN DB_TXN_ornuked;
47typedef DBC DBC_ornuked;
48typedef DB DB_ornuked;
49typedef DB_SEQUENCE DB_SEQUENCE_ornuked;
50
45typedef SV SV8; /* byte-sv, used for argument-checking */ 51typedef SV SV8; /* byte-sv, used for argument-checking */
46typedef char *octetstring; 52typedef char *bdb_filename;
47 53
48static SV *prepare_cb; 54static SV *prepare_cb;
55
56#if DB_VERSION_MINOR >= 6
57# define c_close close
58# define c_count count
59# define c_del del
60# define c_dup dup
61# define c_get get
62# define c_pget pget
63# define c_put put
64#endif
65
66static char *
67get_bdb_filename (SV *sv)
68{
69 if (!SvOK (sv))
70 return 0;
71
72#if _WIN32
73 /* win32 madness + win32 perl absolutely brokenness make for horrible hacks */
74 {
75 STRLEN len;
76 char *src = SvPVbyte (sv, len);
77 SV *t1 = sv_newmortal ();
78 SV *t2 = sv_newmortal ();
79
80 sv_upgrade (t1, SVt_PV); SvPOK_only (t1); SvGROW (t1, len * 16 + 1);
81 sv_upgrade (t2, SVt_PV); SvPOK_only (t2); SvGROW (t2, len * 16 + 1);
82
83 len = MultiByteToWideChar (CP_ACP, 0, src, len, (WCHAR *)SvPVX (t1), SvLEN (t1) / sizeof (WCHAR));
84 len = WideCharToMultiByte (CP_UTF8, 0, (WCHAR *)SvPVX (t1), len, SvPVX (t2), SvLEN (t2), 0, 0);
85 SvPOK_only (t2);
86 SvPVX (t2)[len] = 0;
87 SvCUR_set (t2, len);
88
89 return SvPVX (t2);
90 }
91#else
92 return SvPVbyte_nolen (sv);
93#endif
94}
95
96static void
97debug_errcall (const DB_ENV *dbenv, const char *errpfx, const char *msg)
98{
99 printf ("err[%s]\n", msg);
100}
101
102static void
103debug_msgcall (const DB_ENV *dbenv, const char *msg)
104{
105 printf ("msg[%s]\n", msg);
106}
49 107
50static char * 108static char *
51strdup_ornull (const char *s) 109strdup_ornull (const char *s)
52{ 110{
53 return s ? strdup (s) : 0; 111 return s ? strdup (s) : 0;
79} 137}
80 138
81enum { 139enum {
82 REQ_QUIT, 140 REQ_QUIT,
83 REQ_ENV_OPEN, REQ_ENV_CLOSE, REQ_ENV_TXN_CHECKPOINT, REQ_ENV_LOCK_DETECT, 141 REQ_ENV_OPEN, REQ_ENV_CLOSE, REQ_ENV_TXN_CHECKPOINT, REQ_ENV_LOCK_DETECT,
84 REQ_ENV_MEMP_SYNC, REQ_ENV_MEMP_TRICKLE, 142 REQ_ENV_MEMP_SYNC, REQ_ENV_MEMP_TRICKLE, REQ_ENV_DBREMOVE, REQ_ENV_DBRENAME,
85 REQ_DB_OPEN, REQ_DB_CLOSE, REQ_DB_COMPACT, REQ_DB_SYNC, 143 REQ_DB_OPEN, REQ_DB_CLOSE, REQ_DB_COMPACT, REQ_DB_SYNC, REQ_DB_UPGRADE,
86 REQ_DB_PUT, REQ_DB_GET, REQ_DB_PGET, REQ_DB_DEL, REQ_DB_KEY_RANGE, 144 REQ_DB_PUT, REQ_DB_EXISTS, REQ_DB_GET, REQ_DB_PGET, REQ_DB_DEL, REQ_DB_KEY_RANGE,
87 REQ_TXN_COMMIT, REQ_TXN_ABORT, 145 REQ_TXN_COMMIT, REQ_TXN_ABORT, REQ_TXN_FINISH,
88 REQ_C_CLOSE, REQ_C_COUNT, REQ_C_PUT, REQ_C_GET, REQ_C_PGET, REQ_C_DEL, 146 REQ_C_CLOSE, REQ_C_COUNT, REQ_C_PUT, REQ_C_GET, REQ_C_PGET, REQ_C_DEL,
89 REQ_SEQ_OPEN, REQ_SEQ_CLOSE, REQ_SEQ_GET, REQ_SEQ_REMOVE, 147 REQ_SEQ_OPEN, REQ_SEQ_CLOSE, REQ_SEQ_GET, REQ_SEQ_REMOVE,
90}; 148};
91 149
92typedef struct aio_cb 150typedef struct bdb_cb
93{ 151{
94 struct aio_cb *volatile next; 152 struct bdb_cb *volatile next;
95 SV *callback; 153 SV *callback;
96 int type, pri, result; 154 int type, pri, result;
97 155
98 DB_ENV *env; 156 DB_ENV *env;
99 DB *db; 157 DB *db;
101 DBC *dbc; 159 DBC *dbc;
102 160
103 UV uv1; 161 UV uv1;
104 int int1, int2; 162 int int1, int2;
105 U32 uint1, uint2; 163 U32 uint1, uint2;
106 char *buf1, *buf2; 164 char *buf1, *buf2, *buf3;
107 SV *sv1, *sv2, *sv3; 165 SV *sv1, *sv2, *sv3;
108 166
109 DBT dbt1, dbt2, dbt3; 167 DBT dbt1, dbt2, dbt3;
110 DB_KEY_RANGE key_range; 168 DB_KEY_RANGE key_range;
111 DB_SEQUENCE *seq; 169 DB_SEQUENCE *seq;
112 db_seq_t seq_t; 170 db_seq_t seq_t;
113} aio_cb; 171} bdb_cb;
114 172
115typedef aio_cb *aio_req; 173typedef bdb_cb *bdb_req;
116 174
117enum { 175enum {
118 PRI_MIN = -4, 176 PRI_MIN = -4,
119 PRI_MAX = 4, 177 PRI_MAX = 4,
120 178
123 NUM_PRI = PRI_MAX + PRI_BIAS + 1, 181 NUM_PRI = PRI_MAX + PRI_BIAS + 1,
124}; 182};
125 183
126#define AIO_TICKS ((1000000 + 1023) >> 10) 184#define AIO_TICKS ((1000000 + 1023) >> 10)
127 185
186static SV *on_next_submit;
187
128static unsigned int max_poll_time = 0; 188static unsigned int max_poll_time = 0;
129static unsigned int max_poll_reqs = 0; 189static unsigned int max_poll_reqs = 0;
130 190
131/* calculcate time difference in ~1/AIO_TICKS of a second */ 191/* calculcate time difference in ~1/AIO_TICKS of a second */
132static int tvdiff (struct timeval *tv1, struct timeval *tv2) 192static int tvdiff (struct timeval *tv1, struct timeval *tv2)
147 struct worker *prev, *next; 207 struct worker *prev, *next;
148 208
149 thread_t tid; 209 thread_t tid;
150 210
151 /* locked by reslock, reqlock or wrklock */ 211 /* locked by reslock, reqlock or wrklock */
152 aio_req req; /* currently processed request */ 212 bdb_req req; /* currently processed request */
153 void *dbuf; 213 void *dbuf;
154 DIR *dirp; 214 DIR *dirp;
155} worker; 215} worker;
156 216
157static worker wrk_first = { &wrk_first, &wrk_first, 0 }; 217static worker wrk_first = { &wrk_first, &wrk_first, 0 };
169} 229}
170 230
171static volatile unsigned int nreqs, nready, npending; 231static volatile unsigned int nreqs, nready, npending;
172static volatile unsigned int max_idle = 4; 232static volatile unsigned int max_idle = 4;
173static volatile unsigned int max_outstanding = 0xffffffff; 233static volatile unsigned int max_outstanding = 0xffffffff;
174static int respipe [2], respipe_osf [2]; 234static int respipe_osf [2], respipe [2] = { -1, -1 };
175 235
176static mutex_t reslock = X_MUTEX_INIT; 236static mutex_t reslock = X_MUTEX_INIT;
177static mutex_t reqlock = X_MUTEX_INIT; 237static mutex_t reqlock = X_MUTEX_INIT;
178static cond_t reqwait = X_COND_INIT; 238static cond_t reqwait = X_COND_INIT;
179 239
180#if WORDACCESS_UNSAFE 240#if WORDACCESS_UNSAFE
181 241
182static unsigned int get_nready () 242static unsigned int get_nready (void)
183{ 243{
184 unsigned int retval; 244 unsigned int retval;
185 245
186 X_LOCK (reqlock); 246 X_LOCK (reqlock);
187 retval = nready; 247 retval = nready;
188 X_UNLOCK (reqlock); 248 X_UNLOCK (reqlock);
189 249
190 return retval; 250 return retval;
191} 251}
192 252
193static unsigned int get_npending () 253static unsigned int get_npending (void)
194{ 254{
195 unsigned int retval; 255 unsigned int retval;
196 256
197 X_LOCK (reslock); 257 X_LOCK (reslock);
198 retval = npending; 258 retval = npending;
199 X_UNLOCK (reslock); 259 X_UNLOCK (reslock);
200 260
201 return retval; 261 return retval;
202} 262}
203 263
204static unsigned int get_nthreads () 264static unsigned int get_nthreads (void)
205{ 265{
206 unsigned int retval; 266 unsigned int retval;
207 267
208 X_LOCK (wrklock); 268 X_LOCK (wrklock);
209 retval = started; 269 retval = started;
224 * a somewhat faster data structure might be nice, but 284 * a somewhat faster data structure might be nice, but
225 * with 8 priorities this actually needs <20 insns 285 * with 8 priorities this actually needs <20 insns
226 * per shift, the most expensive operation. 286 * per shift, the most expensive operation.
227 */ 287 */
228typedef struct { 288typedef struct {
229 aio_req qs[NUM_PRI], qe[NUM_PRI]; /* qstart, qend */ 289 bdb_req qs[NUM_PRI], qe[NUM_PRI]; /* qstart, qend */
230 int size; 290 int size;
231} reqq; 291} reqq;
232 292
233static reqq req_queue; 293static reqq req_queue;
234static reqq res_queue; 294static reqq res_queue;
235 295
236int reqq_push (reqq *q, aio_req req) 296int reqq_push (reqq *q, bdb_req req)
237{ 297{
238 int pri = req->pri; 298 int pri = req->pri;
239 req->next = 0; 299 req->next = 0;
240 300
241 if (q->qe[pri]) 301 if (q->qe[pri])
247 q->qe[pri] = q->qs[pri] = req; 307 q->qe[pri] = q->qs[pri] = req;
248 308
249 return q->size++; 309 return q->size++;
250} 310}
251 311
252aio_req reqq_shift (reqq *q) 312bdb_req reqq_shift (reqq *q)
253{ 313{
254 int pri; 314 int pri;
255 315
256 if (!q->size) 316 if (!q->size)
257 return 0; 317 return 0;
258 318
259 --q->size; 319 --q->size;
260 320
261 for (pri = NUM_PRI; pri--; ) 321 for (pri = NUM_PRI; pri--; )
262 { 322 {
263 aio_req req = q->qs[pri]; 323 bdb_req req = q->qs[pri];
264 324
265 if (req) 325 if (req)
266 { 326 {
267 if (!(q->qs[pri] = req->next)) 327 if (!(q->qs[pri] = req->next))
268 q->qe[pri] = 0; 328 q->qe[pri] = 0;
272 } 332 }
273 333
274 abort (); 334 abort ();
275} 335}
276 336
277static int poll_cb (); 337static int poll_cb (void);
278static void req_free (aio_req req); 338static void req_free (bdb_req req);
279static void req_cancel (aio_req req); 339static void req_cancel (bdb_req req);
280 340
281static int req_invoke (aio_req req) 341static int req_invoke (bdb_req req)
282{ 342{
283 dSP; 343 dSP;
284 344
285 if (SvOK (req->callback)) 345 if (req->callback)
286 { 346 {
287 ENTER; 347 ENTER;
288 SAVETMPS; 348 SAVETMPS;
289 PUSHMARK (SP); 349 PUSHMARK (SP);
290 350
304 dbt_to_sv (req->sv1, &req->dbt1); 364 dbt_to_sv (req->sv1, &req->dbt1);
305 dbt_to_sv (req->sv2, &req->dbt2); 365 dbt_to_sv (req->sv2, &req->dbt2);
306 dbt_to_sv (req->sv3, &req->dbt3); 366 dbt_to_sv (req->sv3, &req->dbt3);
307 break; 367 break;
308 368
369 case REQ_DB_PUT:
370 case REQ_C_PUT:
371 dbt_to_sv (0, &req->dbt1);
372 dbt_to_sv (0, &req->dbt2);
373 break;
374
309 case REQ_DB_KEY_RANGE: 375 case REQ_DB_KEY_RANGE:
310 { 376 {
311 AV *av = newAV (); 377 AV *av = newAV ();
312 378
313 av_push (av, newSVnv (req->key_range.less)); 379 av_push (av, newSVnv (req->key_range.less));
322 388
323 case REQ_SEQ_GET: 389 case REQ_SEQ_GET:
324 SvREADONLY_off (req->sv1); 390 SvREADONLY_off (req->sv1);
325 391
326 if (sizeof (IV) > 4) 392 if (sizeof (IV) > 4)
327 sv_setiv_mg (req->sv1, req->seq_t); 393 sv_setiv_mg (req->sv1, (IV)req->seq_t);
328 else 394 else
329 sv_setnv_mg (req->sv1, req->seq_t); 395 sv_setnv_mg (req->sv1, (NV)req->seq_t);
330 396
331 SvREFCNT_dec (req->sv1); 397 SvREFCNT_dec (req->sv1);
332 break; 398 break;
333 } 399 }
334 400
343 } 409 }
344 410
345 return !SvTRUE (ERRSV); 411 return !SvTRUE (ERRSV);
346} 412}
347 413
348static void req_free (aio_req req) 414static void req_free (bdb_req req)
349{ 415{
416 SvREFCNT_dec (req->callback);
417
350 free (req->buf1); 418 free (req->buf1);
351 free (req->buf2); 419 free (req->buf2);
420 free (req->buf3);
421
352 Safefree (req); 422 Safefree (req);
353} 423}
354 424
355#ifdef USE_SOCKETS_AS_HANDLES 425#ifdef USE_SOCKETS_AS_HANDLES
356# define TO_SOCKET(x) (win32_get_osfhandle (x)) 426# define TO_SOCKET(x) (win32_get_osfhandle (x))
357#else 427#else
358# define TO_SOCKET(x) (x) 428# define TO_SOCKET(x) (x)
359#endif 429#endif
360 430
361static void 431static void
362create_pipe (int fd[2]) 432create_respipe (void)
363{ 433{
364#ifdef _WIN32 434#ifdef _WIN32
365 int arg = 1; 435 int arg; /* argg */
436#endif
437 int old_readfd = respipe [0];
438
439 if (respipe [1] >= 0)
440 respipe_close (TO_SOCKET (respipe [1]));
441
442#ifdef _WIN32
366 if (PerlSock_socketpair (AF_UNIX, SOCK_STREAM, 0, fd) 443 if (PerlSock_socketpair (AF_UNIX, SOCK_STREAM, 0, respipe))
367 || ioctlsocket (TO_SOCKET (fd [0]), FIONBIO, &arg)
368 || ioctlsocket (TO_SOCKET (fd [1]), FIONBIO, &arg))
369#else 444#else
370 if (pipe (fd) 445 if (pipe (respipe))
371 || fcntl (fd [0], F_SETFL, O_NONBLOCK)
372 || fcntl (fd [1], F_SETFL, O_NONBLOCK))
373#endif 446#endif
374 croak ("unable to initialize result pipe"); 447 croak ("unable to initialize result pipe");
448
449 if (old_readfd >= 0)
450 {
451 if (dup2 (TO_SOCKET (respipe [0]), TO_SOCKET (old_readfd)) < 0)
452 croak ("unable to initialize result pipe(2)");
453
454 respipe_close (respipe [0]);
455 respipe [0] = old_readfd;
456 }
457
458#ifdef _WIN32
459 arg = 1;
460 if (ioctlsocket (TO_SOCKET (respipe [0]), FIONBIO, &arg)
461 || ioctlsocket (TO_SOCKET (respipe [1]), FIONBIO, &arg))
462#else
463 if (fcntl (respipe [0], F_SETFL, O_NONBLOCK)
464 || fcntl (respipe [1], F_SETFL, O_NONBLOCK))
465#endif
466 croak ("unable to initialize result pipe(3)");
375 467
376 respipe_osf [0] = TO_SOCKET (respipe [0]); 468 respipe_osf [0] = TO_SOCKET (respipe [0]);
377 respipe_osf [1] = TO_SOCKET (respipe [1]); 469 respipe_osf [1] = TO_SOCKET (respipe [1]);
378} 470}
379 471
399 free (wrk); 491 free (wrk);
400 492
401 X_UNLOCK (wrklock); 493 X_UNLOCK (wrklock);
402} 494}
403 495
404static void maybe_start_thread () 496static void maybe_start_thread (void)
405{ 497{
406 if (get_nthreads () >= wanted) 498 if (get_nthreads () >= wanted)
407 return; 499 return;
408 500
409 /* todo: maybe use idle here, but might be less exact */ 501 /* todo: maybe use idle here, but might be less exact */
411 return; 503 return;
412 504
413 start_thread (); 505 start_thread ();
414} 506}
415 507
416static void req_send (aio_req req) 508static void req_send (bdb_req req)
417{ 509{
418 SV *wait_callback = 0; 510 SV *wait_callback = 0;
419 511
512 if (on_next_submit)
513 {
514 dSP;
515 SV *cb = sv_2mortal (on_next_submit);
516
517 on_next_submit = 0;
518
519 PUSHMARK (SP);
520 PUTBACK;
521 call_sv (cb, G_DISCARD | G_EVAL);
522 }
523
420 // synthesize callback if none given 524 // synthesize callback if none given
421 if (!SvOK (req->callback)) 525 if (!req->callback)
422 { 526 {
423 int count; 527 int count;
424 528
425 dSP; 529 dSP;
426 PUSHMARK (SP); 530 PUSHMARK (SP);
429 SPAGAIN; 533 SPAGAIN;
430 534
431 if (count != 2) 535 if (count != 2)
432 croak ("prepare callback must return exactly two values\n"); 536 croak ("prepare callback must return exactly two values\n");
433 537
434 wait_callback = SvREFCNT_inc (POPs); 538 wait_callback = POPs;
435 SvREFCNT_dec (req->callback); 539 SvREFCNT_dec (req->callback);
436 req->callback = SvREFCNT_inc (POPs); 540 req->callback = SvREFCNT_inc (POPs);
437 } 541 }
438 542
439 ++nreqs; 543 ++nreqs;
450 { 554 {
451 dSP; 555 dSP;
452 PUSHMARK (SP); 556 PUSHMARK (SP);
453 PUTBACK; 557 PUTBACK;
454 call_sv (wait_callback, G_DISCARD); 558 call_sv (wait_callback, G_DISCARD);
455 SvREFCNT_dec (wait_callback);
456 } 559 }
457} 560}
458 561
459static void end_thread (void) 562static void end_thread (void)
460{ 563{
461 aio_req req; 564 bdb_req req;
462 565
463 Newz (0, req, 1, aio_cb); 566 Newz (0, req, 1, bdb_cb);
464 567
465 req->type = REQ_QUIT; 568 req->type = REQ_QUIT;
466 req->pri = PRI_MAX + PRI_BIAS; 569 req->pri = PRI_MAX + PRI_BIAS;
467 570
468 X_LOCK (reqlock); 571 X_LOCK (reqlock);
495 598
496 while (started > wanted) 599 while (started > wanted)
497 end_thread (); 600 end_thread ();
498} 601}
499 602
500static void poll_wait () 603static void poll_wait (void)
501{ 604{
502 fd_set rfd; 605 fd_set rfd;
503 606
504 while (nreqs) 607 while (nreqs)
505 { 608 {
518 621
519 PerlSock_select (respipe [0] + 1, &rfd, 0, 0, 0); 622 PerlSock_select (respipe [0] + 1, &rfd, 0, 0, 0);
520 } 623 }
521} 624}
522 625
523static int poll_cb () 626static int poll_cb (void)
524{ 627{
525 dSP; 628 dSP;
526 int count = 0; 629 int count = 0;
527 int maxreqs = max_poll_reqs; 630 int maxreqs = max_poll_reqs;
528 int do_croak = 0; 631 int do_croak = 0;
529 struct timeval tv_start, tv_now; 632 struct timeval tv_start, tv_now;
530 aio_req req; 633 bdb_req req;
531 634
532 if (max_poll_time) 635 if (max_poll_time)
533 gettimeofday (&tv_start, 0); 636 gettimeofday (&tv_start, 0);
534 637
535 for (;;) 638 for (;;)
596 699
597/*****************************************************************************/ 700/*****************************************************************************/
598 701
599X_THREAD_PROC (bdb_proc) 702X_THREAD_PROC (bdb_proc)
600{ 703{
601 aio_req req; 704 bdb_req req;
602 struct timespec ts; 705 struct timespec ts;
603 worker *self = (worker *)thr_arg; 706 worker *self = (worker *)thr_arg;
604 707
605 /* try to distribute timeouts somewhat evenly */ 708 /* try to distribute timeouts somewhat evenly */
606 ts.tv_nsec = ((unsigned long)self & 1023UL) * (1000000000UL / 1024UL); 709 ts.tv_nsec = ((unsigned long)self & 1023UL) * (1000000000UL / 1024UL);
646 X_UNLOCK (reqlock); 749 X_UNLOCK (reqlock);
647 750
648 switch (req->type) 751 switch (req->type)
649 { 752 {
650 case REQ_QUIT: 753 case REQ_QUIT:
754 req->result = ENOSYS;
651 goto quit; 755 goto quit;
652 756
653 case REQ_ENV_OPEN: 757 case REQ_ENV_OPEN:
654 req->result = req->env->open (req->env, req->buf1, req->uint1, req->int1); 758 req->result = req->env->open (req->env, req->buf1, req->uint1, req->int1);
655 break; 759 break;
672 776
673 case REQ_ENV_MEMP_TRICKLE: 777 case REQ_ENV_MEMP_TRICKLE:
674 req->result = req->env->memp_trickle (req->env, req->int1, &req->int2); 778 req->result = req->env->memp_trickle (req->env, req->int1, &req->int2);
675 break; 779 break;
676 780
781 case REQ_ENV_DBREMOVE:
782 req->result = req->env->dbremove (req->env, req->txn, req->buf1, req->buf2, req->uint1);
783 break;
784
785 case REQ_ENV_DBRENAME:
786 req->result = req->env->dbrename (req->env, req->txn, req->buf1, req->buf2, req->buf3, req->uint1);
787 break;
788
677 case REQ_DB_OPEN: 789 case REQ_DB_OPEN:
678 req->result = req->db->open (req->db, req->txn, req->buf1, req->buf2, req->int1, req->uint1, req->int2); 790 req->result = req->db->open (req->db, req->txn, req->buf1, req->buf2, req->int1, req->uint1, req->int2);
679 break; 791 break;
680 792
681 case REQ_DB_CLOSE: 793 case REQ_DB_CLOSE:
688 800
689 case REQ_DB_SYNC: 801 case REQ_DB_SYNC:
690 req->result = req->db->sync (req->db, req->uint1); 802 req->result = req->db->sync (req->db, req->uint1);
691 break; 803 break;
692 804
805 case REQ_DB_UPGRADE:
806 req->result = req->db->upgrade (req->db, req->buf1, req->uint1);
807 break;
808
693 case REQ_DB_PUT: 809 case REQ_DB_PUT:
694 req->result = req->db->put (req->db, req->txn, &req->dbt1, &req->dbt2, req->uint1); 810 req->result = req->db->put (req->db, req->txn, &req->dbt1, &req->dbt2, req->uint1);
695 break; 811 break;
696 812
813#if DB_VERSION_MINOR >= 6
814 case REQ_DB_EXISTS:
815 req->result = req->db->exists (req->db, req->txn, &req->dbt1, req->uint1);
816 break;
817#endif
697 case REQ_DB_GET: 818 case REQ_DB_GET:
698 req->result = req->db->get (req->db, req->txn, &req->dbt1, &req->dbt3, req->uint1); 819 req->result = req->db->get (req->db, req->txn, &req->dbt1, &req->dbt3, req->uint1);
699 break; 820 break;
700 821
701 case REQ_DB_PGET: 822 case REQ_DB_PGET:
714 req->result = req->txn->commit (req->txn, req->uint1); 835 req->result = req->txn->commit (req->txn, req->uint1);
715 break; 836 break;
716 837
717 case REQ_TXN_ABORT: 838 case REQ_TXN_ABORT:
718 req->result = req->txn->abort (req->txn); 839 req->result = req->txn->abort (req->txn);
840 break;
841
842 case REQ_TXN_FINISH:
843 if (req->txn->flags & TXN_DEADLOCK)
844 {
845 req->result = req->txn->abort (req->txn);
846 if (!req->result)
847 req->result = DB_LOCK_DEADLOCK;
848 }
849 else
850 req->result = req->txn->commit (req->txn, req->uint1);
719 break; 851 break;
720 852
721 case REQ_C_CLOSE: 853 case REQ_C_CLOSE:
722 req->result = req->dbc->c_close (req->dbc); 854 req->result = req->dbc->c_close (req->dbc);
723 break; 855 break;
765 default: 897 default:
766 req->result = ENOSYS; 898 req->result = ENOSYS;
767 break; 899 break;
768 } 900 }
769 901
902 if (req->txn && (req->result > 0 || req->result == DB_LOCK_NOTGRANTED))
903 req->txn->flags |= TXN_DEADLOCK;
904
770 X_LOCK (reslock); 905 X_LOCK (reslock);
771 906
772 ++npending; 907 ++npending;
773 908
774 if (!reqq_push (&res_queue, req)) 909 if (!reqq_push (&res_queue, req))
805 X_UNLOCK (wrklock); 940 X_UNLOCK (wrklock);
806} 941}
807 942
808static void atfork_child (void) 943static void atfork_child (void)
809{ 944{
810 aio_req prv; 945 bdb_req prv;
811 946
812 while (prv = reqq_shift (&req_queue)) 947 while (prv = reqq_shift (&req_queue))
813 req_free (prv); 948 req_free (prv);
814 949
815 while (prv = reqq_shift (&res_queue)) 950 while (prv = reqq_shift (&res_queue))
830 idle = 0; 965 idle = 0;
831 nreqs = 0; 966 nreqs = 0;
832 nready = 0; 967 nready = 0;
833 npending = 0; 968 npending = 0;
834 969
835 respipe_close (respipe [0]);
836 respipe_close (respipe [1]);
837
838 create_pipe (respipe); 970 create_respipe ();
839 971
840 atfork_parent (); 972 atfork_parent ();
841} 973}
842 974
843#define dREQ(reqtype) \ 975#define dREQ(reqtype) \
844 aio_req req; \ 976 bdb_req req; \
845 int req_pri = next_pri; \ 977 int req_pri = next_pri; \
846 next_pri = DEFAULT_PRI + PRI_BIAS; \ 978 next_pri = DEFAULT_PRI + PRI_BIAS; \
847 \ 979 \
848 if (SvOK (callback) && !SvROK (callback)) \ 980 if (callback && SvOK (callback)) \
849 croak ("callback must be undef or of reference type"); \ 981 croak ("callback has illegal type or extra arguments"); \
850 \ 982 \
851 Newz (0, req, 1, aio_cb); \ 983 Newz (0, req, 1, bdb_cb); \
852 if (!req) \ 984 if (!req) \
853 croak ("out of memory during aio_req allocation"); \ 985 croak ("out of memory during bdb_req allocation"); \
854 \ 986 \
855 req->callback = newSVsv (callback); \ 987 req->callback = cb ? SvREFCNT_inc (cb) : 0; \
856 req->type = (reqtype); \ 988 req->type = (reqtype); \
857 req->pri = req_pri 989 req->pri = req_pri
858 990
859#define REQ_SEND \ 991#define REQ_SEND \
860 req_send (req) 992 req_send (req)
861 993
862#define SvPTR(var, arg, type, class, nullok) \ 994#define SvPTR(var, arg, type, class, nullok) \
863 if (!SvOK (arg)) \ 995 if (!SvOK (arg)) \
864 { \ 996 { \
865 if (!nullok) \ 997 if (nullok != 1) \
866 croak (# var " must be a " # class " object, not undef"); \ 998 croak (# var " must be a " # class " object, not undef"); \
867 \ 999 \
868 (var) = 0; \ 1000 (var) = 0; \
869 } \ 1001 } \
870 else if (sv_derived_from ((arg), # class)) \ 1002 else if (sv_derived_from ((arg), # class)) \
871 { \ 1003 { \
872 IV tmp = SvIV ((SV*) SvRV (arg)); \ 1004 IV tmp = SvIV ((SV*) SvRV (arg)); \
873 (var) = INT2PTR (type, tmp); \ 1005 (var) = INT2PTR (type, tmp); \
874 if (!var) \ 1006 if (!var && nullok != 2) \
875 croak (# var " is not a valid " # class " object anymore"); \ 1007 croak (# var " is not a valid " # class " object anymore"); \
876 } \ 1008 } \
877 else \ 1009 else \
878 croak (# var " is not of type " # class); \ 1010 croak (# var " is not of type " # class);
879 \
880 1011
881static void 1012static void
882ptr_nuke (SV *sv) 1013ptr_nuke (SV *sv)
883{ 1014{
884 assert (SvROK (sv)); 1015 assert (SvROK (sv));
885 sv_setiv (SvRV (sv), 0); 1016 sv_setiv (SvRV (sv), 0);
886} 1017}
1018
1019static int
1020errno_get (pTHX_ SV *sv, MAGIC *mg)
1021{
1022 if (*mg->mg_ptr == '!') // should always be the case
1023 if (-30999 <= errno && errno <= -30800)
1024 {
1025 sv_setnv (sv, (NV)errno);
1026 sv_setpv (sv, db_strerror (errno));
1027 SvNOK_on (sv); /* what a wonderful hack! */
1028 // ^^^ copied from perl sources
1029 return 0;
1030 }
1031
1032 return PL_vtbl_sv.svt_get (aTHX_ sv, mg);
1033}
1034
1035static MGVTBL vtbl_errno;
1036
1037// this wonderful hack :( patches perl's $! variable to support our errno values
1038static void
1039patch_errno (void)
1040{
1041 SV *sv;
1042 MAGIC *mg;
1043
1044 if (!(sv = get_sv ("!", 1)))
1045 return;
1046
1047 if (!(mg = mg_find (sv, PERL_MAGIC_sv)))
1048 return;
1049
1050 if (mg->mg_virtual != &PL_vtbl_sv)
1051 return;
1052
1053 vtbl_errno = PL_vtbl_sv;
1054 vtbl_errno.svt_get = errno_get;
1055 mg->mg_virtual = &vtbl_errno;
1056}
1057
1058#if __GNUC__ >= 4
1059# define noinline __attribute__ ((noinline))
1060#else
1061# define noinline
1062#endif
1063
1064static noinline SV *
1065pop_callback (I32 *ritems, SV *sv)
1066{
1067 if (SvROK (sv))
1068 {
1069 HV *st;
1070 GV *gvp;
1071 CV *cv;
1072 const char *name;
1073
1074 /* forgive me */
1075 if (SvTYPE (SvRV (sv)) == SVt_PVMG
1076 && (st = SvSTASH (SvRV (sv)))
1077 && (name = HvNAME_get (st))
1078 && (name [0] == 'B' && name [1] == 'D' && name [2] == 'B' && name [3] == ':'))
1079 return 0;
1080
1081 if ((cv = sv_2cv (sv, &st, &gvp, 0)))
1082 {
1083 --*ritems;
1084 return (SV *)cv;
1085 }
1086 }
1087
1088 return 0;
1089}
1090
1091#define CALLBACK SV *cb = pop_callback (&items, ST (items - 1));
887 1092
888MODULE = BDB PACKAGE = BDB 1093MODULE = BDB PACKAGE = BDB
889 1094
890PROTOTYPES: ENABLE 1095PROTOTYPES: ENABLE
891 1096
907 const_iv (INIT_TXN) 1112 const_iv (INIT_TXN)
908 const_iv (RECOVER) 1113 const_iv (RECOVER)
909 const_iv (INIT_TXN) 1114 const_iv (INIT_TXN)
910 const_iv (RECOVER_FATAL) 1115 const_iv (RECOVER_FATAL)
911 const_iv (CREATE) 1116 const_iv (CREATE)
1117 const_iv (RDONLY)
912 const_iv (USE_ENVIRON) 1118 const_iv (USE_ENVIRON)
913 const_iv (USE_ENVIRON_ROOT) 1119 const_iv (USE_ENVIRON_ROOT)
914 const_iv (LOCKDOWN) 1120 const_iv (LOCKDOWN)
915 const_iv (PRIVATE) 1121 const_iv (PRIVATE)
916 const_iv (REGISTER) 1122 const_iv (REGISTER)
917 const_iv (SYSTEM_MEM) 1123 const_iv (SYSTEM_MEM)
918 const_iv (AUTO_COMMIT) 1124 const_iv (AUTO_COMMIT)
919 const_iv (CDB_ALLDB) 1125 const_iv (CDB_ALLDB)
920 const_iv (DIRECT_DB) 1126 const_iv (DIRECT_DB)
921 const_iv (DIRECT_LOG)
922 const_iv (DSYNC_DB) 1127 const_iv (DSYNC_DB)
923 const_iv (DSYNC_LOG)
924 const_iv (LOG_AUTOREMOVE)
925 const_iv (LOG_INMEMORY)
926 const_iv (NOLOCKING) 1128 const_iv (NOLOCKING)
927 const_iv (NOMMAP) 1129 const_iv (NOMMAP)
928 const_iv (NOPANIC) 1130 const_iv (NOPANIC)
929 const_iv (OVERWRITE) 1131 const_iv (OVERWRITE)
930 const_iv (PANIC_ENVIRONMENT) 1132 const_iv (PANIC_ENVIRONMENT)
931 const_iv (REGION_INIT) 1133 const_iv (REGION_INIT)
932 const_iv (TIME_NOTGRANTED) 1134 const_iv (TIME_NOTGRANTED)
933 const_iv (TXN_NOSYNC) 1135 const_iv (TXN_NOSYNC)
1136 const_iv (TXN_NOT_DURABLE)
934 const_iv (TXN_WRITE_NOSYNC) 1137 const_iv (TXN_WRITE_NOSYNC)
935 const_iv (WRITECURSOR) 1138 const_iv (WRITECURSOR)
936 const_iv (YIELDCPU) 1139 const_iv (YIELDCPU)
937 const_iv (ENCRYPT_AES) 1140 const_iv (ENCRYPT_AES)
938 const_iv (XA_CREATE) 1141 const_iv (XA_CREATE)
946 const_iv (READ_UNCOMMITTED) 1149 const_iv (READ_UNCOMMITTED)
947 const_iv (TRUNCATE) 1150 const_iv (TRUNCATE)
948 const_iv (NOSYNC) 1151 const_iv (NOSYNC)
949 const_iv (CHKSUM) 1152 const_iv (CHKSUM)
950 const_iv (ENCRYPT) 1153 const_iv (ENCRYPT)
951 const_iv (TXN_NOT_DURABLE)
952 const_iv (DUP) 1154 const_iv (DUP)
953 const_iv (DUPSORT) 1155 const_iv (DUPSORT)
954 const_iv (RECNUM) 1156 const_iv (RECNUM)
955 const_iv (RENUMBER) 1157 const_iv (RENUMBER)
956 const_iv (REVSPLITOFF) 1158 const_iv (REVSPLITOFF)
961 const_iv (GET_BOTH_RANGE) 1163 const_iv (GET_BOTH_RANGE)
962 //const_iv (SET_RECNO) 1164 //const_iv (SET_RECNO)
963 //const_iv (MULTIPLE) 1165 //const_iv (MULTIPLE)
964 const_iv (SNAPSHOT) 1166 const_iv (SNAPSHOT)
965 const_iv (JOIN_ITEM) 1167 const_iv (JOIN_ITEM)
1168 const_iv (JOIN_NOSORT)
966 const_iv (RMW) 1169 const_iv (RMW)
967 1170
968 const_iv (NOTFOUND) 1171 const_iv (NOTFOUND)
969 const_iv (KEYEMPTY) 1172 const_iv (KEYEMPTY)
970 const_iv (LOCK_DEADLOCK) 1173 const_iv (LOCK_DEADLOCK)
986 const_iv (TXN_SYNC) 1189 const_iv (TXN_SYNC)
987 1190
988 const_iv (SET_LOCK_TIMEOUT) 1191 const_iv (SET_LOCK_TIMEOUT)
989 const_iv (SET_TXN_TIMEOUT) 1192 const_iv (SET_TXN_TIMEOUT)
990 1193
991 const_iv (JOIN_ITEM)
992 const_iv (FIRST) 1194 const_iv (FIRST)
993 const_iv (NEXT) 1195 const_iv (NEXT)
994 const_iv (NEXT_DUP) 1196 const_iv (NEXT_DUP)
995 const_iv (NEXT_NODUP) 1197 const_iv (NEXT_NODUP)
996 const_iv (PREV) 1198 const_iv (PREV)
1018 const_iv (LOCK_YOUNGEST) 1220 const_iv (LOCK_YOUNGEST)
1019 1221
1020 const_iv (SEQ_DEC) 1222 const_iv (SEQ_DEC)
1021 const_iv (SEQ_INC) 1223 const_iv (SEQ_INC)
1022 const_iv (SEQ_WRAP) 1224 const_iv (SEQ_WRAP)
1225
1226 const_iv (BUFFER_SMALL)
1227 const_iv (DONOTINDEX)
1228 const_iv (KEYEMPTY )
1229 const_iv (KEYEXIST )
1230 const_iv (LOCK_DEADLOCK)
1231 const_iv (LOCK_NOTGRANTED)
1232 const_iv (LOG_BUFFER_FULL)
1233 const_iv (NOSERVER)
1234 const_iv (NOSERVER_HOME)
1235 const_iv (NOSERVER_ID)
1236 const_iv (NOTFOUND)
1237 const_iv (PAGE_NOTFOUND)
1238 const_iv (REP_DUPMASTER)
1239 const_iv (REP_HANDLE_DEAD)
1240 const_iv (REP_HOLDELECTION)
1241 const_iv (REP_IGNORE)
1242 const_iv (REP_ISPERM)
1243 const_iv (REP_JOIN_FAILURE)
1244 const_iv (REP_LOCKOUT)
1245 const_iv (REP_NEWMASTER)
1246 const_iv (REP_NEWSITE)
1247 const_iv (REP_NOTPERM)
1248 const_iv (REP_UNAVAIL)
1249 const_iv (RUNRECOVERY)
1250 const_iv (SECONDARY_BAD)
1251 const_iv (VERIFY_BAD)
1252 const_iv (VERSION_MISMATCH)
1253
1254 const_iv (VERB_DEADLOCK)
1255 const_iv (VERB_RECOVERY)
1256 const_iv (VERB_REGISTER)
1257 const_iv (VERB_REPLICATION)
1258 const_iv (VERB_WAITSFOR)
1259
1260 const_iv (VERSION_MAJOR)
1261 const_iv (VERSION_MINOR)
1262 const_iv (VERSION_PATCH)
1023#if DB_VERSION_MINOR >= 5 1263#if DB_VERSION_MINOR >= 5
1024 const_iv (MULTIVERSION) 1264 const_iv (MULTIVERSION)
1025 const_iv (TXN_SNAPSHOT) 1265 const_iv (TXN_SNAPSHOT)
1026#endif 1266#endif
1267#if DB_VERSION_MINOR >= 6
1268 const_iv (PREV_DUP)
1269 const_iv (PRIORITY_UNCHANGED)
1270 const_iv (PRIORITY_VERY_LOW)
1271 const_iv (PRIORITY_LOW)
1272 const_iv (PRIORITY_DEFAULT)
1273 const_iv (PRIORITY_HIGH)
1274 const_iv (PRIORITY_VERY_HIGH)
1275#endif
1276#if DB_VERSION_MINOR >= 7
1277 const_iv (LOG_DIRECT)
1278 const_iv (LOG_DSYNC)
1279 const_iv (LOG_AUTO_REMOVE)
1280 const_iv (LOG_IN_MEMORY)
1281 const_iv (LOG_ZERO)
1282#else
1283 const_iv (DIRECT_LOG)
1284 const_iv (DSYNC_LOG)
1285 const_iv (LOG_AUTOREMOVE)
1286 const_iv (LOG_INMEMORY)
1287#endif
1027 }; 1288 };
1028 1289
1029 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; ) 1290 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; )
1030 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv)); 1291 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv));
1031 1292
1293 {
1294 /* we currently only allow version, minor-version and patchlevel to go up to 255 */
1295 char vstring[3] = { DB_VERSION_MAJOR, DB_VERSION_MINOR, DB_VERSION_PATCH };
1296
1297 newCONSTSUB (stash, "VERSION_v", newSVpvn (vstring, 3));
1298 }
1299
1300 newCONSTSUB (stash, "VERSION_STRING", newSVpv (DB_VERSION_STRING, 0));
1301
1032 create_pipe (respipe); 1302 create_respipe ();
1033 1303
1034 X_THREAD_ATFORK (atfork_prepare, atfork_parent, atfork_child); 1304 X_THREAD_ATFORK (atfork_prepare, atfork_parent, atfork_child);
1035#ifdef _WIN32 1305 patch_errno ();
1036 X_MUTEX_CHECK (wrklock);
1037 X_MUTEX_CHECK (reslock);
1038 X_MUTEX_CHECK (reqlock);
1039
1040 X_COND_CHECK (reqwait);
1041#endif
1042} 1306}
1043 1307
1044void 1308void
1045max_poll_reqs (int nreqs) 1309max_poll_reqs (int nreqs)
1046 PROTOTYPE: $ 1310 PROTOTYPE: $
1178 PROTOTYPE: & 1442 PROTOTYPE: &
1179 CODE: 1443 CODE:
1180 SvREFCNT_dec (prepare_cb); 1444 SvREFCNT_dec (prepare_cb);
1181 prepare_cb = newSVsv (cb); 1445 prepare_cb = newSVsv (cb);
1182 1446
1447char *
1448strerror (int errorno = errno)
1449 PROTOTYPE: ;$
1450 CODE:
1451 RETVAL = db_strerror (errorno);
1452 OUTPUT:
1453 RETVAL
1454
1455void _on_next_submit (SV *cb)
1456 CODE:
1457 SvREFCNT_dec (on_next_submit);
1458 on_next_submit = SvOK (cb) ? newSVsv (cb) : 0;
1183 1459
1184DB_ENV * 1460DB_ENV *
1185db_env_create (U32 env_flags = 0) 1461db_env_create (U32 env_flags = 0)
1186 CODE: 1462 CODE:
1187{ 1463{
1188 errno = db_env_create (&RETVAL, env_flags); 1464 errno = db_env_create (&RETVAL, env_flags);
1189 if (errno) 1465 if (errno)
1190 croak ("db_env_create: %s", db_strerror (errno)); 1466 croak ("db_env_create: %s", db_strerror (errno));
1467
1468 if (0)
1469 {
1470 RETVAL->set_errcall (RETVAL, debug_errcall);
1471 RETVAL->set_msgcall (RETVAL, debug_msgcall);
1472 }
1191} 1473}
1192 OUTPUT: 1474 OUTPUT:
1193 RETVAL 1475 RETVAL
1194 1476
1195void 1477void
1196db_env_open (DB_ENV *env, octetstring db_home, U32 open_flags, int mode, SV *callback = &PL_sv_undef) 1478db_env_open (DB_ENV *env, bdb_filename db_home, U32 open_flags, int mode, SV *callback = 0)
1479 PREINIT:
1480 CALLBACK
1197 CODE: 1481 CODE:
1198{ 1482{
1199 dREQ (REQ_ENV_OPEN); 1483 dREQ (REQ_ENV_OPEN);
1200
1201 env->set_thread_count (env, get_nthreads ());
1202
1203 req->env = env; 1484 req->env = env;
1204 req->uint1 = open_flags | DB_THREAD; 1485 req->uint1 = open_flags | DB_THREAD;
1205 req->int1 = mode; 1486 req->int1 = mode;
1206 req->buf1 = strdup_ornull (db_home); 1487 req->buf1 = strdup_ornull (db_home);
1207 REQ_SEND; 1488 REQ_SEND;
1208} 1489}
1209 1490
1210void 1491void
1211db_env_close (DB_ENV *env, U32 flags = 0, SV *callback = &PL_sv_undef) 1492db_env_close (DB_ENV *env, U32 flags = 0, SV *callback = 0)
1493 PREINIT:
1494 CALLBACK
1212 CODE: 1495 CODE:
1213{ 1496{
1214 dREQ (REQ_ENV_CLOSE); 1497 dREQ (REQ_ENV_CLOSE);
1215 req->env = env; 1498 req->env = env;
1216 req->uint1 = flags; 1499 req->uint1 = flags;
1217 REQ_SEND; 1500 REQ_SEND;
1218 ptr_nuke (ST (0)); 1501 ptr_nuke (ST (0));
1219} 1502}
1220 1503
1221void 1504void
1222db_env_txn_checkpoint (DB_ENV *env, U32 kbyte = 0, U32 min = 0, U32 flags = 0, SV *callback = &PL_sv_undef) 1505db_env_txn_checkpoint (DB_ENV *env, U32 kbyte = 0, U32 min = 0, U32 flags = 0, SV *callback = 0)
1506 PREINIT:
1507 CALLBACK
1223 CODE: 1508 CODE:
1224{ 1509{
1225 dREQ (REQ_ENV_TXN_CHECKPOINT); 1510 dREQ (REQ_ENV_TXN_CHECKPOINT);
1226 req->env = env; 1511 req->env = env;
1227 req->uint1 = kbyte; 1512 req->uint1 = kbyte;
1229 req->uint2 = flags; 1514 req->uint2 = flags;
1230 REQ_SEND; 1515 REQ_SEND;
1231} 1516}
1232 1517
1233void 1518void
1234db_env_lock_detect (DB_ENV *env, U32 flags = 0, U32 atype = DB_LOCK_DEFAULT, SV *dummy = 0, SV *callback = &PL_sv_undef) 1519db_env_lock_detect (DB_ENV *env, U32 flags = 0, U32 atype = DB_LOCK_DEFAULT, SV *dummy = 0, SV *callback = 0)
1520 PREINIT:
1521 CALLBACK
1235 CODE: 1522 CODE:
1236{ 1523{
1237 dREQ (REQ_ENV_LOCK_DETECT); 1524 dREQ (REQ_ENV_LOCK_DETECT);
1238 req->env = env; 1525 req->env = env;
1239 req->uint1 = flags; 1526 req->uint1 = flags;
1240 req->uint2 = atype; 1527 req->uint2 = atype;
1528 /* req->int2 = 0; dummy */
1241 REQ_SEND; 1529 REQ_SEND;
1242} 1530}
1243 1531
1244void 1532void
1245db_env_memp_sync (DB_ENV *env, SV *dummy = 0, SV *callback = &PL_sv_undef) 1533db_env_memp_sync (DB_ENV *env, SV *dummy = 0, SV *callback = 0)
1534 PREINIT:
1535 CALLBACK
1246 CODE: 1536 CODE:
1247{ 1537{
1248 dREQ (REQ_ENV_MEMP_SYNC); 1538 dREQ (REQ_ENV_MEMP_SYNC);
1249 req->env = env; 1539 req->env = env;
1250 REQ_SEND; 1540 REQ_SEND;
1251} 1541}
1252 1542
1253void 1543void
1254db_env_memp_trickle (DB_ENV *env, int percent, SV *dummy = 0, SV *callback = &PL_sv_undef) 1544db_env_memp_trickle (DB_ENV *env, int percent, SV *dummy = 0, SV *callback = 0)
1545 PREINIT:
1546 CALLBACK
1255 CODE: 1547 CODE:
1256{ 1548{
1257 dREQ (REQ_ENV_MEMP_TRICKLE); 1549 dREQ (REQ_ENV_MEMP_TRICKLE);
1258 req->env = env; 1550 req->env = env;
1259 req->int1 = percent; 1551 req->int1 = percent;
1260 REQ_SEND; 1552 REQ_SEND;
1261} 1553}
1262 1554
1555void
1556db_env_dbremove (DB_ENV *env, DB_TXN_ornull *txnid, bdb_filename file, bdb_filename database, U32 flags = 0, SV *callback = 0)
1557 PREINIT:
1558 CALLBACK
1559 CODE:
1560{
1561 dREQ (REQ_ENV_DBREMOVE);
1562 req->env = env;
1563 req->buf1 = strdup_ornull (file);
1564 req->buf2 = strdup_ornull (database);
1565 req->uint1 = flags;
1566 REQ_SEND;
1567}
1568
1569void
1570db_env_dbrename (DB_ENV *env, DB_TXN_ornull *txnid, bdb_filename file, bdb_filename database, bdb_filename newname, U32 flags = 0, SV *callback = 0)
1571 PREINIT:
1572 CALLBACK
1573 CODE:
1574{
1575 dREQ (REQ_ENV_DBRENAME);
1576 req->env = env;
1577 req->buf1 = strdup_ornull (file);
1578 req->buf2 = strdup_ornull (database);
1579 req->buf3 = strdup_ornull (newname);
1580 req->uint1 = flags;
1581 REQ_SEND;
1582}
1263 1583
1264DB * 1584DB *
1265db_create (DB_ENV *env = 0, U32 flags = 0) 1585db_create (DB_ENV *env = 0, U32 flags = 0)
1266 CODE: 1586 CODE:
1267{ 1587{
1274} 1594}
1275 OUTPUT: 1595 OUTPUT:
1276 RETVAL 1596 RETVAL
1277 1597
1278void 1598void
1279db_open (DB *db, DB_TXN_ornull *txnid, octetstring file, octetstring database, int type, U32 flags, int mode, SV *callback = &PL_sv_undef) 1599db_open (DB *db, DB_TXN_ornull *txnid, bdb_filename file, bdb_filename database, int type, U32 flags, int mode, SV *callback = 0)
1600 PREINIT:
1601 CALLBACK
1280 CODE: 1602 CODE:
1281{ 1603{
1282 dREQ (REQ_DB_OPEN); 1604 dREQ (REQ_DB_OPEN);
1283 req->db = db; 1605 req->db = db;
1284 req->txn = txnid; 1606 req->txn = txnid;
1289 req->int2 = mode; 1611 req->int2 = mode;
1290 REQ_SEND; 1612 REQ_SEND;
1291} 1613}
1292 1614
1293void 1615void
1294db_close (DB *db, U32 flags = 0, SV *callback = &PL_sv_undef) 1616db_close (DB *db, U32 flags = 0, SV *callback = 0)
1617 PREINIT:
1618 CALLBACK
1295 CODE: 1619 CODE:
1296{ 1620{
1297 dREQ (REQ_DB_CLOSE); 1621 dREQ (REQ_DB_CLOSE);
1298 req->db = db; 1622 req->db = db;
1299 req->uint1 = flags; 1623 req->uint1 = flags;
1301 REQ_SEND; 1625 REQ_SEND;
1302 ptr_nuke (ST (0)); 1626 ptr_nuke (ST (0));
1303} 1627}
1304 1628
1305void 1629void
1306db_compact (DB *db, DB_TXN_ornull *txn = 0, SV *start = 0, SV *stop = 0, SV *unused1 = 0, U32 flags = DB_FREE_SPACE, SV *unused2 = 0, SV *callback = &PL_sv_undef) 1630db_compact (DB *db, DB_TXN_ornull *txn = 0, SV *start = 0, SV *stop = 0, SV *unused1 = 0, U32 flags = DB_FREE_SPACE, SV *unused2 = 0, SV *callback = 0)
1631 PREINIT:
1632 CALLBACK
1307 CODE: 1633 CODE:
1308{ 1634{
1309 dREQ (REQ_DB_COMPACT); 1635 dREQ (REQ_DB_COMPACT);
1310 req->db = db; 1636 req->db = db;
1311 req->txn = txn; 1637 req->txn = txn;
1314 req->uint1 = flags; 1640 req->uint1 = flags;
1315 REQ_SEND; 1641 REQ_SEND;
1316} 1642}
1317 1643
1318void 1644void
1319db_sync (DB *db, U32 flags = 0, SV *callback = &PL_sv_undef) 1645db_sync (DB *db, U32 flags = 0, SV *callback = 0)
1646 PREINIT:
1647 CALLBACK
1320 CODE: 1648 CODE:
1321{ 1649{
1322 dREQ (REQ_DB_SYNC); 1650 dREQ (REQ_DB_SYNC);
1323 req->db = db; 1651 req->db = db;
1324 req->uint1 = flags; 1652 req->uint1 = flags;
1325 REQ_SEND; 1653 REQ_SEND;
1326} 1654}
1327 1655
1328void 1656void
1657db_upgrade (DB *db, bdb_filename file, U32 flags = 0, SV *callback = 0)
1658 PREINIT:
1659 CALLBACK
1660 CODE:
1661{
1662 dREQ (REQ_DB_SYNC);
1663 req->db = db;
1664 req->buf1 = strdup (file);
1665 req->uint1 = flags;
1666 REQ_SEND;
1667}
1668
1669void
1329db_key_range (DB *db, DB_TXN_ornull *txn, SV *key, SV *key_range, U32 flags = 0, SV *callback = &PL_sv_undef) 1670db_key_range (DB *db, DB_TXN_ornull *txn, SV *key, SV *key_range, U32 flags = 0, SV *callback = 0)
1671 PREINIT:
1672 CALLBACK
1330 CODE: 1673 CODE:
1331{ 1674{
1332 dREQ (REQ_DB_KEY_RANGE); 1675 dREQ (REQ_DB_KEY_RANGE);
1333 req->db = db; 1676 req->db = db;
1334 req->txn = txn; 1677 req->txn = txn;
1337 req->sv1 = SvREFCNT_inc (key_range); SvREADONLY_on (key_range); 1680 req->sv1 = SvREFCNT_inc (key_range); SvREADONLY_on (key_range);
1338 REQ_SEND; 1681 REQ_SEND;
1339} 1682}
1340 1683
1341void 1684void
1342db_put (DB *db, DB_TXN_ornull *txn, SV *key, SV *data, U32 flags = 0, SV *callback = &PL_sv_undef) 1685db_put (DB *db, DB_TXN_ornull *txn, SV *key, SV *data, U32 flags = 0, SV *callback = 0)
1686 PREINIT:
1687 CALLBACK
1343 CODE: 1688 CODE:
1344{ 1689{
1345 dREQ (REQ_DB_PUT); 1690 dREQ (REQ_DB_PUT);
1346 req->db = db; 1691 req->db = db;
1347 req->txn = txn; 1692 req->txn = txn;
1349 sv_to_dbt (&req->dbt2, data); 1694 sv_to_dbt (&req->dbt2, data);
1350 req->uint1 = flags; 1695 req->uint1 = flags;
1351 REQ_SEND; 1696 REQ_SEND;
1352} 1697}
1353 1698
1699#if DB_VERSION_MINOR >= 6
1700
1354void 1701void
1702db_exists (DB *db, DB_TXN_ornull *txn, SV *key, U32 flags = 0, SV *callback = 0)
1703 PREINIT:
1704 CALLBACK
1705 CODE:
1706{
1707 dREQ (REQ_DB_EXISTS);
1708 req->db = db;
1709 req->txn = txn;
1710 req->uint1 = flags;
1711 sv_to_dbt (&req->dbt1, key);
1712 REQ_SEND;
1713}
1714
1715#endif
1716
1717void
1355db_get (DB *db, DB_TXN_ornull *txn, SV *key, SV *data, U32 flags = 0, SV *callback = &PL_sv_undef) 1718db_get (DB *db, DB_TXN_ornull *txn, SV *key, SV *data, U32 flags = 0, SV *callback = 0)
1719 PREINIT:
1720 CALLBACK
1356 CODE: 1721 CODE:
1722 if (SvREADONLY (data))
1723 croak ("can't modify read-only data scalar in db_get");
1357{ 1724{
1358 dREQ (REQ_DB_GET); 1725 dREQ (REQ_DB_GET);
1359 req->db = db; 1726 req->db = db;
1360 req->txn = txn; 1727 req->txn = txn;
1361 req->uint1 = flags; 1728 req->uint1 = flags;
1364 req->sv3 = SvREFCNT_inc (data); SvREADONLY_on (data); 1731 req->sv3 = SvREFCNT_inc (data); SvREADONLY_on (data);
1365 REQ_SEND; 1732 REQ_SEND;
1366} 1733}
1367 1734
1368void 1735void
1369db_pget (DB *db, DB_TXN_ornull *txn, SV *key, SV *pkey, SV *data, U32 flags = 0, SV *callback = &PL_sv_undef) 1736db_pget (DB *db, DB_TXN_ornull *txn, SV *key, SV *pkey, SV *data, U32 flags = 0, SV *callback = 0)
1737 PREINIT:
1738 CALLBACK
1370 CODE: 1739 CODE:
1740 if (SvREADONLY (data))
1741 croak ("can't modify read-only data scalar in db_pget");
1371{ 1742{
1372 dREQ (REQ_DB_PGET); 1743 dREQ (REQ_DB_PGET);
1373 req->db = db; 1744 req->db = db;
1374 req->txn = txn; 1745 req->txn = txn;
1375 req->uint1 = flags; 1746 req->uint1 = flags;
1379 req->sv3 = SvREFCNT_inc (data); SvREADONLY_on (data); 1750 req->sv3 = SvREFCNT_inc (data); SvREADONLY_on (data);
1380 REQ_SEND; 1751 REQ_SEND;
1381} 1752}
1382 1753
1383void 1754void
1384db_del (DB *db, DB_TXN_ornull *txn, SV *key, U32 flags = 0, SV *callback = &PL_sv_undef) 1755db_del (DB *db, DB_TXN_ornull *txn, SV *key, U32 flags = 0, SV *callback = 0)
1756 PREINIT:
1757 CALLBACK
1385 CODE: 1758 CODE:
1386{ 1759{
1387 dREQ (REQ_DB_DEL); 1760 dREQ (REQ_DB_DEL);
1388 req->db = db; 1761 req->db = db;
1389 req->txn = txn; 1762 req->txn = txn;
1391 sv_to_dbt (&req->dbt1, key); 1764 sv_to_dbt (&req->dbt1, key);
1392 REQ_SEND; 1765 REQ_SEND;
1393} 1766}
1394 1767
1395void 1768void
1396db_txn_commit (DB_TXN *txn, U32 flags = 0, SV *callback = &PL_sv_undef) 1769db_txn_commit (DB_TXN *txn, U32 flags = 0, SV *callback = 0)
1770 PREINIT:
1771 CALLBACK
1397 CODE: 1772 CODE:
1398{ 1773{
1399 dREQ (REQ_TXN_COMMIT); 1774 dREQ (REQ_TXN_COMMIT);
1400 req->txn = txn; 1775 req->txn = txn;
1401 req->uint1 = flags; 1776 req->uint1 = flags;
1402 REQ_SEND; 1777 REQ_SEND;
1403 ptr_nuke (ST (0)); 1778 ptr_nuke (ST (0));
1404} 1779}
1405 1780
1406void 1781void
1407db_txn_abort (DB_TXN *txn, SV *callback = &PL_sv_undef) 1782db_txn_abort (DB_TXN *txn, SV *callback = 0)
1783 PREINIT:
1784 CALLBACK
1408 CODE: 1785 CODE:
1409{ 1786{
1410 dREQ (REQ_TXN_ABORT); 1787 dREQ (REQ_TXN_ABORT);
1411 req->txn = txn; 1788 req->txn = txn;
1412 REQ_SEND; 1789 REQ_SEND;
1413 ptr_nuke (ST (0)); 1790 ptr_nuke (ST (0));
1414} 1791}
1415 1792
1416void 1793void
1794db_txn_finish (DB_TXN *txn, U32 flags = 0, SV *callback = 0)
1795 PREINIT:
1796 CALLBACK
1797 CODE:
1798{
1799 dREQ (REQ_TXN_FINISH);
1800 req->txn = txn;
1801 req->uint1 = flags;
1802 REQ_SEND;
1803 ptr_nuke (ST (0));
1804}
1805
1806void
1417db_c_close (DBC *dbc, SV *callback = &PL_sv_undef) 1807db_c_close (DBC *dbc, SV *callback = 0)
1808 PREINIT:
1809 CALLBACK
1418 CODE: 1810 CODE:
1419{ 1811{
1420 dREQ (REQ_C_CLOSE); 1812 dREQ (REQ_C_CLOSE);
1421 req->dbc = dbc; 1813 req->dbc = dbc;
1422 REQ_SEND; 1814 REQ_SEND;
1423 ptr_nuke (ST (0)); 1815 ptr_nuke (ST (0));
1424} 1816}
1425 1817
1426void 1818void
1427db_c_count (DBC *dbc, SV *count, U32 flags = 0, SV *callback = &PL_sv_undef) 1819db_c_count (DBC *dbc, SV *count, U32 flags = 0, SV *callback = 0)
1820 PREINIT:
1821 CALLBACK
1428 CODE: 1822 CODE:
1429{ 1823{
1430 dREQ (REQ_C_COUNT); 1824 dREQ (REQ_C_COUNT);
1431 req->dbc = dbc; 1825 req->dbc = dbc;
1432 req->sv1 = SvREFCNT_inc (count); 1826 req->sv1 = SvREFCNT_inc (count);
1433 REQ_SEND; 1827 REQ_SEND;
1434} 1828}
1435 1829
1436void 1830void
1437db_c_put (DBC *dbc, SV *key, SV *data, U32 flags = 0, SV *callback = &PL_sv_undef) 1831db_c_put (DBC *dbc, SV *key, SV *data, U32 flags = 0, SV *callback = 0)
1832 PREINIT:
1833 CALLBACK
1438 CODE: 1834 CODE:
1439{ 1835{
1440 dREQ (REQ_C_PUT); 1836 dREQ (REQ_C_PUT);
1441 req->dbc = dbc; 1837 req->dbc = dbc;
1442 sv_to_dbt (&req->dbt1, key); 1838 sv_to_dbt (&req->dbt1, key);
1444 req->uint1 = flags; 1840 req->uint1 = flags;
1445 REQ_SEND; 1841 REQ_SEND;
1446} 1842}
1447 1843
1448void 1844void
1449db_c_get (DBC *dbc, SV *key, SV *data, U32 flags = 0, SV *callback = &PL_sv_undef) 1845db_c_get (DBC *dbc, SV *key, SV *data, U32 flags = 0, SV *callback = 0)
1846 PREINIT:
1847 CALLBACK
1450 CODE: 1848 CODE:
1451{ 1849{
1452 dREQ (REQ_C_GET); 1850 dREQ (REQ_C_GET);
1453 req->dbc = dbc; 1851 req->dbc = dbc;
1454 req->uint1 = flags; 1852 req->uint1 = flags;
1469 req->sv3 = SvREFCNT_inc (data); SvREADONLY_on (data); 1867 req->sv3 = SvREFCNT_inc (data); SvREADONLY_on (data);
1470 REQ_SEND; 1868 REQ_SEND;
1471} 1869}
1472 1870
1473void 1871void
1474db_c_pget (DBC *dbc, SV *key, SV *pkey, SV *data, U32 flags = 0, SV *callback = &PL_sv_undef) 1872db_c_pget (DBC *dbc, SV *key, SV *pkey, SV *data, U32 flags = 0, SV *callback = 0)
1873 PREINIT:
1874 CALLBACK
1475 CODE: 1875 CODE:
1476{ 1876{
1477 dREQ (REQ_C_PGET); 1877 dREQ (REQ_C_PGET);
1478 req->dbc = dbc; 1878 req->dbc = dbc;
1479 req->uint1 = flags; 1879 req->uint1 = flags;
1497 req->sv3 = SvREFCNT_inc (data); SvREADONLY_on (data); 1897 req->sv3 = SvREFCNT_inc (data); SvREADONLY_on (data);
1498 REQ_SEND; 1898 REQ_SEND;
1499} 1899}
1500 1900
1501void 1901void
1502db_c_del (DBC *dbc, U32 flags = 0, SV *callback = &PL_sv_undef) 1902db_c_del (DBC *dbc, U32 flags = 0, SV *callback = 0)
1903 PREINIT:
1904 CALLBACK
1503 CODE: 1905 CODE:
1504{ 1906{
1505 dREQ (REQ_C_DEL); 1907 dREQ (REQ_C_DEL);
1506 req->dbc = dbc; 1908 req->dbc = dbc;
1507 req->uint1 = flags; 1909 req->uint1 = flags;
1508 REQ_SEND; 1910 REQ_SEND;
1509} 1911}
1510 1912
1511 1913
1512void 1914void
1513db_sequence_open (DB_SEQUENCE *seq, DB_TXN_ornull *txnid, SV *key, U32 flags = 0, SV *callback = &PL_sv_undef) 1915db_sequence_open (DB_SEQUENCE *seq, DB_TXN_ornull *txnid, SV *key, U32 flags = 0, SV *callback = 0)
1916 PREINIT:
1917 CALLBACK
1514 CODE: 1918 CODE:
1515{ 1919{
1516 dREQ (REQ_SEQ_OPEN); 1920 dREQ (REQ_SEQ_OPEN);
1517 req->seq = seq; 1921 req->seq = seq;
1518 req->txn = txnid; 1922 req->txn = txnid;
1520 sv_to_dbt (&req->dbt1, key); 1924 sv_to_dbt (&req->dbt1, key);
1521 REQ_SEND; 1925 REQ_SEND;
1522} 1926}
1523 1927
1524void 1928void
1525db_sequence_close (DB_SEQUENCE *seq, U32 flags = 0, SV *callback = &PL_sv_undef) 1929db_sequence_close (DB_SEQUENCE *seq, U32 flags = 0, SV *callback = 0)
1930 PREINIT:
1931 CALLBACK
1526 CODE: 1932 CODE:
1527{ 1933{
1528 dREQ (REQ_SEQ_CLOSE); 1934 dREQ (REQ_SEQ_CLOSE);
1529 req->seq = seq; 1935 req->seq = seq;
1530 req->uint1 = flags; 1936 req->uint1 = flags;
1531 REQ_SEND; 1937 REQ_SEND;
1532 ptr_nuke (ST (0)); 1938 ptr_nuke (ST (0));
1533} 1939}
1534 1940
1535void 1941void
1536db_sequence_get (DB_SEQUENCE *seq, DB_TXN_ornull *txnid, int delta, SV *seq_value, U32 flags = DB_TXN_NOSYNC, SV *callback = &PL_sv_undef) 1942db_sequence_get (DB_SEQUENCE *seq, DB_TXN_ornull *txnid, int delta, SV *seq_value, U32 flags = DB_TXN_NOSYNC, SV *callback = 0)
1943 PREINIT:
1944 CALLBACK
1537 CODE: 1945 CODE:
1538{ 1946{
1539 dREQ (REQ_SEQ_GET); 1947 dREQ (REQ_SEQ_GET);
1540 req->seq = seq; 1948 req->seq = seq;
1541 req->txn = txnid; 1949 req->txn = txnid;
1544 req->sv1 = SvREFCNT_inc (seq_value); SvREADONLY_on (seq_value); 1952 req->sv1 = SvREFCNT_inc (seq_value); SvREADONLY_on (seq_value);
1545 REQ_SEND; 1953 REQ_SEND;
1546} 1954}
1547 1955
1548void 1956void
1549db_sequence_remove (DB_SEQUENCE *seq, DB_TXN_ornull *txnid = 0, U32 flags = 0, SV *callback = &PL_sv_undef) 1957db_sequence_remove (DB_SEQUENCE *seq, DB_TXN_ornull *txnid = 0, U32 flags = 0, SV *callback = 0)
1958 PREINIT:
1959 CALLBACK
1550 CODE: 1960 CODE:
1551{ 1961{
1552 dREQ (REQ_SEQ_REMOVE); 1962 dREQ (REQ_SEQ_REMOVE);
1553 req->seq = seq; 1963 req->seq = seq;
1554 req->txn = txnid; 1964 req->txn = txnid;
1558 1968
1559 1969
1560MODULE = BDB PACKAGE = BDB::Env 1970MODULE = BDB PACKAGE = BDB::Env
1561 1971
1562void 1972void
1563DESTROY (DB_ENV_ornull *env) 1973DESTROY (DB_ENV_ornuked *env)
1564 CODE: 1974 CODE:
1565 if (env) 1975 if (env)
1566 env->close (env, 0); 1976 env->close (env, 0);
1567 1977
1568int set_data_dir (DB_ENV *env, const char *dir) 1978int set_data_dir (DB_ENV *env, const char *dir)
1593 CODE: 2003 CODE:
1594 RETVAL = env->set_cachesize (env, gbytes, bytes, ncache); 2004 RETVAL = env->set_cachesize (env, gbytes, bytes, ncache);
1595 OUTPUT: 2005 OUTPUT:
1596 RETVAL 2006 RETVAL
1597 2007
1598int set_flags (DB_ENV *env, U32 flags, int onoff) 2008int set_flags (DB_ENV *env, U32 flags, int onoff = 1)
1599 CODE: 2009 CODE:
1600 RETVAL = env->set_flags (env, flags, onoff); 2010 RETVAL = env->set_flags (env, flags, onoff);
1601 OUTPUT: 2011 OUTPUT:
1602 RETVAL 2012 RETVAL
1603 2013
2014#if DB_VERSION_MINOR >= 7
2015
2016int set_intermediate_dir_mode (DB_ENV *env, const char *mode)
2017 CODE:
2018 RETVAL = env->set_intermediate_dir_mode (env, mode);
2019 OUTPUT:
2020 RETVAL
2021
2022int log_set_config (DB_ENV *env, U32 flags, int onoff = 1)
2023 CODE:
2024 RETVAL = env->log_set_config (env, flags, onoff);
2025 OUTPUT:
2026 RETVAL
2027
2028#endif
2029
2030
2031void set_errfile (DB_ENV *env, FILE *errfile = 0)
2032 CODE:
2033 env->set_errfile (env, errfile);
2034
2035void set_msgfile (DB_ENV *env, FILE *msgfile = 0)
2036 CODE:
2037 env->set_msgfile (env, msgfile);
2038
2039int set_verbose (DB_ENV *env, U32 which = -1, int onoff = 1)
2040 CODE:
2041 RETVAL = env->set_verbose (env, which, onoff);
2042 OUTPUT:
2043 RETVAL
2044
1604int set_encrypt (DB_ENV *env, const char *password, U32 flags = 0) 2045int set_encrypt (DB_ENV *env, const char *password, U32 flags = 0)
1605 CODE: 2046 CODE:
1606 RETVAL = env->set_encrypt (env, password, flags); 2047 RETVAL = env->set_encrypt (env, password, flags);
1607 OUTPUT: 2048 OUTPUT:
1608 RETVAL 2049 RETVAL
1609 2050
1610int set_timeout (DB_ENV *env, NV timeout, U32 flags) 2051int set_timeout (DB_ENV *env, NV timeout, U32 flags = DB_SET_TXN_TIMEOUT)
1611 CODE: 2052 CODE:
1612 RETVAL = env->set_timeout (env, timeout * 1000000, flags); 2053 RETVAL = env->set_timeout (env, timeout * 1000000, flags);
1613 OUTPUT: 2054 OUTPUT:
1614 RETVAL 2055 RETVAL
1615 2056
1663 2104
1664int set_lg_max (DB_ENV *env, U32 max) 2105int set_lg_max (DB_ENV *env, U32 max)
1665 CODE: 2106 CODE:
1666 RETVAL = env->set_lg_max (env, max); 2107 RETVAL = env->set_lg_max (env, max);
1667 OUTPUT: 2108 OUTPUT:
2109 RETVAL
2110
2111int mutex_set_max (DB_ENV *env, U32 max)
2112 CODE:
2113 RETVAL = env->mutex_set_max (env, max);
2114 OUTPUT:
2115 RETVAL
2116
2117int mutex_set_increment (DB_ENV *env, U32 increment)
2118 CODE:
2119 RETVAL = env->mutex_set_increment (env, increment);
2120 OUTPUT:
2121 RETVAL
2122
2123int mutex_set_tas_spins (DB_ENV *env, U32 tas_spins)
2124 CODE:
2125 RETVAL = env->mutex_set_tas_spins (env, tas_spins);
2126 OUTPUT:
2127 RETVAL
2128
2129int mutex_set_align (DB_ENV *env, U32 align)
2130 CODE:
2131 RETVAL = env->mutex_set_align (env, align);
2132 OUTPUT:
1668 RETVAL 2133 RETVAL
1669 2134
1670DB_TXN * 2135DB_TXN *
1671txn_begin (DB_ENV *env, DB_TXN_ornull *parent = 0, U32 flags = 0) 2136txn_begin (DB_ENV *env, DB_TXN_ornull *parent = 0, U32 flags = 0)
1672 CODE: 2137 CODE:
1674 if (errno) 2139 if (errno)
1675 croak ("DB_ENV->txn_begin: %s", db_strerror (errno)); 2140 croak ("DB_ENV->txn_begin: %s", db_strerror (errno));
1676 OUTPUT: 2141 OUTPUT:
1677 RETVAL 2142 RETVAL
1678 2143
2144#if DB_VERSION_MINOR >= 5
2145
2146DB_TXN *
2147cdsgroup_begin (DB_ENV *env)
2148 CODE:
2149 errno = env->cdsgroup_begin (env, &RETVAL);
2150 if (errno)
2151 croak ("DB_ENV->cdsgroup_begin: %s", db_strerror (errno));
2152 OUTPUT:
2153 RETVAL
2154
2155#endif
2156
1679MODULE = BDB PACKAGE = BDB::Db 2157MODULE = BDB PACKAGE = BDB::Db
1680 2158
1681void 2159void
1682DESTROY (DB_ornull *db) 2160DESTROY (DB_ornuked *db)
1683 CODE: 2161 CODE:
1684 if (db) 2162 if (db)
1685 { 2163 {
1686 SV *env = (SV *)db->app_private; 2164 SV *env = (SV *)db->app_private;
1687 db->close (db, 0); 2165 db->close (db, 0);
1692 CODE: 2170 CODE:
1693 RETVAL = db->set_cachesize (db, gbytes, bytes, ncache); 2171 RETVAL = db->set_cachesize (db, gbytes, bytes, ncache);
1694 OUTPUT: 2172 OUTPUT:
1695 RETVAL 2173 RETVAL
1696 2174
1697int set_flags (DB *db, U32 flags); 2175int set_flags (DB *db, U32 flags)
1698 CODE: 2176 CODE:
1699 RETVAL = db->set_flags (db, flags); 2177 RETVAL = db->set_flags (db, flags);
1700 OUTPUT: 2178 OUTPUT:
1701 RETVAL 2179 RETVAL
1702 2180
1716 CODE: 2194 CODE:
1717 RETVAL = db->set_bt_minkey (db, minkey); 2195 RETVAL = db->set_bt_minkey (db, minkey);
1718 OUTPUT: 2196 OUTPUT:
1719 RETVAL 2197 RETVAL
1720 2198
1721int set_re_delim(DB *db, int delim); 2199int set_re_delim (DB *db, int delim)
1722 CODE: 2200 CODE:
1723 RETVAL = db->set_re_delim (db, delim); 2201 RETVAL = db->set_re_delim (db, delim);
1724 OUTPUT: 2202 OUTPUT:
1725 RETVAL 2203 RETVAL
1726 2204
1782 2260
1783 2261
1784MODULE = BDB PACKAGE = BDB::Txn 2262MODULE = BDB PACKAGE = BDB::Txn
1785 2263
1786void 2264void
1787DESTROY (DB_TXN_ornull *txn) 2265DESTROY (DB_TXN_ornuked *txn)
1788 CODE: 2266 CODE:
1789 if (txn) 2267 if (txn)
1790 txn->abort (txn); 2268 txn->abort (txn);
1791 2269
1792int set_timeout (DB_TXN *txn, NV timeout, U32 flags) 2270int set_timeout (DB_TXN *txn, NV timeout, U32 flags = DB_SET_TXN_TIMEOUT)
1793 CODE: 2271 CODE:
1794 RETVAL = txn->set_timeout (txn, timeout * 1000000, flags); 2272 RETVAL = txn->set_timeout (txn, timeout * 1000000, flags);
1795 OUTPUT: 2273 OUTPUT:
1796 RETVAL 2274 RETVAL
1797 2275
2276int failed (DB_TXN *txn)
2277 CODE:
2278 RETVAL = !!(txn->flags & TXN_DEADLOCK);
2279 OUTPUT:
2280 RETVAL
2281
1798 2282
1799MODULE = BDB PACKAGE = BDB::Cursor 2283MODULE = BDB PACKAGE = BDB::Cursor
1800 2284
1801void 2285void
1802DESTROY (DBC_ornull *dbc) 2286DESTROY (DBC_ornuked *dbc)
1803 CODE: 2287 CODE:
1804 if (dbc) 2288 if (dbc)
1805 dbc->c_close (dbc); 2289 dbc->c_close (dbc);
1806 2290
2291#if DB_VERSION_MINOR >= 6
2292
2293int set_priority (DBC *dbc, int priority)
2294 CODE:
2295 dbc->set_priority (dbc, priority);
2296
2297#endif
2298
1807MODULE = BDB PACKAGE = BDB::Sequence 2299MODULE = BDB PACKAGE = BDB::Sequence
1808 2300
1809void 2301void
1810DESTROY (DB_SEQUENCE_ornull *seq) 2302DESTROY (DB_SEQUENCE_ornuked *seq)
1811 CODE: 2303 CODE:
1812 if (seq) 2304 if (seq)
1813 seq->close (seq, 0); 2305 seq->close (seq, 0);
1814 2306
1815int initial_value (DB_SEQUENCE *seq, db_seq_t value) 2307int initial_value (DB_SEQUENCE *seq, db_seq_t value)
1834 CODE: 2326 CODE:
1835 RETVAL = seq->set_range (seq, min, max); 2327 RETVAL = seq->set_range (seq, min, max);
1836 OUTPUT: 2328 OUTPUT:
1837 RETVAL 2329 RETVAL
1838 2330
2331

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines