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.44 by root, Wed Jul 9 21:00:13 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 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}
107
108static char *
39strdup_ornull (const char *s) 109strdup_ornull (const char *s)
40{ 110{
41 return s ? strdup (s) : 0; 111 return s ? strdup (s) : 0;
42} 112}
43 113
44static inline void 114static void
45sv_to_dbt (DBT *dbt, SV *sv) 115sv_to_dbt (DBT *dbt, SV *sv)
46{ 116{
47 STRLEN len; 117 STRLEN len;
48 char *data = SvPVbyte (sv, len); 118 char *data = SvPVbyte (sv, len);
49 119
51 memcpy (dbt->data, data, len); 121 memcpy (dbt->data, data, len);
52 dbt->size = len; 122 dbt->size = len;
53 dbt->flags = DB_DBT_REALLOC; 123 dbt->flags = DB_DBT_REALLOC;
54} 124}
55 125
56static inline void 126static void
57dbt_to_sv (SV *sv, DBT *dbt) 127dbt_to_sv (SV *sv, DBT *dbt)
58{ 128{
59 if (sv) 129 if (sv)
60 { 130 {
61 SvREADONLY_off (sv); 131 SvREADONLY_off (sv);
67} 137}
68 138
69enum { 139enum {
70 REQ_QUIT, 140 REQ_QUIT,
71 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,
72 REQ_ENV_MEMP_SYNC, REQ_ENV_MEMP_TRICKLE, 142 REQ_ENV_MEMP_SYNC, REQ_ENV_MEMP_TRICKLE, REQ_ENV_DBREMOVE, REQ_ENV_DBRENAME,
73 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,
74 REQ_DB_PUT, REQ_DB_GET, REQ_DB_PGET, REQ_DB_DEL, REQ_DB_KEY_RANGE, 144 REQ_DB_PUT, REQ_DB_GET, REQ_DB_PGET, REQ_DB_DEL, REQ_DB_KEY_RANGE,
75 REQ_TXN_COMMIT, REQ_TXN_ABORT, 145 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, 146 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, 147 REQ_SEQ_OPEN, REQ_SEQ_CLOSE, REQ_SEQ_GET, REQ_SEQ_REMOVE,
78}; 148};
79 149
80typedef struct aio_cb 150typedef struct bdb_cb
81{ 151{
82 struct aio_cb *volatile next; 152 struct bdb_cb *volatile next;
83 SV *callback; 153 SV *callback;
84 int type, pri, result; 154 int type, pri, result;
85 155
86 DB_ENV *env; 156 DB_ENV *env;
87 DB *db; 157 DB *db;
89 DBC *dbc; 159 DBC *dbc;
90 160
91 UV uv1; 161 UV uv1;
92 int int1, int2; 162 int int1, int2;
93 U32 uint1, uint2; 163 U32 uint1, uint2;
94 char *buf1, *buf2; 164 char *buf1, *buf2, *buf3;
95 SV *sv1, *sv2, *sv3; 165 SV *sv1, *sv2, *sv3;
96 166
97 DBT dbt1, dbt2, dbt3; 167 DBT dbt1, dbt2, dbt3;
98 DB_KEY_RANGE key_range; 168 DB_KEY_RANGE key_range;
99 DB_SEQUENCE *seq; 169 DB_SEQUENCE *seq;
100 db_seq_t seq_t; 170 db_seq_t seq_t;
101} aio_cb; 171} bdb_cb;
102 172
103typedef aio_cb *aio_req; 173typedef bdb_cb *bdb_req;
104 174
105enum { 175enum {
106 PRI_MIN = -4, 176 PRI_MIN = -4,
107 PRI_MAX = 4, 177 PRI_MAX = 4,
108 178
111 NUM_PRI = PRI_MAX + PRI_BIAS + 1, 181 NUM_PRI = PRI_MAX + PRI_BIAS + 1,
112}; 182};
113 183
114#define AIO_TICKS ((1000000 + 1023) >> 10) 184#define AIO_TICKS ((1000000 + 1023) >> 10)
115 185
186static SV *on_next_submit;
187
116static unsigned int max_poll_time = 0; 188static unsigned int max_poll_time = 0;
117static unsigned int max_poll_reqs = 0; 189static unsigned int max_poll_reqs = 0;
118 190
119/* calculcate time difference in ~1/AIO_TICKS of a second */ 191/* calculcate time difference in ~1/AIO_TICKS of a second */
120static int tvdiff (struct timeval *tv1, struct timeval *tv2) 192static int tvdiff (struct timeval *tv1, struct timeval *tv2)
135 struct worker *prev, *next; 207 struct worker *prev, *next;
136 208
137 thread_t tid; 209 thread_t tid;
138 210
139 /* locked by reslock, reqlock or wrklock */ 211 /* locked by reslock, reqlock or wrklock */
140 aio_req req; /* currently processed request */ 212 bdb_req req; /* currently processed request */
141 void *dbuf; 213 void *dbuf;
142 DIR *dirp; 214 DIR *dirp;
143} worker; 215} worker;
144 216
145static worker wrk_first = { &wrk_first, &wrk_first, 0 }; 217static worker wrk_first = { &wrk_first, &wrk_first, 0 };
157} 229}
158 230
159static volatile unsigned int nreqs, nready, npending; 231static volatile unsigned int nreqs, nready, npending;
160static volatile unsigned int max_idle = 4; 232static volatile unsigned int max_idle = 4;
161static volatile unsigned int max_outstanding = 0xffffffff; 233static volatile unsigned int max_outstanding = 0xffffffff;
162static int respipe [2]; 234static int respipe_osf [2], respipe [2] = { -1, -1 };
163 235
164static mutex_t reslock = X_MUTEX_INIT; 236static mutex_t reslock = X_MUTEX_INIT;
165static mutex_t reqlock = X_MUTEX_INIT; 237static mutex_t reqlock = X_MUTEX_INIT;
166static cond_t reqwait = X_COND_INIT; 238static cond_t reqwait = X_COND_INIT;
167 239
168#if WORDACCESS_UNSAFE 240#if WORDACCESS_UNSAFE
169 241
170static unsigned int get_nready () 242static unsigned int get_nready (void)
171{ 243{
172 unsigned int retval; 244 unsigned int retval;
173 245
174 X_LOCK (reqlock); 246 X_LOCK (reqlock);
175 retval = nready; 247 retval = nready;
176 X_UNLOCK (reqlock); 248 X_UNLOCK (reqlock);
177 249
178 return retval; 250 return retval;
179} 251}
180 252
181static unsigned int get_npending () 253static unsigned int get_npending (void)
182{ 254{
183 unsigned int retval; 255 unsigned int retval;
184 256
185 X_LOCK (reslock); 257 X_LOCK (reslock);
186 retval = npending; 258 retval = npending;
187 X_UNLOCK (reslock); 259 X_UNLOCK (reslock);
188 260
189 return retval; 261 return retval;
190} 262}
191 263
192static unsigned int get_nthreads () 264static unsigned int get_nthreads (void)
193{ 265{
194 unsigned int retval; 266 unsigned int retval;
195 267
196 X_LOCK (wrklock); 268 X_LOCK (wrklock);
197 retval = started; 269 retval = started;
212 * a somewhat faster data structure might be nice, but 284 * a somewhat faster data structure might be nice, but
213 * with 8 priorities this actually needs <20 insns 285 * with 8 priorities this actually needs <20 insns
214 * per shift, the most expensive operation. 286 * per shift, the most expensive operation.
215 */ 287 */
216typedef struct { 288typedef struct {
217 aio_req qs[NUM_PRI], qe[NUM_PRI]; /* qstart, qend */ 289 bdb_req qs[NUM_PRI], qe[NUM_PRI]; /* qstart, qend */
218 int size; 290 int size;
219} reqq; 291} reqq;
220 292
221static reqq req_queue; 293static reqq req_queue;
222static reqq res_queue; 294static reqq res_queue;
223 295
224int reqq_push (reqq *q, aio_req req) 296int reqq_push (reqq *q, bdb_req req)
225{ 297{
226 int pri = req->pri; 298 int pri = req->pri;
227 req->next = 0; 299 req->next = 0;
228 300
229 if (q->qe[pri]) 301 if (q->qe[pri])
235 q->qe[pri] = q->qs[pri] = req; 307 q->qe[pri] = q->qs[pri] = req;
236 308
237 return q->size++; 309 return q->size++;
238} 310}
239 311
240aio_req reqq_shift (reqq *q) 312bdb_req reqq_shift (reqq *q)
241{ 313{
242 int pri; 314 int pri;
243 315
244 if (!q->size) 316 if (!q->size)
245 return 0; 317 return 0;
246 318
247 --q->size; 319 --q->size;
248 320
249 for (pri = NUM_PRI; pri--; ) 321 for (pri = NUM_PRI; pri--; )
250 { 322 {
251 aio_req req = q->qs[pri]; 323 bdb_req req = q->qs[pri];
252 324
253 if (req) 325 if (req)
254 { 326 {
255 if (!(q->qs[pri] = req->next)) 327 if (!(q->qs[pri] = req->next))
256 q->qe[pri] = 0; 328 q->qe[pri] = 0;
260 } 332 }
261 333
262 abort (); 334 abort ();
263} 335}
264 336
265static int poll_cb (); 337static int poll_cb (void);
266static void req_free (aio_req req); 338static void req_free (bdb_req req);
267static void req_cancel (aio_req req); 339static void req_cancel (bdb_req req);
268 340
269static int req_invoke (aio_req req) 341static int req_invoke (bdb_req req)
270{ 342{
271 dSP; 343 dSP;
272 344
273 if (SvOK (req->callback)) 345 if (req->callback)
274 { 346 {
275 ENTER; 347 ENTER;
276 SAVETMPS; 348 SAVETMPS;
277 PUSHMARK (SP); 349 PUSHMARK (SP);
278 350
292 dbt_to_sv (req->sv1, &req->dbt1); 364 dbt_to_sv (req->sv1, &req->dbt1);
293 dbt_to_sv (req->sv2, &req->dbt2); 365 dbt_to_sv (req->sv2, &req->dbt2);
294 dbt_to_sv (req->sv3, &req->dbt3); 366 dbt_to_sv (req->sv3, &req->dbt3);
295 break; 367 break;
296 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
297 case REQ_DB_KEY_RANGE: 375 case REQ_DB_KEY_RANGE:
298 { 376 {
299 AV *av = newAV (); 377 AV *av = newAV ();
300 378
301 av_push (av, newSVnv (req->key_range.less)); 379 av_push (av, newSVnv (req->key_range.less));
310 388
311 case REQ_SEQ_GET: 389 case REQ_SEQ_GET:
312 SvREADONLY_off (req->sv1); 390 SvREADONLY_off (req->sv1);
313 391
314 if (sizeof (IV) > 4) 392 if (sizeof (IV) > 4)
315 sv_setiv_mg (req->sv1, req->seq_t); 393 sv_setiv_mg (req->sv1, (IV)req->seq_t);
316 else 394 else
317 sv_setnv_mg (req->sv1, req->seq_t); 395 sv_setnv_mg (req->sv1, (NV)req->seq_t);
318 396
319 SvREFCNT_dec (req->sv1); 397 SvREFCNT_dec (req->sv1);
320 break; 398 break;
321 } 399 }
322 400
331 } 409 }
332 410
333 return !SvTRUE (ERRSV); 411 return !SvTRUE (ERRSV);
334} 412}
335 413
336static void req_free (aio_req req) 414static void req_free (bdb_req req)
337{ 415{
416 SvREFCNT_dec (req->callback);
417
338 free (req->buf1); 418 free (req->buf1);
339 free (req->buf2); 419 free (req->buf2);
420 free (req->buf3);
421
340 Safefree (req); 422 Safefree (req);
341} 423}
342 424
343static void *aio_proc (void *arg); 425#ifdef USE_SOCKETS_AS_HANDLES
426# define TO_SOCKET(x) (win32_get_osfhandle (x))
427#else
428# define TO_SOCKET(x) (x)
429#endif
430
431static void
432create_respipe (void)
433{
434#ifdef _WIN32
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
443 if (PerlSock_socketpair (AF_UNIX, SOCK_STREAM, 0, respipe))
444#else
445 if (pipe (respipe))
446#endif
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)");
467
468 respipe_osf [0] = TO_SOCKET (respipe [0]);
469 respipe_osf [1] = TO_SOCKET (respipe [1]);
470}
471
472X_THREAD_PROC (bdb_proc);
344 473
345static void start_thread (void) 474static void start_thread (void)
346{ 475{
347 worker *wrk = calloc (1, sizeof (worker)); 476 worker *wrk = calloc (1, sizeof (worker));
348 477
349 if (!wrk) 478 if (!wrk)
350 croak ("unable to allocate worker thread data"); 479 croak ("unable to allocate worker thread data");
351 480
352 X_LOCK (wrklock); 481 X_LOCK (wrklock);
353 if (thread_create (&wrk->tid, aio_proc, (void *)wrk)) 482 if (thread_create (&wrk->tid, bdb_proc, (void *)wrk))
354 { 483 {
355 wrk->prev = &wrk_first; 484 wrk->prev = &wrk_first;
356 wrk->next = wrk_first.next; 485 wrk->next = wrk_first.next;
357 wrk_first.next->prev = wrk; 486 wrk_first.next->prev = wrk;
358 wrk_first.next = wrk; 487 wrk_first.next = wrk;
362 free (wrk); 491 free (wrk);
363 492
364 X_UNLOCK (wrklock); 493 X_UNLOCK (wrklock);
365} 494}
366 495
367static void maybe_start_thread () 496static void maybe_start_thread (void)
368{ 497{
369 if (get_nthreads () >= wanted) 498 if (get_nthreads () >= wanted)
370 return; 499 return;
371 500
372 /* todo: maybe use idle here, but might be less exact */ 501 /* todo: maybe use idle here, but might be less exact */
374 return; 503 return;
375 504
376 start_thread (); 505 start_thread ();
377} 506}
378 507
379static void req_send (aio_req req) 508static void req_send (bdb_req req)
380{ 509{
381 SV *wait_callback = 0; 510 SV *wait_callback = 0;
382 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
383 // synthesize callback if none given 524 // synthesize callback if none given
384 if (!SvOK (req->callback)) 525 if (!req->callback)
385 { 526 {
527 int count;
528
386 dSP; 529 dSP;
387 PUSHMARK (SP); 530 PUSHMARK (SP);
388 PUTBACK; 531 PUTBACK;
389 int count = call_sv (prepare_cb, G_ARRAY); 532 count = call_sv (prepare_cb, G_ARRAY);
390 SPAGAIN; 533 SPAGAIN;
391 534
392 if (count != 2) 535 if (count != 2)
393 croak ("prepare callback must return exactly two values\n"); 536 croak ("prepare callback must return exactly two values\n");
394 537
395 wait_callback = SvREFCNT_inc (POPs); 538 wait_callback = POPs;
396 SvREFCNT_dec (req->callback); 539 SvREFCNT_dec (req->callback);
397 req->callback = SvREFCNT_inc (POPs); 540 req->callback = SvREFCNT_inc (POPs);
398 } 541 }
399 542
400 ++nreqs; 543 ++nreqs;
411 { 554 {
412 dSP; 555 dSP;
413 PUSHMARK (SP); 556 PUSHMARK (SP);
414 PUTBACK; 557 PUTBACK;
415 call_sv (wait_callback, G_DISCARD); 558 call_sv (wait_callback, G_DISCARD);
416 SvREFCNT_dec (wait_callback);
417 } 559 }
418} 560}
419 561
420static void end_thread (void) 562static void end_thread (void)
421{ 563{
422 aio_req req; 564 bdb_req req;
423 565
424 Newz (0, req, 1, aio_cb); 566 Newz (0, req, 1, bdb_cb);
425 567
426 req->type = REQ_QUIT; 568 req->type = REQ_QUIT;
427 req->pri = PRI_MAX + PRI_BIAS; 569 req->pri = PRI_MAX + PRI_BIAS;
428 570
429 X_LOCK (reqlock); 571 X_LOCK (reqlock);
456 598
457 while (started > wanted) 599 while (started > wanted)
458 end_thread (); 600 end_thread ();
459} 601}
460 602
461static void poll_wait () 603static void poll_wait (void)
462{ 604{
463 fd_set rfd; 605 fd_set rfd;
464 606
465 while (nreqs) 607 while (nreqs)
466 { 608 {
472 if (size) 614 if (size)
473 return; 615 return;
474 616
475 maybe_start_thread (); 617 maybe_start_thread ();
476 618
477 FD_ZERO(&rfd); 619 FD_ZERO (&rfd);
478 FD_SET(respipe [0], &rfd); 620 FD_SET (respipe [0], &rfd);
479 621
480 select (respipe [0] + 1, &rfd, 0, 0, 0); 622 PerlSock_select (respipe [0] + 1, &rfd, 0, 0, 0);
481 } 623 }
482} 624}
483 625
484static int poll_cb () 626static int poll_cb (void)
485{ 627{
486 dSP; 628 dSP;
487 int count = 0; 629 int count = 0;
488 int maxreqs = max_poll_reqs; 630 int maxreqs = max_poll_reqs;
489 int do_croak = 0; 631 int do_croak = 0;
490 struct timeval tv_start, tv_now; 632 struct timeval tv_start, tv_now;
491 aio_req req; 633 bdb_req req;
492 634
493 if (max_poll_time) 635 if (max_poll_time)
494 gettimeofday (&tv_start, 0); 636 gettimeofday (&tv_start, 0);
495 637
496 for (;;) 638 for (;;)
508 650
509 if (!res_queue.size) 651 if (!res_queue.size)
510 { 652 {
511 /* read any signals sent by the worker threads */ 653 /* read any signals sent by the worker threads */
512 char buf [4]; 654 char buf [4];
513 while (read (respipe [0], buf, 4) == 4) 655 while (respipe_read (respipe [0], buf, 4) == 4)
514 ; 656 ;
515 } 657 }
516 } 658 }
517 659
518 X_UNLOCK (reslock); 660 X_UNLOCK (reslock);
555 return count; 697 return count;
556} 698}
557 699
558/*****************************************************************************/ 700/*****************************************************************************/
559 701
560static void *aio_proc (void *thr_arg) 702X_THREAD_PROC (bdb_proc)
561{ 703{
562 aio_req req; 704 bdb_req req;
563 struct timespec ts; 705 struct timespec ts;
564 worker *self = (worker *)thr_arg; 706 worker *self = (worker *)thr_arg;
565 707
566 /* try to distribute timeouts somewhat evenly */ 708 /* try to distribute timeouts somewhat evenly */
567 ts.tv_nsec = (((unsigned long)self + (unsigned long)ts.tv_sec) & 1023UL) 709 ts.tv_nsec = ((unsigned long)self & 1023UL) * (1000000000UL / 1024UL);
568 * (1000000000UL / 1024UL);
569 710
570 for (;;) 711 for (;;)
571 { 712 {
572 ts.tv_sec = time (0) + IDLE_TIMEOUT; 713 ts.tv_sec = time (0) + IDLE_TIMEOUT;
573 714
608 X_UNLOCK (reqlock); 749 X_UNLOCK (reqlock);
609 750
610 switch (req->type) 751 switch (req->type)
611 { 752 {
612 case REQ_QUIT: 753 case REQ_QUIT:
754 req->result = ENOSYS;
613 goto quit; 755 goto quit;
614 756
615 case REQ_ENV_OPEN: 757 case REQ_ENV_OPEN:
616 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);
617 break; 759 break;
634 776
635 case REQ_ENV_MEMP_TRICKLE: 777 case REQ_ENV_MEMP_TRICKLE:
636 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);
637 break; 779 break;
638 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
639 case REQ_DB_OPEN: 789 case REQ_DB_OPEN:
640 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);
641 break; 791 break;
642 792
643 case REQ_DB_CLOSE: 793 case REQ_DB_CLOSE:
650 800
651 case REQ_DB_SYNC: 801 case REQ_DB_SYNC:
652 req->result = req->db->sync (req->db, req->uint1); 802 req->result = req->db->sync (req->db, req->uint1);
653 break; 803 break;
654 804
805 case REQ_DB_UPGRADE:
806 req->result = req->db->upgrade (req->db, req->buf1, req->uint1);
807 break;
808
655 case REQ_DB_PUT: 809 case REQ_DB_PUT:
656 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);
657 break; 811 break;
658 812
659 case REQ_DB_GET: 813 case REQ_DB_GET:
676 req->result = req->txn->commit (req->txn, req->uint1); 830 req->result = req->txn->commit (req->txn, req->uint1);
677 break; 831 break;
678 832
679 case REQ_TXN_ABORT: 833 case REQ_TXN_ABORT:
680 req->result = req->txn->abort (req->txn); 834 req->result = req->txn->abort (req->txn);
835 break;
836
837 case REQ_TXN_FINISH:
838 if (req->txn->flags & TXN_DEADLOCK)
839 {
840 req->result = req->txn->abort (req->txn);
841 if (!req->result)
842 req->result = DB_LOCK_DEADLOCK;
843 }
844 else
845 req->result = req->txn->commit (req->txn, req->uint1);
681 break; 846 break;
682 847
683 case REQ_C_CLOSE: 848 case REQ_C_CLOSE:
684 req->result = req->dbc->c_close (req->dbc); 849 req->result = req->dbc->c_close (req->dbc);
685 break; 850 break;
727 default: 892 default:
728 req->result = ENOSYS; 893 req->result = ENOSYS;
729 break; 894 break;
730 } 895 }
731 896
897 if (req->txn && (req->result > 0 || req->result == DB_LOCK_NOTGRANTED))
898 req->txn->flags |= TXN_DEADLOCK;
899
732 X_LOCK (reslock); 900 X_LOCK (reslock);
733 901
734 ++npending; 902 ++npending;
735 903
736 if (!reqq_push (&res_queue, req)) 904 if (!reqq_push (&res_queue, req))
737 /* write a dummy byte to the pipe so fh becomes ready */ 905 /* write a dummy byte to the pipe so fh becomes ready */
738 write (respipe [1], &respipe, 1); 906 respipe_write (respipe_osf [1], (const void *)&respipe_osf, 1);
739 907
740 self->req = 0; 908 self->req = 0;
741 worker_clear (self); 909 worker_clear (self);
742 910
743 X_UNLOCK (reslock); 911 X_UNLOCK (reslock);
767 X_UNLOCK (wrklock); 935 X_UNLOCK (wrklock);
768} 936}
769 937
770static void atfork_child (void) 938static void atfork_child (void)
771{ 939{
772 aio_req prv; 940 bdb_req prv;
773 941
774 while (prv = reqq_shift (&req_queue)) 942 while (prv = reqq_shift (&req_queue))
775 req_free (prv); 943 req_free (prv);
776 944
777 while (prv = reqq_shift (&res_queue)) 945 while (prv = reqq_shift (&res_queue))
792 idle = 0; 960 idle = 0;
793 nreqs = 0; 961 nreqs = 0;
794 nready = 0; 962 nready = 0;
795 npending = 0; 963 npending = 0;
796 964
797 close (respipe [0]); 965 create_respipe ();
798 close (respipe [1]);
799
800 if (!create_pipe (respipe))
801 croak ("unable to initialize result pipe");
802 966
803 atfork_parent (); 967 atfork_parent ();
804} 968}
805 969
806#define dREQ(reqtype) \ 970#define dREQ(reqtype) \
807 aio_req req; \ 971 bdb_req req; \
808 int req_pri = next_pri; \ 972 int req_pri = next_pri; \
809 next_pri = DEFAULT_PRI + PRI_BIAS; \ 973 next_pri = DEFAULT_PRI + PRI_BIAS; \
810 \ 974 \
811 if (SvOK (callback) && !SvROK (callback)) \ 975 if (callback && SvOK (callback)) \
812 croak ("callback must be undef or of reference type"); \ 976 croak ("callback has illegal type or extra arguments"); \
813 \ 977 \
814 Newz (0, req, 1, aio_cb); \ 978 Newz (0, req, 1, bdb_cb); \
815 if (!req) \ 979 if (!req) \
816 croak ("out of memory during aio_req allocation"); \ 980 croak ("out of memory during bdb_req allocation"); \
817 \ 981 \
818 req->callback = newSVsv (callback); \ 982 req->callback = cb ? SvREFCNT_inc (cb) : 0; \
819 req->type = (reqtype); \ 983 req->type = (reqtype); \
820 req->pri = req_pri 984 req->pri = req_pri
821 985
822#define REQ_SEND \ 986#define REQ_SEND \
823 req_send (req) 987 req_send (req)
824 988
825#define SvPTR(var, arg, type, class, nullok) \ 989#define SvPTR(var, arg, type, class, nullok) \
826 if (!SvOK (arg)) \ 990 if (!SvOK (arg)) \
827 { \ 991 { \
828 if (!nullok) \ 992 if (nullok != 1) \
829 croak (# var " must be a " # class " object, not undef"); \ 993 croak (# var " must be a " # class " object, not undef"); \
830 \ 994 \
831 (var) = 0; \ 995 (var) = 0; \
832 } \ 996 } \
833 else if (sv_derived_from ((arg), # class)) \ 997 else if (sv_derived_from ((arg), # class)) \
834 { \ 998 { \
835 IV tmp = SvIV ((SV*) SvRV (arg)); \ 999 IV tmp = SvIV ((SV*) SvRV (arg)); \
836 (var) = INT2PTR (type, tmp); \ 1000 (var) = INT2PTR (type, tmp); \
837 if (!var) \ 1001 if (!var && nullok != 2) \
838 croak (# var " is not a valid " # class " object anymore"); \ 1002 croak (# var " is not a valid " # class " object anymore"); \
839 } \ 1003 } \
840 else \ 1004 else \
841 croak (# var " is not of type " # class); \ 1005 croak (# var " is not of type " # class);
842 \
843 1006
844static void 1007static void
845ptr_nuke (SV *sv) 1008ptr_nuke (SV *sv)
846{ 1009{
847 assert (SvROK (sv)); 1010 assert (SvROK (sv));
848 sv_setiv (SvRV (sv), 0); 1011 sv_setiv (SvRV (sv), 0);
849} 1012}
1013
1014static int
1015errno_get (pTHX_ SV *sv, MAGIC *mg)
1016{
1017 if (*mg->mg_ptr == '!') // should always be the case
1018 if (-30999 <= errno && errno <= -30800)
1019 {
1020 sv_setnv (sv, (NV)errno);
1021 sv_setpv (sv, db_strerror (errno));
1022 SvNOK_on (sv); /* what a wonderful hack! */
1023 // ^^^ copied from perl sources
1024 return 0;
1025 }
1026
1027 return PL_vtbl_sv.svt_get (aTHX_ sv, mg);
1028}
1029
1030static MGVTBL vtbl_errno;
1031
1032// this wonderful hack :( patches perl's $! variable to support our errno values
1033static void
1034patch_errno (void)
1035{
1036 SV *sv;
1037 MAGIC *mg;
1038
1039 if (!(sv = get_sv ("!", 1)))
1040 return;
1041
1042 if (!(mg = mg_find (sv, PERL_MAGIC_sv)))
1043 return;
1044
1045 if (mg->mg_virtual != &PL_vtbl_sv)
1046 return;
1047
1048 vtbl_errno = PL_vtbl_sv;
1049 vtbl_errno.svt_get = errno_get;
1050 mg->mg_virtual = &vtbl_errno;
1051}
1052
1053#if __GNUC__ >= 4
1054# define noinline __attribute__ ((noinline))
1055#else
1056# define noinline
1057#endif
1058
1059static noinline SV *
1060pop_callback (I32 *ritems, SV *sv)
1061{
1062 if (SvROK (sv))
1063 {
1064 HV *st;
1065 GV *gvp;
1066 CV *cv;
1067 const char *name;
1068
1069 /* forgive me */
1070 if (SvTYPE (SvRV (sv)) == SVt_PVMG
1071 && (st = SvSTASH (SvRV (sv)))
1072 && (name = HvNAME_get (st))
1073 && (name [0] == 'B' && name [1] == 'D' && name [2] == 'B' && name [3] == ':'))
1074 return 0;
1075
1076 if ((cv = sv_2cv (sv, &st, &gvp, 0)))
1077 {
1078 --*ritems;
1079 return (SV *)cv;
1080 }
1081 }
1082
1083 return 0;
1084}
1085
1086#define CALLBACK SV *cb = pop_callback (&items, ST (items - 1));
850 1087
851MODULE = BDB PACKAGE = BDB 1088MODULE = BDB PACKAGE = BDB
852 1089
853PROTOTYPES: ENABLE 1090PROTOTYPES: ENABLE
854 1091
870 const_iv (INIT_TXN) 1107 const_iv (INIT_TXN)
871 const_iv (RECOVER) 1108 const_iv (RECOVER)
872 const_iv (INIT_TXN) 1109 const_iv (INIT_TXN)
873 const_iv (RECOVER_FATAL) 1110 const_iv (RECOVER_FATAL)
874 const_iv (CREATE) 1111 const_iv (CREATE)
1112 const_iv (RDONLY)
875 const_iv (USE_ENVIRON) 1113 const_iv (USE_ENVIRON)
876 const_iv (USE_ENVIRON_ROOT) 1114 const_iv (USE_ENVIRON_ROOT)
877 const_iv (LOCKDOWN) 1115 const_iv (LOCKDOWN)
878 const_iv (PRIVATE) 1116 const_iv (PRIVATE)
879 const_iv (REGISTER) 1117 const_iv (REGISTER)
880 const_iv (SYSTEM_MEM) 1118 const_iv (SYSTEM_MEM)
881 const_iv (AUTO_COMMIT) 1119 const_iv (AUTO_COMMIT)
882 const_iv (CDB_ALLDB) 1120 const_iv (CDB_ALLDB)
883 const_iv (DIRECT_DB) 1121 const_iv (DIRECT_DB)
884 const_iv (DIRECT_LOG)
885 const_iv (DSYNC_DB) 1122 const_iv (DSYNC_DB)
886 const_iv (DSYNC_LOG)
887 const_iv (LOG_AUTOREMOVE)
888 const_iv (LOG_INMEMORY)
889 const_iv (NOLOCKING) 1123 const_iv (NOLOCKING)
890 const_iv (MULTIVERSION)
891 const_iv (NOMMAP) 1124 const_iv (NOMMAP)
892 const_iv (NOPANIC) 1125 const_iv (NOPANIC)
893 const_iv (OVERWRITE) 1126 const_iv (OVERWRITE)
894 const_iv (PANIC_ENVIRONMENT) 1127 const_iv (PANIC_ENVIRONMENT)
895 const_iv (REGION_INIT) 1128 const_iv (REGION_INIT)
896 const_iv (TIME_NOTGRANTED) 1129 const_iv (TIME_NOTGRANTED)
897 const_iv (TXN_NOSYNC) 1130 const_iv (TXN_NOSYNC)
898 const_iv (TXN_SNAPSHOT) 1131 const_iv (TXN_NOT_DURABLE)
899 const_iv (TXN_WRITE_NOSYNC) 1132 const_iv (TXN_WRITE_NOSYNC)
900 const_iv (WRITECURSOR) 1133 const_iv (WRITECURSOR)
901 const_iv (YIELDCPU) 1134 const_iv (YIELDCPU)
902 const_iv (ENCRYPT_AES) 1135 const_iv (ENCRYPT_AES)
903 const_iv (XA_CREATE) 1136 const_iv (XA_CREATE)
911 const_iv (READ_UNCOMMITTED) 1144 const_iv (READ_UNCOMMITTED)
912 const_iv (TRUNCATE) 1145 const_iv (TRUNCATE)
913 const_iv (NOSYNC) 1146 const_iv (NOSYNC)
914 const_iv (CHKSUM) 1147 const_iv (CHKSUM)
915 const_iv (ENCRYPT) 1148 const_iv (ENCRYPT)
916 const_iv (TXN_NOT_DURABLE)
917 const_iv (DUP) 1149 const_iv (DUP)
918 const_iv (DUPSORT) 1150 const_iv (DUPSORT)
919 const_iv (RECNUM) 1151 const_iv (RECNUM)
920 const_iv (RENUMBER) 1152 const_iv (RENUMBER)
921 const_iv (REVSPLITOFF) 1153 const_iv (REVSPLITOFF)
926 const_iv (GET_BOTH_RANGE) 1158 const_iv (GET_BOTH_RANGE)
927 //const_iv (SET_RECNO) 1159 //const_iv (SET_RECNO)
928 //const_iv (MULTIPLE) 1160 //const_iv (MULTIPLE)
929 const_iv (SNAPSHOT) 1161 const_iv (SNAPSHOT)
930 const_iv (JOIN_ITEM) 1162 const_iv (JOIN_ITEM)
1163 const_iv (JOIN_NOSORT)
931 const_iv (RMW) 1164 const_iv (RMW)
932 1165
933 const_iv (NOTFOUND) 1166 const_iv (NOTFOUND)
934 const_iv (KEYEMPTY) 1167 const_iv (KEYEMPTY)
935 const_iv (LOCK_DEADLOCK) 1168 const_iv (LOCK_DEADLOCK)
946 const_iv (APPEND) 1179 const_iv (APPEND)
947 const_iv (NODUPDATA) 1180 const_iv (NODUPDATA)
948 const_iv (NOOVERWRITE) 1181 const_iv (NOOVERWRITE)
949 1182
950 const_iv (TXN_NOWAIT) 1183 const_iv (TXN_NOWAIT)
951 const_iv (TXN_SNAPSHOT)
952 const_iv (TXN_SYNC) 1184 const_iv (TXN_SYNC)
953 1185
954 const_iv (SET_LOCK_TIMEOUT) 1186 const_iv (SET_LOCK_TIMEOUT)
955 const_iv (SET_TXN_TIMEOUT) 1187 const_iv (SET_TXN_TIMEOUT)
956 1188
957 const_iv (JOIN_ITEM)
958 const_iv (FIRST) 1189 const_iv (FIRST)
959 const_iv (NEXT) 1190 const_iv (NEXT)
960 const_iv (NEXT_DUP) 1191 const_iv (NEXT_DUP)
961 const_iv (NEXT_NODUP) 1192 const_iv (NEXT_NODUP)
962 const_iv (PREV) 1193 const_iv (PREV)
984 const_iv (LOCK_YOUNGEST) 1215 const_iv (LOCK_YOUNGEST)
985 1216
986 const_iv (SEQ_DEC) 1217 const_iv (SEQ_DEC)
987 const_iv (SEQ_INC) 1218 const_iv (SEQ_INC)
988 const_iv (SEQ_WRAP) 1219 const_iv (SEQ_WRAP)
1220
1221 const_iv (BUFFER_SMALL)
1222 const_iv (DONOTINDEX)
1223 const_iv (KEYEMPTY )
1224 const_iv (KEYEXIST )
1225 const_iv (LOCK_DEADLOCK)
1226 const_iv (LOCK_NOTGRANTED)
1227 const_iv (LOG_BUFFER_FULL)
1228 const_iv (NOSERVER)
1229 const_iv (NOSERVER_HOME)
1230 const_iv (NOSERVER_ID)
1231 const_iv (NOTFOUND)
1232 const_iv (PAGE_NOTFOUND)
1233 const_iv (REP_DUPMASTER)
1234 const_iv (REP_HANDLE_DEAD)
1235 const_iv (REP_HOLDELECTION)
1236 const_iv (REP_IGNORE)
1237 const_iv (REP_ISPERM)
1238 const_iv (REP_JOIN_FAILURE)
1239 const_iv (REP_LOCKOUT)
1240 const_iv (REP_NEWMASTER)
1241 const_iv (REP_NEWSITE)
1242 const_iv (REP_NOTPERM)
1243 const_iv (REP_UNAVAIL)
1244 const_iv (RUNRECOVERY)
1245 const_iv (SECONDARY_BAD)
1246 const_iv (VERIFY_BAD)
1247 const_iv (VERSION_MISMATCH)
1248
1249 const_iv (VERB_DEADLOCK)
1250 const_iv (VERB_RECOVERY)
1251 const_iv (VERB_REGISTER)
1252 const_iv (VERB_REPLICATION)
1253 const_iv (VERB_WAITSFOR)
1254
1255 const_iv (VERSION_MAJOR)
1256 const_iv (VERSION_MINOR)
1257 const_iv (VERSION_PATCH)
1258#if DB_VERSION_MINOR >= 5
1259 const_iv (MULTIVERSION)
1260 const_iv (TXN_SNAPSHOT)
1261#endif
1262#if DB_VERSION_MINOR >= 6
1263 const_iv (PREV_DUP)
1264 const_iv (PRIORITY_UNCHANGED)
1265 const_iv (PRIORITY_VERY_LOW)
1266 const_iv (PRIORITY_LOW)
1267 const_iv (PRIORITY_DEFAULT)
1268 const_iv (PRIORITY_HIGH)
1269 const_iv (PRIORITY_VERY_HIGH)
1270#endif
1271#if DB_VERSION_MINOR >= 7
1272 const_iv (LOG_DIRECT)
1273 const_iv (LOG_DSYNC)
1274 const_iv (LOG_AUTO_REMOVE)
1275 const_iv (LOG_IN_MEMORY)
1276 const_iv (LOG_ZERO)
1277#else
1278 const_iv (DIRECT_LOG)
1279 const_iv (DSYNC_LOG)
1280 const_iv (LOG_AUTOREMOVE)
1281 const_iv (LOG_INMEMORY)
1282#endif
989 }; 1283 };
990 1284
991 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; ) 1285 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; )
992 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv)); 1286 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv));
993 1287
1288 {
1289 /* we currently only allow version, minor-version and patchlevel to go up to 255 */
1290 char vstring[3] = { DB_VERSION_MAJOR, DB_VERSION_MINOR, DB_VERSION_PATCH };
1291
1292 newCONSTSUB (stash, "VERSION_v", newSVpvn (vstring, 3));
1293 }
1294
1295 newCONSTSUB (stash, "VERSION_STRING", newSVpv (DB_VERSION_STRING, 0));
1296
994 if (!create_pipe (respipe)) 1297 create_respipe ();
995 croak ("unable to initialize result pipe");
996 1298
997 X_THREAD_ATFORK (atfork_prepare, atfork_parent, atfork_child); 1299 X_THREAD_ATFORK (atfork_prepare, atfork_parent, atfork_child);
998#ifdef _WIN32 1300 patch_errno ();
999 X_MUTEX_CHECK (wrklock);
1000 X_MUTEX_CHECK (reslock);
1001 X_MUTEX_CHECK (reqlock);
1002
1003 X_COND_CHECK (reqwait);
1004#endif
1005} 1301}
1006 1302
1007void 1303void
1008max_poll_reqs (int nreqs) 1304max_poll_reqs (int nreqs)
1009 PROTOTYPE: $ 1305 PROTOTYPE: $
1141 PROTOTYPE: & 1437 PROTOTYPE: &
1142 CODE: 1438 CODE:
1143 SvREFCNT_dec (prepare_cb); 1439 SvREFCNT_dec (prepare_cb);
1144 prepare_cb = newSVsv (cb); 1440 prepare_cb = newSVsv (cb);
1145 1441
1442char *
1443strerror (int errorno = errno)
1444 PROTOTYPE: ;$
1445 CODE:
1446 RETVAL = db_strerror (errorno);
1447 OUTPUT:
1448 RETVAL
1449
1450void _on_next_submit (SV *cb)
1451 CODE:
1452 SvREFCNT_dec (on_next_submit);
1453 on_next_submit = SvOK (cb) ? newSVsv (cb) : 0;
1146 1454
1147DB_ENV * 1455DB_ENV *
1148db_env_create (U32 env_flags = 0) 1456db_env_create (U32 env_flags = 0)
1149 CODE: 1457 CODE:
1150{ 1458{
1151 errno = db_env_create (&RETVAL, env_flags); 1459 errno = db_env_create (&RETVAL, env_flags);
1152 if (errno) 1460 if (errno)
1153 croak ("db_env_create: %s", db_strerror (errno)); 1461 croak ("db_env_create: %s", db_strerror (errno));
1462
1463 if (0)
1464 {
1465 RETVAL->set_errcall (RETVAL, debug_errcall);
1466 RETVAL->set_msgcall (RETVAL, debug_msgcall);
1467 }
1154} 1468}
1155 OUTPUT: 1469 OUTPUT:
1156 RETVAL 1470 RETVAL
1157 1471
1158void 1472void
1159db_env_open (DB_ENV *env, octetstring db_home, U32 open_flags, int mode, SV *callback = &PL_sv_undef) 1473db_env_open (DB_ENV *env, bdb_filename db_home, U32 open_flags, int mode, SV *callback = 0)
1474 PREINIT:
1475 CALLBACK
1160 CODE: 1476 CODE:
1161{ 1477{
1162 env->set_thread_count (env, get_nthreads ());
1163
1164 dREQ (REQ_ENV_OPEN); 1478 dREQ (REQ_ENV_OPEN);
1165 req->env = env; 1479 req->env = env;
1166 req->uint1 = open_flags | DB_THREAD; 1480 req->uint1 = open_flags | DB_THREAD;
1167 req->int1 = mode; 1481 req->int1 = mode;
1168 req->buf1 = strdup_ornull (db_home); 1482 req->buf1 = strdup_ornull (db_home);
1169 REQ_SEND; 1483 REQ_SEND;
1170} 1484}
1171 1485
1172void 1486void
1173db_env_close (DB_ENV *env, U32 flags = 0, SV *callback = &PL_sv_undef) 1487db_env_close (DB_ENV *env, U32 flags = 0, SV *callback = 0)
1488 PREINIT:
1489 CALLBACK
1174 CODE: 1490 CODE:
1175{ 1491{
1176 dREQ (REQ_ENV_CLOSE); 1492 dREQ (REQ_ENV_CLOSE);
1177 req->env = env; 1493 req->env = env;
1178 req->uint1 = flags; 1494 req->uint1 = flags;
1179 REQ_SEND; 1495 REQ_SEND;
1180 ptr_nuke (ST (0)); 1496 ptr_nuke (ST (0));
1181} 1497}
1182 1498
1183void 1499void
1184db_env_txn_checkpoint (DB_ENV *env, U32 kbyte = 0, U32 min = 0, U32 flags = 0, SV *callback = &PL_sv_undef) 1500db_env_txn_checkpoint (DB_ENV *env, U32 kbyte = 0, U32 min = 0, U32 flags = 0, SV *callback = 0)
1501 PREINIT:
1502 CALLBACK
1185 CODE: 1503 CODE:
1186{ 1504{
1187 dREQ (REQ_ENV_TXN_CHECKPOINT); 1505 dREQ (REQ_ENV_TXN_CHECKPOINT);
1188 req->env = env; 1506 req->env = env;
1189 req->uint1 = kbyte; 1507 req->uint1 = kbyte;
1191 req->uint2 = flags; 1509 req->uint2 = flags;
1192 REQ_SEND; 1510 REQ_SEND;
1193} 1511}
1194 1512
1195void 1513void
1196db_env_lock_detect (DB_ENV *env, U32 flags = 0, U32 atype = DB_LOCK_DEFAULT, SV *dummy = 0, SV *callback = &PL_sv_undef) 1514db_env_lock_detect (DB_ENV *env, U32 flags = 0, U32 atype = DB_LOCK_DEFAULT, SV *dummy = 0, SV *callback = 0)
1515 PREINIT:
1516 CALLBACK
1197 CODE: 1517 CODE:
1198{ 1518{
1199 dREQ (REQ_ENV_LOCK_DETECT); 1519 dREQ (REQ_ENV_LOCK_DETECT);
1200 req->env = env; 1520 req->env = env;
1201 req->uint1 = flags; 1521 req->uint1 = flags;
1202 req->uint2 = atype; 1522 req->uint2 = atype;
1523 /* req->int2 = 0; dummy */
1203 REQ_SEND; 1524 REQ_SEND;
1204} 1525}
1205 1526
1206void 1527void
1207db_env_memp_sync (DB_ENV *env, SV *dummy = 0, SV *callback = &PL_sv_undef) 1528db_env_memp_sync (DB_ENV *env, SV *dummy = 0, SV *callback = 0)
1529 PREINIT:
1530 CALLBACK
1208 CODE: 1531 CODE:
1209{ 1532{
1210 dREQ (REQ_ENV_MEMP_SYNC); 1533 dREQ (REQ_ENV_MEMP_SYNC);
1211 req->env = env; 1534 req->env = env;
1212 REQ_SEND; 1535 REQ_SEND;
1213} 1536}
1214 1537
1215void 1538void
1216db_env_memp_trickle (DB_ENV *env, int percent, SV *dummy = 0, SV *callback = &PL_sv_undef) 1539db_env_memp_trickle (DB_ENV *env, int percent, SV *dummy = 0, SV *callback = 0)
1540 PREINIT:
1541 CALLBACK
1217 CODE: 1542 CODE:
1218{ 1543{
1219 dREQ (REQ_ENV_MEMP_TRICKLE); 1544 dREQ (REQ_ENV_MEMP_TRICKLE);
1220 req->env = env; 1545 req->env = env;
1221 req->int1 = percent; 1546 req->int1 = percent;
1222 REQ_SEND; 1547 REQ_SEND;
1223} 1548}
1224 1549
1550void
1551db_env_dbremove (DB_ENV *env, DB_TXN_ornull *txnid, bdb_filename file, bdb_filename database, U32 flags = 0, SV *callback = 0)
1552 PREINIT:
1553 CALLBACK
1554 CODE:
1555{
1556 dREQ (REQ_ENV_DBREMOVE);
1557 req->env = env;
1558 req->buf1 = strdup_ornull (file);
1559 req->buf2 = strdup_ornull (database);
1560 req->uint1 = flags;
1561 REQ_SEND;
1562}
1563
1564void
1565db_env_dbrename (DB_ENV *env, DB_TXN_ornull *txnid, bdb_filename file, bdb_filename database, bdb_filename newname, U32 flags = 0, SV *callback = 0)
1566 PREINIT:
1567 CALLBACK
1568 CODE:
1569{
1570 dREQ (REQ_ENV_DBRENAME);
1571 req->env = env;
1572 req->buf1 = strdup_ornull (file);
1573 req->buf2 = strdup_ornull (database);
1574 req->buf3 = strdup_ornull (newname);
1575 req->uint1 = flags;
1576 REQ_SEND;
1577}
1225 1578
1226DB * 1579DB *
1227db_create (DB_ENV *env = 0, U32 flags = 0) 1580db_create (DB_ENV *env = 0, U32 flags = 0)
1228 CODE: 1581 CODE:
1229{ 1582{
1236} 1589}
1237 OUTPUT: 1590 OUTPUT:
1238 RETVAL 1591 RETVAL
1239 1592
1240void 1593void
1241db_open (DB *db, DB_TXN_ornull *txnid, octetstring file, octetstring database, int type, U32 flags, int mode, SV *callback = &PL_sv_undef) 1594db_open (DB *db, DB_TXN_ornull *txnid, bdb_filename file, bdb_filename database, int type, U32 flags, int mode, SV *callback = 0)
1595 PREINIT:
1596 CALLBACK
1242 CODE: 1597 CODE:
1243{ 1598{
1244 dREQ (REQ_DB_OPEN); 1599 dREQ (REQ_DB_OPEN);
1245 req->db = db; 1600 req->db = db;
1246 req->txn = txnid; 1601 req->txn = txnid;
1251 req->int2 = mode; 1606 req->int2 = mode;
1252 REQ_SEND; 1607 REQ_SEND;
1253} 1608}
1254 1609
1255void 1610void
1256db_close (DB *db, U32 flags = 0, SV *callback = &PL_sv_undef) 1611db_close (DB *db, U32 flags = 0, SV *callback = 0)
1612 PREINIT:
1613 CALLBACK
1257 CODE: 1614 CODE:
1258{ 1615{
1259 dREQ (REQ_DB_CLOSE); 1616 dREQ (REQ_DB_CLOSE);
1260 req->db = db; 1617 req->db = db;
1261 req->uint1 = flags; 1618 req->uint1 = flags;
1263 REQ_SEND; 1620 REQ_SEND;
1264 ptr_nuke (ST (0)); 1621 ptr_nuke (ST (0));
1265} 1622}
1266 1623
1267void 1624void
1268db_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) 1625db_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)
1626 PREINIT:
1627 CALLBACK
1269 CODE: 1628 CODE:
1270{ 1629{
1271 dREQ (REQ_DB_COMPACT); 1630 dREQ (REQ_DB_COMPACT);
1272 req->db = db; 1631 req->db = db;
1273 req->txn = txn; 1632 req->txn = txn;
1276 req->uint1 = flags; 1635 req->uint1 = flags;
1277 REQ_SEND; 1636 REQ_SEND;
1278} 1637}
1279 1638
1280void 1639void
1281db_sync (DB *db, U32 flags = 0, SV *callback = &PL_sv_undef) 1640db_sync (DB *db, U32 flags = 0, SV *callback = 0)
1641 PREINIT:
1642 CALLBACK
1282 CODE: 1643 CODE:
1283{ 1644{
1284 dREQ (REQ_DB_SYNC); 1645 dREQ (REQ_DB_SYNC);
1285 req->db = db; 1646 req->db = db;
1286 req->uint1 = flags; 1647 req->uint1 = flags;
1287 REQ_SEND; 1648 REQ_SEND;
1288} 1649}
1289 1650
1290void 1651void
1652db_upgrade (DB *db, bdb_filename file, U32 flags = 0, SV *callback = 0)
1653 PREINIT:
1654 CALLBACK
1655 CODE:
1656{
1657 dREQ (REQ_DB_SYNC);
1658 req->db = db;
1659 req->buf1 = strdup (file);
1660 req->uint1 = flags;
1661 REQ_SEND;
1662}
1663
1664void
1291db_key_range (DB *db, DB_TXN_ornull *txn, SV *key, SV *key_range, U32 flags = 0, SV *callback = &PL_sv_undef) 1665db_key_range (DB *db, DB_TXN_ornull *txn, SV *key, SV *key_range, U32 flags = 0, SV *callback = 0)
1666 PREINIT:
1667 CALLBACK
1292 CODE: 1668 CODE:
1293{ 1669{
1294 dREQ (REQ_DB_KEY_RANGE); 1670 dREQ (REQ_DB_KEY_RANGE);
1295 req->db = db; 1671 req->db = db;
1296 req->txn = txn; 1672 req->txn = txn;
1299 req->sv1 = SvREFCNT_inc (key_range); SvREADONLY_on (key_range); 1675 req->sv1 = SvREFCNT_inc (key_range); SvREADONLY_on (key_range);
1300 REQ_SEND; 1676 REQ_SEND;
1301} 1677}
1302 1678
1303void 1679void
1304db_put (DB *db, DB_TXN_ornull *txn, SV *key, SV *data, U32 flags = 0, SV *callback = &PL_sv_undef) 1680db_put (DB *db, DB_TXN_ornull *txn, SV *key, SV *data, U32 flags = 0, SV *callback = 0)
1681 PREINIT:
1682 CALLBACK
1305 CODE: 1683 CODE:
1306{ 1684{
1307 dREQ (REQ_DB_PUT); 1685 dREQ (REQ_DB_PUT);
1308 req->db = db; 1686 req->db = db;
1309 req->txn = txn; 1687 req->txn = txn;
1312 req->uint1 = flags; 1690 req->uint1 = flags;
1313 REQ_SEND; 1691 REQ_SEND;
1314} 1692}
1315 1693
1316void 1694void
1317db_get (DB *db, DB_TXN_ornull *txn, SV *key, SV *data, U32 flags = 0, SV *callback = &PL_sv_undef) 1695db_get (DB *db, DB_TXN_ornull *txn, SV *key, SV *data, U32 flags = 0, SV *callback = 0)
1696 PREINIT:
1697 CALLBACK
1318 CODE: 1698 CODE:
1699 if (SvREADONLY (data))
1700 croak ("can't modify read-only data scalar in db_get");
1319{ 1701{
1320 dREQ (REQ_DB_GET); 1702 dREQ (REQ_DB_GET);
1321 req->db = db; 1703 req->db = db;
1322 req->txn = txn; 1704 req->txn = txn;
1323 req->uint1 = flags; 1705 req->uint1 = flags;
1326 req->sv3 = SvREFCNT_inc (data); SvREADONLY_on (data); 1708 req->sv3 = SvREFCNT_inc (data); SvREADONLY_on (data);
1327 REQ_SEND; 1709 REQ_SEND;
1328} 1710}
1329 1711
1330void 1712void
1331db_pget (DB *db, DB_TXN_ornull *txn, SV *key, SV *pkey, SV *data, U32 flags = 0, SV *callback = &PL_sv_undef) 1713db_pget (DB *db, DB_TXN_ornull *txn, SV *key, SV *pkey, SV *data, U32 flags = 0, SV *callback = 0)
1714 PREINIT:
1715 CALLBACK
1332 CODE: 1716 CODE:
1717 if (SvREADONLY (data))
1718 croak ("can't modify read-only data scalar in db_pget");
1333{ 1719{
1334 dREQ (REQ_DB_PGET); 1720 dREQ (REQ_DB_PGET);
1335 req->db = db; 1721 req->db = db;
1336 req->txn = txn; 1722 req->txn = txn;
1337 req->uint1 = flags; 1723 req->uint1 = flags;
1341 req->sv3 = SvREFCNT_inc (data); SvREADONLY_on (data); 1727 req->sv3 = SvREFCNT_inc (data); SvREADONLY_on (data);
1342 REQ_SEND; 1728 REQ_SEND;
1343} 1729}
1344 1730
1345void 1731void
1346db_del (DB *db, DB_TXN_ornull *txn, SV *key, U32 flags = 0, SV *callback = &PL_sv_undef) 1732db_del (DB *db, DB_TXN_ornull *txn, SV *key, U32 flags = 0, SV *callback = 0)
1733 PREINIT:
1734 CALLBACK
1347 CODE: 1735 CODE:
1348{ 1736{
1349 dREQ (REQ_DB_DEL); 1737 dREQ (REQ_DB_DEL);
1350 req->db = db; 1738 req->db = db;
1351 req->txn = txn; 1739 req->txn = txn;
1353 sv_to_dbt (&req->dbt1, key); 1741 sv_to_dbt (&req->dbt1, key);
1354 REQ_SEND; 1742 REQ_SEND;
1355} 1743}
1356 1744
1357void 1745void
1358db_txn_commit (DB_TXN *txn, U32 flags = 0, SV *callback = &PL_sv_undef) 1746db_txn_commit (DB_TXN *txn, U32 flags = 0, SV *callback = 0)
1747 PREINIT:
1748 CALLBACK
1359 CODE: 1749 CODE:
1360{ 1750{
1361 dREQ (REQ_TXN_COMMIT); 1751 dREQ (REQ_TXN_COMMIT);
1362 req->txn = txn; 1752 req->txn = txn;
1363 req->uint1 = flags; 1753 req->uint1 = flags;
1364 REQ_SEND; 1754 REQ_SEND;
1365 ptr_nuke (ST (0)); 1755 ptr_nuke (ST (0));
1366} 1756}
1367 1757
1368void 1758void
1369db_txn_abort (DB_TXN *txn, SV *callback = &PL_sv_undef) 1759db_txn_abort (DB_TXN *txn, SV *callback = 0)
1760 PREINIT:
1761 CALLBACK
1370 CODE: 1762 CODE:
1371{ 1763{
1372 dREQ (REQ_TXN_ABORT); 1764 dREQ (REQ_TXN_ABORT);
1373 req->txn = txn; 1765 req->txn = txn;
1374 REQ_SEND; 1766 REQ_SEND;
1375 ptr_nuke (ST (0)); 1767 ptr_nuke (ST (0));
1376} 1768}
1377 1769
1378void 1770void
1771db_txn_finish (DB_TXN *txn, U32 flags = 0, SV *callback = 0)
1772 PREINIT:
1773 CALLBACK
1774 CODE:
1775{
1776 dREQ (REQ_TXN_FINISH);
1777 req->txn = txn;
1778 req->uint1 = flags;
1779 REQ_SEND;
1780 ptr_nuke (ST (0));
1781}
1782
1783void
1379db_c_close (DBC *dbc, SV *callback = &PL_sv_undef) 1784db_c_close (DBC *dbc, SV *callback = 0)
1785 PREINIT:
1786 CALLBACK
1380 CODE: 1787 CODE:
1381{ 1788{
1382 dREQ (REQ_C_CLOSE); 1789 dREQ (REQ_C_CLOSE);
1383 req->dbc = dbc; 1790 req->dbc = dbc;
1384 REQ_SEND; 1791 REQ_SEND;
1385 ptr_nuke (ST (0)); 1792 ptr_nuke (ST (0));
1386} 1793}
1387 1794
1388void 1795void
1389db_c_count (DBC *dbc, SV *count, U32 flags = 0, SV *callback = &PL_sv_undef) 1796db_c_count (DBC *dbc, SV *count, U32 flags = 0, SV *callback = 0)
1797 PREINIT:
1798 CALLBACK
1390 CODE: 1799 CODE:
1391{ 1800{
1392 dREQ (REQ_C_COUNT); 1801 dREQ (REQ_C_COUNT);
1393 req->dbc = dbc; 1802 req->dbc = dbc;
1394 req->sv1 = SvREFCNT_inc (count); 1803 req->sv1 = SvREFCNT_inc (count);
1395 REQ_SEND; 1804 REQ_SEND;
1396} 1805}
1397 1806
1398void 1807void
1399db_c_put (DBC *dbc, SV *key, SV *data, U32 flags = 0, SV *callback = &PL_sv_undef) 1808db_c_put (DBC *dbc, SV *key, SV *data, U32 flags = 0, SV *callback = 0)
1809 PREINIT:
1810 CALLBACK
1400 CODE: 1811 CODE:
1401{ 1812{
1402 dREQ (REQ_C_PUT); 1813 dREQ (REQ_C_PUT);
1403 req->dbc = dbc; 1814 req->dbc = dbc;
1404 sv_to_dbt (&req->dbt1, key); 1815 sv_to_dbt (&req->dbt1, key);
1406 req->uint1 = flags; 1817 req->uint1 = flags;
1407 REQ_SEND; 1818 REQ_SEND;
1408} 1819}
1409 1820
1410void 1821void
1411db_c_get (DBC *dbc, SV *key, SV *data, U32 flags = 0, SV *callback = &PL_sv_undef) 1822db_c_get (DBC *dbc, SV *key, SV *data, U32 flags = 0, SV *callback = 0)
1823 PREINIT:
1824 CALLBACK
1412 CODE: 1825 CODE:
1413{ 1826{
1414 dREQ (REQ_C_GET); 1827 dREQ (REQ_C_GET);
1415 req->dbc = dbc; 1828 req->dbc = dbc;
1416 req->uint1 = flags; 1829 req->uint1 = flags;
1431 req->sv3 = SvREFCNT_inc (data); SvREADONLY_on (data); 1844 req->sv3 = SvREFCNT_inc (data); SvREADONLY_on (data);
1432 REQ_SEND; 1845 REQ_SEND;
1433} 1846}
1434 1847
1435void 1848void
1436db_c_pget (DBC *dbc, SV *key, SV *pkey, SV *data, U32 flags = 0, SV *callback = &PL_sv_undef) 1849db_c_pget (DBC *dbc, SV *key, SV *pkey, SV *data, U32 flags = 0, SV *callback = 0)
1850 PREINIT:
1851 CALLBACK
1437 CODE: 1852 CODE:
1438{ 1853{
1439 dREQ (REQ_C_PGET); 1854 dREQ (REQ_C_PGET);
1440 req->dbc = dbc; 1855 req->dbc = dbc;
1441 req->uint1 = flags; 1856 req->uint1 = flags;
1459 req->sv3 = SvREFCNT_inc (data); SvREADONLY_on (data); 1874 req->sv3 = SvREFCNT_inc (data); SvREADONLY_on (data);
1460 REQ_SEND; 1875 REQ_SEND;
1461} 1876}
1462 1877
1463void 1878void
1464db_c_del (DBC *dbc, U32 flags = 0, SV *callback = &PL_sv_undef) 1879db_c_del (DBC *dbc, U32 flags = 0, SV *callback = 0)
1880 PREINIT:
1881 CALLBACK
1465 CODE: 1882 CODE:
1466{ 1883{
1467 dREQ (REQ_C_DEL); 1884 dREQ (REQ_C_DEL);
1468 req->dbc = dbc; 1885 req->dbc = dbc;
1469 req->uint1 = flags; 1886 req->uint1 = flags;
1470 REQ_SEND; 1887 REQ_SEND;
1471} 1888}
1472 1889
1473 1890
1474void 1891void
1475db_sequence_open (DB_SEQUENCE *seq, DB_TXN_ornull *txnid, SV *key, U32 flags = 0, SV *callback = &PL_sv_undef) 1892db_sequence_open (DB_SEQUENCE *seq, DB_TXN_ornull *txnid, SV *key, U32 flags = 0, SV *callback = 0)
1893 PREINIT:
1894 CALLBACK
1476 CODE: 1895 CODE:
1477{ 1896{
1478 dREQ (REQ_SEQ_OPEN); 1897 dREQ (REQ_SEQ_OPEN);
1479 req->seq = seq; 1898 req->seq = seq;
1480 req->txn = txnid; 1899 req->txn = txnid;
1482 sv_to_dbt (&req->dbt1, key); 1901 sv_to_dbt (&req->dbt1, key);
1483 REQ_SEND; 1902 REQ_SEND;
1484} 1903}
1485 1904
1486void 1905void
1487db_sequence_close (DB_SEQUENCE *seq, U32 flags = 0, SV *callback = &PL_sv_undef) 1906db_sequence_close (DB_SEQUENCE *seq, U32 flags = 0, SV *callback = 0)
1907 PREINIT:
1908 CALLBACK
1488 CODE: 1909 CODE:
1489{ 1910{
1490 dREQ (REQ_SEQ_CLOSE); 1911 dREQ (REQ_SEQ_CLOSE);
1491 req->seq = seq; 1912 req->seq = seq;
1492 req->uint1 = flags; 1913 req->uint1 = flags;
1493 REQ_SEND; 1914 REQ_SEND;
1494 ptr_nuke (ST (0)); 1915 ptr_nuke (ST (0));
1495} 1916}
1496 1917
1497void 1918void
1498db_sequence_get (DB_SEQUENCE *seq, DB_TXN_ornull *txnid, int delta, SV *seq_value, U32 flags = DB_TXN_NOSYNC, SV *callback = &PL_sv_undef) 1919db_sequence_get (DB_SEQUENCE *seq, DB_TXN_ornull *txnid, int delta, SV *seq_value, U32 flags = DB_TXN_NOSYNC, SV *callback = 0)
1920 PREINIT:
1921 CALLBACK
1499 CODE: 1922 CODE:
1500{ 1923{
1501 dREQ (REQ_SEQ_GET); 1924 dREQ (REQ_SEQ_GET);
1502 req->seq = seq; 1925 req->seq = seq;
1503 req->txn = txnid; 1926 req->txn = txnid;
1506 req->sv1 = SvREFCNT_inc (seq_value); SvREADONLY_on (seq_value); 1929 req->sv1 = SvREFCNT_inc (seq_value); SvREADONLY_on (seq_value);
1507 REQ_SEND; 1930 REQ_SEND;
1508} 1931}
1509 1932
1510void 1933void
1511db_sequence_remove (DB_SEQUENCE *seq, DB_TXN_ornull *txnid = 0, U32 flags = 0, SV *callback = &PL_sv_undef) 1934db_sequence_remove (DB_SEQUENCE *seq, DB_TXN_ornull *txnid = 0, U32 flags = 0, SV *callback = 0)
1935 PREINIT:
1936 CALLBACK
1512 CODE: 1937 CODE:
1513{ 1938{
1514 dREQ (REQ_SEQ_REMOVE); 1939 dREQ (REQ_SEQ_REMOVE);
1515 req->seq = seq; 1940 req->seq = seq;
1516 req->txn = txnid; 1941 req->txn = txnid;
1520 1945
1521 1946
1522MODULE = BDB PACKAGE = BDB::Env 1947MODULE = BDB PACKAGE = BDB::Env
1523 1948
1524void 1949void
1525DESTROY (DB_ENV_ornull *env) 1950DESTROY (DB_ENV_ornuked *env)
1526 CODE: 1951 CODE:
1527 if (env) 1952 if (env)
1528 env->close (env, 0); 1953 env->close (env, 0);
1529 1954
1530int set_data_dir (DB_ENV *env, const char *dir) 1955int set_data_dir (DB_ENV *env, const char *dir)
1555 CODE: 1980 CODE:
1556 RETVAL = env->set_cachesize (env, gbytes, bytes, ncache); 1981 RETVAL = env->set_cachesize (env, gbytes, bytes, ncache);
1557 OUTPUT: 1982 OUTPUT:
1558 RETVAL 1983 RETVAL
1559 1984
1560int set_flags (DB_ENV *env, U32 flags, int onoff) 1985int set_flags (DB_ENV *env, U32 flags, int onoff = 1)
1561 CODE: 1986 CODE:
1562 RETVAL = env->set_flags (env, flags, onoff); 1987 RETVAL = env->set_flags (env, flags, onoff);
1563 OUTPUT: 1988 OUTPUT:
1564 RETVAL 1989 RETVAL
1565 1990
1991#if DB_VERSION_MINOR >= 7
1992
1993int set_intermediate_dir_mode (DB_ENV *env, const char *mode)
1994 CODE:
1995 RETVAL = env->set_intermediate_dir_mode (env, mode);
1996 OUTPUT:
1997 RETVAL
1998
1999int log_set_config (DB_ENV *env, U32 flags, int onoff = 1)
2000 CODE:
2001 RETVAL = env->log_set_config (env, flags, onoff);
2002 OUTPUT:
2003 RETVAL
2004
2005#endif
2006
2007
2008void set_errfile (DB_ENV *env, FILE *errfile = 0)
2009 CODE:
2010 env->set_errfile (env, errfile);
2011
2012void set_msgfile (DB_ENV *env, FILE *msgfile = 0)
2013 CODE:
2014 env->set_msgfile (env, msgfile);
2015
2016int set_verbose (DB_ENV *env, U32 which = -1, int onoff = 1)
2017 CODE:
2018 RETVAL = env->set_verbose (env, which, onoff);
2019 OUTPUT:
2020 RETVAL
2021
1566int set_encrypt (DB_ENV *env, const char *password, U32 flags = 0) 2022int set_encrypt (DB_ENV *env, const char *password, U32 flags = 0)
1567 CODE: 2023 CODE:
1568 RETVAL = env->set_encrypt (env, password, flags); 2024 RETVAL = env->set_encrypt (env, password, flags);
1569 OUTPUT: 2025 OUTPUT:
1570 RETVAL 2026 RETVAL
1571 2027
1572int set_timeout (DB_ENV *env, NV timeout, U32 flags) 2028int set_timeout (DB_ENV *env, NV timeout, U32 flags = DB_SET_TXN_TIMEOUT)
1573 CODE: 2029 CODE:
1574 RETVAL = env->set_timeout (env, timeout * 1000000, flags); 2030 RETVAL = env->set_timeout (env, timeout * 1000000, flags);
1575 OUTPUT: 2031 OUTPUT:
1576 RETVAL 2032 RETVAL
1577 2033
1625 2081
1626int set_lg_max (DB_ENV *env, U32 max) 2082int set_lg_max (DB_ENV *env, U32 max)
1627 CODE: 2083 CODE:
1628 RETVAL = env->set_lg_max (env, max); 2084 RETVAL = env->set_lg_max (env, max);
1629 OUTPUT: 2085 OUTPUT:
2086 RETVAL
2087
2088int mutex_set_max (DB_ENV *env, U32 max)
2089 CODE:
2090 RETVAL = env->mutex_set_max (env, max);
2091 OUTPUT:
2092 RETVAL
2093
2094int mutex_set_increment (DB_ENV *env, U32 increment)
2095 CODE:
2096 RETVAL = env->mutex_set_increment (env, increment);
2097 OUTPUT:
2098 RETVAL
2099
2100int mutex_set_tas_spins (DB_ENV *env, U32 tas_spins)
2101 CODE:
2102 RETVAL = env->mutex_set_tas_spins (env, tas_spins);
2103 OUTPUT:
2104 RETVAL
2105
2106int mutex_set_align (DB_ENV *env, U32 align)
2107 CODE:
2108 RETVAL = env->mutex_set_align (env, align);
2109 OUTPUT:
1630 RETVAL 2110 RETVAL
1631 2111
1632DB_TXN * 2112DB_TXN *
1633txn_begin (DB_ENV *env, DB_TXN_ornull *parent = 0, U32 flags = 0) 2113txn_begin (DB_ENV *env, DB_TXN_ornull *parent = 0, U32 flags = 0)
1634 CODE: 2114 CODE:
1636 if (errno) 2116 if (errno)
1637 croak ("DB_ENV->txn_begin: %s", db_strerror (errno)); 2117 croak ("DB_ENV->txn_begin: %s", db_strerror (errno));
1638 OUTPUT: 2118 OUTPUT:
1639 RETVAL 2119 RETVAL
1640 2120
2121DB_TXN *
2122cdsgroup_begin (DB_ENV *env)
2123 CODE:
2124 errno = env->cdsgroup_begin (env, &RETVAL);
2125 if (errno)
2126 croak ("DB_ENV->cdsgroup_begin: %s", db_strerror (errno));
2127 OUTPUT:
2128 RETVAL
2129
1641MODULE = BDB PACKAGE = BDB::Db 2130MODULE = BDB PACKAGE = BDB::Db
1642 2131
1643void 2132void
1644DESTROY (DB_ornull *db) 2133DESTROY (DB_ornuked *db)
1645 CODE: 2134 CODE:
1646 if (db) 2135 if (db)
1647 { 2136 {
1648 SV *env = (SV *)db->app_private; 2137 SV *env = (SV *)db->app_private;
1649 db->close (db, 0); 2138 db->close (db, 0);
1654 CODE: 2143 CODE:
1655 RETVAL = db->set_cachesize (db, gbytes, bytes, ncache); 2144 RETVAL = db->set_cachesize (db, gbytes, bytes, ncache);
1656 OUTPUT: 2145 OUTPUT:
1657 RETVAL 2146 RETVAL
1658 2147
1659int set_flags (DB *db, U32 flags); 2148int set_flags (DB *db, U32 flags)
1660 CODE: 2149 CODE:
1661 RETVAL = db->set_flags (db, flags); 2150 RETVAL = db->set_flags (db, flags);
1662 OUTPUT: 2151 OUTPUT:
1663 RETVAL 2152 RETVAL
1664 2153
1678 CODE: 2167 CODE:
1679 RETVAL = db->set_bt_minkey (db, minkey); 2168 RETVAL = db->set_bt_minkey (db, minkey);
1680 OUTPUT: 2169 OUTPUT:
1681 RETVAL 2170 RETVAL
1682 2171
1683int set_re_delim(DB *db, int delim); 2172int set_re_delim (DB *db, int delim)
1684 CODE: 2173 CODE:
1685 RETVAL = db->set_re_delim (db, delim); 2174 RETVAL = db->set_re_delim (db, delim);
1686 OUTPUT: 2175 OUTPUT:
1687 RETVAL 2176 RETVAL
1688 2177
1744 2233
1745 2234
1746MODULE = BDB PACKAGE = BDB::Txn 2235MODULE = BDB PACKAGE = BDB::Txn
1747 2236
1748void 2237void
1749DESTROY (DB_TXN_ornull *txn) 2238DESTROY (DB_TXN_ornuked *txn)
1750 CODE: 2239 CODE:
1751 if (txn) 2240 if (txn)
1752 txn->abort (txn); 2241 txn->abort (txn);
1753 2242
1754int set_timeout (DB_TXN *txn, NV timeout, U32 flags) 2243int set_timeout (DB_TXN *txn, NV timeout, U32 flags = DB_SET_TXN_TIMEOUT)
1755 CODE: 2244 CODE:
1756 RETVAL = txn->set_timeout (txn, timeout * 1000000, flags); 2245 RETVAL = txn->set_timeout (txn, timeout * 1000000, flags);
1757 OUTPUT: 2246 OUTPUT:
1758 RETVAL 2247 RETVAL
1759 2248
2249int failed (DB_TXN *txn)
2250 CODE:
2251 RETVAL = !!(txn->flags & TXN_DEADLOCK);
2252 OUTPUT:
2253 RETVAL
2254
1760 2255
1761MODULE = BDB PACKAGE = BDB::Cursor 2256MODULE = BDB PACKAGE = BDB::Cursor
1762 2257
1763void 2258void
1764DESTROY (DBC_ornull *dbc) 2259DESTROY (DBC_ornuked *dbc)
1765 CODE: 2260 CODE:
1766 if (dbc) 2261 if (dbc)
1767 dbc->c_close (dbc); 2262 dbc->c_close (dbc);
1768 2263
2264#if DB_VERSION_MINOR >= 6
2265
2266int set_priority (DBC *dbc, int priority)
2267 CODE:
2268 dbc->set_priority (dbc, priority);
2269
2270#endif
2271
1769MODULE = BDB PACKAGE = BDB::Sequence 2272MODULE = BDB PACKAGE = BDB::Sequence
1770 2273
1771void 2274void
1772DESTROY (DB_SEQUENCE_ornull *seq) 2275DESTROY (DB_SEQUENCE_ornuked *seq)
1773 CODE: 2276 CODE:
1774 if (seq) 2277 if (seq)
1775 seq->close (seq, 0); 2278 seq->close (seq, 0);
1776 2279
1777int initial_value (DB_SEQUENCE *seq, db_seq_t value) 2280int initial_value (DB_SEQUENCE *seq, db_seq_t value)
1796 CODE: 2299 CODE:
1797 RETVAL = seq->set_range (seq, min, max); 2300 RETVAL = seq->set_range (seq, min, max);
1798 OUTPUT: 2301 OUTPUT:
1799 RETVAL 2302 RETVAL
1800 2303
2304

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines