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

Comparing BDB/BDB.xs (file contents):
Revision 1.18 by root, Sun Sep 16 18:15:34 2007 UTC vs.
Revision 1.42 by root, Wed Jul 9 12:39:56 2008 UTC

40typedef DB_TXN DB_TXN_ornull; 40typedef DB_TXN DB_TXN_ornull;
41typedef DBC DBC_ornull; 41typedef DBC DBC_ornull;
42typedef DB DB_ornull; 42typedef DB DB_ornull;
43typedef DB_SEQUENCE DB_SEQUENCE_ornull; 43typedef DB_SEQUENCE DB_SEQUENCE_ornull;
44 44
45typedef DB_ENV DB_ENV_ornuked;
46typedef DB_TXN DB_TXN_ornuked;
47typedef DBC DBC_ornuked;
48typedef DB DB_ornuked;
49typedef DB_SEQUENCE DB_SEQUENCE_ornuked;
50
45typedef SV SV8; /* byte-sv, used for argument-checking */ 51typedef SV SV8; /* byte-sv, used for argument-checking */
46typedef char *octetstring; 52typedef char *bdb_filename;
47 53
48static SV *prepare_cb; 54static SV *prepare_cb;
49 55
50#if DB_VERSION_MINOR >= 6 56#if DB_VERSION_MINOR >= 6
51# define c_close close 57# define c_close close
55# define c_get get 61# define c_get get
56# define c_pget pget 62# define c_pget pget
57# define c_put put 63# define c_put put
58#endif 64#endif
59 65
66static char *
67get_bdb_filename (SV *sv)
68{
69 if (!SvOK (sv))
70 return 0;
71
72#if _WIN32
73 /* win32 madness + win32 perl absolutely brokenness make for horrible hacks */
74 {
75 STRLEN len;
76 char *src = SvPVbyte (sv, len);
77 SV *t1 = sv_newmortal ();
78 SV *t2 = sv_newmortal ();
79
80 sv_upgrade (t1, SVt_PV); SvPOK_only (t1); SvGROW (t1, len * 16 + 1);
81 sv_upgrade (t2, SVt_PV); SvPOK_only (t2); SvGROW (t2, len * 16 + 1);
82
83 len = MultiByteToWideChar (CP_ACP, 0, src, len, (WCHAR *)SvPVX (t1), SvLEN (t1) / sizeof (WCHAR));
84 len = WideCharToMultiByte (CP_UTF8, 0, (WCHAR *)SvPVX (t1), len, SvPVX (t2), SvLEN (t2), 0, 0);
85 SvPOK_only (t2);
86 SvPVX (t2)[len] = 0;
87 SvCUR_set (t2, len);
88
89 return SvPVX (t2);
90 }
91#else
92 return SvPVbyte_nolen (sv);
93#endif
94}
95
60static void 96static void
61debug_errcall (const DB_ENV *dbenv, const char *errpfx, const char *msg) 97debug_errcall (const DB_ENV *dbenv, const char *errpfx, const char *msg)
62{ 98{
63 printf ("err[%s]\n", msg); 99 printf ("err[%s]\n", msg);
64} 100}
101} 137}
102 138
103enum { 139enum {
104 REQ_QUIT, 140 REQ_QUIT,
105 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,
106 REQ_ENV_MEMP_SYNC, REQ_ENV_MEMP_TRICKLE, 142 REQ_ENV_MEMP_SYNC, REQ_ENV_MEMP_TRICKLE, REQ_ENV_DBREMOVE, REQ_ENV_DBRENAME,
107 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,
108 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,
109 REQ_TXN_COMMIT, REQ_TXN_ABORT, REQ_TXN_FINISH, 145 REQ_TXN_COMMIT, REQ_TXN_ABORT, REQ_TXN_FINISH,
110 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,
111 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,
112}; 148};
113 149
114typedef struct aio_cb 150typedef struct bdb_cb
115{ 151{
116 struct aio_cb *volatile next; 152 struct bdb_cb *volatile next;
117 SV *callback; 153 SV *callback;
118 int type, pri, result; 154 int type, pri, result;
119 155
120 DB_ENV *env; 156 DB_ENV *env;
121 DB *db; 157 DB *db;
123 DBC *dbc; 159 DBC *dbc;
124 160
125 UV uv1; 161 UV uv1;
126 int int1, int2; 162 int int1, int2;
127 U32 uint1, uint2; 163 U32 uint1, uint2;
128 char *buf1, *buf2; 164 char *buf1, *buf2, *buf3;
129 SV *sv1, *sv2, *sv3; 165 SV *sv1, *sv2, *sv3;
130 166
131 DBT dbt1, dbt2, dbt3; 167 DBT dbt1, dbt2, dbt3;
132 DB_KEY_RANGE key_range; 168 DB_KEY_RANGE key_range;
133 DB_SEQUENCE *seq; 169 DB_SEQUENCE *seq;
134 db_seq_t seq_t; 170 db_seq_t seq_t;
135} aio_cb; 171} bdb_cb;
136 172
137typedef aio_cb *aio_req; 173typedef bdb_cb *bdb_req;
138 174
139enum { 175enum {
140 PRI_MIN = -4, 176 PRI_MIN = -4,
141 PRI_MAX = 4, 177 PRI_MAX = 4,
142 178
145 NUM_PRI = PRI_MAX + PRI_BIAS + 1, 181 NUM_PRI = PRI_MAX + PRI_BIAS + 1,
146}; 182};
147 183
148#define AIO_TICKS ((1000000 + 1023) >> 10) 184#define AIO_TICKS ((1000000 + 1023) >> 10)
149 185
186static SV *on_next_submit;
187
150static unsigned int max_poll_time = 0; 188static unsigned int max_poll_time = 0;
151static unsigned int max_poll_reqs = 0; 189static unsigned int max_poll_reqs = 0;
152 190
153/* calculcate time difference in ~1/AIO_TICKS of a second */ 191/* calculcate time difference in ~1/AIO_TICKS of a second */
154static int tvdiff (struct timeval *tv1, struct timeval *tv2) 192static int tvdiff (struct timeval *tv1, struct timeval *tv2)
169 struct worker *prev, *next; 207 struct worker *prev, *next;
170 208
171 thread_t tid; 209 thread_t tid;
172 210
173 /* locked by reslock, reqlock or wrklock */ 211 /* locked by reslock, reqlock or wrklock */
174 aio_req req; /* currently processed request */ 212 bdb_req req; /* currently processed request */
175 void *dbuf; 213 void *dbuf;
176 DIR *dirp; 214 DIR *dirp;
177} worker; 215} worker;
178 216
179static worker wrk_first = { &wrk_first, &wrk_first, 0 }; 217static worker wrk_first = { &wrk_first, &wrk_first, 0 };
191} 229}
192 230
193static volatile unsigned int nreqs, nready, npending; 231static volatile unsigned int nreqs, nready, npending;
194static volatile unsigned int max_idle = 4; 232static volatile unsigned int max_idle = 4;
195static volatile unsigned int max_outstanding = 0xffffffff; 233static volatile unsigned int max_outstanding = 0xffffffff;
196static int respipe [2], respipe_osf [2]; 234static int respipe_osf [2], respipe [2] = { -1, -1 };
197 235
198static mutex_t reslock = X_MUTEX_INIT; 236static mutex_t reslock = X_MUTEX_INIT;
199static mutex_t reqlock = X_MUTEX_INIT; 237static mutex_t reqlock = X_MUTEX_INIT;
200static cond_t reqwait = X_COND_INIT; 238static cond_t reqwait = X_COND_INIT;
201 239
202#if WORDACCESS_UNSAFE 240#if WORDACCESS_UNSAFE
203 241
204static unsigned int get_nready () 242static unsigned int get_nready (void)
205{ 243{
206 unsigned int retval; 244 unsigned int retval;
207 245
208 X_LOCK (reqlock); 246 X_LOCK (reqlock);
209 retval = nready; 247 retval = nready;
210 X_UNLOCK (reqlock); 248 X_UNLOCK (reqlock);
211 249
212 return retval; 250 return retval;
213} 251}
214 252
215static unsigned int get_npending () 253static unsigned int get_npending (void)
216{ 254{
217 unsigned int retval; 255 unsigned int retval;
218 256
219 X_LOCK (reslock); 257 X_LOCK (reslock);
220 retval = npending; 258 retval = npending;
221 X_UNLOCK (reslock); 259 X_UNLOCK (reslock);
222 260
223 return retval; 261 return retval;
224} 262}
225 263
226static unsigned int get_nthreads () 264static unsigned int get_nthreads (void)
227{ 265{
228 unsigned int retval; 266 unsigned int retval;
229 267
230 X_LOCK (wrklock); 268 X_LOCK (wrklock);
231 retval = started; 269 retval = started;
246 * a somewhat faster data structure might be nice, but 284 * a somewhat faster data structure might be nice, but
247 * with 8 priorities this actually needs <20 insns 285 * with 8 priorities this actually needs <20 insns
248 * per shift, the most expensive operation. 286 * per shift, the most expensive operation.
249 */ 287 */
250typedef struct { 288typedef struct {
251 aio_req qs[NUM_PRI], qe[NUM_PRI]; /* qstart, qend */ 289 bdb_req qs[NUM_PRI], qe[NUM_PRI]; /* qstart, qend */
252 int size; 290 int size;
253} reqq; 291} reqq;
254 292
255static reqq req_queue; 293static reqq req_queue;
256static reqq res_queue; 294static reqq res_queue;
257 295
258int reqq_push (reqq *q, aio_req req) 296int reqq_push (reqq *q, bdb_req req)
259{ 297{
260 int pri = req->pri; 298 int pri = req->pri;
261 req->next = 0; 299 req->next = 0;
262 300
263 if (q->qe[pri]) 301 if (q->qe[pri])
269 q->qe[pri] = q->qs[pri] = req; 307 q->qe[pri] = q->qs[pri] = req;
270 308
271 return q->size++; 309 return q->size++;
272} 310}
273 311
274aio_req reqq_shift (reqq *q) 312bdb_req reqq_shift (reqq *q)
275{ 313{
276 int pri; 314 int pri;
277 315
278 if (!q->size) 316 if (!q->size)
279 return 0; 317 return 0;
280 318
281 --q->size; 319 --q->size;
282 320
283 for (pri = NUM_PRI; pri--; ) 321 for (pri = NUM_PRI; pri--; )
284 { 322 {
285 aio_req req = q->qs[pri]; 323 bdb_req req = q->qs[pri];
286 324
287 if (req) 325 if (req)
288 { 326 {
289 if (!(q->qs[pri] = req->next)) 327 if (!(q->qs[pri] = req->next))
290 q->qe[pri] = 0; 328 q->qe[pri] = 0;
294 } 332 }
295 333
296 abort (); 334 abort ();
297} 335}
298 336
299static int poll_cb (); 337static int poll_cb (void);
300static void req_free (aio_req req); 338static void req_free (bdb_req req);
301static void req_cancel (aio_req req); 339static void req_cancel (bdb_req req);
302 340
303static int req_invoke (aio_req req) 341static int req_invoke (bdb_req req)
304{ 342{
305 dSP; 343 dSP;
306 344
307 if (SvOK (req->callback)) 345 if (req->callback)
308 { 346 {
309 ENTER; 347 ENTER;
310 SAVETMPS; 348 SAVETMPS;
311 PUSHMARK (SP); 349 PUSHMARK (SP);
312 350
326 dbt_to_sv (req->sv1, &req->dbt1); 364 dbt_to_sv (req->sv1, &req->dbt1);
327 dbt_to_sv (req->sv2, &req->dbt2); 365 dbt_to_sv (req->sv2, &req->dbt2);
328 dbt_to_sv (req->sv3, &req->dbt3); 366 dbt_to_sv (req->sv3, &req->dbt3);
329 break; 367 break;
330 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
331 case REQ_DB_KEY_RANGE: 375 case REQ_DB_KEY_RANGE:
332 { 376 {
333 AV *av = newAV (); 377 AV *av = newAV ();
334 378
335 av_push (av, newSVnv (req->key_range.less)); 379 av_push (av, newSVnv (req->key_range.less));
344 388
345 case REQ_SEQ_GET: 389 case REQ_SEQ_GET:
346 SvREADONLY_off (req->sv1); 390 SvREADONLY_off (req->sv1);
347 391
348 if (sizeof (IV) > 4) 392 if (sizeof (IV) > 4)
349 sv_setiv_mg (req->sv1, req->seq_t); 393 sv_setiv_mg (req->sv1, (IV)req->seq_t);
350 else 394 else
351 sv_setnv_mg (req->sv1, req->seq_t); 395 sv_setnv_mg (req->sv1, (NV)req->seq_t);
352 396
353 SvREFCNT_dec (req->sv1); 397 SvREFCNT_dec (req->sv1);
354 break; 398 break;
355 } 399 }
356 400
365 } 409 }
366 410
367 return !SvTRUE (ERRSV); 411 return !SvTRUE (ERRSV);
368} 412}
369 413
370static void req_free (aio_req req) 414static void req_free (bdb_req req)
371{ 415{
372 free (req->buf1); 416 free (req->buf1);
373 free (req->buf2); 417 free (req->buf2);
418 free (req->buf3);
374 Safefree (req); 419 Safefree (req);
375} 420}
376 421
377#ifdef USE_SOCKETS_AS_HANDLES 422#ifdef USE_SOCKETS_AS_HANDLES
378# define TO_SOCKET(x) (win32_get_osfhandle (x)) 423# define TO_SOCKET(x) (win32_get_osfhandle (x))
379#else 424#else
380# define TO_SOCKET(x) (x) 425# define TO_SOCKET(x) (x)
381#endif 426#endif
382 427
383static void 428static void
384create_pipe (int fd[2]) 429create_respipe (void)
385{ 430{
386#ifdef _WIN32 431#ifdef _WIN32
387 int arg = 1; 432 int arg; /* argg */
433#endif
434 int old_readfd = respipe [0];
435
436 if (respipe [1] >= 0)
437 respipe_close (TO_SOCKET (respipe [1]));
438
439#ifdef _WIN32
388 if (PerlSock_socketpair (AF_UNIX, SOCK_STREAM, 0, fd) 440 if (PerlSock_socketpair (AF_UNIX, SOCK_STREAM, 0, respipe))
389 || ioctlsocket (TO_SOCKET (fd [0]), FIONBIO, &arg)
390 || ioctlsocket (TO_SOCKET (fd [1]), FIONBIO, &arg))
391#else 441#else
392 if (pipe (fd) 442 if (pipe (respipe))
393 || fcntl (fd [0], F_SETFL, O_NONBLOCK)
394 || fcntl (fd [1], F_SETFL, O_NONBLOCK))
395#endif 443#endif
396 croak ("unable to initialize result pipe"); 444 croak ("unable to initialize result pipe");
445
446 if (old_readfd >= 0)
447 {
448 if (dup2 (TO_SOCKET (respipe [0]), TO_SOCKET (old_readfd)) < 0)
449 croak ("unable to initialize result pipe(2)");
450
451 respipe_close (respipe [0]);
452 respipe [0] = old_readfd;
453 }
454
455#ifdef _WIN32
456 arg = 1;
457 if (ioctlsocket (TO_SOCKET (respipe [0]), FIONBIO, &arg)
458 || ioctlsocket (TO_SOCKET (respipe [1]), FIONBIO, &arg))
459#else
460 if (fcntl (respipe [0], F_SETFL, O_NONBLOCK)
461 || fcntl (respipe [1], F_SETFL, O_NONBLOCK))
462#endif
463 croak ("unable to initialize result pipe(3)");
397 464
398 respipe_osf [0] = TO_SOCKET (respipe [0]); 465 respipe_osf [0] = TO_SOCKET (respipe [0]);
399 respipe_osf [1] = TO_SOCKET (respipe [1]); 466 respipe_osf [1] = TO_SOCKET (respipe [1]);
400} 467}
401 468
421 free (wrk); 488 free (wrk);
422 489
423 X_UNLOCK (wrklock); 490 X_UNLOCK (wrklock);
424} 491}
425 492
426static void maybe_start_thread () 493static void maybe_start_thread (void)
427{ 494{
428 if (get_nthreads () >= wanted) 495 if (get_nthreads () >= wanted)
429 return; 496 return;
430 497
431 /* todo: maybe use idle here, but might be less exact */ 498 /* todo: maybe use idle here, but might be less exact */
433 return; 500 return;
434 501
435 start_thread (); 502 start_thread ();
436} 503}
437 504
438static void req_send (aio_req req) 505static void req_send (bdb_req req)
439{ 506{
440 SV *wait_callback = 0; 507 SV *wait_callback = 0;
441 508
509 if (on_next_submit)
510 {
511 dSP;
512 SV *cb = sv_2mortal (on_next_submit);
513
514 on_next_submit = 0;
515
516 PUSHMARK (SP);
517 PUTBACK;
518 call_sv (cb, G_DISCARD | G_EVAL);
519 }
520
442 // synthesize callback if none given 521 // synthesize callback if none given
443 if (!SvOK (req->callback)) 522 if (!req->callback)
444 { 523 {
445 int count; 524 int count;
446 525
447 dSP; 526 dSP;
448 PUSHMARK (SP); 527 PUSHMARK (SP);
451 SPAGAIN; 530 SPAGAIN;
452 531
453 if (count != 2) 532 if (count != 2)
454 croak ("prepare callback must return exactly two values\n"); 533 croak ("prepare callback must return exactly two values\n");
455 534
456 wait_callback = SvREFCNT_inc (POPs); 535 wait_callback = POPs;
457 SvREFCNT_dec (req->callback); 536 SvREFCNT_dec (req->callback);
458 req->callback = SvREFCNT_inc (POPs); 537 req->callback = SvREFCNT_inc (POPs);
459 } 538 }
460 539
461 ++nreqs; 540 ++nreqs;
472 { 551 {
473 dSP; 552 dSP;
474 PUSHMARK (SP); 553 PUSHMARK (SP);
475 PUTBACK; 554 PUTBACK;
476 call_sv (wait_callback, G_DISCARD); 555 call_sv (wait_callback, G_DISCARD);
477 SvREFCNT_dec (wait_callback);
478 } 556 }
479} 557}
480 558
481static void end_thread (void) 559static void end_thread (void)
482{ 560{
483 aio_req req; 561 bdb_req req;
484 562
485 Newz (0, req, 1, aio_cb); 563 Newz (0, req, 1, bdb_cb);
486 564
487 req->type = REQ_QUIT; 565 req->type = REQ_QUIT;
488 req->pri = PRI_MAX + PRI_BIAS; 566 req->pri = PRI_MAX + PRI_BIAS;
489 567
490 X_LOCK (reqlock); 568 X_LOCK (reqlock);
517 595
518 while (started > wanted) 596 while (started > wanted)
519 end_thread (); 597 end_thread ();
520} 598}
521 599
522static void poll_wait () 600static void poll_wait (void)
523{ 601{
524 fd_set rfd; 602 fd_set rfd;
525 603
526 while (nreqs) 604 while (nreqs)
527 { 605 {
540 618
541 PerlSock_select (respipe [0] + 1, &rfd, 0, 0, 0); 619 PerlSock_select (respipe [0] + 1, &rfd, 0, 0, 0);
542 } 620 }
543} 621}
544 622
545static int poll_cb () 623static int poll_cb (void)
546{ 624{
547 dSP; 625 dSP;
548 int count = 0; 626 int count = 0;
549 int maxreqs = max_poll_reqs; 627 int maxreqs = max_poll_reqs;
550 int do_croak = 0; 628 int do_croak = 0;
551 struct timeval tv_start, tv_now; 629 struct timeval tv_start, tv_now;
552 aio_req req; 630 bdb_req req;
553 631
554 if (max_poll_time) 632 if (max_poll_time)
555 gettimeofday (&tv_start, 0); 633 gettimeofday (&tv_start, 0);
556 634
557 for (;;) 635 for (;;)
618 696
619/*****************************************************************************/ 697/*****************************************************************************/
620 698
621X_THREAD_PROC (bdb_proc) 699X_THREAD_PROC (bdb_proc)
622{ 700{
623 aio_req req; 701 bdb_req req;
624 struct timespec ts; 702 struct timespec ts;
625 worker *self = (worker *)thr_arg; 703 worker *self = (worker *)thr_arg;
626 704
627 /* try to distribute timeouts somewhat evenly */ 705 /* try to distribute timeouts somewhat evenly */
628 ts.tv_nsec = ((unsigned long)self & 1023UL) * (1000000000UL / 1024UL); 706 ts.tv_nsec = ((unsigned long)self & 1023UL) * (1000000000UL / 1024UL);
695 773
696 case REQ_ENV_MEMP_TRICKLE: 774 case REQ_ENV_MEMP_TRICKLE:
697 req->result = req->env->memp_trickle (req->env, req->int1, &req->int2); 775 req->result = req->env->memp_trickle (req->env, req->int1, &req->int2);
698 break; 776 break;
699 777
778 case REQ_ENV_DBREMOVE:
779 req->result = req->env->dbremove (req->env, req->txn, req->buf1, req->buf2, req->uint1);
780 break;
781
782 case REQ_ENV_DBRENAME:
783 req->result = req->env->dbrename (req->env, req->txn, req->buf1, req->buf2, req->buf3, req->uint1);
784 break;
785
700 case REQ_DB_OPEN: 786 case REQ_DB_OPEN:
701 req->result = req->db->open (req->db, req->txn, req->buf1, req->buf2, req->int1, req->uint1, req->int2); 787 req->result = req->db->open (req->db, req->txn, req->buf1, req->buf2, req->int1, req->uint1, req->int2);
702 break; 788 break;
703 789
704 case REQ_DB_CLOSE: 790 case REQ_DB_CLOSE:
709 req->result = req->db->compact (req->db, req->txn, &req->dbt1, &req->dbt2, 0, req->uint1, 0); 795 req->result = req->db->compact (req->db, req->txn, &req->dbt1, &req->dbt2, 0, req->uint1, 0);
710 break; 796 break;
711 797
712 case REQ_DB_SYNC: 798 case REQ_DB_SYNC:
713 req->result = req->db->sync (req->db, req->uint1); 799 req->result = req->db->sync (req->db, req->uint1);
800 break;
801
802 case REQ_DB_UPGRADE:
803 req->result = req->db->upgrade (req->db, req->buf1, req->uint1);
714 break; 804 break;
715 805
716 case REQ_DB_PUT: 806 case REQ_DB_PUT:
717 req->result = req->db->put (req->db, req->txn, &req->dbt1, &req->dbt2, req->uint1); 807 req->result = req->db->put (req->db, req->txn, &req->dbt1, &req->dbt2, req->uint1);
718 break; 808 break;
842 X_UNLOCK (wrklock); 932 X_UNLOCK (wrklock);
843} 933}
844 934
845static void atfork_child (void) 935static void atfork_child (void)
846{ 936{
847 aio_req prv; 937 bdb_req prv;
848 938
849 while (prv = reqq_shift (&req_queue)) 939 while (prv = reqq_shift (&req_queue))
850 req_free (prv); 940 req_free (prv);
851 941
852 while (prv = reqq_shift (&res_queue)) 942 while (prv = reqq_shift (&res_queue))
867 idle = 0; 957 idle = 0;
868 nreqs = 0; 958 nreqs = 0;
869 nready = 0; 959 nready = 0;
870 npending = 0; 960 npending = 0;
871 961
872 respipe_close (respipe [0]);
873 respipe_close (respipe [1]);
874
875 create_pipe (respipe); 962 create_respipe ();
876 963
877 atfork_parent (); 964 atfork_parent ();
878} 965}
879 966
880#define dREQ(reqtype) \ 967#define dREQ(reqtype) \
881 aio_req req; \ 968 bdb_req req; \
882 int req_pri = next_pri; \ 969 int req_pri = next_pri; \
883 next_pri = DEFAULT_PRI + PRI_BIAS; \ 970 next_pri = DEFAULT_PRI + PRI_BIAS; \
884 \ 971 \
885 if (SvOK (callback) && !SvROK (callback)) \ 972 if (callback && SvOK (callback)) \
886 croak ("callback must be undef or of reference type"); \ 973 croak ("callback has illegal type or extra arguments"); \
887 \ 974 \
888 Newz (0, req, 1, aio_cb); \ 975 Newz (0, req, 1, bdb_cb); \
889 if (!req) \ 976 if (!req) \
890 croak ("out of memory during aio_req allocation"); \ 977 croak ("out of memory during bdb_req allocation"); \
891 \ 978 \
892 req->callback = newSVsv (callback); \ 979 req->callback = cb ? SvREFCNT_inc (cb) : 0; \
893 req->type = (reqtype); \ 980 req->type = (reqtype); \
894 req->pri = req_pri 981 req->pri = req_pri
895 982
896#define REQ_SEND \ 983#define REQ_SEND \
897 req_send (req) 984 req_send (req)
898 985
899#define SvPTR(var, arg, type, class, nullok) \ 986#define SvPTR(var, arg, type, class, nullok) \
900 if (!SvOK (arg)) \ 987 if (!SvOK (arg)) \
901 { \ 988 { \
902 if (!nullok) \ 989 if (nullok != 1) \
903 croak (# var " must be a " # class " object, not undef"); \ 990 croak (# var " must be a " # class " object, not undef"); \
904 \ 991 \
905 (var) = 0; \ 992 (var) = 0; \
906 } \ 993 } \
907 else if (sv_derived_from ((arg), # class)) \ 994 else if (sv_derived_from ((arg), # class)) \
908 { \ 995 { \
909 IV tmp = SvIV ((SV*) SvRV (arg)); \ 996 IV tmp = SvIV ((SV*) SvRV (arg)); \
910 (var) = INT2PTR (type, tmp); \ 997 (var) = INT2PTR (type, tmp); \
911 if (!var) \ 998 if (!var && nullok != 2) \
912 croak (# var " is not a valid " # class " object anymore"); \ 999 croak (# var " is not a valid " # class " object anymore"); \
913 } \ 1000 } \
914 else \ 1001 else \
915 croak (# var " is not of type " # class); \ 1002 croak (# var " is not of type " # class);
916 \
917 1003
918static void 1004static void
919ptr_nuke (SV *sv) 1005ptr_nuke (SV *sv)
920{ 1006{
921 assert (SvROK (sv)); 1007 assert (SvROK (sv));
922 sv_setiv (SvRV (sv), 0); 1008 sv_setiv (SvRV (sv), 0);
923} 1009}
1010
1011static int
1012errno_get (pTHX_ SV *sv, MAGIC *mg)
1013{
1014 if (*mg->mg_ptr == '!') // should always be the case
1015 if (-30999 <= errno && errno <= -30800)
1016 {
1017 sv_setnv (sv, (NV)errno);
1018 sv_setpv (sv, db_strerror (errno));
1019 SvNOK_on (sv); /* what a wonderful hack! */
1020 // ^^^ copied from perl sources
1021 return 0;
1022 }
1023
1024 return PL_vtbl_sv.svt_get (aTHX_ sv, mg);
1025}
1026
1027static MGVTBL vtbl_errno;
1028
1029// this wonderful hack :( patches perl's $! variable to support our errno values
1030static void
1031patch_errno (void)
1032{
1033 SV *sv;
1034 MAGIC *mg;
1035
1036 if (!(sv = get_sv ("!", 1)))
1037 return;
1038
1039 if (!(mg = mg_find (sv, PERL_MAGIC_sv)))
1040 return;
1041
1042 if (mg->mg_virtual != &PL_vtbl_sv)
1043 return;
1044
1045 vtbl_errno = PL_vtbl_sv;
1046 vtbl_errno.svt_get = errno_get;
1047 mg->mg_virtual = &vtbl_errno;
1048}
1049
1050#if __GNUC__ >= 4
1051# define noinline __attribute__ ((noinline))
1052#else
1053# define noinline
1054#endif
1055
1056static noinline SV *
1057pop_callback (I32 *ritems, SV *sv)
1058{
1059 if (SvROK (sv))
1060 {
1061 HV *st;
1062 GV *gvp;
1063 CV *cv;
1064 const char *name;
1065
1066 /* forgive me */
1067 if (SvTYPE (SvRV (sv)) == SVt_PVMG
1068 && (st = SvSTASH (SvRV (sv)))
1069 && (name = HvNAME_get (st))
1070 && (name [0] == 'B' && name [1] == 'D' && name [2] == 'B' && name [3] == ':'))
1071 return 0;
1072
1073 if ((cv = sv_2cv (sv, &st, &gvp, 0)))
1074 {
1075 --*ritems;
1076 return (SV *)cv;
1077 }
1078 }
1079
1080 return 0;
1081}
1082
1083#define CALLBACK SV *cb = pop_callback (&items, ST (items - 1));
924 1084
925MODULE = BDB PACKAGE = BDB 1085MODULE = BDB PACKAGE = BDB
926 1086
927PROTOTYPES: ENABLE 1087PROTOTYPES: ENABLE
928 1088
944 const_iv (INIT_TXN) 1104 const_iv (INIT_TXN)
945 const_iv (RECOVER) 1105 const_iv (RECOVER)
946 const_iv (INIT_TXN) 1106 const_iv (INIT_TXN)
947 const_iv (RECOVER_FATAL) 1107 const_iv (RECOVER_FATAL)
948 const_iv (CREATE) 1108 const_iv (CREATE)
1109 const_iv (RDONLY)
949 const_iv (USE_ENVIRON) 1110 const_iv (USE_ENVIRON)
950 const_iv (USE_ENVIRON_ROOT) 1111 const_iv (USE_ENVIRON_ROOT)
951 const_iv (LOCKDOWN) 1112 const_iv (LOCKDOWN)
952 const_iv (PRIVATE) 1113 const_iv (PRIVATE)
953 const_iv (REGISTER) 1114 const_iv (REGISTER)
954 const_iv (SYSTEM_MEM) 1115 const_iv (SYSTEM_MEM)
955 const_iv (AUTO_COMMIT) 1116 const_iv (AUTO_COMMIT)
956 const_iv (CDB_ALLDB) 1117 const_iv (CDB_ALLDB)
957 const_iv (DIRECT_DB) 1118 const_iv (DIRECT_DB)
958 const_iv (DIRECT_LOG)
959 const_iv (DSYNC_DB) 1119 const_iv (DSYNC_DB)
960 const_iv (DSYNC_LOG)
961 const_iv (LOG_AUTOREMOVE)
962 const_iv (LOG_INMEMORY)
963 const_iv (NOLOCKING) 1120 const_iv (NOLOCKING)
964 const_iv (NOMMAP) 1121 const_iv (NOMMAP)
965 const_iv (NOPANIC) 1122 const_iv (NOPANIC)
966 const_iv (OVERWRITE) 1123 const_iv (OVERWRITE)
967 const_iv (PANIC_ENVIRONMENT) 1124 const_iv (PANIC_ENVIRONMENT)
968 const_iv (REGION_INIT) 1125 const_iv (REGION_INIT)
969 const_iv (TIME_NOTGRANTED) 1126 const_iv (TIME_NOTGRANTED)
970 const_iv (TXN_NOSYNC) 1127 const_iv (TXN_NOSYNC)
1128 const_iv (TXN_NOT_DURABLE)
971 const_iv (TXN_WRITE_NOSYNC) 1129 const_iv (TXN_WRITE_NOSYNC)
972 const_iv (WRITECURSOR) 1130 const_iv (WRITECURSOR)
973 const_iv (YIELDCPU) 1131 const_iv (YIELDCPU)
974 const_iv (ENCRYPT_AES) 1132 const_iv (ENCRYPT_AES)
975 const_iv (XA_CREATE) 1133 const_iv (XA_CREATE)
983 const_iv (READ_UNCOMMITTED) 1141 const_iv (READ_UNCOMMITTED)
984 const_iv (TRUNCATE) 1142 const_iv (TRUNCATE)
985 const_iv (NOSYNC) 1143 const_iv (NOSYNC)
986 const_iv (CHKSUM) 1144 const_iv (CHKSUM)
987 const_iv (ENCRYPT) 1145 const_iv (ENCRYPT)
988 const_iv (TXN_NOT_DURABLE)
989 const_iv (DUP) 1146 const_iv (DUP)
990 const_iv (DUPSORT) 1147 const_iv (DUPSORT)
991 const_iv (RECNUM) 1148 const_iv (RECNUM)
992 const_iv (RENUMBER) 1149 const_iv (RENUMBER)
993 const_iv (REVSPLITOFF) 1150 const_iv (REVSPLITOFF)
998 const_iv (GET_BOTH_RANGE) 1155 const_iv (GET_BOTH_RANGE)
999 //const_iv (SET_RECNO) 1156 //const_iv (SET_RECNO)
1000 //const_iv (MULTIPLE) 1157 //const_iv (MULTIPLE)
1001 const_iv (SNAPSHOT) 1158 const_iv (SNAPSHOT)
1002 const_iv (JOIN_ITEM) 1159 const_iv (JOIN_ITEM)
1160 const_iv (JOIN_NOSORT)
1003 const_iv (RMW) 1161 const_iv (RMW)
1004 1162
1005 const_iv (NOTFOUND) 1163 const_iv (NOTFOUND)
1006 const_iv (KEYEMPTY) 1164 const_iv (KEYEMPTY)
1007 const_iv (LOCK_DEADLOCK) 1165 const_iv (LOCK_DEADLOCK)
1023 const_iv (TXN_SYNC) 1181 const_iv (TXN_SYNC)
1024 1182
1025 const_iv (SET_LOCK_TIMEOUT) 1183 const_iv (SET_LOCK_TIMEOUT)
1026 const_iv (SET_TXN_TIMEOUT) 1184 const_iv (SET_TXN_TIMEOUT)
1027 1185
1028 const_iv (JOIN_ITEM)
1029 const_iv (FIRST) 1186 const_iv (FIRST)
1030 const_iv (NEXT) 1187 const_iv (NEXT)
1031 const_iv (NEXT_DUP) 1188 const_iv (NEXT_DUP)
1032 const_iv (NEXT_NODUP) 1189 const_iv (NEXT_NODUP)
1033 const_iv (PREV) 1190 const_iv (PREV)
1067 const_iv (LOG_BUFFER_FULL) 1224 const_iv (LOG_BUFFER_FULL)
1068 const_iv (NOSERVER) 1225 const_iv (NOSERVER)
1069 const_iv (NOSERVER_HOME) 1226 const_iv (NOSERVER_HOME)
1070 const_iv (NOSERVER_ID) 1227 const_iv (NOSERVER_ID)
1071 const_iv (NOTFOUND) 1228 const_iv (NOTFOUND)
1072 const_iv (OLD_VERSION)
1073 const_iv (PAGE_NOTFOUND) 1229 const_iv (PAGE_NOTFOUND)
1074 const_iv (REP_DUPMASTER) 1230 const_iv (REP_DUPMASTER)
1075 const_iv (REP_HANDLE_DEAD) 1231 const_iv (REP_HANDLE_DEAD)
1076 const_iv (REP_HOLDELECTION) 1232 const_iv (REP_HOLDELECTION)
1077 const_iv (REP_IGNORE) 1233 const_iv (REP_IGNORE)
1100 const_iv (MULTIVERSION) 1256 const_iv (MULTIVERSION)
1101 const_iv (TXN_SNAPSHOT) 1257 const_iv (TXN_SNAPSHOT)
1102#endif 1258#endif
1103#if DB_VERSION_MINOR >= 6 1259#if DB_VERSION_MINOR >= 6
1104 const_iv (PREV_DUP) 1260 const_iv (PREV_DUP)
1105# if 0
1106 const_iv (PRIORITY_UNCHANGED) 1261 const_iv (PRIORITY_UNCHANGED)
1107 const_iv (PRIORITY_VERY_LOW) 1262 const_iv (PRIORITY_VERY_LOW)
1108 const_iv (PRIORITY_LOW) 1263 const_iv (PRIORITY_LOW)
1109 const_iv (PRIORITY_DEFAULT) 1264 const_iv (PRIORITY_DEFAULT)
1110 const_iv (PRIORITY_HIGH) 1265 const_iv (PRIORITY_HIGH)
1111 const_iv (PRIORITY_VERY_HIGH) 1266 const_iv (PRIORITY_VERY_HIGH)
1112# endif 1267#endif
1268#if DB_VERSION_MINOR >= 7
1269 const_iv (LOG_DIRECT)
1270 const_iv (LOG_DSYNC)
1271 const_iv (LOG_AUTO_REMOVE)
1272 const_iv (LOG_IN_MEMORY)
1273 const_iv (LOG_ZERO)
1274#else
1275 const_iv (DIRECT_LOG)
1276 const_iv (DSYNC_LOG)
1277 const_iv (LOG_AUTOREMOVE)
1278 const_iv (LOG_INMEMORY)
1113#endif 1279#endif
1114 }; 1280 };
1115 1281
1116 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; ) 1282 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; )
1117 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv)); 1283 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv));
1118 1284
1119 newCONSTSUB (stash, "DB_VERSION", newSVnv (DB_VERSION_MAJOR + DB_VERSION_MINOR * .1)); 1285 {
1286 /* we currently only allow version, minor-version and patchlevel to go up to 255 */
1287 char vstring[3] = { DB_VERSION_MAJOR, DB_VERSION_MINOR, DB_VERSION_PATCH };
1288
1289 newCONSTSUB (stash, "VERSION_v", newSVpvn (vstring, 3));
1290 }
1291
1120 newCONSTSUB (stash, "DB_VERSION_STRING", newSVpv (DB_VERSION_STRING, 0)); 1292 newCONSTSUB (stash, "VERSION_STRING", newSVpv (DB_VERSION_STRING, 0));
1121 1293
1122 create_pipe (respipe); 1294 create_respipe ();
1123 1295
1124 X_THREAD_ATFORK (atfork_prepare, atfork_parent, atfork_child); 1296 X_THREAD_ATFORK (atfork_prepare, atfork_parent, atfork_child);
1125#ifdef _WIN32 1297 patch_errno ();
1126 X_MUTEX_CHECK (wrklock);
1127 X_MUTEX_CHECK (reslock);
1128 X_MUTEX_CHECK (reqlock);
1129
1130 X_COND_CHECK (reqwait);
1131#endif
1132} 1298}
1133 1299
1134void 1300void
1135max_poll_reqs (int nreqs) 1301max_poll_reqs (int nreqs)
1136 PROTOTYPE: $ 1302 PROTOTYPE: $
1276 CODE: 1442 CODE:
1277 RETVAL = db_strerror (errorno); 1443 RETVAL = db_strerror (errorno);
1278 OUTPUT: 1444 OUTPUT:
1279 RETVAL 1445 RETVAL
1280 1446
1447void _on_next_submit (SV *cb)
1448 CODE:
1449 SvREFCNT_dec (on_next_submit);
1450 on_next_submit = SvOK (cb) ? newSVsv (cb) : 0;
1451
1281DB_ENV * 1452DB_ENV *
1282db_env_create (U32 env_flags = 0) 1453db_env_create (U32 env_flags = 0)
1283 CODE: 1454 CODE:
1284{ 1455{
1285 errno = db_env_create (&RETVAL, env_flags); 1456 errno = db_env_create (&RETVAL, env_flags);
1294} 1465}
1295 OUTPUT: 1466 OUTPUT:
1296 RETVAL 1467 RETVAL
1297 1468
1298void 1469void
1299db_env_open (DB_ENV *env, octetstring db_home, U32 open_flags, int mode, SV *callback = &PL_sv_undef) 1470db_env_open (DB_ENV *env, bdb_filename db_home, U32 open_flags, int mode, SV *callback = 0)
1471 PREINIT:
1472 CALLBACK
1300 CODE: 1473 CODE:
1301{ 1474{
1302 dREQ (REQ_ENV_OPEN); 1475 dREQ (REQ_ENV_OPEN);
1303
1304 env->set_thread_count (env, wanted + 2);
1305
1306 req->env = env; 1476 req->env = env;
1307 req->uint1 = open_flags | DB_THREAD; 1477 req->uint1 = open_flags | DB_THREAD;
1308 req->int1 = mode; 1478 req->int1 = mode;
1309 req->buf1 = strdup_ornull (db_home); 1479 req->buf1 = strdup_ornull (db_home);
1310 REQ_SEND; 1480 REQ_SEND;
1311} 1481}
1312 1482
1313void 1483void
1314db_env_close (DB_ENV *env, U32 flags = 0, SV *callback = &PL_sv_undef) 1484db_env_close (DB_ENV *env, U32 flags = 0, SV *callback = 0)
1485 PREINIT:
1486 CALLBACK
1315 CODE: 1487 CODE:
1316{ 1488{
1317 dREQ (REQ_ENV_CLOSE); 1489 dREQ (REQ_ENV_CLOSE);
1318 req->env = env; 1490 req->env = env;
1319 req->uint1 = flags; 1491 req->uint1 = flags;
1320 REQ_SEND; 1492 REQ_SEND;
1321 ptr_nuke (ST (0)); 1493 ptr_nuke (ST (0));
1322} 1494}
1323 1495
1324void 1496void
1325db_env_txn_checkpoint (DB_ENV *env, U32 kbyte = 0, U32 min = 0, U32 flags = 0, SV *callback = &PL_sv_undef) 1497db_env_txn_checkpoint (DB_ENV *env, U32 kbyte = 0, U32 min = 0, U32 flags = 0, SV *callback = 0)
1498 PREINIT:
1499 CALLBACK
1326 CODE: 1500 CODE:
1327{ 1501{
1328 dREQ (REQ_ENV_TXN_CHECKPOINT); 1502 dREQ (REQ_ENV_TXN_CHECKPOINT);
1329 req->env = env; 1503 req->env = env;
1330 req->uint1 = kbyte; 1504 req->uint1 = kbyte;
1332 req->uint2 = flags; 1506 req->uint2 = flags;
1333 REQ_SEND; 1507 REQ_SEND;
1334} 1508}
1335 1509
1336void 1510void
1337db_env_lock_detect (DB_ENV *env, U32 flags = 0, U32 atype = DB_LOCK_DEFAULT, SV *dummy = 0, SV *callback = &PL_sv_undef) 1511db_env_lock_detect (DB_ENV *env, U32 flags = 0, U32 atype = DB_LOCK_DEFAULT, SV *dummy = 0, SV *callback = 0)
1512 PREINIT:
1513 CALLBACK
1338 CODE: 1514 CODE:
1339{ 1515{
1340 dREQ (REQ_ENV_LOCK_DETECT); 1516 dREQ (REQ_ENV_LOCK_DETECT);
1341 req->env = env; 1517 req->env = env;
1342 req->uint1 = flags; 1518 req->uint1 = flags;
1343 req->uint2 = atype; 1519 req->uint2 = atype;
1520 /* req->int2 = 0; dummy */
1344 REQ_SEND; 1521 REQ_SEND;
1345} 1522}
1346 1523
1347void 1524void
1348db_env_memp_sync (DB_ENV *env, SV *dummy = 0, SV *callback = &PL_sv_undef) 1525db_env_memp_sync (DB_ENV *env, SV *dummy = 0, SV *callback = 0)
1526 PREINIT:
1527 CALLBACK
1349 CODE: 1528 CODE:
1350{ 1529{
1351 dREQ (REQ_ENV_MEMP_SYNC); 1530 dREQ (REQ_ENV_MEMP_SYNC);
1352 req->env = env; 1531 req->env = env;
1353 REQ_SEND; 1532 REQ_SEND;
1354} 1533}
1355 1534
1356void 1535void
1357db_env_memp_trickle (DB_ENV *env, int percent, SV *dummy = 0, SV *callback = &PL_sv_undef) 1536db_env_memp_trickle (DB_ENV *env, int percent, SV *dummy = 0, SV *callback = 0)
1537 PREINIT:
1538 CALLBACK
1358 CODE: 1539 CODE:
1359{ 1540{
1360 dREQ (REQ_ENV_MEMP_TRICKLE); 1541 dREQ (REQ_ENV_MEMP_TRICKLE);
1361 req->env = env; 1542 req->env = env;
1362 req->int1 = percent; 1543 req->int1 = percent;
1363 REQ_SEND; 1544 REQ_SEND;
1364} 1545}
1365 1546
1547void
1548db_env_dbremove (DB_ENV *env, DB_TXN_ornull *txnid, bdb_filename file, bdb_filename database, U32 flags = 0, SV *callback = 0)
1549 PREINIT:
1550 CALLBACK
1551 CODE:
1552{
1553 dREQ (REQ_ENV_DBREMOVE);
1554 req->env = env;
1555 req->buf1 = strdup_ornull (file);
1556 req->buf2 = strdup_ornull (database);
1557 req->uint1 = flags;
1558 REQ_SEND;
1559}
1560
1561void
1562db_env_dbrename (DB_ENV *env, DB_TXN_ornull *txnid, bdb_filename file, bdb_filename database, bdb_filename newname, U32 flags = 0, SV *callback = 0)
1563 PREINIT:
1564 CALLBACK
1565 CODE:
1566{
1567 dREQ (REQ_ENV_DBRENAME);
1568 req->env = env;
1569 req->buf1 = strdup_ornull (file);
1570 req->buf2 = strdup_ornull (database);
1571 req->buf3 = strdup_ornull (newname);
1572 req->uint1 = flags;
1573 REQ_SEND;
1574}
1366 1575
1367DB * 1576DB *
1368db_create (DB_ENV *env = 0, U32 flags = 0) 1577db_create (DB_ENV *env = 0, U32 flags = 0)
1369 CODE: 1578 CODE:
1370{ 1579{
1377} 1586}
1378 OUTPUT: 1587 OUTPUT:
1379 RETVAL 1588 RETVAL
1380 1589
1381void 1590void
1382db_open (DB *db, DB_TXN_ornull *txnid, octetstring file, octetstring database, int type, U32 flags, int mode, SV *callback = &PL_sv_undef) 1591db_open (DB *db, DB_TXN_ornull *txnid, bdb_filename file, bdb_filename database, int type, U32 flags, int mode, SV *callback = 0)
1592 PREINIT:
1593 CALLBACK
1383 CODE: 1594 CODE:
1384{ 1595{
1385 dREQ (REQ_DB_OPEN); 1596 dREQ (REQ_DB_OPEN);
1386 req->db = db; 1597 req->db = db;
1387 req->txn = txnid; 1598 req->txn = txnid;
1392 req->int2 = mode; 1603 req->int2 = mode;
1393 REQ_SEND; 1604 REQ_SEND;
1394} 1605}
1395 1606
1396void 1607void
1397db_close (DB *db, U32 flags = 0, SV *callback = &PL_sv_undef) 1608db_close (DB *db, U32 flags = 0, SV *callback = 0)
1609 PREINIT:
1610 CALLBACK
1398 CODE: 1611 CODE:
1399{ 1612{
1400 dREQ (REQ_DB_CLOSE); 1613 dREQ (REQ_DB_CLOSE);
1401 req->db = db; 1614 req->db = db;
1402 req->uint1 = flags; 1615 req->uint1 = flags;
1404 REQ_SEND; 1617 REQ_SEND;
1405 ptr_nuke (ST (0)); 1618 ptr_nuke (ST (0));
1406} 1619}
1407 1620
1408void 1621void
1409db_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) 1622db_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)
1623 PREINIT:
1624 CALLBACK
1410 CODE: 1625 CODE:
1411{ 1626{
1412 dREQ (REQ_DB_COMPACT); 1627 dREQ (REQ_DB_COMPACT);
1413 req->db = db; 1628 req->db = db;
1414 req->txn = txn; 1629 req->txn = txn;
1417 req->uint1 = flags; 1632 req->uint1 = flags;
1418 REQ_SEND; 1633 REQ_SEND;
1419} 1634}
1420 1635
1421void 1636void
1422db_sync (DB *db, U32 flags = 0, SV *callback = &PL_sv_undef) 1637db_sync (DB *db, U32 flags = 0, SV *callback = 0)
1638 PREINIT:
1639 CALLBACK
1423 CODE: 1640 CODE:
1424{ 1641{
1425 dREQ (REQ_DB_SYNC); 1642 dREQ (REQ_DB_SYNC);
1426 req->db = db; 1643 req->db = db;
1427 req->uint1 = flags; 1644 req->uint1 = flags;
1428 REQ_SEND; 1645 REQ_SEND;
1429} 1646}
1430 1647
1431void 1648void
1649db_upgrade (DB *db, bdb_filename file, U32 flags = 0, SV *callback = 0)
1650 PREINIT:
1651 CALLBACK
1652 CODE:
1653{
1654 dREQ (REQ_DB_SYNC);
1655 req->db = db;
1656 req->buf1 = strdup (file);
1657 req->uint1 = flags;
1658 REQ_SEND;
1659}
1660
1661void
1432db_key_range (DB *db, DB_TXN_ornull *txn, SV *key, SV *key_range, U32 flags = 0, SV *callback = &PL_sv_undef) 1662db_key_range (DB *db, DB_TXN_ornull *txn, SV *key, SV *key_range, U32 flags = 0, SV *callback = 0)
1663 PREINIT:
1664 CALLBACK
1433 CODE: 1665 CODE:
1434{ 1666{
1435 dREQ (REQ_DB_KEY_RANGE); 1667 dREQ (REQ_DB_KEY_RANGE);
1436 req->db = db; 1668 req->db = db;
1437 req->txn = txn; 1669 req->txn = txn;
1440 req->sv1 = SvREFCNT_inc (key_range); SvREADONLY_on (key_range); 1672 req->sv1 = SvREFCNT_inc (key_range); SvREADONLY_on (key_range);
1441 REQ_SEND; 1673 REQ_SEND;
1442} 1674}
1443 1675
1444void 1676void
1445db_put (DB *db, DB_TXN_ornull *txn, SV *key, SV *data, U32 flags = 0, SV *callback = &PL_sv_undef) 1677db_put (DB *db, DB_TXN_ornull *txn, SV *key, SV *data, U32 flags = 0, SV *callback = 0)
1678 PREINIT:
1679 CALLBACK
1446 CODE: 1680 CODE:
1447{ 1681{
1448 dREQ (REQ_DB_PUT); 1682 dREQ (REQ_DB_PUT);
1449 req->db = db; 1683 req->db = db;
1450 req->txn = txn; 1684 req->txn = txn;
1453 req->uint1 = flags; 1687 req->uint1 = flags;
1454 REQ_SEND; 1688 REQ_SEND;
1455} 1689}
1456 1690
1457void 1691void
1458db_get (DB *db, DB_TXN_ornull *txn, SV *key, SV *data, U32 flags = 0, SV *callback = &PL_sv_undef) 1692db_get (DB *db, DB_TXN_ornull *txn, SV *key, SV *data, U32 flags = 0, SV *callback = 0)
1693 PREINIT:
1694 CALLBACK
1459 CODE: 1695 CODE:
1696 if (SvREADONLY (data))
1697 croak ("can't modify read-only data scalar in db_get");
1460{ 1698{
1461 dREQ (REQ_DB_GET); 1699 dREQ (REQ_DB_GET);
1462 req->db = db; 1700 req->db = db;
1463 req->txn = txn; 1701 req->txn = txn;
1464 req->uint1 = flags; 1702 req->uint1 = flags;
1467 req->sv3 = SvREFCNT_inc (data); SvREADONLY_on (data); 1705 req->sv3 = SvREFCNT_inc (data); SvREADONLY_on (data);
1468 REQ_SEND; 1706 REQ_SEND;
1469} 1707}
1470 1708
1471void 1709void
1472db_pget (DB *db, DB_TXN_ornull *txn, SV *key, SV *pkey, SV *data, U32 flags = 0, SV *callback = &PL_sv_undef) 1710db_pget (DB *db, DB_TXN_ornull *txn, SV *key, SV *pkey, SV *data, U32 flags = 0, SV *callback = 0)
1711 PREINIT:
1712 CALLBACK
1473 CODE: 1713 CODE:
1714 if (SvREADONLY (data))
1715 croak ("can't modify read-only data scalar in db_pget");
1474{ 1716{
1475 dREQ (REQ_DB_PGET); 1717 dREQ (REQ_DB_PGET);
1476 req->db = db; 1718 req->db = db;
1477 req->txn = txn; 1719 req->txn = txn;
1478 req->uint1 = flags; 1720 req->uint1 = flags;
1482 req->sv3 = SvREFCNT_inc (data); SvREADONLY_on (data); 1724 req->sv3 = SvREFCNT_inc (data); SvREADONLY_on (data);
1483 REQ_SEND; 1725 REQ_SEND;
1484} 1726}
1485 1727
1486void 1728void
1487db_del (DB *db, DB_TXN_ornull *txn, SV *key, U32 flags = 0, SV *callback = &PL_sv_undef) 1729db_del (DB *db, DB_TXN_ornull *txn, SV *key, U32 flags = 0, SV *callback = 0)
1730 PREINIT:
1731 CALLBACK
1488 CODE: 1732 CODE:
1489{ 1733{
1490 dREQ (REQ_DB_DEL); 1734 dREQ (REQ_DB_DEL);
1491 req->db = db; 1735 req->db = db;
1492 req->txn = txn; 1736 req->txn = txn;
1494 sv_to_dbt (&req->dbt1, key); 1738 sv_to_dbt (&req->dbt1, key);
1495 REQ_SEND; 1739 REQ_SEND;
1496} 1740}
1497 1741
1498void 1742void
1499db_txn_commit (DB_TXN *txn, U32 flags = 0, SV *callback = &PL_sv_undef) 1743db_txn_commit (DB_TXN *txn, U32 flags = 0, SV *callback = 0)
1744 PREINIT:
1745 CALLBACK
1500 CODE: 1746 CODE:
1501{ 1747{
1502 dREQ (REQ_TXN_COMMIT); 1748 dREQ (REQ_TXN_COMMIT);
1503 req->txn = txn; 1749 req->txn = txn;
1504 req->uint1 = flags; 1750 req->uint1 = flags;
1505 REQ_SEND; 1751 REQ_SEND;
1506 ptr_nuke (ST (0)); 1752 ptr_nuke (ST (0));
1507} 1753}
1508 1754
1509void 1755void
1510db_txn_abort (DB_TXN *txn, SV *callback = &PL_sv_undef) 1756db_txn_abort (DB_TXN *txn, SV *callback = 0)
1757 PREINIT:
1758 CALLBACK
1511 CODE: 1759 CODE:
1512{ 1760{
1513 dREQ (REQ_TXN_ABORT); 1761 dREQ (REQ_TXN_ABORT);
1514 req->txn = txn; 1762 req->txn = txn;
1515 REQ_SEND; 1763 REQ_SEND;
1516 ptr_nuke (ST (0)); 1764 ptr_nuke (ST (0));
1517} 1765}
1518 1766
1519void 1767void
1520db_txn_finish (DB_TXN *txn, U32 flags = 0, SV *callback = &PL_sv_undef) 1768db_txn_finish (DB_TXN *txn, U32 flags = 0, SV *callback = 0)
1769 PREINIT:
1770 CALLBACK
1521 CODE: 1771 CODE:
1522{ 1772{
1523 dREQ (REQ_TXN_FINISH); 1773 dREQ (REQ_TXN_FINISH);
1524 req->txn = txn; 1774 req->txn = txn;
1525 req->uint1 = flags; 1775 req->uint1 = flags;
1526 REQ_SEND; 1776 REQ_SEND;
1527 ptr_nuke (ST (0)); 1777 ptr_nuke (ST (0));
1528} 1778}
1529 1779
1530void 1780void
1531db_c_close (DBC *dbc, SV *callback = &PL_sv_undef) 1781db_c_close (DBC *dbc, SV *callback = 0)
1782 PREINIT:
1783 CALLBACK
1532 CODE: 1784 CODE:
1533{ 1785{
1534 dREQ (REQ_C_CLOSE); 1786 dREQ (REQ_C_CLOSE);
1535 req->dbc = dbc; 1787 req->dbc = dbc;
1536 REQ_SEND; 1788 REQ_SEND;
1537 ptr_nuke (ST (0)); 1789 ptr_nuke (ST (0));
1538} 1790}
1539 1791
1540void 1792void
1541db_c_count (DBC *dbc, SV *count, U32 flags = 0, SV *callback = &PL_sv_undef) 1793db_c_count (DBC *dbc, SV *count, U32 flags = 0, SV *callback = 0)
1794 PREINIT:
1795 CALLBACK
1542 CODE: 1796 CODE:
1543{ 1797{
1544 dREQ (REQ_C_COUNT); 1798 dREQ (REQ_C_COUNT);
1545 req->dbc = dbc; 1799 req->dbc = dbc;
1546 req->sv1 = SvREFCNT_inc (count); 1800 req->sv1 = SvREFCNT_inc (count);
1547 REQ_SEND; 1801 REQ_SEND;
1548} 1802}
1549 1803
1550void 1804void
1551db_c_put (DBC *dbc, SV *key, SV *data, U32 flags = 0, SV *callback = &PL_sv_undef) 1805db_c_put (DBC *dbc, SV *key, SV *data, U32 flags = 0, SV *callback = 0)
1806 PREINIT:
1807 CALLBACK
1552 CODE: 1808 CODE:
1553{ 1809{
1554 dREQ (REQ_C_PUT); 1810 dREQ (REQ_C_PUT);
1555 req->dbc = dbc; 1811 req->dbc = dbc;
1556 sv_to_dbt (&req->dbt1, key); 1812 sv_to_dbt (&req->dbt1, key);
1558 req->uint1 = flags; 1814 req->uint1 = flags;
1559 REQ_SEND; 1815 REQ_SEND;
1560} 1816}
1561 1817
1562void 1818void
1563db_c_get (DBC *dbc, SV *key, SV *data, U32 flags = 0, SV *callback = &PL_sv_undef) 1819db_c_get (DBC *dbc, SV *key, SV *data, U32 flags = 0, SV *callback = 0)
1820 PREINIT:
1821 CALLBACK
1564 CODE: 1822 CODE:
1565{ 1823{
1566 dREQ (REQ_C_GET); 1824 dREQ (REQ_C_GET);
1567 req->dbc = dbc; 1825 req->dbc = dbc;
1568 req->uint1 = flags; 1826 req->uint1 = flags;
1583 req->sv3 = SvREFCNT_inc (data); SvREADONLY_on (data); 1841 req->sv3 = SvREFCNT_inc (data); SvREADONLY_on (data);
1584 REQ_SEND; 1842 REQ_SEND;
1585} 1843}
1586 1844
1587void 1845void
1588db_c_pget (DBC *dbc, SV *key, SV *pkey, SV *data, U32 flags = 0, SV *callback = &PL_sv_undef) 1846db_c_pget (DBC *dbc, SV *key, SV *pkey, SV *data, U32 flags = 0, SV *callback = 0)
1847 PREINIT:
1848 CALLBACK
1589 CODE: 1849 CODE:
1590{ 1850{
1591 dREQ (REQ_C_PGET); 1851 dREQ (REQ_C_PGET);
1592 req->dbc = dbc; 1852 req->dbc = dbc;
1593 req->uint1 = flags; 1853 req->uint1 = flags;
1611 req->sv3 = SvREFCNT_inc (data); SvREADONLY_on (data); 1871 req->sv3 = SvREFCNT_inc (data); SvREADONLY_on (data);
1612 REQ_SEND; 1872 REQ_SEND;
1613} 1873}
1614 1874
1615void 1875void
1616db_c_del (DBC *dbc, U32 flags = 0, SV *callback = &PL_sv_undef) 1876db_c_del (DBC *dbc, U32 flags = 0, SV *callback = 0)
1877 PREINIT:
1878 CALLBACK
1617 CODE: 1879 CODE:
1618{ 1880{
1619 dREQ (REQ_C_DEL); 1881 dREQ (REQ_C_DEL);
1620 req->dbc = dbc; 1882 req->dbc = dbc;
1621 req->uint1 = flags; 1883 req->uint1 = flags;
1622 REQ_SEND; 1884 REQ_SEND;
1623} 1885}
1624 1886
1625 1887
1626void 1888void
1627db_sequence_open (DB_SEQUENCE *seq, DB_TXN_ornull *txnid, SV *key, U32 flags = 0, SV *callback = &PL_sv_undef) 1889db_sequence_open (DB_SEQUENCE *seq, DB_TXN_ornull *txnid, SV *key, U32 flags = 0, SV *callback = 0)
1890 PREINIT:
1891 CALLBACK
1628 CODE: 1892 CODE:
1629{ 1893{
1630 dREQ (REQ_SEQ_OPEN); 1894 dREQ (REQ_SEQ_OPEN);
1631 req->seq = seq; 1895 req->seq = seq;
1632 req->txn = txnid; 1896 req->txn = txnid;
1634 sv_to_dbt (&req->dbt1, key); 1898 sv_to_dbt (&req->dbt1, key);
1635 REQ_SEND; 1899 REQ_SEND;
1636} 1900}
1637 1901
1638void 1902void
1639db_sequence_close (DB_SEQUENCE *seq, U32 flags = 0, SV *callback = &PL_sv_undef) 1903db_sequence_close (DB_SEQUENCE *seq, U32 flags = 0, SV *callback = 0)
1904 PREINIT:
1905 CALLBACK
1640 CODE: 1906 CODE:
1641{ 1907{
1642 dREQ (REQ_SEQ_CLOSE); 1908 dREQ (REQ_SEQ_CLOSE);
1643 req->seq = seq; 1909 req->seq = seq;
1644 req->uint1 = flags; 1910 req->uint1 = flags;
1645 REQ_SEND; 1911 REQ_SEND;
1646 ptr_nuke (ST (0)); 1912 ptr_nuke (ST (0));
1647} 1913}
1648 1914
1649void 1915void
1650db_sequence_get (DB_SEQUENCE *seq, DB_TXN_ornull *txnid, int delta, SV *seq_value, U32 flags = DB_TXN_NOSYNC, SV *callback = &PL_sv_undef) 1916db_sequence_get (DB_SEQUENCE *seq, DB_TXN_ornull *txnid, int delta, SV *seq_value, U32 flags = DB_TXN_NOSYNC, SV *callback = 0)
1917 PREINIT:
1918 CALLBACK
1651 CODE: 1919 CODE:
1652{ 1920{
1653 dREQ (REQ_SEQ_GET); 1921 dREQ (REQ_SEQ_GET);
1654 req->seq = seq; 1922 req->seq = seq;
1655 req->txn = txnid; 1923 req->txn = txnid;
1658 req->sv1 = SvREFCNT_inc (seq_value); SvREADONLY_on (seq_value); 1926 req->sv1 = SvREFCNT_inc (seq_value); SvREADONLY_on (seq_value);
1659 REQ_SEND; 1927 REQ_SEND;
1660} 1928}
1661 1929
1662void 1930void
1663db_sequence_remove (DB_SEQUENCE *seq, DB_TXN_ornull *txnid = 0, U32 flags = 0, SV *callback = &PL_sv_undef) 1931db_sequence_remove (DB_SEQUENCE *seq, DB_TXN_ornull *txnid = 0, U32 flags = 0, SV *callback = 0)
1932 PREINIT:
1933 CALLBACK
1664 CODE: 1934 CODE:
1665{ 1935{
1666 dREQ (REQ_SEQ_REMOVE); 1936 dREQ (REQ_SEQ_REMOVE);
1667 req->seq = seq; 1937 req->seq = seq;
1668 req->txn = txnid; 1938 req->txn = txnid;
1672 1942
1673 1943
1674MODULE = BDB PACKAGE = BDB::Env 1944MODULE = BDB PACKAGE = BDB::Env
1675 1945
1676void 1946void
1677DESTROY (DB_ENV_ornull *env) 1947DESTROY (DB_ENV_ornuked *env)
1678 CODE: 1948 CODE:
1679 if (env) 1949 if (env)
1680 env->close (env, 0); 1950 env->close (env, 0);
1681 1951
1682int set_data_dir (DB_ENV *env, const char *dir) 1952int set_data_dir (DB_ENV *env, const char *dir)
1707 CODE: 1977 CODE:
1708 RETVAL = env->set_cachesize (env, gbytes, bytes, ncache); 1978 RETVAL = env->set_cachesize (env, gbytes, bytes, ncache);
1709 OUTPUT: 1979 OUTPUT:
1710 RETVAL 1980 RETVAL
1711 1981
1712int set_flags (DB_ENV *env, U32 flags, int onoff) 1982int set_flags (DB_ENV *env, U32 flags, int onoff = 1)
1713 CODE: 1983 CODE:
1714 RETVAL = env->set_flags (env, flags, onoff); 1984 RETVAL = env->set_flags (env, flags, onoff);
1715 OUTPUT: 1985 OUTPUT:
1716 RETVAL 1986 RETVAL
1717 1987
1988#if DB_VERSION_MINOR >= 7
1989
1990int set_intermediate_dir_mode (DB_ENV *env, const char *mode)
1991 CODE:
1992 RETVAL = env->set_intermediate_dir_mode (env, mode);
1993 OUTPUT:
1994 RETVAL
1995
1996int log_set_config (DB_ENV *env, U32 flags, int onoff = 1)
1997 CODE:
1998 RETVAL = env->log_set_config (env, flags, onoff);
1999 OUTPUT:
2000 RETVAL
2001
2002#endif
2003
2004
1718void set_errfile (DB_ENV *env, FILE *errfile = 0) 2005void set_errfile (DB_ENV *env, FILE *errfile = 0)
1719 CODE: 2006 CODE:
1720 env->set_errfile (env, errfile); 2007 env->set_errfile (env, errfile);
1721 2008
1722void set_msgfile (DB_ENV *env, FILE *msgfile = 0) 2009void set_msgfile (DB_ENV *env, FILE *msgfile = 0)
1723 CODE: 2010 CODE:
1724 env->set_msgfile (env, msgfile); 2011 env->set_msgfile (env, msgfile);
1725 2012
1726int set_verbose (DB_ENV *env, U32 which, int onoff = 1) 2013int set_verbose (DB_ENV *env, U32 which = -1, int onoff = 1)
1727 CODE: 2014 CODE:
1728 RETVAL = env->set_verbose (env, which, onoff); 2015 RETVAL = env->set_verbose (env, which, onoff);
1729 OUTPUT: 2016 OUTPUT:
1730 RETVAL 2017 RETVAL
1731 2018
1791 2078
1792int set_lg_max (DB_ENV *env, U32 max) 2079int set_lg_max (DB_ENV *env, U32 max)
1793 CODE: 2080 CODE:
1794 RETVAL = env->set_lg_max (env, max); 2081 RETVAL = env->set_lg_max (env, max);
1795 OUTPUT: 2082 OUTPUT:
2083 RETVAL
2084
2085int mutex_set_max (DB_ENV *env, U32 max)
2086 CODE:
2087 RETVAL = env->mutex_set_max (env, max);
2088 OUTPUT:
2089 RETVAL
2090
2091int mutex_set_increment (DB_ENV *env, U32 increment)
2092 CODE:
2093 RETVAL = env->mutex_set_increment (env, increment);
2094 OUTPUT:
2095 RETVAL
2096
2097int mutex_set_tas_spins (DB_ENV *env, U32 tas_spins)
2098 CODE:
2099 RETVAL = env->mutex_set_tas_spins (env, tas_spins);
2100 OUTPUT:
2101 RETVAL
2102
2103int mutex_set_align (DB_ENV *env, U32 align)
2104 CODE:
2105 RETVAL = env->mutex_set_align (env, align);
2106 OUTPUT:
1796 RETVAL 2107 RETVAL
1797 2108
1798DB_TXN * 2109DB_TXN *
1799txn_begin (DB_ENV *env, DB_TXN_ornull *parent = 0, U32 flags = 0) 2110txn_begin (DB_ENV *env, DB_TXN_ornull *parent = 0, U32 flags = 0)
1800 CODE: 2111 CODE:
1805 RETVAL 2116 RETVAL
1806 2117
1807MODULE = BDB PACKAGE = BDB::Db 2118MODULE = BDB PACKAGE = BDB::Db
1808 2119
1809void 2120void
1810DESTROY (DB_ornull *db) 2121DESTROY (DB_ornuked *db)
1811 CODE: 2122 CODE:
1812 if (db) 2123 if (db)
1813 { 2124 {
1814 SV *env = (SV *)db->app_private; 2125 SV *env = (SV *)db->app_private;
1815 db->close (db, 0); 2126 db->close (db, 0);
1910 2221
1911 2222
1912MODULE = BDB PACKAGE = BDB::Txn 2223MODULE = BDB PACKAGE = BDB::Txn
1913 2224
1914void 2225void
1915DESTROY (DB_TXN_ornull *txn) 2226DESTROY (DB_TXN_ornuked *txn)
1916 CODE: 2227 CODE:
1917 if (txn) 2228 if (txn)
1918 txn->abort (txn); 2229 txn->abort (txn);
1919 2230
1920int set_timeout (DB_TXN *txn, NV timeout, U32 flags = DB_SET_TXN_TIMEOUT) 2231int set_timeout (DB_TXN *txn, NV timeout, U32 flags = DB_SET_TXN_TIMEOUT)
1931 2242
1932 2243
1933MODULE = BDB PACKAGE = BDB::Cursor 2244MODULE = BDB PACKAGE = BDB::Cursor
1934 2245
1935void 2246void
1936DESTROY (DBC_ornull *dbc) 2247DESTROY (DBC_ornuked *dbc)
1937 CODE: 2248 CODE:
1938 if (dbc) 2249 if (dbc)
1939 dbc->c_close (dbc); 2250 dbc->c_close (dbc);
1940 2251
2252#if DB_VERSION_MINOR >= 6
2253
2254int set_priority (DBC *dbc, int priority)
2255 CODE:
2256 dbc->set_priority (dbc, priority);
2257
2258#endif
2259
1941MODULE = BDB PACKAGE = BDB::Sequence 2260MODULE = BDB PACKAGE = BDB::Sequence
1942 2261
1943void 2262void
1944DESTROY (DB_SEQUENCE_ornull *seq) 2263DESTROY (DB_SEQUENCE_ornuked *seq)
1945 CODE: 2264 CODE:
1946 if (seq) 2265 if (seq)
1947 seq->close (seq, 0); 2266 seq->close (seq, 0);
1948 2267
1949int initial_value (DB_SEQUENCE *seq, db_seq_t value) 2268int initial_value (DB_SEQUENCE *seq, db_seq_t value)
1968 CODE: 2287 CODE:
1969 RETVAL = seq->set_range (seq, min, max); 2288 RETVAL = seq->set_range (seq, min, max);
1970 OUTPUT: 2289 OUTPUT:
1971 RETVAL 2290 RETVAL
1972 2291
2292

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines