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

Comparing BDB/BDB.xs (file contents):
Revision 1.24 by root, Mon Dec 10 04:16:40 2007 UTC vs.
Revision 1.37 by root, Sat May 10 20:23:06 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
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 };
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 (SvOK (req->callback))
308 { 346 {
371 } 409 }
372 410
373 return !SvTRUE (ERRSV); 411 return !SvTRUE (ERRSV);
374} 412}
375 413
376static void req_free (aio_req req) 414static void req_free (bdb_req req)
377{ 415{
378 free (req->buf1); 416 free (req->buf1);
379 free (req->buf2); 417 free (req->buf2);
380 Safefree (req); 418 Safefree (req);
381} 419}
385#else 423#else
386# define TO_SOCKET(x) (x) 424# define TO_SOCKET(x) (x)
387#endif 425#endif
388 426
389static void 427static void
390create_respipe () 428create_respipe (void)
391{ 429{
392#ifdef _WIN32 430#ifdef _WIN32
393 int arg; /* argg */ 431 int arg; /* argg */
394#endif 432#endif
395 int old_readfd = respipe [0]; 433 int old_readfd = respipe [0];
449 free (wrk); 487 free (wrk);
450 488
451 X_UNLOCK (wrklock); 489 X_UNLOCK (wrklock);
452} 490}
453 491
454static void maybe_start_thread () 492static void maybe_start_thread (void)
455{ 493{
456 if (get_nthreads () >= wanted) 494 if (get_nthreads () >= wanted)
457 return; 495 return;
458 496
459 /* todo: maybe use idle here, but might be less exact */ 497 /* todo: maybe use idle here, but might be less exact */
461 return; 499 return;
462 500
463 start_thread (); 501 start_thread ();
464} 502}
465 503
466static void req_send (aio_req req) 504static void req_send (bdb_req req)
467{ 505{
468 SV *wait_callback = 0; 506 SV *wait_callback = 0;
507
508 if (on_next_submit)
509 {
510 dSP;
511 SV *cb = sv_2mortal (on_next_submit);
512
513 on_next_submit = 0;
514
515 PUSHMARK (SP);
516 PUTBACK;
517 call_sv (cb, G_DISCARD | G_EVAL);
518 }
469 519
470 // synthesize callback if none given 520 // synthesize callback if none given
471 if (!SvOK (req->callback)) 521 if (!SvOK (req->callback))
472 { 522 {
473 int count; 523 int count;
479 SPAGAIN; 529 SPAGAIN;
480 530
481 if (count != 2) 531 if (count != 2)
482 croak ("prepare callback must return exactly two values\n"); 532 croak ("prepare callback must return exactly two values\n");
483 533
484 wait_callback = SvREFCNT_inc (POPs); 534 wait_callback = POPs;
485 SvREFCNT_dec (req->callback); 535 SvREFCNT_dec (req->callback);
486 req->callback = SvREFCNT_inc (POPs); 536 req->callback = SvREFCNT_inc (POPs);
487 } 537 }
488 538
489 ++nreqs; 539 ++nreqs;
500 { 550 {
501 dSP; 551 dSP;
502 PUSHMARK (SP); 552 PUSHMARK (SP);
503 PUTBACK; 553 PUTBACK;
504 call_sv (wait_callback, G_DISCARD); 554 call_sv (wait_callback, G_DISCARD);
505 SvREFCNT_dec (wait_callback);
506 } 555 }
507} 556}
508 557
509static void end_thread (void) 558static void end_thread (void)
510{ 559{
511 aio_req req; 560 bdb_req req;
512 561
513 Newz (0, req, 1, aio_cb); 562 Newz (0, req, 1, bdb_cb);
514 563
515 req->type = REQ_QUIT; 564 req->type = REQ_QUIT;
516 req->pri = PRI_MAX + PRI_BIAS; 565 req->pri = PRI_MAX + PRI_BIAS;
517 566
518 X_LOCK (reqlock); 567 X_LOCK (reqlock);
545 594
546 while (started > wanted) 595 while (started > wanted)
547 end_thread (); 596 end_thread ();
548} 597}
549 598
550static void poll_wait () 599static void poll_wait (void)
551{ 600{
552 fd_set rfd; 601 fd_set rfd;
553 602
554 while (nreqs) 603 while (nreqs)
555 { 604 {
568 617
569 PerlSock_select (respipe [0] + 1, &rfd, 0, 0, 0); 618 PerlSock_select (respipe [0] + 1, &rfd, 0, 0, 0);
570 } 619 }
571} 620}
572 621
573static int poll_cb () 622static int poll_cb (void)
574{ 623{
575 dSP; 624 dSP;
576 int count = 0; 625 int count = 0;
577 int maxreqs = max_poll_reqs; 626 int maxreqs = max_poll_reqs;
578 int do_croak = 0; 627 int do_croak = 0;
579 struct timeval tv_start, tv_now; 628 struct timeval tv_start, tv_now;
580 aio_req req; 629 bdb_req req;
581 630
582 if (max_poll_time) 631 if (max_poll_time)
583 gettimeofday (&tv_start, 0); 632 gettimeofday (&tv_start, 0);
584 633
585 for (;;) 634 for (;;)
646 695
647/*****************************************************************************/ 696/*****************************************************************************/
648 697
649X_THREAD_PROC (bdb_proc) 698X_THREAD_PROC (bdb_proc)
650{ 699{
651 aio_req req; 700 bdb_req req;
652 struct timespec ts; 701 struct timespec ts;
653 worker *self = (worker *)thr_arg; 702 worker *self = (worker *)thr_arg;
654 703
655 /* try to distribute timeouts somewhat evenly */ 704 /* try to distribute timeouts somewhat evenly */
656 ts.tv_nsec = ((unsigned long)self & 1023UL) * (1000000000UL / 1024UL); 705 ts.tv_nsec = ((unsigned long)self & 1023UL) * (1000000000UL / 1024UL);
739 788
740 case REQ_DB_SYNC: 789 case REQ_DB_SYNC:
741 req->result = req->db->sync (req->db, req->uint1); 790 req->result = req->db->sync (req->db, req->uint1);
742 break; 791 break;
743 792
793 case REQ_DB_UPGRADE:
794 req->result = req->db->upgrade (req->db, req->buf1, req->uint1);
795 break;
796
744 case REQ_DB_PUT: 797 case REQ_DB_PUT:
745 req->result = req->db->put (req->db, req->txn, &req->dbt1, &req->dbt2, req->uint1); 798 req->result = req->db->put (req->db, req->txn, &req->dbt1, &req->dbt2, req->uint1);
746 break; 799 break;
747 800
748 case REQ_DB_GET: 801 case REQ_DB_GET:
870 X_UNLOCK (wrklock); 923 X_UNLOCK (wrklock);
871} 924}
872 925
873static void atfork_child (void) 926static void atfork_child (void)
874{ 927{
875 aio_req prv; 928 bdb_req prv;
876 929
877 while (prv = reqq_shift (&req_queue)) 930 while (prv = reqq_shift (&req_queue))
878 req_free (prv); 931 req_free (prv);
879 932
880 while (prv = reqq_shift (&res_queue)) 933 while (prv = reqq_shift (&res_queue))
901 954
902 atfork_parent (); 955 atfork_parent ();
903} 956}
904 957
905#define dREQ(reqtype) \ 958#define dREQ(reqtype) \
906 aio_req req; \ 959 bdb_req req; \
907 int req_pri = next_pri; \ 960 int req_pri = next_pri; \
908 next_pri = DEFAULT_PRI + PRI_BIAS; \ 961 next_pri = DEFAULT_PRI + PRI_BIAS; \
909 \ 962 \
910 if (SvOK (callback) && !SvROK (callback)) \ 963 if (SvOK (callback) && !SvROK (callback)) \
911 croak ("callback must be undef or of reference type"); \ 964 croak ("callback must be undef or of reference type"); \
912 \ 965 \
913 Newz (0, req, 1, aio_cb); \ 966 Newz (0, req, 1, bdb_cb); \
914 if (!req) \ 967 if (!req) \
915 croak ("out of memory during aio_req allocation"); \ 968 croak ("out of memory during bdb_req allocation"); \
916 \ 969 \
917 req->callback = newSVsv (callback); \ 970 req->callback = newSVsv (callback); \
918 req->type = (reqtype); \ 971 req->type = (reqtype); \
919 req->pri = req_pri 972 req->pri = req_pri
920 973
921#define REQ_SEND \ 974#define REQ_SEND \
922 req_send (req) 975 req_send (req)
923 976
924#define SvPTR(var, arg, type, class, nullok) \ 977#define SvPTR(var, arg, type, class, nullok) \
925 if (!SvOK (arg)) \ 978 if (!SvOK (arg)) \
926 { \ 979 { \
927 if (!nullok) \ 980 if (nullok != 1) \
928 croak (# var " must be a " # class " object, not undef"); \ 981 croak (# var " must be a " # class " object, not undef"); \
929 \ 982 \
930 (var) = 0; \ 983 (var) = 0; \
931 } \ 984 } \
932 else if (sv_derived_from ((arg), # class)) \ 985 else if (sv_derived_from ((arg), # class)) \
933 { \ 986 { \
934 IV tmp = SvIV ((SV*) SvRV (arg)); \ 987 IV tmp = SvIV ((SV*) SvRV (arg)); \
935 (var) = INT2PTR (type, tmp); \ 988 (var) = INT2PTR (type, tmp); \
936 if (!var) \ 989 if (!var && nullok != 2) \
937 croak (# var " is not a valid " # class " object anymore"); \ 990 croak (# var " is not a valid " # class " object anymore"); \
938 } \ 991 } \
939 else \ 992 else \
940 croak (# var " is not of type " # class); \ 993 croak (# var " is not of type " # class); \
941 \ 994 \
943static void 996static void
944ptr_nuke (SV *sv) 997ptr_nuke (SV *sv)
945{ 998{
946 assert (SvROK (sv)); 999 assert (SvROK (sv));
947 sv_setiv (SvRV (sv), 0); 1000 sv_setiv (SvRV (sv), 0);
1001}
1002
1003static int
1004errno_get (pTHX_ SV *sv, MAGIC *mg)
1005{
1006 if (*mg->mg_ptr == '!') // should always be the case
1007 if (-30999 <= errno && errno <= -30800)
1008 {
1009 sv_setnv (sv, (NV)errno);
1010 sv_setpv (sv, db_strerror (errno));
1011 SvNOK_on (sv); /* what a wonderful hack! */
1012 // ^^^ copied from perl sources
1013 return 0;
1014 }
1015
1016 return PL_vtbl_sv.svt_get (aTHX_ sv, mg);
1017}
1018
1019static MGVTBL vtbl_errno;
1020
1021// this wonderful hack :( patches perl's $! variable to support our errno values
1022static void
1023patch_errno (void)
1024{
1025 SV *sv;
1026 MAGIC *mg;
1027
1028 if (!(sv = get_sv ("!", 1)))
1029 return;
1030
1031 if (!(mg = mg_find (sv, PERL_MAGIC_sv)))
1032 return;
1033
1034 if (mg->mg_virtual != &PL_vtbl_sv)
1035 return;
1036
1037 vtbl_errno = PL_vtbl_sv;
1038 vtbl_errno.svt_get = errno_get;
1039 mg->mg_virtual = &vtbl_errno;
948} 1040}
949 1041
950MODULE = BDB PACKAGE = BDB 1042MODULE = BDB PACKAGE = BDB
951 1043
952PROTOTYPES: ENABLE 1044PROTOTYPES: ENABLE
1024 const_iv (GET_BOTH_RANGE) 1116 const_iv (GET_BOTH_RANGE)
1025 //const_iv (SET_RECNO) 1117 //const_iv (SET_RECNO)
1026 //const_iv (MULTIPLE) 1118 //const_iv (MULTIPLE)
1027 const_iv (SNAPSHOT) 1119 const_iv (SNAPSHOT)
1028 const_iv (JOIN_ITEM) 1120 const_iv (JOIN_ITEM)
1121 const_iv (JOIN_NOSORT)
1029 const_iv (RMW) 1122 const_iv (RMW)
1030 1123
1031 const_iv (NOTFOUND) 1124 const_iv (NOTFOUND)
1032 const_iv (KEYEMPTY) 1125 const_iv (KEYEMPTY)
1033 const_iv (LOCK_DEADLOCK) 1126 const_iv (LOCK_DEADLOCK)
1049 const_iv (TXN_SYNC) 1142 const_iv (TXN_SYNC)
1050 1143
1051 const_iv (SET_LOCK_TIMEOUT) 1144 const_iv (SET_LOCK_TIMEOUT)
1052 const_iv (SET_TXN_TIMEOUT) 1145 const_iv (SET_TXN_TIMEOUT)
1053 1146
1054 const_iv (JOIN_ITEM)
1055 const_iv (FIRST) 1147 const_iv (FIRST)
1056 const_iv (NEXT) 1148 const_iv (NEXT)
1057 const_iv (NEXT_DUP) 1149 const_iv (NEXT_DUP)
1058 const_iv (NEXT_NODUP) 1150 const_iv (NEXT_NODUP)
1059 const_iv (PREV) 1151 const_iv (PREV)
1125 const_iv (MULTIVERSION) 1217 const_iv (MULTIVERSION)
1126 const_iv (TXN_SNAPSHOT) 1218 const_iv (TXN_SNAPSHOT)
1127#endif 1219#endif
1128#if DB_VERSION_MINOR >= 6 1220#if DB_VERSION_MINOR >= 6
1129 const_iv (PREV_DUP) 1221 const_iv (PREV_DUP)
1130# if 0
1131 const_iv (PRIORITY_UNCHANGED) 1222 const_iv (PRIORITY_UNCHANGED)
1132 const_iv (PRIORITY_VERY_LOW) 1223 const_iv (PRIORITY_VERY_LOW)
1133 const_iv (PRIORITY_LOW) 1224 const_iv (PRIORITY_LOW)
1134 const_iv (PRIORITY_DEFAULT) 1225 const_iv (PRIORITY_DEFAULT)
1135 const_iv (PRIORITY_HIGH) 1226 const_iv (PRIORITY_HIGH)
1136 const_iv (PRIORITY_VERY_HIGH) 1227 const_iv (PRIORITY_VERY_HIGH)
1137# endif
1138#endif 1228#endif
1139 }; 1229 };
1140 1230
1141 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; ) 1231 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; )
1142 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv)); 1232 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv));
1152 X_MUTEX_CHECK (reslock); 1242 X_MUTEX_CHECK (reslock);
1153 X_MUTEX_CHECK (reqlock); 1243 X_MUTEX_CHECK (reqlock);
1154 1244
1155 X_COND_CHECK (reqwait); 1245 X_COND_CHECK (reqwait);
1156#endif 1246#endif
1247 patch_errno ();
1157} 1248}
1158 1249
1159void 1250void
1160max_poll_reqs (int nreqs) 1251max_poll_reqs (int nreqs)
1161 PROTOTYPE: $ 1252 PROTOTYPE: $
1301 CODE: 1392 CODE:
1302 RETVAL = db_strerror (errorno); 1393 RETVAL = db_strerror (errorno);
1303 OUTPUT: 1394 OUTPUT:
1304 RETVAL 1395 RETVAL
1305 1396
1397void _on_next_submit (SV *cb)
1398 CODE:
1399 SvREFCNT_dec (on_next_submit);
1400 on_next_submit = SvOK (cb) ? newSVsv (cb) : 0;
1401
1306DB_ENV * 1402DB_ENV *
1307db_env_create (U32 env_flags = 0) 1403db_env_create (U32 env_flags = 0)
1308 CODE: 1404 CODE:
1309{ 1405{
1310 errno = db_env_create (&RETVAL, env_flags); 1406 errno = db_env_create (&RETVAL, env_flags);
1319} 1415}
1320 OUTPUT: 1416 OUTPUT:
1321 RETVAL 1417 RETVAL
1322 1418
1323void 1419void
1324db_env_open (DB_ENV *env, octetstring db_home, U32 open_flags, int mode, SV *callback = &PL_sv_undef) 1420db_env_open (DB_ENV *env, bdb_filename db_home, U32 open_flags, int mode, SV *callback = &PL_sv_undef)
1325 CODE: 1421 CODE:
1326{ 1422{
1327 dREQ (REQ_ENV_OPEN); 1423 dREQ (REQ_ENV_OPEN);
1328
1329 env->set_thread_count (env, wanted + 2);
1330 1424
1331 req->env = env; 1425 req->env = env;
1332 req->uint1 = open_flags | DB_THREAD; 1426 req->uint1 = open_flags | DB_THREAD;
1333 req->int1 = mode; 1427 req->int1 = mode;
1334 req->buf1 = strdup_ornull (db_home); 1428 req->buf1 = strdup_ornull (db_home);
1402} 1496}
1403 OUTPUT: 1497 OUTPUT:
1404 RETVAL 1498 RETVAL
1405 1499
1406void 1500void
1407db_open (DB *db, DB_TXN_ornull *txnid, octetstring file, octetstring database, int type, U32 flags, int mode, SV *callback = &PL_sv_undef) 1501db_open (DB *db, DB_TXN_ornull *txnid, bdb_filename file, bdb_filename database, int type, U32 flags, int mode, SV *callback = &PL_sv_undef)
1408 CODE: 1502 CODE:
1409{ 1503{
1410 dREQ (REQ_DB_OPEN); 1504 dREQ (REQ_DB_OPEN);
1411 req->db = db; 1505 req->db = db;
1412 req->txn = txnid; 1506 req->txn = txnid;
1452 req->uint1 = flags; 1546 req->uint1 = flags;
1453 REQ_SEND; 1547 REQ_SEND;
1454} 1548}
1455 1549
1456void 1550void
1551db_upgrade (DB *db, bdb_filename file, U32 flags = 0, SV *callback = &PL_sv_undef)
1552 CODE:
1553{
1554 dREQ (REQ_DB_SYNC);
1555 req->db = db;
1556 req->buf1 = strdup (file);
1557 req->uint1 = flags;
1558 REQ_SEND;
1559}
1560
1561void
1457db_key_range (DB *db, DB_TXN_ornull *txn, SV *key, SV *key_range, U32 flags = 0, SV *callback = &PL_sv_undef) 1562db_key_range (DB *db, DB_TXN_ornull *txn, SV *key, SV *key_range, U32 flags = 0, SV *callback = &PL_sv_undef)
1458 CODE: 1563 CODE:
1459{ 1564{
1460 dREQ (REQ_DB_KEY_RANGE); 1565 dREQ (REQ_DB_KEY_RANGE);
1461 req->db = db; 1566 req->db = db;
1480} 1585}
1481 1586
1482void 1587void
1483db_get (DB *db, DB_TXN_ornull *txn, SV *key, SV *data, U32 flags = 0, SV *callback = &PL_sv_undef) 1588db_get (DB *db, DB_TXN_ornull *txn, SV *key, SV *data, U32 flags = 0, SV *callback = &PL_sv_undef)
1484 CODE: 1589 CODE:
1590 if (SvREADONLY (data))
1591 croak ("can't modify read-only data scalar in db_get");
1485{ 1592{
1486 dREQ (REQ_DB_GET); 1593 dREQ (REQ_DB_GET);
1487 req->db = db; 1594 req->db = db;
1488 req->txn = txn; 1595 req->txn = txn;
1489 req->uint1 = flags; 1596 req->uint1 = flags;
1494} 1601}
1495 1602
1496void 1603void
1497db_pget (DB *db, DB_TXN_ornull *txn, SV *key, SV *pkey, SV *data, U32 flags = 0, SV *callback = &PL_sv_undef) 1604db_pget (DB *db, DB_TXN_ornull *txn, SV *key, SV *pkey, SV *data, U32 flags = 0, SV *callback = &PL_sv_undef)
1498 CODE: 1605 CODE:
1606 if (SvREADONLY (data))
1607 croak ("can't modify read-only data scalar in db_pget");
1499{ 1608{
1500 dREQ (REQ_DB_PGET); 1609 dREQ (REQ_DB_PGET);
1501 req->db = db; 1610 req->db = db;
1502 req->txn = txn; 1611 req->txn = txn;
1503 req->uint1 = flags; 1612 req->uint1 = flags;
1697 1806
1698 1807
1699MODULE = BDB PACKAGE = BDB::Env 1808MODULE = BDB PACKAGE = BDB::Env
1700 1809
1701void 1810void
1702DESTROY (DB_ENV_ornull *env) 1811DESTROY (DB_ENV_ornuked *env)
1703 CODE: 1812 CODE:
1704 if (env) 1813 if (env)
1705 env->close (env, 0); 1814 env->close (env, 0);
1706 1815
1707int set_data_dir (DB_ENV *env, const char *dir) 1816int set_data_dir (DB_ENV *env, const char *dir)
1732 CODE: 1841 CODE:
1733 RETVAL = env->set_cachesize (env, gbytes, bytes, ncache); 1842 RETVAL = env->set_cachesize (env, gbytes, bytes, ncache);
1734 OUTPUT: 1843 OUTPUT:
1735 RETVAL 1844 RETVAL
1736 1845
1737int set_flags (DB_ENV *env, U32 flags, int onoff) 1846int set_flags (DB_ENV *env, U32 flags, int onoff = 1)
1738 CODE: 1847 CODE:
1739 RETVAL = env->set_flags (env, flags, onoff); 1848 RETVAL = env->set_flags (env, flags, onoff);
1740 OUTPUT: 1849 OUTPUT:
1741 RETVAL 1850 RETVAL
1742 1851
1746 1855
1747void set_msgfile (DB_ENV *env, FILE *msgfile = 0) 1856void set_msgfile (DB_ENV *env, FILE *msgfile = 0)
1748 CODE: 1857 CODE:
1749 env->set_msgfile (env, msgfile); 1858 env->set_msgfile (env, msgfile);
1750 1859
1751int set_verbose (DB_ENV *env, U32 which, int onoff = 1) 1860int set_verbose (DB_ENV *env, U32 which = -1, int onoff = 1)
1752 CODE: 1861 CODE:
1753 RETVAL = env->set_verbose (env, which, onoff); 1862 RETVAL = env->set_verbose (env, which, onoff);
1754 OUTPUT: 1863 OUTPUT:
1755 RETVAL 1864 RETVAL
1756 1865
1854 RETVAL 1963 RETVAL
1855 1964
1856MODULE = BDB PACKAGE = BDB::Db 1965MODULE = BDB PACKAGE = BDB::Db
1857 1966
1858void 1967void
1859DESTROY (DB_ornull *db) 1968DESTROY (DB_ornuked *db)
1860 CODE: 1969 CODE:
1861 if (db) 1970 if (db)
1862 { 1971 {
1863 SV *env = (SV *)db->app_private; 1972 SV *env = (SV *)db->app_private;
1864 db->close (db, 0); 1973 db->close (db, 0);
1959 2068
1960 2069
1961MODULE = BDB PACKAGE = BDB::Txn 2070MODULE = BDB PACKAGE = BDB::Txn
1962 2071
1963void 2072void
1964DESTROY (DB_TXN_ornull *txn) 2073DESTROY (DB_TXN_ornuked *txn)
1965 CODE: 2074 CODE:
1966 if (txn) 2075 if (txn)
1967 txn->abort (txn); 2076 txn->abort (txn);
1968 2077
1969int set_timeout (DB_TXN *txn, NV timeout, U32 flags = DB_SET_TXN_TIMEOUT) 2078int set_timeout (DB_TXN *txn, NV timeout, U32 flags = DB_SET_TXN_TIMEOUT)
1980 2089
1981 2090
1982MODULE = BDB PACKAGE = BDB::Cursor 2091MODULE = BDB PACKAGE = BDB::Cursor
1983 2092
1984void 2093void
1985DESTROY (DBC_ornull *dbc) 2094DESTROY (DBC_ornuked *dbc)
1986 CODE: 2095 CODE:
1987 if (dbc) 2096 if (dbc)
1988 dbc->c_close (dbc); 2097 dbc->c_close (dbc);
1989 2098
2099#if DB_VERSION_MINOR >= 6
2100
2101int set_priority (DBC *dbc, int priority)
2102 CODE:
2103 dbc->set_priority (dbc, priority);
2104
2105#endif
2106
1990MODULE = BDB PACKAGE = BDB::Sequence 2107MODULE = BDB PACKAGE = BDB::Sequence
1991 2108
1992void 2109void
1993DESTROY (DB_SEQUENCE_ornull *seq) 2110DESTROY (DB_SEQUENCE_ornuked *seq)
1994 CODE: 2111 CODE:
1995 if (seq) 2112 if (seq)
1996 seq->close (seq, 0); 2113 seq->close (seq, 0);
1997 2114
1998int initial_value (DB_SEQUENCE *seq, db_seq_t value) 2115int initial_value (DB_SEQUENCE *seq, db_seq_t value)
2017 CODE: 2134 CODE:
2018 RETVAL = seq->set_range (seq, min, max); 2135 RETVAL = seq->set_range (seq, min, max);
2019 OUTPUT: 2136 OUTPUT:
2020 RETVAL 2137 RETVAL
2021 2138
2139

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines