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

Comparing BDB/BDB.xs (file contents):
Revision 1.20 by root, Tue Dec 4 10:13:50 2007 UTC vs.
Revision 1.36 by root, Sun Mar 30 08:01:58 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}
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,
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;
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
169 struct worker *prev, *next; 205 struct worker *prev, *next;
170 206
171 thread_t tid; 207 thread_t tid;
172 208
173 /* locked by reslock, reqlock or wrklock */ 209 /* locked by reslock, reqlock or wrklock */
174 aio_req req; /* currently processed request */ 210 bdb_req req; /* currently processed request */
175 void *dbuf; 211 void *dbuf;
176 DIR *dirp; 212 DIR *dirp;
177} worker; 213} worker;
178 214
179static worker wrk_first = { &wrk_first, &wrk_first, 0 }; 215static worker wrk_first = { &wrk_first, &wrk_first, 0 };
199static mutex_t reqlock = X_MUTEX_INIT; 235static mutex_t reqlock = X_MUTEX_INIT;
200static cond_t reqwait = X_COND_INIT; 236static cond_t reqwait = X_COND_INIT;
201 237
202#if WORDACCESS_UNSAFE 238#if WORDACCESS_UNSAFE
203 239
204static unsigned int get_nready () 240static unsigned int get_nready (void)
205{ 241{
206 unsigned int retval; 242 unsigned int retval;
207 243
208 X_LOCK (reqlock); 244 X_LOCK (reqlock);
209 retval = nready; 245 retval = nready;
210 X_UNLOCK (reqlock); 246 X_UNLOCK (reqlock);
211 247
212 return retval; 248 return retval;
213} 249}
214 250
215static unsigned int get_npending () 251static unsigned int get_npending (void)
216{ 252{
217 unsigned int retval; 253 unsigned int retval;
218 254
219 X_LOCK (reslock); 255 X_LOCK (reslock);
220 retval = npending; 256 retval = npending;
221 X_UNLOCK (reslock); 257 X_UNLOCK (reslock);
222 258
223 return retval; 259 return retval;
224} 260}
225 261
226static unsigned int get_nthreads () 262static unsigned int get_nthreads (void)
227{ 263{
228 unsigned int retval; 264 unsigned int retval;
229 265
230 X_LOCK (wrklock); 266 X_LOCK (wrklock);
231 retval = started; 267 retval = started;
246 * a somewhat faster data structure might be nice, but 282 * a somewhat faster data structure might be nice, but
247 * with 8 priorities this actually needs <20 insns 283 * with 8 priorities this actually needs <20 insns
248 * per shift, the most expensive operation. 284 * per shift, the most expensive operation.
249 */ 285 */
250typedef struct { 286typedef struct {
251 aio_req qs[NUM_PRI], qe[NUM_PRI]; /* qstart, qend */ 287 bdb_req qs[NUM_PRI], qe[NUM_PRI]; /* qstart, qend */
252 int size; 288 int size;
253} reqq; 289} reqq;
254 290
255static reqq req_queue; 291static reqq req_queue;
256static reqq res_queue; 292static reqq res_queue;
257 293
258int reqq_push (reqq *q, aio_req req) 294int reqq_push (reqq *q, bdb_req req)
259{ 295{
260 int pri = req->pri; 296 int pri = req->pri;
261 req->next = 0; 297 req->next = 0;
262 298
263 if (q->qe[pri]) 299 if (q->qe[pri])
269 q->qe[pri] = q->qs[pri] = req; 305 q->qe[pri] = q->qs[pri] = req;
270 306
271 return q->size++; 307 return q->size++;
272} 308}
273 309
274aio_req reqq_shift (reqq *q) 310bdb_req reqq_shift (reqq *q)
275{ 311{
276 int pri; 312 int pri;
277 313
278 if (!q->size) 314 if (!q->size)
279 return 0; 315 return 0;
280 316
281 --q->size; 317 --q->size;
282 318
283 for (pri = NUM_PRI; pri--; ) 319 for (pri = NUM_PRI; pri--; )
284 { 320 {
285 aio_req req = q->qs[pri]; 321 bdb_req req = q->qs[pri];
286 322
287 if (req) 323 if (req)
288 { 324 {
289 if (!(q->qs[pri] = req->next)) 325 if (!(q->qs[pri] = req->next))
290 q->qe[pri] = 0; 326 q->qe[pri] = 0;
294 } 330 }
295 331
296 abort (); 332 abort ();
297} 333}
298 334
299static int poll_cb (); 335static int poll_cb (void);
300static void req_free (aio_req req); 336static void req_free (bdb_req req);
301static void req_cancel (aio_req req); 337static void req_cancel (bdb_req req);
302 338
303static int req_invoke (aio_req req) 339static int req_invoke (bdb_req req)
304{ 340{
305 dSP; 341 dSP;
306 342
307 if (SvOK (req->callback)) 343 if (SvOK (req->callback))
308 { 344 {
326 dbt_to_sv (req->sv1, &req->dbt1); 362 dbt_to_sv (req->sv1, &req->dbt1);
327 dbt_to_sv (req->sv2, &req->dbt2); 363 dbt_to_sv (req->sv2, &req->dbt2);
328 dbt_to_sv (req->sv3, &req->dbt3); 364 dbt_to_sv (req->sv3, &req->dbt3);
329 break; 365 break;
330 366
367 case REQ_DB_PUT:
368 case REQ_C_PUT:
369 dbt_to_sv (0, &req->dbt1);
370 dbt_to_sv (0, &req->dbt2);
371 break;
372
331 case REQ_DB_KEY_RANGE: 373 case REQ_DB_KEY_RANGE:
332 { 374 {
333 AV *av = newAV (); 375 AV *av = newAV ();
334 376
335 av_push (av, newSVnv (req->key_range.less)); 377 av_push (av, newSVnv (req->key_range.less));
344 386
345 case REQ_SEQ_GET: 387 case REQ_SEQ_GET:
346 SvREADONLY_off (req->sv1); 388 SvREADONLY_off (req->sv1);
347 389
348 if (sizeof (IV) > 4) 390 if (sizeof (IV) > 4)
349 sv_setiv_mg (req->sv1, req->seq_t); 391 sv_setiv_mg (req->sv1, (IV)req->seq_t);
350 else 392 else
351 sv_setnv_mg (req->sv1, req->seq_t); 393 sv_setnv_mg (req->sv1, (NV)req->seq_t);
352 394
353 SvREFCNT_dec (req->sv1); 395 SvREFCNT_dec (req->sv1);
354 break; 396 break;
355 } 397 }
356 398
365 } 407 }
366 408
367 return !SvTRUE (ERRSV); 409 return !SvTRUE (ERRSV);
368} 410}
369 411
370static void req_free (aio_req req) 412static void req_free (bdb_req req)
371{ 413{
372 free (req->buf1); 414 free (req->buf1);
373 free (req->buf2); 415 free (req->buf2);
374 Safefree (req); 416 Safefree (req);
375} 417}
379#else 421#else
380# define TO_SOCKET(x) (x) 422# define TO_SOCKET(x) (x)
381#endif 423#endif
382 424
383static void 425static void
384create_respipe () 426create_respipe (void)
385{ 427{
428#ifdef _WIN32
429 int arg; /* argg */
430#endif
386 int old_readfd = respipe [0]; 431 int old_readfd = respipe [0];
387 432
388 if (respipe [1] >= 0) 433 if (respipe [1] >= 0)
389 respipe_close (TO_SOCKET (respipe [1])); 434 respipe_close (TO_SOCKET (respipe [1]));
390 435
403 respipe_close (respipe [0]); 448 respipe_close (respipe [0]);
404 respipe [0] = old_readfd; 449 respipe [0] = old_readfd;
405 } 450 }
406 451
407#ifdef _WIN32 452#ifdef _WIN32
408 int arg = 1; 453 arg = 1;
409 if (ioctlsocket (TO_SOCKET (respipe [0]), FIONBIO, &arg) 454 if (ioctlsocket (TO_SOCKET (respipe [0]), FIONBIO, &arg)
410 || ioctlsocket (TO_SOCKET (respipe [1]), FIONBIO, &arg)) 455 || ioctlsocket (TO_SOCKET (respipe [1]), FIONBIO, &arg))
411#else 456#else
412 if (fcntl (respipe [0], F_SETFL, O_NONBLOCK) 457 if (fcntl (respipe [0], F_SETFL, O_NONBLOCK)
413 || fcntl (respipe [1], F_SETFL, O_NONBLOCK)) 458 || fcntl (respipe [1], F_SETFL, O_NONBLOCK))
440 free (wrk); 485 free (wrk);
441 486
442 X_UNLOCK (wrklock); 487 X_UNLOCK (wrklock);
443} 488}
444 489
445static void maybe_start_thread () 490static void maybe_start_thread (void)
446{ 491{
447 if (get_nthreads () >= wanted) 492 if (get_nthreads () >= wanted)
448 return; 493 return;
449 494
450 /* todo: maybe use idle here, but might be less exact */ 495 /* todo: maybe use idle here, but might be less exact */
452 return; 497 return;
453 498
454 start_thread (); 499 start_thread ();
455} 500}
456 501
457static void req_send (aio_req req) 502static void req_send (bdb_req req)
458{ 503{
459 SV *wait_callback = 0; 504 SV *wait_callback = 0;
460 505
461 // synthesize callback if none given 506 // synthesize callback if none given
462 if (!SvOK (req->callback)) 507 if (!SvOK (req->callback))
470 SPAGAIN; 515 SPAGAIN;
471 516
472 if (count != 2) 517 if (count != 2)
473 croak ("prepare callback must return exactly two values\n"); 518 croak ("prepare callback must return exactly two values\n");
474 519
475 wait_callback = SvREFCNT_inc (POPs); 520 wait_callback = POPs;
476 SvREFCNT_dec (req->callback); 521 SvREFCNT_dec (req->callback);
477 req->callback = SvREFCNT_inc (POPs); 522 req->callback = SvREFCNT_inc (POPs);
478 } 523 }
479 524
480 ++nreqs; 525 ++nreqs;
491 { 536 {
492 dSP; 537 dSP;
493 PUSHMARK (SP); 538 PUSHMARK (SP);
494 PUTBACK; 539 PUTBACK;
495 call_sv (wait_callback, G_DISCARD); 540 call_sv (wait_callback, G_DISCARD);
496 SvREFCNT_dec (wait_callback);
497 } 541 }
498} 542}
499 543
500static void end_thread (void) 544static void end_thread (void)
501{ 545{
502 aio_req req; 546 bdb_req req;
503 547
504 Newz (0, req, 1, aio_cb); 548 Newz (0, req, 1, bdb_cb);
505 549
506 req->type = REQ_QUIT; 550 req->type = REQ_QUIT;
507 req->pri = PRI_MAX + PRI_BIAS; 551 req->pri = PRI_MAX + PRI_BIAS;
508 552
509 X_LOCK (reqlock); 553 X_LOCK (reqlock);
536 580
537 while (started > wanted) 581 while (started > wanted)
538 end_thread (); 582 end_thread ();
539} 583}
540 584
541static void poll_wait () 585static void poll_wait (void)
542{ 586{
543 fd_set rfd; 587 fd_set rfd;
544 588
545 while (nreqs) 589 while (nreqs)
546 { 590 {
559 603
560 PerlSock_select (respipe [0] + 1, &rfd, 0, 0, 0); 604 PerlSock_select (respipe [0] + 1, &rfd, 0, 0, 0);
561 } 605 }
562} 606}
563 607
564static int poll_cb () 608static int poll_cb (void)
565{ 609{
566 dSP; 610 dSP;
567 int count = 0; 611 int count = 0;
568 int maxreqs = max_poll_reqs; 612 int maxreqs = max_poll_reqs;
569 int do_croak = 0; 613 int do_croak = 0;
570 struct timeval tv_start, tv_now; 614 struct timeval tv_start, tv_now;
571 aio_req req; 615 bdb_req req;
572 616
573 if (max_poll_time) 617 if (max_poll_time)
574 gettimeofday (&tv_start, 0); 618 gettimeofday (&tv_start, 0);
575 619
576 for (;;) 620 for (;;)
637 681
638/*****************************************************************************/ 682/*****************************************************************************/
639 683
640X_THREAD_PROC (bdb_proc) 684X_THREAD_PROC (bdb_proc)
641{ 685{
642 aio_req req; 686 bdb_req req;
643 struct timespec ts; 687 struct timespec ts;
644 worker *self = (worker *)thr_arg; 688 worker *self = (worker *)thr_arg;
645 689
646 /* try to distribute timeouts somewhat evenly */ 690 /* try to distribute timeouts somewhat evenly */
647 ts.tv_nsec = ((unsigned long)self & 1023UL) * (1000000000UL / 1024UL); 691 ts.tv_nsec = ((unsigned long)self & 1023UL) * (1000000000UL / 1024UL);
730 774
731 case REQ_DB_SYNC: 775 case REQ_DB_SYNC:
732 req->result = req->db->sync (req->db, req->uint1); 776 req->result = req->db->sync (req->db, req->uint1);
733 break; 777 break;
734 778
779 case REQ_DB_UPGRADE:
780 req->result = req->db->upgrade (req->db, req->buf1, req->uint1);
781 break;
782
735 case REQ_DB_PUT: 783 case REQ_DB_PUT:
736 req->result = req->db->put (req->db, req->txn, &req->dbt1, &req->dbt2, req->uint1); 784 req->result = req->db->put (req->db, req->txn, &req->dbt1, &req->dbt2, req->uint1);
737 break; 785 break;
738 786
739 case REQ_DB_GET: 787 case REQ_DB_GET:
861 X_UNLOCK (wrklock); 909 X_UNLOCK (wrklock);
862} 910}
863 911
864static void atfork_child (void) 912static void atfork_child (void)
865{ 913{
866 aio_req prv; 914 bdb_req prv;
867 915
868 while (prv = reqq_shift (&req_queue)) 916 while (prv = reqq_shift (&req_queue))
869 req_free (prv); 917 req_free (prv);
870 918
871 while (prv = reqq_shift (&res_queue)) 919 while (prv = reqq_shift (&res_queue))
892 940
893 atfork_parent (); 941 atfork_parent ();
894} 942}
895 943
896#define dREQ(reqtype) \ 944#define dREQ(reqtype) \
897 aio_req req; \ 945 bdb_req req; \
898 int req_pri = next_pri; \ 946 int req_pri = next_pri; \
899 next_pri = DEFAULT_PRI + PRI_BIAS; \ 947 next_pri = DEFAULT_PRI + PRI_BIAS; \
900 \ 948 \
901 if (SvOK (callback) && !SvROK (callback)) \ 949 if (SvOK (callback) && !SvROK (callback)) \
902 croak ("callback must be undef or of reference type"); \ 950 croak ("callback must be undef or of reference type"); \
903 \ 951 \
904 Newz (0, req, 1, aio_cb); \ 952 Newz (0, req, 1, bdb_cb); \
905 if (!req) \ 953 if (!req) \
906 croak ("out of memory during aio_req allocation"); \ 954 croak ("out of memory during bdb_req allocation"); \
907 \ 955 \
908 req->callback = newSVsv (callback); \ 956 req->callback = newSVsv (callback); \
909 req->type = (reqtype); \ 957 req->type = (reqtype); \
910 req->pri = req_pri 958 req->pri = req_pri
911 959
912#define REQ_SEND \ 960#define REQ_SEND \
913 req_send (req) 961 req_send (req)
914 962
915#define SvPTR(var, arg, type, class, nullok) \ 963#define SvPTR(var, arg, type, class, nullok) \
916 if (!SvOK (arg)) \ 964 if (!SvOK (arg)) \
917 { \ 965 { \
918 if (!nullok) \ 966 if (nullok != 1) \
919 croak (# var " must be a " # class " object, not undef"); \ 967 croak (# var " must be a " # class " object, not undef"); \
920 \ 968 \
921 (var) = 0; \ 969 (var) = 0; \
922 } \ 970 } \
923 else if (sv_derived_from ((arg), # class)) \ 971 else if (sv_derived_from ((arg), # class)) \
924 { \ 972 { \
925 IV tmp = SvIV ((SV*) SvRV (arg)); \ 973 IV tmp = SvIV ((SV*) SvRV (arg)); \
926 (var) = INT2PTR (type, tmp); \ 974 (var) = INT2PTR (type, tmp); \
927 if (!var) \ 975 if (!var && nullok != 2) \
928 croak (# var " is not a valid " # class " object anymore"); \ 976 croak (# var " is not a valid " # class " object anymore"); \
929 } \ 977 } \
930 else \ 978 else \
931 croak (# var " is not of type " # class); \ 979 croak (# var " is not of type " # class); \
932 \ 980 \
934static void 982static void
935ptr_nuke (SV *sv) 983ptr_nuke (SV *sv)
936{ 984{
937 assert (SvROK (sv)); 985 assert (SvROK (sv));
938 sv_setiv (SvRV (sv), 0); 986 sv_setiv (SvRV (sv), 0);
987}
988
989static int
990errno_get (pTHX_ SV *sv, MAGIC *mg)
991{
992 if (*mg->mg_ptr == '!') // should always be the case
993 if (-30999 <= errno && errno <= -30800)
994 {
995 sv_setnv (sv, (NV)errno);
996 sv_setpv (sv, db_strerror (errno));
997 SvNOK_on (sv); /* what a wonderful hack! */
998 // ^^^ copied from perl sources
999 return 0;
1000 }
1001
1002 return PL_vtbl_sv.svt_get (aTHX_ sv, mg);
1003}
1004
1005static MGVTBL vtbl_errno;
1006
1007// this wonderful hack :( patches perl's $! variable to support our errno values
1008static void
1009patch_errno (void)
1010{
1011 SV *sv;
1012 MAGIC *mg;
1013
1014 if (!(sv = get_sv ("!", 1)))
1015 return;
1016
1017 if (!(mg = mg_find (sv, PERL_MAGIC_sv)))
1018 return;
1019
1020 if (mg->mg_virtual != &PL_vtbl_sv)
1021 return;
1022
1023 vtbl_errno = PL_vtbl_sv;
1024 vtbl_errno.svt_get = errno_get;
1025 mg->mg_virtual = &vtbl_errno;
939} 1026}
940 1027
941MODULE = BDB PACKAGE = BDB 1028MODULE = BDB PACKAGE = BDB
942 1029
943PROTOTYPES: ENABLE 1030PROTOTYPES: ENABLE
1015 const_iv (GET_BOTH_RANGE) 1102 const_iv (GET_BOTH_RANGE)
1016 //const_iv (SET_RECNO) 1103 //const_iv (SET_RECNO)
1017 //const_iv (MULTIPLE) 1104 //const_iv (MULTIPLE)
1018 const_iv (SNAPSHOT) 1105 const_iv (SNAPSHOT)
1019 const_iv (JOIN_ITEM) 1106 const_iv (JOIN_ITEM)
1107 const_iv (JOIN_NOSORT)
1020 const_iv (RMW) 1108 const_iv (RMW)
1021 1109
1022 const_iv (NOTFOUND) 1110 const_iv (NOTFOUND)
1023 const_iv (KEYEMPTY) 1111 const_iv (KEYEMPTY)
1024 const_iv (LOCK_DEADLOCK) 1112 const_iv (LOCK_DEADLOCK)
1040 const_iv (TXN_SYNC) 1128 const_iv (TXN_SYNC)
1041 1129
1042 const_iv (SET_LOCK_TIMEOUT) 1130 const_iv (SET_LOCK_TIMEOUT)
1043 const_iv (SET_TXN_TIMEOUT) 1131 const_iv (SET_TXN_TIMEOUT)
1044 1132
1045 const_iv (JOIN_ITEM)
1046 const_iv (FIRST) 1133 const_iv (FIRST)
1047 const_iv (NEXT) 1134 const_iv (NEXT)
1048 const_iv (NEXT_DUP) 1135 const_iv (NEXT_DUP)
1049 const_iv (NEXT_NODUP) 1136 const_iv (NEXT_NODUP)
1050 const_iv (PREV) 1137 const_iv (PREV)
1084 const_iv (LOG_BUFFER_FULL) 1171 const_iv (LOG_BUFFER_FULL)
1085 const_iv (NOSERVER) 1172 const_iv (NOSERVER)
1086 const_iv (NOSERVER_HOME) 1173 const_iv (NOSERVER_HOME)
1087 const_iv (NOSERVER_ID) 1174 const_iv (NOSERVER_ID)
1088 const_iv (NOTFOUND) 1175 const_iv (NOTFOUND)
1089 const_iv (OLD_VERSION)
1090 const_iv (PAGE_NOTFOUND) 1176 const_iv (PAGE_NOTFOUND)
1091 const_iv (REP_DUPMASTER) 1177 const_iv (REP_DUPMASTER)
1092 const_iv (REP_HANDLE_DEAD) 1178 const_iv (REP_HANDLE_DEAD)
1093 const_iv (REP_HOLDELECTION) 1179 const_iv (REP_HOLDELECTION)
1094 const_iv (REP_IGNORE) 1180 const_iv (REP_IGNORE)
1117 const_iv (MULTIVERSION) 1203 const_iv (MULTIVERSION)
1118 const_iv (TXN_SNAPSHOT) 1204 const_iv (TXN_SNAPSHOT)
1119#endif 1205#endif
1120#if DB_VERSION_MINOR >= 6 1206#if DB_VERSION_MINOR >= 6
1121 const_iv (PREV_DUP) 1207 const_iv (PREV_DUP)
1122# if 0
1123 const_iv (PRIORITY_UNCHANGED) 1208 const_iv (PRIORITY_UNCHANGED)
1124 const_iv (PRIORITY_VERY_LOW) 1209 const_iv (PRIORITY_VERY_LOW)
1125 const_iv (PRIORITY_LOW) 1210 const_iv (PRIORITY_LOW)
1126 const_iv (PRIORITY_DEFAULT) 1211 const_iv (PRIORITY_DEFAULT)
1127 const_iv (PRIORITY_HIGH) 1212 const_iv (PRIORITY_HIGH)
1128 const_iv (PRIORITY_VERY_HIGH) 1213 const_iv (PRIORITY_VERY_HIGH)
1129# endif
1130#endif 1214#endif
1131 }; 1215 };
1132 1216
1133 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; ) 1217 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; )
1134 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv)); 1218 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv));
1135 1219
1136 newCONSTSUB (stash, "DB_VERSION", newSVnv (DB_VERSION_MAJOR + DB_VERSION_MINOR * .1)); 1220 newCONSTSUB (stash, "VERSION", newSVnv (DB_VERSION_MAJOR + DB_VERSION_MINOR * .1));
1137 newCONSTSUB (stash, "DB_VERSION_STRING", newSVpv (DB_VERSION_STRING, 0)); 1221 newCONSTSUB (stash, "VERSION_STRING", newSVpv (DB_VERSION_STRING, 0));
1138 1222
1139 create_respipe (); 1223 create_respipe ();
1140 1224
1141 X_THREAD_ATFORK (atfork_prepare, atfork_parent, atfork_child); 1225 X_THREAD_ATFORK (atfork_prepare, atfork_parent, atfork_child);
1142#ifdef _WIN32 1226#ifdef _WIN32
1144 X_MUTEX_CHECK (reslock); 1228 X_MUTEX_CHECK (reslock);
1145 X_MUTEX_CHECK (reqlock); 1229 X_MUTEX_CHECK (reqlock);
1146 1230
1147 X_COND_CHECK (reqwait); 1231 X_COND_CHECK (reqwait);
1148#endif 1232#endif
1233 patch_errno ();
1149} 1234}
1150 1235
1151void 1236void
1152max_poll_reqs (int nreqs) 1237max_poll_reqs (int nreqs)
1153 PROTOTYPE: $ 1238 PROTOTYPE: $
1311} 1396}
1312 OUTPUT: 1397 OUTPUT:
1313 RETVAL 1398 RETVAL
1314 1399
1315void 1400void
1316db_env_open (DB_ENV *env, octetstring db_home, U32 open_flags, int mode, SV *callback = &PL_sv_undef) 1401db_env_open (DB_ENV *env, bdb_filename db_home, U32 open_flags, int mode, SV *callback = &PL_sv_undef)
1317 CODE: 1402 CODE:
1318{ 1403{
1319 dREQ (REQ_ENV_OPEN); 1404 dREQ (REQ_ENV_OPEN);
1320
1321 env->set_thread_count (env, wanted + 2);
1322 1405
1323 req->env = env; 1406 req->env = env;
1324 req->uint1 = open_flags | DB_THREAD; 1407 req->uint1 = open_flags | DB_THREAD;
1325 req->int1 = mode; 1408 req->int1 = mode;
1326 req->buf1 = strdup_ornull (db_home); 1409 req->buf1 = strdup_ornull (db_home);
1394} 1477}
1395 OUTPUT: 1478 OUTPUT:
1396 RETVAL 1479 RETVAL
1397 1480
1398void 1481void
1399db_open (DB *db, DB_TXN_ornull *txnid, octetstring file, octetstring database, int type, U32 flags, int mode, SV *callback = &PL_sv_undef) 1482db_open (DB *db, DB_TXN_ornull *txnid, bdb_filename file, bdb_filename database, int type, U32 flags, int mode, SV *callback = &PL_sv_undef)
1400 CODE: 1483 CODE:
1401{ 1484{
1402 dREQ (REQ_DB_OPEN); 1485 dREQ (REQ_DB_OPEN);
1403 req->db = db; 1486 req->db = db;
1404 req->txn = txnid; 1487 req->txn = txnid;
1444 req->uint1 = flags; 1527 req->uint1 = flags;
1445 REQ_SEND; 1528 REQ_SEND;
1446} 1529}
1447 1530
1448void 1531void
1532db_upgrade (DB *db, bdb_filename file, U32 flags = 0, SV *callback = &PL_sv_undef)
1533 CODE:
1534{
1535 dREQ (REQ_DB_SYNC);
1536 req->db = db;
1537 req->buf1 = strdup (file);
1538 req->uint1 = flags;
1539 REQ_SEND;
1540}
1541
1542void
1449db_key_range (DB *db, DB_TXN_ornull *txn, SV *key, SV *key_range, U32 flags = 0, SV *callback = &PL_sv_undef) 1543db_key_range (DB *db, DB_TXN_ornull *txn, SV *key, SV *key_range, U32 flags = 0, SV *callback = &PL_sv_undef)
1450 CODE: 1544 CODE:
1451{ 1545{
1452 dREQ (REQ_DB_KEY_RANGE); 1546 dREQ (REQ_DB_KEY_RANGE);
1453 req->db = db; 1547 req->db = db;
1472} 1566}
1473 1567
1474void 1568void
1475db_get (DB *db, DB_TXN_ornull *txn, SV *key, SV *data, U32 flags = 0, SV *callback = &PL_sv_undef) 1569db_get (DB *db, DB_TXN_ornull *txn, SV *key, SV *data, U32 flags = 0, SV *callback = &PL_sv_undef)
1476 CODE: 1570 CODE:
1571 if (SvREADONLY (data))
1572 croak ("can't modify read-only data scalar in db_get");
1477{ 1573{
1478 dREQ (REQ_DB_GET); 1574 dREQ (REQ_DB_GET);
1479 req->db = db; 1575 req->db = db;
1480 req->txn = txn; 1576 req->txn = txn;
1481 req->uint1 = flags; 1577 req->uint1 = flags;
1486} 1582}
1487 1583
1488void 1584void
1489db_pget (DB *db, DB_TXN_ornull *txn, SV *key, SV *pkey, SV *data, U32 flags = 0, SV *callback = &PL_sv_undef) 1585db_pget (DB *db, DB_TXN_ornull *txn, SV *key, SV *pkey, SV *data, U32 flags = 0, SV *callback = &PL_sv_undef)
1490 CODE: 1586 CODE:
1587 if (SvREADONLY (data))
1588 croak ("can't modify read-only data scalar in db_pget");
1491{ 1589{
1492 dREQ (REQ_DB_PGET); 1590 dREQ (REQ_DB_PGET);
1493 req->db = db; 1591 req->db = db;
1494 req->txn = txn; 1592 req->txn = txn;
1495 req->uint1 = flags; 1593 req->uint1 = flags;
1689 1787
1690 1788
1691MODULE = BDB PACKAGE = BDB::Env 1789MODULE = BDB PACKAGE = BDB::Env
1692 1790
1693void 1791void
1694DESTROY (DB_ENV_ornull *env) 1792DESTROY (DB_ENV_ornuked *env)
1695 CODE: 1793 CODE:
1696 if (env) 1794 if (env)
1697 env->close (env, 0); 1795 env->close (env, 0);
1698 1796
1699int set_data_dir (DB_ENV *env, const char *dir) 1797int set_data_dir (DB_ENV *env, const char *dir)
1724 CODE: 1822 CODE:
1725 RETVAL = env->set_cachesize (env, gbytes, bytes, ncache); 1823 RETVAL = env->set_cachesize (env, gbytes, bytes, ncache);
1726 OUTPUT: 1824 OUTPUT:
1727 RETVAL 1825 RETVAL
1728 1826
1729int set_flags (DB_ENV *env, U32 flags, int onoff) 1827int set_flags (DB_ENV *env, U32 flags, int onoff = 1)
1730 CODE: 1828 CODE:
1731 RETVAL = env->set_flags (env, flags, onoff); 1829 RETVAL = env->set_flags (env, flags, onoff);
1732 OUTPUT: 1830 OUTPUT:
1733 RETVAL 1831 RETVAL
1734 1832
1738 1836
1739void set_msgfile (DB_ENV *env, FILE *msgfile = 0) 1837void set_msgfile (DB_ENV *env, FILE *msgfile = 0)
1740 CODE: 1838 CODE:
1741 env->set_msgfile (env, msgfile); 1839 env->set_msgfile (env, msgfile);
1742 1840
1743int set_verbose (DB_ENV *env, U32 which, int onoff = 1) 1841int set_verbose (DB_ENV *env, U32 which = -1, int onoff = 1)
1744 CODE: 1842 CODE:
1745 RETVAL = env->set_verbose (env, which, onoff); 1843 RETVAL = env->set_verbose (env, which, onoff);
1746 OUTPUT: 1844 OUTPUT:
1747 RETVAL 1845 RETVAL
1748 1846
1808 1906
1809int set_lg_max (DB_ENV *env, U32 max) 1907int set_lg_max (DB_ENV *env, U32 max)
1810 CODE: 1908 CODE:
1811 RETVAL = env->set_lg_max (env, max); 1909 RETVAL = env->set_lg_max (env, max);
1812 OUTPUT: 1910 OUTPUT:
1911 RETVAL
1912
1913int mutex_set_max (DB_ENV *env, U32 max)
1914 CODE:
1915 RETVAL = env->mutex_set_max (env, max);
1916 OUTPUT:
1917 RETVAL
1918
1919int mutex_set_increment (DB_ENV *env, U32 increment)
1920 CODE:
1921 RETVAL = env->mutex_set_increment (env, increment);
1922 OUTPUT:
1923 RETVAL
1924
1925int mutex_set_tas_spins (DB_ENV *env, U32 tas_spins)
1926 CODE:
1927 RETVAL = env->mutex_set_tas_spins (env, tas_spins);
1928 OUTPUT:
1929 RETVAL
1930
1931int mutex_set_align (DB_ENV *env, U32 align)
1932 CODE:
1933 RETVAL = env->mutex_set_align (env, align);
1934 OUTPUT:
1813 RETVAL 1935 RETVAL
1814 1936
1815DB_TXN * 1937DB_TXN *
1816txn_begin (DB_ENV *env, DB_TXN_ornull *parent = 0, U32 flags = 0) 1938txn_begin (DB_ENV *env, DB_TXN_ornull *parent = 0, U32 flags = 0)
1817 CODE: 1939 CODE:
1822 RETVAL 1944 RETVAL
1823 1945
1824MODULE = BDB PACKAGE = BDB::Db 1946MODULE = BDB PACKAGE = BDB::Db
1825 1947
1826void 1948void
1827DESTROY (DB_ornull *db) 1949DESTROY (DB_ornuked *db)
1828 CODE: 1950 CODE:
1829 if (db) 1951 if (db)
1830 { 1952 {
1831 SV *env = (SV *)db->app_private; 1953 SV *env = (SV *)db->app_private;
1832 db->close (db, 0); 1954 db->close (db, 0);
1927 2049
1928 2050
1929MODULE = BDB PACKAGE = BDB::Txn 2051MODULE = BDB PACKAGE = BDB::Txn
1930 2052
1931void 2053void
1932DESTROY (DB_TXN_ornull *txn) 2054DESTROY (DB_TXN_ornuked *txn)
1933 CODE: 2055 CODE:
1934 if (txn) 2056 if (txn)
1935 txn->abort (txn); 2057 txn->abort (txn);
1936 2058
1937int set_timeout (DB_TXN *txn, NV timeout, U32 flags = DB_SET_TXN_TIMEOUT) 2059int set_timeout (DB_TXN *txn, NV timeout, U32 flags = DB_SET_TXN_TIMEOUT)
1948 2070
1949 2071
1950MODULE = BDB PACKAGE = BDB::Cursor 2072MODULE = BDB PACKAGE = BDB::Cursor
1951 2073
1952void 2074void
1953DESTROY (DBC_ornull *dbc) 2075DESTROY (DBC_ornuked *dbc)
1954 CODE: 2076 CODE:
1955 if (dbc) 2077 if (dbc)
1956 dbc->c_close (dbc); 2078 dbc->c_close (dbc);
1957 2079
2080#if DB_VERSION_MINOR >= 6
2081
2082int set_priority (DBC *dbc, int priority)
2083 CODE:
2084 dbc->set_priority (dbc, priority);
2085
2086#endif
2087
1958MODULE = BDB PACKAGE = BDB::Sequence 2088MODULE = BDB PACKAGE = BDB::Sequence
1959 2089
1960void 2090void
1961DESTROY (DB_SEQUENCE_ornull *seq) 2091DESTROY (DB_SEQUENCE_ornuked *seq)
1962 CODE: 2092 CODE:
1963 if (seq) 2093 if (seq)
1964 seq->close (seq, 0); 2094 seq->close (seq, 0);
1965 2095
1966int initial_value (DB_SEQUENCE *seq, db_seq_t value) 2096int initial_value (DB_SEQUENCE *seq, db_seq_t value)
1985 CODE: 2115 CODE:
1986 RETVAL = seq->set_range (seq, min, max); 2116 RETVAL = seq->set_range (seq, min, max);
1987 OUTPUT: 2117 OUTPUT:
1988 RETVAL 2118 RETVAL
1989 2119
2120

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines