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.30 by root, Sun Jan 13 09:43:21 2008 UTC

39typedef DB_ENV DB_ENV_ornull; 39typedef DB_ENV DB_ENV_ornull;
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
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;
44 50
45typedef SV SV8; /* byte-sv, used for argument-checking */ 51typedef SV SV8; /* byte-sv, used for argument-checking */
46typedef char *octetstring; 52typedef char *octetstring;
47 53
48static SV *prepare_cb; 54static SV *prepare_cb;
102 108
103enum { 109enum {
104 REQ_QUIT, 110 REQ_QUIT,
105 REQ_ENV_OPEN, REQ_ENV_CLOSE, REQ_ENV_TXN_CHECKPOINT, REQ_ENV_LOCK_DETECT, 111 REQ_ENV_OPEN, REQ_ENV_CLOSE, REQ_ENV_TXN_CHECKPOINT, REQ_ENV_LOCK_DETECT,
106 REQ_ENV_MEMP_SYNC, REQ_ENV_MEMP_TRICKLE, 112 REQ_ENV_MEMP_SYNC, REQ_ENV_MEMP_TRICKLE,
107 REQ_DB_OPEN, REQ_DB_CLOSE, REQ_DB_COMPACT, REQ_DB_SYNC, 113 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, 114 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, 115 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, 116 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, 117 REQ_SEQ_OPEN, REQ_SEQ_CLOSE, REQ_SEQ_GET, REQ_SEQ_REMOVE,
112}; 118};
113 119
114typedef struct aio_cb 120typedef struct bdb_cb
115{ 121{
116 struct aio_cb *volatile next; 122 struct bdb_cb *volatile next;
117 SV *callback; 123 SV *callback;
118 int type, pri, result; 124 int type, pri, result;
119 125
120 DB_ENV *env; 126 DB_ENV *env;
121 DB *db; 127 DB *db;
130 136
131 DBT dbt1, dbt2, dbt3; 137 DBT dbt1, dbt2, dbt3;
132 DB_KEY_RANGE key_range; 138 DB_KEY_RANGE key_range;
133 DB_SEQUENCE *seq; 139 DB_SEQUENCE *seq;
134 db_seq_t seq_t; 140 db_seq_t seq_t;
135} aio_cb; 141} bdb_cb;
136 142
137typedef aio_cb *aio_req; 143typedef bdb_cb *bdb_req;
138 144
139enum { 145enum {
140 PRI_MIN = -4, 146 PRI_MIN = -4,
141 PRI_MAX = 4, 147 PRI_MAX = 4,
142 148
169 struct worker *prev, *next; 175 struct worker *prev, *next;
170 176
171 thread_t tid; 177 thread_t tid;
172 178
173 /* locked by reslock, reqlock or wrklock */ 179 /* locked by reslock, reqlock or wrklock */
174 aio_req req; /* currently processed request */ 180 bdb_req req; /* currently processed request */
175 void *dbuf; 181 void *dbuf;
176 DIR *dirp; 182 DIR *dirp;
177} worker; 183} worker;
178 184
179static worker wrk_first = { &wrk_first, &wrk_first, 0 }; 185static worker wrk_first = { &wrk_first, &wrk_first, 0 };
246 * a somewhat faster data structure might be nice, but 252 * a somewhat faster data structure might be nice, but
247 * with 8 priorities this actually needs <20 insns 253 * with 8 priorities this actually needs <20 insns
248 * per shift, the most expensive operation. 254 * per shift, the most expensive operation.
249 */ 255 */
250typedef struct { 256typedef struct {
251 aio_req qs[NUM_PRI], qe[NUM_PRI]; /* qstart, qend */ 257 bdb_req qs[NUM_PRI], qe[NUM_PRI]; /* qstart, qend */
252 int size; 258 int size;
253} reqq; 259} reqq;
254 260
255static reqq req_queue; 261static reqq req_queue;
256static reqq res_queue; 262static reqq res_queue;
257 263
258int reqq_push (reqq *q, aio_req req) 264int reqq_push (reqq *q, bdb_req req)
259{ 265{
260 int pri = req->pri; 266 int pri = req->pri;
261 req->next = 0; 267 req->next = 0;
262 268
263 if (q->qe[pri]) 269 if (q->qe[pri])
269 q->qe[pri] = q->qs[pri] = req; 275 q->qe[pri] = q->qs[pri] = req;
270 276
271 return q->size++; 277 return q->size++;
272} 278}
273 279
274aio_req reqq_shift (reqq *q) 280bdb_req reqq_shift (reqq *q)
275{ 281{
276 int pri; 282 int pri;
277 283
278 if (!q->size) 284 if (!q->size)
279 return 0; 285 return 0;
280 286
281 --q->size; 287 --q->size;
282 288
283 for (pri = NUM_PRI; pri--; ) 289 for (pri = NUM_PRI; pri--; )
284 { 290 {
285 aio_req req = q->qs[pri]; 291 bdb_req req = q->qs[pri];
286 292
287 if (req) 293 if (req)
288 { 294 {
289 if (!(q->qs[pri] = req->next)) 295 if (!(q->qs[pri] = req->next))
290 q->qe[pri] = 0; 296 q->qe[pri] = 0;
295 301
296 abort (); 302 abort ();
297} 303}
298 304
299static int poll_cb (); 305static int poll_cb ();
300static void req_free (aio_req req); 306static void req_free (bdb_req req);
301static void req_cancel (aio_req req); 307static void req_cancel (bdb_req req);
302 308
303static int req_invoke (aio_req req) 309static int req_invoke (bdb_req req)
304{ 310{
305 dSP; 311 dSP;
306 312
307 if (SvOK (req->callback)) 313 if (SvOK (req->callback))
308 { 314 {
326 dbt_to_sv (req->sv1, &req->dbt1); 332 dbt_to_sv (req->sv1, &req->dbt1);
327 dbt_to_sv (req->sv2, &req->dbt2); 333 dbt_to_sv (req->sv2, &req->dbt2);
328 dbt_to_sv (req->sv3, &req->dbt3); 334 dbt_to_sv (req->sv3, &req->dbt3);
329 break; 335 break;
330 336
337 case REQ_DB_PUT:
338 case REQ_C_PUT:
339 dbt_to_sv (0, &req->dbt1);
340 dbt_to_sv (0, &req->dbt2);
341 break;
342
331 case REQ_DB_KEY_RANGE: 343 case REQ_DB_KEY_RANGE:
332 { 344 {
333 AV *av = newAV (); 345 AV *av = newAV ();
334 346
335 av_push (av, newSVnv (req->key_range.less)); 347 av_push (av, newSVnv (req->key_range.less));
344 356
345 case REQ_SEQ_GET: 357 case REQ_SEQ_GET:
346 SvREADONLY_off (req->sv1); 358 SvREADONLY_off (req->sv1);
347 359
348 if (sizeof (IV) > 4) 360 if (sizeof (IV) > 4)
349 sv_setiv_mg (req->sv1, req->seq_t); 361 sv_setiv_mg (req->sv1, (IV)req->seq_t);
350 else 362 else
351 sv_setnv_mg (req->sv1, req->seq_t); 363 sv_setnv_mg (req->sv1, (NV)req->seq_t);
352 364
353 SvREFCNT_dec (req->sv1); 365 SvREFCNT_dec (req->sv1);
354 break; 366 break;
355 } 367 }
356 368
365 } 377 }
366 378
367 return !SvTRUE (ERRSV); 379 return !SvTRUE (ERRSV);
368} 380}
369 381
370static void req_free (aio_req req) 382static void req_free (bdb_req req)
371{ 383{
372 free (req->buf1); 384 free (req->buf1);
373 free (req->buf2); 385 free (req->buf2);
374 Safefree (req); 386 Safefree (req);
375} 387}
381#endif 393#endif
382 394
383static void 395static void
384create_respipe () 396create_respipe ()
385{ 397{
398#ifdef _WIN32
399 int arg; /* argg */
400#endif
386 int old_readfd = respipe [0]; 401 int old_readfd = respipe [0];
387 402
388 if (respipe [1] >= 0) 403 if (respipe [1] >= 0)
389 respipe_close (TO_SOCKET (respipe [1])); 404 respipe_close (TO_SOCKET (respipe [1]));
390 405
403 respipe_close (respipe [0]); 418 respipe_close (respipe [0]);
404 respipe [0] = old_readfd; 419 respipe [0] = old_readfd;
405 } 420 }
406 421
407#ifdef _WIN32 422#ifdef _WIN32
408 int arg = 1; 423 arg = 1;
409 if (ioctlsocket (TO_SOCKET (respipe [0]), FIONBIO, &arg) 424 if (ioctlsocket (TO_SOCKET (respipe [0]), FIONBIO, &arg)
410 || ioctlsocket (TO_SOCKET (respipe [1]), FIONBIO, &arg)) 425 || ioctlsocket (TO_SOCKET (respipe [1]), FIONBIO, &arg))
411#else 426#else
412 if (fcntl (respipe [0], F_SETFL, O_NONBLOCK) 427 if (fcntl (respipe [0], F_SETFL, O_NONBLOCK)
413 || fcntl (respipe [1], F_SETFL, O_NONBLOCK)) 428 || fcntl (respipe [1], F_SETFL, O_NONBLOCK))
452 return; 467 return;
453 468
454 start_thread (); 469 start_thread ();
455} 470}
456 471
457static void req_send (aio_req req) 472static void req_send (bdb_req req)
458{ 473{
459 SV *wait_callback = 0; 474 SV *wait_callback = 0;
460 475
461 // synthesize callback if none given 476 // synthesize callback if none given
462 if (!SvOK (req->callback)) 477 if (!SvOK (req->callback))
470 SPAGAIN; 485 SPAGAIN;
471 486
472 if (count != 2) 487 if (count != 2)
473 croak ("prepare callback must return exactly two values\n"); 488 croak ("prepare callback must return exactly two values\n");
474 489
475 wait_callback = SvREFCNT_inc (POPs); 490 wait_callback = POPs;
476 SvREFCNT_dec (req->callback); 491 SvREFCNT_dec (req->callback);
477 req->callback = SvREFCNT_inc (POPs); 492 req->callback = SvREFCNT_inc (POPs);
478 } 493 }
479 494
480 ++nreqs; 495 ++nreqs;
491 { 506 {
492 dSP; 507 dSP;
493 PUSHMARK (SP); 508 PUSHMARK (SP);
494 PUTBACK; 509 PUTBACK;
495 call_sv (wait_callback, G_DISCARD); 510 call_sv (wait_callback, G_DISCARD);
496 SvREFCNT_dec (wait_callback);
497 } 511 }
498} 512}
499 513
500static void end_thread (void) 514static void end_thread (void)
501{ 515{
502 aio_req req; 516 bdb_req req;
503 517
504 Newz (0, req, 1, aio_cb); 518 Newz (0, req, 1, bdb_cb);
505 519
506 req->type = REQ_QUIT; 520 req->type = REQ_QUIT;
507 req->pri = PRI_MAX + PRI_BIAS; 521 req->pri = PRI_MAX + PRI_BIAS;
508 522
509 X_LOCK (reqlock); 523 X_LOCK (reqlock);
566 dSP; 580 dSP;
567 int count = 0; 581 int count = 0;
568 int maxreqs = max_poll_reqs; 582 int maxreqs = max_poll_reqs;
569 int do_croak = 0; 583 int do_croak = 0;
570 struct timeval tv_start, tv_now; 584 struct timeval tv_start, tv_now;
571 aio_req req; 585 bdb_req req;
572 586
573 if (max_poll_time) 587 if (max_poll_time)
574 gettimeofday (&tv_start, 0); 588 gettimeofday (&tv_start, 0);
575 589
576 for (;;) 590 for (;;)
637 651
638/*****************************************************************************/ 652/*****************************************************************************/
639 653
640X_THREAD_PROC (bdb_proc) 654X_THREAD_PROC (bdb_proc)
641{ 655{
642 aio_req req; 656 bdb_req req;
643 struct timespec ts; 657 struct timespec ts;
644 worker *self = (worker *)thr_arg; 658 worker *self = (worker *)thr_arg;
645 659
646 /* try to distribute timeouts somewhat evenly */ 660 /* try to distribute timeouts somewhat evenly */
647 ts.tv_nsec = ((unsigned long)self & 1023UL) * (1000000000UL / 1024UL); 661 ts.tv_nsec = ((unsigned long)self & 1023UL) * (1000000000UL / 1024UL);
730 744
731 case REQ_DB_SYNC: 745 case REQ_DB_SYNC:
732 req->result = req->db->sync (req->db, req->uint1); 746 req->result = req->db->sync (req->db, req->uint1);
733 break; 747 break;
734 748
749 case REQ_DB_UPGRADE:
750 req->result = req->db->upgrade (req->db, req->buf1, req->uint1);
751 break;
752
735 case REQ_DB_PUT: 753 case REQ_DB_PUT:
736 req->result = req->db->put (req->db, req->txn, &req->dbt1, &req->dbt2, req->uint1); 754 req->result = req->db->put (req->db, req->txn, &req->dbt1, &req->dbt2, req->uint1);
737 break; 755 break;
738 756
739 case REQ_DB_GET: 757 case REQ_DB_GET:
861 X_UNLOCK (wrklock); 879 X_UNLOCK (wrklock);
862} 880}
863 881
864static void atfork_child (void) 882static void atfork_child (void)
865{ 883{
866 aio_req prv; 884 bdb_req prv;
867 885
868 while (prv = reqq_shift (&req_queue)) 886 while (prv = reqq_shift (&req_queue))
869 req_free (prv); 887 req_free (prv);
870 888
871 while (prv = reqq_shift (&res_queue)) 889 while (prv = reqq_shift (&res_queue))
892 910
893 atfork_parent (); 911 atfork_parent ();
894} 912}
895 913
896#define dREQ(reqtype) \ 914#define dREQ(reqtype) \
897 aio_req req; \ 915 bdb_req req; \
898 int req_pri = next_pri; \ 916 int req_pri = next_pri; \
899 next_pri = DEFAULT_PRI + PRI_BIAS; \ 917 next_pri = DEFAULT_PRI + PRI_BIAS; \
900 \ 918 \
901 if (SvOK (callback) && !SvROK (callback)) \ 919 if (SvOK (callback) && !SvROK (callback)) \
902 croak ("callback must be undef or of reference type"); \ 920 croak ("callback must be undef or of reference type"); \
903 \ 921 \
904 Newz (0, req, 1, aio_cb); \ 922 Newz (0, req, 1, bdb_cb); \
905 if (!req) \ 923 if (!req) \
906 croak ("out of memory during aio_req allocation"); \ 924 croak ("out of memory during bdb_req allocation"); \
907 \ 925 \
908 req->callback = newSVsv (callback); \ 926 req->callback = newSVsv (callback); \
909 req->type = (reqtype); \ 927 req->type = (reqtype); \
910 req->pri = req_pri 928 req->pri = req_pri
911 929
912#define REQ_SEND \ 930#define REQ_SEND \
913 req_send (req) 931 req_send (req)
914 932
915#define SvPTR(var, arg, type, class, nullok) \ 933#define SvPTR(var, arg, type, class, nullok) \
916 if (!SvOK (arg)) \ 934 if (!SvOK (arg)) \
917 { \ 935 { \
918 if (!nullok) \ 936 if (nullok != 1) \
919 croak (# var " must be a " # class " object, not undef"); \ 937 croak (# var " must be a " # class " object, not undef"); \
920 \ 938 \
921 (var) = 0; \ 939 (var) = 0; \
922 } \ 940 } \
923 else if (sv_derived_from ((arg), # class)) \ 941 else if (sv_derived_from ((arg), # class)) \
924 { \ 942 { \
925 IV tmp = SvIV ((SV*) SvRV (arg)); \ 943 IV tmp = SvIV ((SV*) SvRV (arg)); \
926 (var) = INT2PTR (type, tmp); \ 944 (var) = INT2PTR (type, tmp); \
927 if (!var) \ 945 if (!var && nullok != 2) \
928 croak (# var " is not a valid " # class " object anymore"); \ 946 croak (# var " is not a valid " # class " object anymore"); \
929 } \ 947 } \
930 else \ 948 else \
931 croak (# var " is not of type " # class); \ 949 croak (# var " is not of type " # class); \
932 \ 950 \
1015 const_iv (GET_BOTH_RANGE) 1033 const_iv (GET_BOTH_RANGE)
1016 //const_iv (SET_RECNO) 1034 //const_iv (SET_RECNO)
1017 //const_iv (MULTIPLE) 1035 //const_iv (MULTIPLE)
1018 const_iv (SNAPSHOT) 1036 const_iv (SNAPSHOT)
1019 const_iv (JOIN_ITEM) 1037 const_iv (JOIN_ITEM)
1038 const_iv (JOIN_NOSORT)
1020 const_iv (RMW) 1039 const_iv (RMW)
1021 1040
1022 const_iv (NOTFOUND) 1041 const_iv (NOTFOUND)
1023 const_iv (KEYEMPTY) 1042 const_iv (KEYEMPTY)
1024 const_iv (LOCK_DEADLOCK) 1043 const_iv (LOCK_DEADLOCK)
1040 const_iv (TXN_SYNC) 1059 const_iv (TXN_SYNC)
1041 1060
1042 const_iv (SET_LOCK_TIMEOUT) 1061 const_iv (SET_LOCK_TIMEOUT)
1043 const_iv (SET_TXN_TIMEOUT) 1062 const_iv (SET_TXN_TIMEOUT)
1044 1063
1045 const_iv (JOIN_ITEM)
1046 const_iv (FIRST) 1064 const_iv (FIRST)
1047 const_iv (NEXT) 1065 const_iv (NEXT)
1048 const_iv (NEXT_DUP) 1066 const_iv (NEXT_DUP)
1049 const_iv (NEXT_NODUP) 1067 const_iv (NEXT_NODUP)
1050 const_iv (PREV) 1068 const_iv (PREV)
1084 const_iv (LOG_BUFFER_FULL) 1102 const_iv (LOG_BUFFER_FULL)
1085 const_iv (NOSERVER) 1103 const_iv (NOSERVER)
1086 const_iv (NOSERVER_HOME) 1104 const_iv (NOSERVER_HOME)
1087 const_iv (NOSERVER_ID) 1105 const_iv (NOSERVER_ID)
1088 const_iv (NOTFOUND) 1106 const_iv (NOTFOUND)
1089 const_iv (OLD_VERSION)
1090 const_iv (PAGE_NOTFOUND) 1107 const_iv (PAGE_NOTFOUND)
1091 const_iv (REP_DUPMASTER) 1108 const_iv (REP_DUPMASTER)
1092 const_iv (REP_HANDLE_DEAD) 1109 const_iv (REP_HANDLE_DEAD)
1093 const_iv (REP_HOLDELECTION) 1110 const_iv (REP_HOLDELECTION)
1094 const_iv (REP_IGNORE) 1111 const_iv (REP_IGNORE)
1117 const_iv (MULTIVERSION) 1134 const_iv (MULTIVERSION)
1118 const_iv (TXN_SNAPSHOT) 1135 const_iv (TXN_SNAPSHOT)
1119#endif 1136#endif
1120#if DB_VERSION_MINOR >= 6 1137#if DB_VERSION_MINOR >= 6
1121 const_iv (PREV_DUP) 1138 const_iv (PREV_DUP)
1122# if 0
1123 const_iv (PRIORITY_UNCHANGED) 1139 const_iv (PRIORITY_UNCHANGED)
1124 const_iv (PRIORITY_VERY_LOW) 1140 const_iv (PRIORITY_VERY_LOW)
1125 const_iv (PRIORITY_LOW) 1141 const_iv (PRIORITY_LOW)
1126 const_iv (PRIORITY_DEFAULT) 1142 const_iv (PRIORITY_DEFAULT)
1127 const_iv (PRIORITY_HIGH) 1143 const_iv (PRIORITY_HIGH)
1128 const_iv (PRIORITY_VERY_HIGH) 1144 const_iv (PRIORITY_VERY_HIGH)
1129# endif
1130#endif 1145#endif
1131 }; 1146 };
1132 1147
1133 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; ) 1148 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; )
1134 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv)); 1149 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv));
1135 1150
1136 newCONSTSUB (stash, "DB_VERSION", newSVnv (DB_VERSION_MAJOR + DB_VERSION_MINOR * .1)); 1151 newCONSTSUB (stash, "VERSION", newSVnv (DB_VERSION_MAJOR + DB_VERSION_MINOR * .1));
1137 newCONSTSUB (stash, "DB_VERSION_STRING", newSVpv (DB_VERSION_STRING, 0)); 1152 newCONSTSUB (stash, "VERSION_STRING", newSVpv (DB_VERSION_STRING, 0));
1138 1153
1139 create_respipe (); 1154 create_respipe ();
1140 1155
1141 X_THREAD_ATFORK (atfork_prepare, atfork_parent, atfork_child); 1156 X_THREAD_ATFORK (atfork_prepare, atfork_parent, atfork_child);
1142#ifdef _WIN32 1157#ifdef _WIN32
1315void 1330void
1316db_env_open (DB_ENV *env, octetstring db_home, U32 open_flags, int mode, SV *callback = &PL_sv_undef) 1331db_env_open (DB_ENV *env, octetstring db_home, U32 open_flags, int mode, SV *callback = &PL_sv_undef)
1317 CODE: 1332 CODE:
1318{ 1333{
1319 dREQ (REQ_ENV_OPEN); 1334 dREQ (REQ_ENV_OPEN);
1320
1321 env->set_thread_count (env, wanted + 2);
1322 1335
1323 req->env = env; 1336 req->env = env;
1324 req->uint1 = open_flags | DB_THREAD; 1337 req->uint1 = open_flags | DB_THREAD;
1325 req->int1 = mode; 1338 req->int1 = mode;
1326 req->buf1 = strdup_ornull (db_home); 1339 req->buf1 = strdup_ornull (db_home);
1444 req->uint1 = flags; 1457 req->uint1 = flags;
1445 REQ_SEND; 1458 REQ_SEND;
1446} 1459}
1447 1460
1448void 1461void
1462db_upgrade (DB *db, octetstring file, U32 flags = 0, SV *callback = &PL_sv_undef)
1463 CODE:
1464{
1465 dREQ (REQ_DB_SYNC);
1466 req->db = db;
1467 req->buf1 = strdup (file);
1468 req->uint1 = flags;
1469 REQ_SEND;
1470}
1471
1472void
1449db_key_range (DB *db, DB_TXN_ornull *txn, SV *key, SV *key_range, U32 flags = 0, SV *callback = &PL_sv_undef) 1473db_key_range (DB *db, DB_TXN_ornull *txn, SV *key, SV *key_range, U32 flags = 0, SV *callback = &PL_sv_undef)
1450 CODE: 1474 CODE:
1451{ 1475{
1452 dREQ (REQ_DB_KEY_RANGE); 1476 dREQ (REQ_DB_KEY_RANGE);
1453 req->db = db; 1477 req->db = db;
1472} 1496}
1473 1497
1474void 1498void
1475db_get (DB *db, DB_TXN_ornull *txn, SV *key, SV *data, U32 flags = 0, SV *callback = &PL_sv_undef) 1499db_get (DB *db, DB_TXN_ornull *txn, SV *key, SV *data, U32 flags = 0, SV *callback = &PL_sv_undef)
1476 CODE: 1500 CODE:
1501 if (SvREADONLY (data))
1502 croak ("can't modify read-only data scalar in db_get");
1477{ 1503{
1478 dREQ (REQ_DB_GET); 1504 dREQ (REQ_DB_GET);
1479 req->db = db; 1505 req->db = db;
1480 req->txn = txn; 1506 req->txn = txn;
1481 req->uint1 = flags; 1507 req->uint1 = flags;
1486} 1512}
1487 1513
1488void 1514void
1489db_pget (DB *db, DB_TXN_ornull *txn, SV *key, SV *pkey, SV *data, U32 flags = 0, SV *callback = &PL_sv_undef) 1515db_pget (DB *db, DB_TXN_ornull *txn, SV *key, SV *pkey, SV *data, U32 flags = 0, SV *callback = &PL_sv_undef)
1490 CODE: 1516 CODE:
1517 if (SvREADONLY (data))
1518 croak ("can't modify read-only data scalar in db_pget");
1491{ 1519{
1492 dREQ (REQ_DB_PGET); 1520 dREQ (REQ_DB_PGET);
1493 req->db = db; 1521 req->db = db;
1494 req->txn = txn; 1522 req->txn = txn;
1495 req->uint1 = flags; 1523 req->uint1 = flags;
1689 1717
1690 1718
1691MODULE = BDB PACKAGE = BDB::Env 1719MODULE = BDB PACKAGE = BDB::Env
1692 1720
1693void 1721void
1694DESTROY (DB_ENV_ornull *env) 1722DESTROY (DB_ENV_ornuked *env)
1695 CODE: 1723 CODE:
1696 if (env) 1724 if (env)
1697 env->close (env, 0); 1725 env->close (env, 0);
1698 1726
1699int set_data_dir (DB_ENV *env, const char *dir) 1727int set_data_dir (DB_ENV *env, const char *dir)
1724 CODE: 1752 CODE:
1725 RETVAL = env->set_cachesize (env, gbytes, bytes, ncache); 1753 RETVAL = env->set_cachesize (env, gbytes, bytes, ncache);
1726 OUTPUT: 1754 OUTPUT:
1727 RETVAL 1755 RETVAL
1728 1756
1729int set_flags (DB_ENV *env, U32 flags, int onoff) 1757int set_flags (DB_ENV *env, U32 flags, int onoff = 1)
1730 CODE: 1758 CODE:
1731 RETVAL = env->set_flags (env, flags, onoff); 1759 RETVAL = env->set_flags (env, flags, onoff);
1732 OUTPUT: 1760 OUTPUT:
1733 RETVAL 1761 RETVAL
1734 1762
1738 1766
1739void set_msgfile (DB_ENV *env, FILE *msgfile = 0) 1767void set_msgfile (DB_ENV *env, FILE *msgfile = 0)
1740 CODE: 1768 CODE:
1741 env->set_msgfile (env, msgfile); 1769 env->set_msgfile (env, msgfile);
1742 1770
1743int set_verbose (DB_ENV *env, U32 which, int onoff = 1) 1771int set_verbose (DB_ENV *env, U32 which = -1, int onoff = 1)
1744 CODE: 1772 CODE:
1745 RETVAL = env->set_verbose (env, which, onoff); 1773 RETVAL = env->set_verbose (env, which, onoff);
1746 OUTPUT: 1774 OUTPUT:
1747 RETVAL 1775 RETVAL
1748 1776
1808 1836
1809int set_lg_max (DB_ENV *env, U32 max) 1837int set_lg_max (DB_ENV *env, U32 max)
1810 CODE: 1838 CODE:
1811 RETVAL = env->set_lg_max (env, max); 1839 RETVAL = env->set_lg_max (env, max);
1812 OUTPUT: 1840 OUTPUT:
1841 RETVAL
1842
1843int mutex_set_max (DB_ENV *env, U32 max)
1844 CODE:
1845 RETVAL = env->mutex_set_max (env, max);
1846 OUTPUT:
1847 RETVAL
1848
1849int mutex_set_increment (DB_ENV *env, U32 increment)
1850 CODE:
1851 RETVAL = env->mutex_set_increment (env, increment);
1852 OUTPUT:
1853 RETVAL
1854
1855int mutex_set_tas_spins (DB_ENV *env, U32 tas_spins)
1856 CODE:
1857 RETVAL = env->mutex_set_tas_spins (env, tas_spins);
1858 OUTPUT:
1859 RETVAL
1860
1861int mutex_set_align (DB_ENV *env, U32 align)
1862 CODE:
1863 RETVAL = env->mutex_set_align (env, align);
1864 OUTPUT:
1813 RETVAL 1865 RETVAL
1814 1866
1815DB_TXN * 1867DB_TXN *
1816txn_begin (DB_ENV *env, DB_TXN_ornull *parent = 0, U32 flags = 0) 1868txn_begin (DB_ENV *env, DB_TXN_ornull *parent = 0, U32 flags = 0)
1817 CODE: 1869 CODE:
1822 RETVAL 1874 RETVAL
1823 1875
1824MODULE = BDB PACKAGE = BDB::Db 1876MODULE = BDB PACKAGE = BDB::Db
1825 1877
1826void 1878void
1827DESTROY (DB_ornull *db) 1879DESTROY (DB_ornuked *db)
1828 CODE: 1880 CODE:
1829 if (db) 1881 if (db)
1830 { 1882 {
1831 SV *env = (SV *)db->app_private; 1883 SV *env = (SV *)db->app_private;
1832 db->close (db, 0); 1884 db->close (db, 0);
1927 1979
1928 1980
1929MODULE = BDB PACKAGE = BDB::Txn 1981MODULE = BDB PACKAGE = BDB::Txn
1930 1982
1931void 1983void
1932DESTROY (DB_TXN_ornull *txn) 1984DESTROY (DB_TXN_ornuked *txn)
1933 CODE: 1985 CODE:
1934 if (txn) 1986 if (txn)
1935 txn->abort (txn); 1987 txn->abort (txn);
1936 1988
1937int set_timeout (DB_TXN *txn, NV timeout, U32 flags = DB_SET_TXN_TIMEOUT) 1989int set_timeout (DB_TXN *txn, NV timeout, U32 flags = DB_SET_TXN_TIMEOUT)
1948 2000
1949 2001
1950MODULE = BDB PACKAGE = BDB::Cursor 2002MODULE = BDB PACKAGE = BDB::Cursor
1951 2003
1952void 2004void
1953DESTROY (DBC_ornull *dbc) 2005DESTROY (DBC_ornuked *dbc)
1954 CODE: 2006 CODE:
1955 if (dbc) 2007 if (dbc)
1956 dbc->c_close (dbc); 2008 dbc->c_close (dbc);
1957 2009
2010#if DB_VERSION_MINOR >= 6
2011
2012int set_priority (DBC *dbc, int priority)
2013 CODE:
2014 dbc->set_priority (dbc, priority);
2015
2016#endif
2017
1958MODULE = BDB PACKAGE = BDB::Sequence 2018MODULE = BDB PACKAGE = BDB::Sequence
1959 2019
1960void 2020void
1961DESTROY (DB_SEQUENCE_ornull *seq) 2021DESTROY (DB_SEQUENCE_ornuked *seq)
1962 CODE: 2022 CODE:
1963 if (seq) 2023 if (seq)
1964 seq->close (seq, 0); 2024 seq->close (seq, 0);
1965 2025
1966int initial_value (DB_SEQUENCE *seq, db_seq_t value) 2026int initial_value (DB_SEQUENCE *seq, db_seq_t value)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines