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

Comparing BDB/BDB.xs (file contents):
Revision 1.12 by root, Sun Jul 8 09:16:19 2007 UTC vs.
Revision 1.35 by root, Sun Mar 30 07:12:12 2008 UTC

4 4
5#include "EXTERN.h" 5#include "EXTERN.h"
6#include "perl.h" 6#include "perl.h"
7#include "XSUB.h" 7#include "XSUB.h"
8 8
9// perl stupidly defines these as macros, breaking
10// lots and lots of code.
11#undef open
12#undef close
13#undef abort
14#undef malloc
15#undef free
16#undef send
17
9#include <stddef.h> 18#include <stddef.h>
10#include <stdlib.h> 19#include <stdlib.h>
11#include <errno.h> 20#include <errno.h>
12#include <sys/time.h>
13#include <sys/types.h> 21#include <sys/types.h>
14#include <limits.h> 22#include <limits.h>
15#include <unistd.h>
16#include <fcntl.h> 23#include <fcntl.h>
17 24
25#ifndef _WIN32
26# include <sys/time.h>
27# include <unistd.h>
28#endif
29
18#include <db.h> 30#include <db.h>
19 31
20#if DB_VERSION_MAJOR < 4 || (DB_VERSION_MAJOR == 4 && DB_VERSION_MINOR < 5) 32#if DB_VERSION_MAJOR < 4 || (DB_VERSION_MAJOR == 4 && DB_VERSION_MINOR < 4)
21# error you need Berkeley DB 4.5 or newer installed 33# error you need Berkeley DB 4.4 or newer installed
22#endif 34#endif
23 35
24/* number of seconds after which idle threads exit */ 36/* number of seconds after which idle threads exit */
25#define IDLE_TIMEOUT 10 37#define IDLE_TIMEOUT 10
26 38
28typedef DB_TXN DB_TXN_ornull; 40typedef DB_TXN DB_TXN_ornull;
29typedef DBC DBC_ornull; 41typedef DBC DBC_ornull;
30typedef DB DB_ornull; 42typedef DB DB_ornull;
31typedef DB_SEQUENCE DB_SEQUENCE_ornull; 43typedef DB_SEQUENCE DB_SEQUENCE_ornull;
32 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
33typedef SV SV8; /* byte-sv, used for argument-checking */ 51typedef SV SV8; /* byte-sv, used for argument-checking */
34typedef char *octetstring; 52typedef char *bdb_filename;
35 53
36static SV *prepare_cb; 54static SV *prepare_cb;
37 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
38static inline char * 66static char *
67get_bdb_filename (SV *sv)
68{
69 return !SvOK (sv)
70 ? 0
71 :
72#if _WIN32
73 SvPVutf8_nolen (sv)
74#else
75 SvPVbyte_nolen (sv)
76#endif
77 ;
78}
79
80static void
81debug_errcall (const DB_ENV *dbenv, const char *errpfx, const char *msg)
82{
83 printf ("err[%s]\n", msg);
84}
85
86static void
87debug_msgcall (const DB_ENV *dbenv, const char *msg)
88{
89 printf ("msg[%s]\n", msg);
90}
91
92static char *
39strdup_ornull (const char *s) 93strdup_ornull (const char *s)
40{ 94{
41 return s ? strdup (s) : 0; 95 return s ? strdup (s) : 0;
42} 96}
43 97
44static inline void 98static void
45sv_to_dbt (DBT *dbt, SV *sv) 99sv_to_dbt (DBT *dbt, SV *sv)
46{ 100{
47 STRLEN len; 101 STRLEN len;
48 char *data = SvPVbyte (sv, len); 102 char *data = SvPVbyte (sv, len);
49 103
51 memcpy (dbt->data, data, len); 105 memcpy (dbt->data, data, len);
52 dbt->size = len; 106 dbt->size = len;
53 dbt->flags = DB_DBT_REALLOC; 107 dbt->flags = DB_DBT_REALLOC;
54} 108}
55 109
56static inline void 110static void
57dbt_to_sv (SV *sv, DBT *dbt) 111dbt_to_sv (SV *sv, DBT *dbt)
58{ 112{
59 if (sv) 113 if (sv)
60 { 114 {
61 SvREADONLY_off (sv); 115 SvREADONLY_off (sv);
68 122
69enum { 123enum {
70 REQ_QUIT, 124 REQ_QUIT,
71 REQ_ENV_OPEN, REQ_ENV_CLOSE, REQ_ENV_TXN_CHECKPOINT, REQ_ENV_LOCK_DETECT, 125 REQ_ENV_OPEN, REQ_ENV_CLOSE, REQ_ENV_TXN_CHECKPOINT, REQ_ENV_LOCK_DETECT,
72 REQ_ENV_MEMP_SYNC, REQ_ENV_MEMP_TRICKLE, 126 REQ_ENV_MEMP_SYNC, REQ_ENV_MEMP_TRICKLE,
73 REQ_DB_OPEN, REQ_DB_CLOSE, REQ_DB_COMPACT, REQ_DB_SYNC, 127 REQ_DB_OPEN, REQ_DB_CLOSE, REQ_DB_COMPACT, REQ_DB_SYNC, REQ_DB_UPGRADE,
74 REQ_DB_PUT, REQ_DB_GET, REQ_DB_PGET, REQ_DB_DEL, REQ_DB_KEY_RANGE, 128 REQ_DB_PUT, REQ_DB_GET, REQ_DB_PGET, REQ_DB_DEL, REQ_DB_KEY_RANGE,
75 REQ_TXN_COMMIT, REQ_TXN_ABORT, 129 REQ_TXN_COMMIT, REQ_TXN_ABORT, REQ_TXN_FINISH,
76 REQ_C_CLOSE, REQ_C_COUNT, REQ_C_PUT, REQ_C_GET, REQ_C_PGET, REQ_C_DEL, 130 REQ_C_CLOSE, REQ_C_COUNT, REQ_C_PUT, REQ_C_GET, REQ_C_PGET, REQ_C_DEL,
77 REQ_SEQ_OPEN, REQ_SEQ_CLOSE, REQ_SEQ_GET, REQ_SEQ_REMOVE, 131 REQ_SEQ_OPEN, REQ_SEQ_CLOSE, REQ_SEQ_GET, REQ_SEQ_REMOVE,
78}; 132};
79 133
80typedef struct aio_cb 134typedef struct bdb_cb
81{ 135{
82 struct aio_cb *volatile next; 136 struct bdb_cb *volatile next;
83 SV *callback; 137 SV *callback;
84 int type, pri, result; 138 int type, pri, result;
85 139
86 DB_ENV *env; 140 DB_ENV *env;
87 DB *db; 141 DB *db;
96 150
97 DBT dbt1, dbt2, dbt3; 151 DBT dbt1, dbt2, dbt3;
98 DB_KEY_RANGE key_range; 152 DB_KEY_RANGE key_range;
99 DB_SEQUENCE *seq; 153 DB_SEQUENCE *seq;
100 db_seq_t seq_t; 154 db_seq_t seq_t;
101} aio_cb; 155} bdb_cb;
102 156
103typedef aio_cb *aio_req; 157typedef bdb_cb *bdb_req;
104 158
105enum { 159enum {
106 PRI_MIN = -4, 160 PRI_MIN = -4,
107 PRI_MAX = 4, 161 PRI_MAX = 4,
108 162
135 struct worker *prev, *next; 189 struct worker *prev, *next;
136 190
137 thread_t tid; 191 thread_t tid;
138 192
139 /* locked by reslock, reqlock or wrklock */ 193 /* locked by reslock, reqlock or wrklock */
140 aio_req req; /* currently processed request */ 194 bdb_req req; /* currently processed request */
141 void *dbuf; 195 void *dbuf;
142 DIR *dirp; 196 DIR *dirp;
143} worker; 197} worker;
144 198
145static worker wrk_first = { &wrk_first, &wrk_first, 0 }; 199static worker wrk_first = { &wrk_first, &wrk_first, 0 };
157} 211}
158 212
159static volatile unsigned int nreqs, nready, npending; 213static volatile unsigned int nreqs, nready, npending;
160static volatile unsigned int max_idle = 4; 214static volatile unsigned int max_idle = 4;
161static volatile unsigned int max_outstanding = 0xffffffff; 215static volatile unsigned int max_outstanding = 0xffffffff;
162static int respipe [2]; 216static int respipe_osf [2], respipe [2] = { -1, -1 };
163 217
164static mutex_t reslock = X_MUTEX_INIT; 218static mutex_t reslock = X_MUTEX_INIT;
165static mutex_t reqlock = X_MUTEX_INIT; 219static mutex_t reqlock = X_MUTEX_INIT;
166static cond_t reqwait = X_COND_INIT; 220static cond_t reqwait = X_COND_INIT;
167 221
168#if WORDACCESS_UNSAFE 222#if WORDACCESS_UNSAFE
169 223
170static unsigned int get_nready () 224static unsigned int get_nready (void)
171{ 225{
172 unsigned int retval; 226 unsigned int retval;
173 227
174 X_LOCK (reqlock); 228 X_LOCK (reqlock);
175 retval = nready; 229 retval = nready;
176 X_UNLOCK (reqlock); 230 X_UNLOCK (reqlock);
177 231
178 return retval; 232 return retval;
179} 233}
180 234
181static unsigned int get_npending () 235static unsigned int get_npending (void)
182{ 236{
183 unsigned int retval; 237 unsigned int retval;
184 238
185 X_LOCK (reslock); 239 X_LOCK (reslock);
186 retval = npending; 240 retval = npending;
187 X_UNLOCK (reslock); 241 X_UNLOCK (reslock);
188 242
189 return retval; 243 return retval;
190} 244}
191 245
192static unsigned int get_nthreads () 246static unsigned int get_nthreads (void)
193{ 247{
194 unsigned int retval; 248 unsigned int retval;
195 249
196 X_LOCK (wrklock); 250 X_LOCK (wrklock);
197 retval = started; 251 retval = started;
212 * a somewhat faster data structure might be nice, but 266 * a somewhat faster data structure might be nice, but
213 * with 8 priorities this actually needs <20 insns 267 * with 8 priorities this actually needs <20 insns
214 * per shift, the most expensive operation. 268 * per shift, the most expensive operation.
215 */ 269 */
216typedef struct { 270typedef struct {
217 aio_req qs[NUM_PRI], qe[NUM_PRI]; /* qstart, qend */ 271 bdb_req qs[NUM_PRI], qe[NUM_PRI]; /* qstart, qend */
218 int size; 272 int size;
219} reqq; 273} reqq;
220 274
221static reqq req_queue; 275static reqq req_queue;
222static reqq res_queue; 276static reqq res_queue;
223 277
224int reqq_push (reqq *q, aio_req req) 278int reqq_push (reqq *q, bdb_req req)
225{ 279{
226 int pri = req->pri; 280 int pri = req->pri;
227 req->next = 0; 281 req->next = 0;
228 282
229 if (q->qe[pri]) 283 if (q->qe[pri])
235 q->qe[pri] = q->qs[pri] = req; 289 q->qe[pri] = q->qs[pri] = req;
236 290
237 return q->size++; 291 return q->size++;
238} 292}
239 293
240aio_req reqq_shift (reqq *q) 294bdb_req reqq_shift (reqq *q)
241{ 295{
242 int pri; 296 int pri;
243 297
244 if (!q->size) 298 if (!q->size)
245 return 0; 299 return 0;
246 300
247 --q->size; 301 --q->size;
248 302
249 for (pri = NUM_PRI; pri--; ) 303 for (pri = NUM_PRI; pri--; )
250 { 304 {
251 aio_req req = q->qs[pri]; 305 bdb_req req = q->qs[pri];
252 306
253 if (req) 307 if (req)
254 { 308 {
255 if (!(q->qs[pri] = req->next)) 309 if (!(q->qs[pri] = req->next))
256 q->qe[pri] = 0; 310 q->qe[pri] = 0;
260 } 314 }
261 315
262 abort (); 316 abort ();
263} 317}
264 318
265static int poll_cb (); 319static int poll_cb (void);
266static void req_free (aio_req req); 320static void req_free (bdb_req req);
267static void req_cancel (aio_req req); 321static void req_cancel (bdb_req req);
268 322
269static int req_invoke (aio_req req) 323static int req_invoke (bdb_req req)
270{ 324{
271 dSP; 325 dSP;
272 326
273 if (SvOK (req->callback)) 327 if (SvOK (req->callback))
274 { 328 {
292 dbt_to_sv (req->sv1, &req->dbt1); 346 dbt_to_sv (req->sv1, &req->dbt1);
293 dbt_to_sv (req->sv2, &req->dbt2); 347 dbt_to_sv (req->sv2, &req->dbt2);
294 dbt_to_sv (req->sv3, &req->dbt3); 348 dbt_to_sv (req->sv3, &req->dbt3);
295 break; 349 break;
296 350
351 case REQ_DB_PUT:
352 case REQ_C_PUT:
353 dbt_to_sv (0, &req->dbt1);
354 dbt_to_sv (0, &req->dbt2);
355 break;
356
297 case REQ_DB_KEY_RANGE: 357 case REQ_DB_KEY_RANGE:
298 { 358 {
299 AV *av = newAV (); 359 AV *av = newAV ();
300 360
301 av_push (av, newSVnv (req->key_range.less)); 361 av_push (av, newSVnv (req->key_range.less));
310 370
311 case REQ_SEQ_GET: 371 case REQ_SEQ_GET:
312 SvREADONLY_off (req->sv1); 372 SvREADONLY_off (req->sv1);
313 373
314 if (sizeof (IV) > 4) 374 if (sizeof (IV) > 4)
315 sv_setiv_mg (req->sv1, req->seq_t); 375 sv_setiv_mg (req->sv1, (IV)req->seq_t);
316 else 376 else
317 sv_setnv_mg (req->sv1, req->seq_t); 377 sv_setnv_mg (req->sv1, (NV)req->seq_t);
318 378
319 SvREFCNT_dec (req->sv1); 379 SvREFCNT_dec (req->sv1);
320 break; 380 break;
321 } 381 }
322 382
331 } 391 }
332 392
333 return !SvTRUE (ERRSV); 393 return !SvTRUE (ERRSV);
334} 394}
335 395
336static void req_free (aio_req req) 396static void req_free (bdb_req req)
337{ 397{
338 free (req->buf1); 398 free (req->buf1);
339 free (req->buf2); 399 free (req->buf2);
340 Safefree (req); 400 Safefree (req);
341} 401}
342 402
343static void *aio_proc (void *arg); 403#ifdef USE_SOCKETS_AS_HANDLES
404# define TO_SOCKET(x) (win32_get_osfhandle (x))
405#else
406# define TO_SOCKET(x) (x)
407#endif
408
409static void
410create_respipe (void)
411{
412#ifdef _WIN32
413 int arg; /* argg */
414#endif
415 int old_readfd = respipe [0];
416
417 if (respipe [1] >= 0)
418 respipe_close (TO_SOCKET (respipe [1]));
419
420#ifdef _WIN32
421 if (PerlSock_socketpair (AF_UNIX, SOCK_STREAM, 0, respipe))
422#else
423 if (pipe (respipe))
424#endif
425 croak ("unable to initialize result pipe");
426
427 if (old_readfd >= 0)
428 {
429 if (dup2 (TO_SOCKET (respipe [0]), TO_SOCKET (old_readfd)) < 0)
430 croak ("unable to initialize result pipe(2)");
431
432 respipe_close (respipe [0]);
433 respipe [0] = old_readfd;
434 }
435
436#ifdef _WIN32
437 arg = 1;
438 if (ioctlsocket (TO_SOCKET (respipe [0]), FIONBIO, &arg)
439 || ioctlsocket (TO_SOCKET (respipe [1]), FIONBIO, &arg))
440#else
441 if (fcntl (respipe [0], F_SETFL, O_NONBLOCK)
442 || fcntl (respipe [1], F_SETFL, O_NONBLOCK))
443#endif
444 croak ("unable to initialize result pipe(3)");
445
446 respipe_osf [0] = TO_SOCKET (respipe [0]);
447 respipe_osf [1] = TO_SOCKET (respipe [1]);
448}
449
450X_THREAD_PROC (bdb_proc);
344 451
345static void start_thread (void) 452static void start_thread (void)
346{ 453{
347 worker *wrk = calloc (1, sizeof (worker)); 454 worker *wrk = calloc (1, sizeof (worker));
348 455
349 if (!wrk) 456 if (!wrk)
350 croak ("unable to allocate worker thread data"); 457 croak ("unable to allocate worker thread data");
351 458
352 X_LOCK (wrklock); 459 X_LOCK (wrklock);
353 if (thread_create (&wrk->tid, aio_proc, (void *)wrk)) 460 if (thread_create (&wrk->tid, bdb_proc, (void *)wrk))
354 { 461 {
355 wrk->prev = &wrk_first; 462 wrk->prev = &wrk_first;
356 wrk->next = wrk_first.next; 463 wrk->next = wrk_first.next;
357 wrk_first.next->prev = wrk; 464 wrk_first.next->prev = wrk;
358 wrk_first.next = wrk; 465 wrk_first.next = wrk;
362 free (wrk); 469 free (wrk);
363 470
364 X_UNLOCK (wrklock); 471 X_UNLOCK (wrklock);
365} 472}
366 473
367static void maybe_start_thread () 474static void maybe_start_thread (void)
368{ 475{
369 if (get_nthreads () >= wanted) 476 if (get_nthreads () >= wanted)
370 return; 477 return;
371 478
372 /* todo: maybe use idle here, but might be less exact */ 479 /* todo: maybe use idle here, but might be less exact */
374 return; 481 return;
375 482
376 start_thread (); 483 start_thread ();
377} 484}
378 485
379static void req_send (aio_req req) 486static void req_send (bdb_req req)
380{ 487{
381 SV *wait_callback = 0; 488 SV *wait_callback = 0;
382 489
383 // synthesize callback if none given 490 // synthesize callback if none given
384 if (!SvOK (req->callback)) 491 if (!SvOK (req->callback))
385 { 492 {
493 int count;
494
386 dSP; 495 dSP;
387 PUSHMARK (SP); 496 PUSHMARK (SP);
388 PUTBACK; 497 PUTBACK;
389 int count = call_sv (prepare_cb, G_ARRAY); 498 count = call_sv (prepare_cb, G_ARRAY);
390 SPAGAIN; 499 SPAGAIN;
391 500
392 if (count != 2) 501 if (count != 2)
393 croak ("prepare callback must return exactly two values\n"); 502 croak ("prepare callback must return exactly two values\n");
394 503
395 wait_callback = SvREFCNT_inc (POPs); 504 wait_callback = POPs;
396 SvREFCNT_dec (req->callback); 505 SvREFCNT_dec (req->callback);
397 req->callback = SvREFCNT_inc (POPs); 506 req->callback = SvREFCNT_inc (POPs);
398 } 507 }
399 508
400 ++nreqs; 509 ++nreqs;
411 { 520 {
412 dSP; 521 dSP;
413 PUSHMARK (SP); 522 PUSHMARK (SP);
414 PUTBACK; 523 PUTBACK;
415 call_sv (wait_callback, G_DISCARD); 524 call_sv (wait_callback, G_DISCARD);
416 SvREFCNT_dec (wait_callback);
417 } 525 }
418} 526}
419 527
420static void end_thread (void) 528static void end_thread (void)
421{ 529{
422 aio_req req; 530 bdb_req req;
423 531
424 Newz (0, req, 1, aio_cb); 532 Newz (0, req, 1, bdb_cb);
425 533
426 req->type = REQ_QUIT; 534 req->type = REQ_QUIT;
427 req->pri = PRI_MAX + PRI_BIAS; 535 req->pri = PRI_MAX + PRI_BIAS;
428 536
429 X_LOCK (reqlock); 537 X_LOCK (reqlock);
456 564
457 while (started > wanted) 565 while (started > wanted)
458 end_thread (); 566 end_thread ();
459} 567}
460 568
461static void poll_wait () 569static void poll_wait (void)
462{ 570{
463 fd_set rfd; 571 fd_set rfd;
464 572
465 while (nreqs) 573 while (nreqs)
466 { 574 {
472 if (size) 580 if (size)
473 return; 581 return;
474 582
475 maybe_start_thread (); 583 maybe_start_thread ();
476 584
477 FD_ZERO(&rfd); 585 FD_ZERO (&rfd);
478 FD_SET(respipe [0], &rfd); 586 FD_SET (respipe [0], &rfd);
479 587
480 select (respipe [0] + 1, &rfd, 0, 0, 0); 588 PerlSock_select (respipe [0] + 1, &rfd, 0, 0, 0);
481 } 589 }
482} 590}
483 591
484static int poll_cb () 592static int poll_cb (void)
485{ 593{
486 dSP; 594 dSP;
487 int count = 0; 595 int count = 0;
488 int maxreqs = max_poll_reqs; 596 int maxreqs = max_poll_reqs;
489 int do_croak = 0; 597 int do_croak = 0;
490 struct timeval tv_start, tv_now; 598 struct timeval tv_start, tv_now;
491 aio_req req; 599 bdb_req req;
492 600
493 if (max_poll_time) 601 if (max_poll_time)
494 gettimeofday (&tv_start, 0); 602 gettimeofday (&tv_start, 0);
495 603
496 for (;;) 604 for (;;)
508 616
509 if (!res_queue.size) 617 if (!res_queue.size)
510 { 618 {
511 /* read any signals sent by the worker threads */ 619 /* read any signals sent by the worker threads */
512 char buf [4]; 620 char buf [4];
513 while (read (respipe [0], buf, 4) == 4) 621 while (respipe_read (respipe [0], buf, 4) == 4)
514 ; 622 ;
515 } 623 }
516 } 624 }
517 625
518 X_UNLOCK (reslock); 626 X_UNLOCK (reslock);
555 return count; 663 return count;
556} 664}
557 665
558/*****************************************************************************/ 666/*****************************************************************************/
559 667
560static void *aio_proc (void *thr_arg) 668X_THREAD_PROC (bdb_proc)
561{ 669{
562 aio_req req; 670 bdb_req req;
563 struct timespec ts; 671 struct timespec ts;
564 worker *self = (worker *)thr_arg; 672 worker *self = (worker *)thr_arg;
565 673
566 /* try to distribute timeouts somewhat evenly */ 674 /* try to distribute timeouts somewhat evenly */
567 ts.tv_nsec = (((unsigned long)self + (unsigned long)ts.tv_sec) & 1023UL) 675 ts.tv_nsec = ((unsigned long)self & 1023UL) * (1000000000UL / 1024UL);
568 * (1000000000UL / 1024UL);
569 676
570 for (;;) 677 for (;;)
571 { 678 {
572 ts.tv_sec = time (0) + IDLE_TIMEOUT; 679 ts.tv_sec = time (0) + IDLE_TIMEOUT;
573 680
608 X_UNLOCK (reqlock); 715 X_UNLOCK (reqlock);
609 716
610 switch (req->type) 717 switch (req->type)
611 { 718 {
612 case REQ_QUIT: 719 case REQ_QUIT:
720 req->result = ENOSYS;
613 goto quit; 721 goto quit;
614 722
615 case REQ_ENV_OPEN: 723 case REQ_ENV_OPEN:
616 req->result = req->env->open (req->env, req->buf1, req->uint1, req->int1); 724 req->result = req->env->open (req->env, req->buf1, req->uint1, req->int1);
617 break; 725 break;
650 758
651 case REQ_DB_SYNC: 759 case REQ_DB_SYNC:
652 req->result = req->db->sync (req->db, req->uint1); 760 req->result = req->db->sync (req->db, req->uint1);
653 break; 761 break;
654 762
763 case REQ_DB_UPGRADE:
764 req->result = req->db->upgrade (req->db, req->buf1, req->uint1);
765 break;
766
655 case REQ_DB_PUT: 767 case REQ_DB_PUT:
656 req->result = req->db->put (req->db, req->txn, &req->dbt1, &req->dbt2, req->uint1); 768 req->result = req->db->put (req->db, req->txn, &req->dbt1, &req->dbt2, req->uint1);
657 break; 769 break;
658 770
659 case REQ_DB_GET: 771 case REQ_DB_GET:
676 req->result = req->txn->commit (req->txn, req->uint1); 788 req->result = req->txn->commit (req->txn, req->uint1);
677 break; 789 break;
678 790
679 case REQ_TXN_ABORT: 791 case REQ_TXN_ABORT:
680 req->result = req->txn->abort (req->txn); 792 req->result = req->txn->abort (req->txn);
793 break;
794
795 case REQ_TXN_FINISH:
796 if (req->txn->flags & TXN_DEADLOCK)
797 {
798 req->result = req->txn->abort (req->txn);
799 if (!req->result)
800 req->result = DB_LOCK_DEADLOCK;
801 }
802 else
803 req->result = req->txn->commit (req->txn, req->uint1);
681 break; 804 break;
682 805
683 case REQ_C_CLOSE: 806 case REQ_C_CLOSE:
684 req->result = req->dbc->c_close (req->dbc); 807 req->result = req->dbc->c_close (req->dbc);
685 break; 808 break;
727 default: 850 default:
728 req->result = ENOSYS; 851 req->result = ENOSYS;
729 break; 852 break;
730 } 853 }
731 854
855 if (req->txn && (req->result > 0 || req->result == DB_LOCK_NOTGRANTED))
856 req->txn->flags |= TXN_DEADLOCK;
857
732 X_LOCK (reslock); 858 X_LOCK (reslock);
733 859
734 ++npending; 860 ++npending;
735 861
736 if (!reqq_push (&res_queue, req)) 862 if (!reqq_push (&res_queue, req))
737 /* write a dummy byte to the pipe so fh becomes ready */ 863 /* write a dummy byte to the pipe so fh becomes ready */
738 write (respipe [1], &respipe, 1); 864 respipe_write (respipe_osf [1], (const void *)&respipe_osf, 1);
739 865
740 self->req = 0; 866 self->req = 0;
741 worker_clear (self); 867 worker_clear (self);
742 868
743 X_UNLOCK (reslock); 869 X_UNLOCK (reslock);
767 X_UNLOCK (wrklock); 893 X_UNLOCK (wrklock);
768} 894}
769 895
770static void atfork_child (void) 896static void atfork_child (void)
771{ 897{
772 aio_req prv; 898 bdb_req prv;
773 899
774 while (prv = reqq_shift (&req_queue)) 900 while (prv = reqq_shift (&req_queue))
775 req_free (prv); 901 req_free (prv);
776 902
777 while (prv = reqq_shift (&res_queue)) 903 while (prv = reqq_shift (&res_queue))
792 idle = 0; 918 idle = 0;
793 nreqs = 0; 919 nreqs = 0;
794 nready = 0; 920 nready = 0;
795 npending = 0; 921 npending = 0;
796 922
797 close (respipe [0]); 923 create_respipe ();
798 close (respipe [1]);
799
800 if (!create_pipe (respipe))
801 croak ("unable to initialize result pipe");
802 924
803 atfork_parent (); 925 atfork_parent ();
804} 926}
805 927
806#define dREQ(reqtype) \ 928#define dREQ(reqtype) \
807 aio_req req; \ 929 bdb_req req; \
808 int req_pri = next_pri; \ 930 int req_pri = next_pri; \
809 next_pri = DEFAULT_PRI + PRI_BIAS; \ 931 next_pri = DEFAULT_PRI + PRI_BIAS; \
810 \ 932 \
811 if (SvOK (callback) && !SvROK (callback)) \ 933 if (SvOK (callback) && !SvROK (callback)) \
812 croak ("callback must be undef or of reference type"); \ 934 croak ("callback must be undef or of reference type"); \
813 \ 935 \
814 Newz (0, req, 1, aio_cb); \ 936 Newz (0, req, 1, bdb_cb); \
815 if (!req) \ 937 if (!req) \
816 croak ("out of memory during aio_req allocation"); \ 938 croak ("out of memory during bdb_req allocation"); \
817 \ 939 \
818 req->callback = newSVsv (callback); \ 940 req->callback = newSVsv (callback); \
819 req->type = (reqtype); \ 941 req->type = (reqtype); \
820 req->pri = req_pri 942 req->pri = req_pri
821 943
822#define REQ_SEND \ 944#define REQ_SEND \
823 req_send (req) 945 req_send (req)
824 946
825#define SvPTR(var, arg, type, class, nullok) \ 947#define SvPTR(var, arg, type, class, nullok) \
826 if (!SvOK (arg)) \ 948 if (!SvOK (arg)) \
827 { \ 949 { \
828 if (!nullok) \ 950 if (nullok != 1) \
829 croak (# var " must be a " # class " object, not undef"); \ 951 croak (# var " must be a " # class " object, not undef"); \
830 \ 952 \
831 (var) = 0; \ 953 (var) = 0; \
832 } \ 954 } \
833 else if (sv_derived_from ((arg), # class)) \ 955 else if (sv_derived_from ((arg), # class)) \
834 { \ 956 { \
835 IV tmp = SvIV ((SV*) SvRV (arg)); \ 957 IV tmp = SvIV ((SV*) SvRV (arg)); \
836 (var) = INT2PTR (type, tmp); \ 958 (var) = INT2PTR (type, tmp); \
837 if (!var) \ 959 if (!var && nullok != 2) \
838 croak (# var " is not a valid " # class " object anymore"); \ 960 croak (# var " is not a valid " # class " object anymore"); \
839 } \ 961 } \
840 else \ 962 else \
841 croak (# var " is not of type " # class); \ 963 croak (# var " is not of type " # class); \
842 \ 964 \
844static void 966static void
845ptr_nuke (SV *sv) 967ptr_nuke (SV *sv)
846{ 968{
847 assert (SvROK (sv)); 969 assert (SvROK (sv));
848 sv_setiv (SvRV (sv), 0); 970 sv_setiv (SvRV (sv), 0);
971}
972
973static int
974errno_get (pTHX_ SV *sv, MAGIC *mg)
975{
976 if (*mg->mg_ptr == '!') // should always be the case
977 if (-30999 <= errno && errno <= -30800)
978 {
979 sv_setnv (sv, (NV)errno);
980 sv_setpv (sv, db_strerror (errno));
981 SvNOK_on (sv); /* what a wonderful hack! */
982 // ^^^ copied from perl sources
983 return 0;
984 }
985
986 return PL_vtbl_sv.svt_get (aTHX_ sv, mg);
987}
988
989static MGVTBL vtbl_errno;
990
991// this wonderful hack :( patches perl's $! variable to support our errno values
992static void
993patch_errno (void)
994{
995 SV *sv;
996 MAGIC *mg;
997
998 if (!(sv = get_sv ("!", 1)))
999 return;
1000
1001 if (!(mg = mg_find (sv, PERL_MAGIC_sv)))
1002 return;
1003
1004 if (mg->mg_virtual != &PL_vtbl_sv)
1005 return;
1006
1007 vtbl_errno = PL_vtbl_sv;
1008 vtbl_errno.svt_get = errno_get;
1009 mg->mg_virtual = &vtbl_errno;
849} 1010}
850 1011
851MODULE = BDB PACKAGE = BDB 1012MODULE = BDB PACKAGE = BDB
852 1013
853PROTOTYPES: ENABLE 1014PROTOTYPES: ENABLE
870 const_iv (INIT_TXN) 1031 const_iv (INIT_TXN)
871 const_iv (RECOVER) 1032 const_iv (RECOVER)
872 const_iv (INIT_TXN) 1033 const_iv (INIT_TXN)
873 const_iv (RECOVER_FATAL) 1034 const_iv (RECOVER_FATAL)
874 const_iv (CREATE) 1035 const_iv (CREATE)
1036 const_iv (RDONLY)
875 const_iv (USE_ENVIRON) 1037 const_iv (USE_ENVIRON)
876 const_iv (USE_ENVIRON_ROOT) 1038 const_iv (USE_ENVIRON_ROOT)
877 const_iv (LOCKDOWN) 1039 const_iv (LOCKDOWN)
878 const_iv (PRIVATE) 1040 const_iv (PRIVATE)
879 const_iv (REGISTER) 1041 const_iv (REGISTER)
885 const_iv (DSYNC_DB) 1047 const_iv (DSYNC_DB)
886 const_iv (DSYNC_LOG) 1048 const_iv (DSYNC_LOG)
887 const_iv (LOG_AUTOREMOVE) 1049 const_iv (LOG_AUTOREMOVE)
888 const_iv (LOG_INMEMORY) 1050 const_iv (LOG_INMEMORY)
889 const_iv (NOLOCKING) 1051 const_iv (NOLOCKING)
890 const_iv (MULTIVERSION)
891 const_iv (NOMMAP) 1052 const_iv (NOMMAP)
892 const_iv (NOPANIC) 1053 const_iv (NOPANIC)
893 const_iv (OVERWRITE) 1054 const_iv (OVERWRITE)
894 const_iv (PANIC_ENVIRONMENT) 1055 const_iv (PANIC_ENVIRONMENT)
895 const_iv (REGION_INIT) 1056 const_iv (REGION_INIT)
896 const_iv (TIME_NOTGRANTED) 1057 const_iv (TIME_NOTGRANTED)
897 const_iv (TXN_NOSYNC) 1058 const_iv (TXN_NOSYNC)
898 const_iv (TXN_SNAPSHOT) 1059 const_iv (TXN_NOT_DURABLE)
899 const_iv (TXN_WRITE_NOSYNC) 1060 const_iv (TXN_WRITE_NOSYNC)
900 const_iv (WRITECURSOR) 1061 const_iv (WRITECURSOR)
901 const_iv (YIELDCPU) 1062 const_iv (YIELDCPU)
902 const_iv (ENCRYPT_AES) 1063 const_iv (ENCRYPT_AES)
903 const_iv (XA_CREATE) 1064 const_iv (XA_CREATE)
911 const_iv (READ_UNCOMMITTED) 1072 const_iv (READ_UNCOMMITTED)
912 const_iv (TRUNCATE) 1073 const_iv (TRUNCATE)
913 const_iv (NOSYNC) 1074 const_iv (NOSYNC)
914 const_iv (CHKSUM) 1075 const_iv (CHKSUM)
915 const_iv (ENCRYPT) 1076 const_iv (ENCRYPT)
916 const_iv (TXN_NOT_DURABLE)
917 const_iv (DUP) 1077 const_iv (DUP)
918 const_iv (DUPSORT) 1078 const_iv (DUPSORT)
919 const_iv (RECNUM) 1079 const_iv (RECNUM)
920 const_iv (RENUMBER) 1080 const_iv (RENUMBER)
921 const_iv (REVSPLITOFF) 1081 const_iv (REVSPLITOFF)
926 const_iv (GET_BOTH_RANGE) 1086 const_iv (GET_BOTH_RANGE)
927 //const_iv (SET_RECNO) 1087 //const_iv (SET_RECNO)
928 //const_iv (MULTIPLE) 1088 //const_iv (MULTIPLE)
929 const_iv (SNAPSHOT) 1089 const_iv (SNAPSHOT)
930 const_iv (JOIN_ITEM) 1090 const_iv (JOIN_ITEM)
1091 const_iv (JOIN_NOSORT)
931 const_iv (RMW) 1092 const_iv (RMW)
932 1093
933 const_iv (NOTFOUND) 1094 const_iv (NOTFOUND)
934 const_iv (KEYEMPTY) 1095 const_iv (KEYEMPTY)
935 const_iv (LOCK_DEADLOCK) 1096 const_iv (LOCK_DEADLOCK)
946 const_iv (APPEND) 1107 const_iv (APPEND)
947 const_iv (NODUPDATA) 1108 const_iv (NODUPDATA)
948 const_iv (NOOVERWRITE) 1109 const_iv (NOOVERWRITE)
949 1110
950 const_iv (TXN_NOWAIT) 1111 const_iv (TXN_NOWAIT)
951 const_iv (TXN_SNAPSHOT)
952 const_iv (TXN_SYNC) 1112 const_iv (TXN_SYNC)
953 1113
954 const_iv (SET_LOCK_TIMEOUT) 1114 const_iv (SET_LOCK_TIMEOUT)
955 const_iv (SET_TXN_TIMEOUT) 1115 const_iv (SET_TXN_TIMEOUT)
956 1116
957 const_iv (JOIN_ITEM)
958 const_iv (FIRST) 1117 const_iv (FIRST)
959 const_iv (NEXT) 1118 const_iv (NEXT)
960 const_iv (NEXT_DUP) 1119 const_iv (NEXT_DUP)
961 const_iv (NEXT_NODUP) 1120 const_iv (NEXT_NODUP)
962 const_iv (PREV) 1121 const_iv (PREV)
984 const_iv (LOCK_YOUNGEST) 1143 const_iv (LOCK_YOUNGEST)
985 1144
986 const_iv (SEQ_DEC) 1145 const_iv (SEQ_DEC)
987 const_iv (SEQ_INC) 1146 const_iv (SEQ_INC)
988 const_iv (SEQ_WRAP) 1147 const_iv (SEQ_WRAP)
1148
1149 const_iv (BUFFER_SMALL)
1150 const_iv (DONOTINDEX)
1151 const_iv (KEYEMPTY )
1152 const_iv (KEYEXIST )
1153 const_iv (LOCK_DEADLOCK)
1154 const_iv (LOCK_NOTGRANTED)
1155 const_iv (LOG_BUFFER_FULL)
1156 const_iv (NOSERVER)
1157 const_iv (NOSERVER_HOME)
1158 const_iv (NOSERVER_ID)
1159 const_iv (NOTFOUND)
1160 const_iv (PAGE_NOTFOUND)
1161 const_iv (REP_DUPMASTER)
1162 const_iv (REP_HANDLE_DEAD)
1163 const_iv (REP_HOLDELECTION)
1164 const_iv (REP_IGNORE)
1165 const_iv (REP_ISPERM)
1166 const_iv (REP_JOIN_FAILURE)
1167 const_iv (REP_LOCKOUT)
1168 const_iv (REP_NEWMASTER)
1169 const_iv (REP_NEWSITE)
1170 const_iv (REP_NOTPERM)
1171 const_iv (REP_UNAVAIL)
1172 const_iv (RUNRECOVERY)
1173 const_iv (SECONDARY_BAD)
1174 const_iv (VERIFY_BAD)
1175 const_iv (VERSION_MISMATCH)
1176
1177 const_iv (VERB_DEADLOCK)
1178 const_iv (VERB_RECOVERY)
1179 const_iv (VERB_REGISTER)
1180 const_iv (VERB_REPLICATION)
1181 const_iv (VERB_WAITSFOR)
1182
1183 const_iv (VERSION_MAJOR)
1184 const_iv (VERSION_MINOR)
1185 const_iv (VERSION_PATCH)
1186#if DB_VERSION_MINOR >= 5
1187 const_iv (MULTIVERSION)
1188 const_iv (TXN_SNAPSHOT)
1189#endif
1190#if DB_VERSION_MINOR >= 6
1191 const_iv (PREV_DUP)
1192 const_iv (PRIORITY_UNCHANGED)
1193 const_iv (PRIORITY_VERY_LOW)
1194 const_iv (PRIORITY_LOW)
1195 const_iv (PRIORITY_DEFAULT)
1196 const_iv (PRIORITY_HIGH)
1197 const_iv (PRIORITY_VERY_HIGH)
1198#endif
989 }; 1199 };
990 1200
991 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; ) 1201 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; )
992 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv)); 1202 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv));
993 1203
1204 newCONSTSUB (stash, "VERSION", newSVnv (DB_VERSION_MAJOR + DB_VERSION_MINOR * .1));
1205 newCONSTSUB (stash, "VERSION_STRING", newSVpv (DB_VERSION_STRING, 0));
1206
994 if (!create_pipe (respipe)) 1207 create_respipe ();
995 croak ("unable to initialize result pipe");
996 1208
997 X_THREAD_ATFORK (atfork_prepare, atfork_parent, atfork_child); 1209 X_THREAD_ATFORK (atfork_prepare, atfork_parent, atfork_child);
998#ifdef _WIN32 1210#ifdef _WIN32
999 X_MUTEX_CHECK (wrklock); 1211 X_MUTEX_CHECK (wrklock);
1000 X_MUTEX_CHECK (reslock); 1212 X_MUTEX_CHECK (reslock);
1001 X_MUTEX_CHECK (reqlock); 1213 X_MUTEX_CHECK (reqlock);
1002 1214
1003 X_COND_CHECK (reqwait); 1215 X_COND_CHECK (reqwait);
1004#endif 1216#endif
1217 patch_errno ();
1005} 1218}
1006 1219
1007void 1220void
1008max_poll_reqs (int nreqs) 1221max_poll_reqs (int nreqs)
1009 PROTOTYPE: $ 1222 PROTOTYPE: $
1141 PROTOTYPE: & 1354 PROTOTYPE: &
1142 CODE: 1355 CODE:
1143 SvREFCNT_dec (prepare_cb); 1356 SvREFCNT_dec (prepare_cb);
1144 prepare_cb = newSVsv (cb); 1357 prepare_cb = newSVsv (cb);
1145 1358
1359char *
1360strerror (int errorno = errno)
1361 PROTOTYPE: ;$
1362 CODE:
1363 RETVAL = db_strerror (errorno);
1364 OUTPUT:
1365 RETVAL
1146 1366
1147DB_ENV * 1367DB_ENV *
1148db_env_create (U32 env_flags = 0) 1368db_env_create (U32 env_flags = 0)
1149 CODE: 1369 CODE:
1150{ 1370{
1151 errno = db_env_create (&RETVAL, env_flags); 1371 errno = db_env_create (&RETVAL, env_flags);
1152 if (errno) 1372 if (errno)
1153 croak ("db_env_create: %s", db_strerror (errno)); 1373 croak ("db_env_create: %s", db_strerror (errno));
1374
1375 if (0)
1376 {
1377 RETVAL->set_errcall (RETVAL, debug_errcall);
1378 RETVAL->set_msgcall (RETVAL, debug_msgcall);
1379 }
1154} 1380}
1155 OUTPUT: 1381 OUTPUT:
1156 RETVAL 1382 RETVAL
1157 1383
1158void 1384void
1159db_env_open (DB_ENV *env, octetstring db_home, U32 open_flags, int mode, SV *callback = &PL_sv_undef) 1385db_env_open (DB_ENV *env, bdb_filename db_home, U32 open_flags, int mode, SV *callback = &PL_sv_undef)
1160 CODE: 1386 CODE:
1161{ 1387{
1162 env->set_thread_count (env, get_nthreads ());
1163
1164 dREQ (REQ_ENV_OPEN); 1388 dREQ (REQ_ENV_OPEN);
1389
1165 req->env = env; 1390 req->env = env;
1166 req->uint1 = open_flags | DB_THREAD; 1391 req->uint1 = open_flags | DB_THREAD;
1167 req->int1 = mode; 1392 req->int1 = mode;
1168 req->buf1 = strdup_ornull (db_home); 1393 req->buf1 = strdup_ornull (db_home);
1169 REQ_SEND; 1394 REQ_SEND;
1236} 1461}
1237 OUTPUT: 1462 OUTPUT:
1238 RETVAL 1463 RETVAL
1239 1464
1240void 1465void
1241db_open (DB *db, DB_TXN_ornull *txnid, octetstring file, octetstring database, int type, U32 flags, int mode, SV *callback = &PL_sv_undef) 1466db_open (DB *db, DB_TXN_ornull *txnid, bdb_filename file, bdb_filename database, int type, U32 flags, int mode, SV *callback = &PL_sv_undef)
1242 CODE: 1467 CODE:
1243{ 1468{
1244 dREQ (REQ_DB_OPEN); 1469 dREQ (REQ_DB_OPEN);
1245 req->db = db; 1470 req->db = db;
1246 req->txn = txnid; 1471 req->txn = txnid;
1286 req->uint1 = flags; 1511 req->uint1 = flags;
1287 REQ_SEND; 1512 REQ_SEND;
1288} 1513}
1289 1514
1290void 1515void
1516db_upgrade (DB *db, bdb_filename file, U32 flags = 0, SV *callback = &PL_sv_undef)
1517 CODE:
1518{
1519 dREQ (REQ_DB_SYNC);
1520 req->db = db;
1521 req->buf1 = strdup (file);
1522 req->uint1 = flags;
1523 REQ_SEND;
1524}
1525
1526void
1291db_key_range (DB *db, DB_TXN_ornull *txn, SV *key, SV *key_range, U32 flags = 0, SV *callback = &PL_sv_undef) 1527db_key_range (DB *db, DB_TXN_ornull *txn, SV *key, SV *key_range, U32 flags = 0, SV *callback = &PL_sv_undef)
1292 CODE: 1528 CODE:
1293{ 1529{
1294 dREQ (REQ_DB_KEY_RANGE); 1530 dREQ (REQ_DB_KEY_RANGE);
1295 req->db = db; 1531 req->db = db;
1314} 1550}
1315 1551
1316void 1552void
1317db_get (DB *db, DB_TXN_ornull *txn, SV *key, SV *data, U32 flags = 0, SV *callback = &PL_sv_undef) 1553db_get (DB *db, DB_TXN_ornull *txn, SV *key, SV *data, U32 flags = 0, SV *callback = &PL_sv_undef)
1318 CODE: 1554 CODE:
1555 if (SvREADONLY (data))
1556 croak ("can't modify read-only data scalar in db_get");
1319{ 1557{
1320 dREQ (REQ_DB_GET); 1558 dREQ (REQ_DB_GET);
1321 req->db = db; 1559 req->db = db;
1322 req->txn = txn; 1560 req->txn = txn;
1323 req->uint1 = flags; 1561 req->uint1 = flags;
1328} 1566}
1329 1567
1330void 1568void
1331db_pget (DB *db, DB_TXN_ornull *txn, SV *key, SV *pkey, SV *data, U32 flags = 0, SV *callback = &PL_sv_undef) 1569db_pget (DB *db, DB_TXN_ornull *txn, SV *key, SV *pkey, SV *data, U32 flags = 0, SV *callback = &PL_sv_undef)
1332 CODE: 1570 CODE:
1571 if (SvREADONLY (data))
1572 croak ("can't modify read-only data scalar in db_pget");
1333{ 1573{
1334 dREQ (REQ_DB_PGET); 1574 dREQ (REQ_DB_PGET);
1335 req->db = db; 1575 req->db = db;
1336 req->txn = txn; 1576 req->txn = txn;
1337 req->uint1 = flags; 1577 req->uint1 = flags;
1374 REQ_SEND; 1614 REQ_SEND;
1375 ptr_nuke (ST (0)); 1615 ptr_nuke (ST (0));
1376} 1616}
1377 1617
1378void 1618void
1619db_txn_finish (DB_TXN *txn, U32 flags = 0, SV *callback = &PL_sv_undef)
1620 CODE:
1621{
1622 dREQ (REQ_TXN_FINISH);
1623 req->txn = txn;
1624 req->uint1 = flags;
1625 REQ_SEND;
1626 ptr_nuke (ST (0));
1627}
1628
1629void
1379db_c_close (DBC *dbc, SV *callback = &PL_sv_undef) 1630db_c_close (DBC *dbc, SV *callback = &PL_sv_undef)
1380 CODE: 1631 CODE:
1381{ 1632{
1382 dREQ (REQ_C_CLOSE); 1633 dREQ (REQ_C_CLOSE);
1383 req->dbc = dbc; 1634 req->dbc = dbc;
1520 1771
1521 1772
1522MODULE = BDB PACKAGE = BDB::Env 1773MODULE = BDB PACKAGE = BDB::Env
1523 1774
1524void 1775void
1525DESTROY (DB_ENV_ornull *env) 1776DESTROY (DB_ENV_ornuked *env)
1526 CODE: 1777 CODE:
1527 if (env) 1778 if (env)
1528 env->close (env, 0); 1779 env->close (env, 0);
1529 1780
1530int set_data_dir (DB_ENV *env, const char *dir) 1781int set_data_dir (DB_ENV *env, const char *dir)
1555 CODE: 1806 CODE:
1556 RETVAL = env->set_cachesize (env, gbytes, bytes, ncache); 1807 RETVAL = env->set_cachesize (env, gbytes, bytes, ncache);
1557 OUTPUT: 1808 OUTPUT:
1558 RETVAL 1809 RETVAL
1559 1810
1560int set_flags (DB_ENV *env, U32 flags, int onoff) 1811int set_flags (DB_ENV *env, U32 flags, int onoff = 1)
1561 CODE: 1812 CODE:
1562 RETVAL = env->set_flags (env, flags, onoff); 1813 RETVAL = env->set_flags (env, flags, onoff);
1563 OUTPUT: 1814 OUTPUT:
1564 RETVAL 1815 RETVAL
1565 1816
1817void set_errfile (DB_ENV *env, FILE *errfile = 0)
1818 CODE:
1819 env->set_errfile (env, errfile);
1820
1821void set_msgfile (DB_ENV *env, FILE *msgfile = 0)
1822 CODE:
1823 env->set_msgfile (env, msgfile);
1824
1825int set_verbose (DB_ENV *env, U32 which = -1, int onoff = 1)
1826 CODE:
1827 RETVAL = env->set_verbose (env, which, onoff);
1828 OUTPUT:
1829 RETVAL
1830
1566int set_encrypt (DB_ENV *env, const char *password, U32 flags = 0) 1831int set_encrypt (DB_ENV *env, const char *password, U32 flags = 0)
1567 CODE: 1832 CODE:
1568 RETVAL = env->set_encrypt (env, password, flags); 1833 RETVAL = env->set_encrypt (env, password, flags);
1569 OUTPUT: 1834 OUTPUT:
1570 RETVAL 1835 RETVAL
1571 1836
1572int set_timeout (DB_ENV *env, NV timeout, U32 flags) 1837int set_timeout (DB_ENV *env, NV timeout, U32 flags = DB_SET_TXN_TIMEOUT)
1573 CODE: 1838 CODE:
1574 RETVAL = env->set_timeout (env, timeout * 1000000, flags); 1839 RETVAL = env->set_timeout (env, timeout * 1000000, flags);
1575 OUTPUT: 1840 OUTPUT:
1576 RETVAL 1841 RETVAL
1577 1842
1625 1890
1626int set_lg_max (DB_ENV *env, U32 max) 1891int set_lg_max (DB_ENV *env, U32 max)
1627 CODE: 1892 CODE:
1628 RETVAL = env->set_lg_max (env, max); 1893 RETVAL = env->set_lg_max (env, max);
1629 OUTPUT: 1894 OUTPUT:
1895 RETVAL
1896
1897int mutex_set_max (DB_ENV *env, U32 max)
1898 CODE:
1899 RETVAL = env->mutex_set_max (env, max);
1900 OUTPUT:
1901 RETVAL
1902
1903int mutex_set_increment (DB_ENV *env, U32 increment)
1904 CODE:
1905 RETVAL = env->mutex_set_increment (env, increment);
1906 OUTPUT:
1907 RETVAL
1908
1909int mutex_set_tas_spins (DB_ENV *env, U32 tas_spins)
1910 CODE:
1911 RETVAL = env->mutex_set_tas_spins (env, tas_spins);
1912 OUTPUT:
1913 RETVAL
1914
1915int mutex_set_align (DB_ENV *env, U32 align)
1916 CODE:
1917 RETVAL = env->mutex_set_align (env, align);
1918 OUTPUT:
1630 RETVAL 1919 RETVAL
1631 1920
1632DB_TXN * 1921DB_TXN *
1633txn_begin (DB_ENV *env, DB_TXN_ornull *parent = 0, U32 flags = 0) 1922txn_begin (DB_ENV *env, DB_TXN_ornull *parent = 0, U32 flags = 0)
1634 CODE: 1923 CODE:
1639 RETVAL 1928 RETVAL
1640 1929
1641MODULE = BDB PACKAGE = BDB::Db 1930MODULE = BDB PACKAGE = BDB::Db
1642 1931
1643void 1932void
1644DESTROY (DB_ornull *db) 1933DESTROY (DB_ornuked *db)
1645 CODE: 1934 CODE:
1646 if (db) 1935 if (db)
1647 { 1936 {
1648 SV *env = (SV *)db->app_private; 1937 SV *env = (SV *)db->app_private;
1649 db->close (db, 0); 1938 db->close (db, 0);
1654 CODE: 1943 CODE:
1655 RETVAL = db->set_cachesize (db, gbytes, bytes, ncache); 1944 RETVAL = db->set_cachesize (db, gbytes, bytes, ncache);
1656 OUTPUT: 1945 OUTPUT:
1657 RETVAL 1946 RETVAL
1658 1947
1659int set_flags (DB *db, U32 flags); 1948int set_flags (DB *db, U32 flags)
1660 CODE: 1949 CODE:
1661 RETVAL = db->set_flags (db, flags); 1950 RETVAL = db->set_flags (db, flags);
1662 OUTPUT: 1951 OUTPUT:
1663 RETVAL 1952 RETVAL
1664 1953
1678 CODE: 1967 CODE:
1679 RETVAL = db->set_bt_minkey (db, minkey); 1968 RETVAL = db->set_bt_minkey (db, minkey);
1680 OUTPUT: 1969 OUTPUT:
1681 RETVAL 1970 RETVAL
1682 1971
1683int set_re_delim(DB *db, int delim); 1972int set_re_delim (DB *db, int delim)
1684 CODE: 1973 CODE:
1685 RETVAL = db->set_re_delim (db, delim); 1974 RETVAL = db->set_re_delim (db, delim);
1686 OUTPUT: 1975 OUTPUT:
1687 RETVAL 1976 RETVAL
1688 1977
1744 2033
1745 2034
1746MODULE = BDB PACKAGE = BDB::Txn 2035MODULE = BDB PACKAGE = BDB::Txn
1747 2036
1748void 2037void
1749DESTROY (DB_TXN_ornull *txn) 2038DESTROY (DB_TXN_ornuked *txn)
1750 CODE: 2039 CODE:
1751 if (txn) 2040 if (txn)
1752 txn->abort (txn); 2041 txn->abort (txn);
1753 2042
1754int set_timeout (DB_TXN *txn, NV timeout, U32 flags) 2043int set_timeout (DB_TXN *txn, NV timeout, U32 flags = DB_SET_TXN_TIMEOUT)
1755 CODE: 2044 CODE:
1756 RETVAL = txn->set_timeout (txn, timeout * 1000000, flags); 2045 RETVAL = txn->set_timeout (txn, timeout * 1000000, flags);
1757 OUTPUT: 2046 OUTPUT:
1758 RETVAL 2047 RETVAL
1759 2048
2049int failed (DB_TXN *txn)
2050 CODE:
2051 RETVAL = !!(txn->flags & TXN_DEADLOCK);
2052 OUTPUT:
2053 RETVAL
2054
1760 2055
1761MODULE = BDB PACKAGE = BDB::Cursor 2056MODULE = BDB PACKAGE = BDB::Cursor
1762 2057
1763void 2058void
1764DESTROY (DBC_ornull *dbc) 2059DESTROY (DBC_ornuked *dbc)
1765 CODE: 2060 CODE:
1766 if (dbc) 2061 if (dbc)
1767 dbc->c_close (dbc); 2062 dbc->c_close (dbc);
1768 2063
2064#if DB_VERSION_MINOR >= 6
2065
2066int set_priority (DBC *dbc, int priority)
2067 CODE:
2068 dbc->set_priority (dbc, priority);
2069
2070#endif
2071
1769MODULE = BDB PACKAGE = BDB::Sequence 2072MODULE = BDB PACKAGE = BDB::Sequence
1770 2073
1771void 2074void
1772DESTROY (DB_SEQUENCE_ornull *seq) 2075DESTROY (DB_SEQUENCE_ornuked *seq)
1773 CODE: 2076 CODE:
1774 if (seq) 2077 if (seq)
1775 seq->close (seq, 0); 2078 seq->close (seq, 0);
1776 2079
1777int initial_value (DB_SEQUENCE *seq, db_seq_t value) 2080int initial_value (DB_SEQUENCE *seq, db_seq_t value)
1796 CODE: 2099 CODE:
1797 RETVAL = seq->set_range (seq, min, max); 2100 RETVAL = seq->set_range (seq, min, max);
1798 OUTPUT: 2101 OUTPUT:
1799 RETVAL 2102 RETVAL
1800 2103
2104

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines