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

Comparing BDB/BDB.xs (file contents):
Revision 1.22 by root, Fri Dec 7 13:14:54 2007 UTC vs.
Revision 1.33 by root, Sun Mar 30 04:57:55 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
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));
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}
455 return; 467 return;
456 468
457 start_thread (); 469 start_thread ();
458} 470}
459 471
460static void req_send (aio_req req) 472static void req_send (bdb_req req)
461{ 473{
462 SV *wait_callback = 0; 474 SV *wait_callback = 0;
463 475
464 // synthesize callback if none given 476 // synthesize callback if none given
465 if (!SvOK (req->callback)) 477 if (!SvOK (req->callback))
473 SPAGAIN; 485 SPAGAIN;
474 486
475 if (count != 2) 487 if (count != 2)
476 croak ("prepare callback must return exactly two values\n"); 488 croak ("prepare callback must return exactly two values\n");
477 489
478 wait_callback = SvREFCNT_inc (POPs); 490 wait_callback = POPs;
479 SvREFCNT_dec (req->callback); 491 SvREFCNT_dec (req->callback);
480 req->callback = SvREFCNT_inc (POPs); 492 req->callback = SvREFCNT_inc (POPs);
481 } 493 }
482 494
483 ++nreqs; 495 ++nreqs;
494 { 506 {
495 dSP; 507 dSP;
496 PUSHMARK (SP); 508 PUSHMARK (SP);
497 PUTBACK; 509 PUTBACK;
498 call_sv (wait_callback, G_DISCARD); 510 call_sv (wait_callback, G_DISCARD);
499 SvREFCNT_dec (wait_callback);
500 } 511 }
501} 512}
502 513
503static void end_thread (void) 514static void end_thread (void)
504{ 515{
505 aio_req req; 516 bdb_req req;
506 517
507 Newz (0, req, 1, aio_cb); 518 Newz (0, req, 1, bdb_cb);
508 519
509 req->type = REQ_QUIT; 520 req->type = REQ_QUIT;
510 req->pri = PRI_MAX + PRI_BIAS; 521 req->pri = PRI_MAX + PRI_BIAS;
511 522
512 X_LOCK (reqlock); 523 X_LOCK (reqlock);
569 dSP; 580 dSP;
570 int count = 0; 581 int count = 0;
571 int maxreqs = max_poll_reqs; 582 int maxreqs = max_poll_reqs;
572 int do_croak = 0; 583 int do_croak = 0;
573 struct timeval tv_start, tv_now; 584 struct timeval tv_start, tv_now;
574 aio_req req; 585 bdb_req req;
575 586
576 if (max_poll_time) 587 if (max_poll_time)
577 gettimeofday (&tv_start, 0); 588 gettimeofday (&tv_start, 0);
578 589
579 for (;;) 590 for (;;)
640 651
641/*****************************************************************************/ 652/*****************************************************************************/
642 653
643X_THREAD_PROC (bdb_proc) 654X_THREAD_PROC (bdb_proc)
644{ 655{
645 aio_req req; 656 bdb_req req;
646 struct timespec ts; 657 struct timespec ts;
647 worker *self = (worker *)thr_arg; 658 worker *self = (worker *)thr_arg;
648 659
649 /* try to distribute timeouts somewhat evenly */ 660 /* try to distribute timeouts somewhat evenly */
650 ts.tv_nsec = ((unsigned long)self & 1023UL) * (1000000000UL / 1024UL); 661 ts.tv_nsec = ((unsigned long)self & 1023UL) * (1000000000UL / 1024UL);
733 744
734 case REQ_DB_SYNC: 745 case REQ_DB_SYNC:
735 req->result = req->db->sync (req->db, req->uint1); 746 req->result = req->db->sync (req->db, req->uint1);
736 break; 747 break;
737 748
749 case REQ_DB_UPGRADE:
750 req->result = req->db->upgrade (req->db, req->buf1, req->uint1);
751 break;
752
738 case REQ_DB_PUT: 753 case REQ_DB_PUT:
739 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);
740 break; 755 break;
741 756
742 case REQ_DB_GET: 757 case REQ_DB_GET:
864 X_UNLOCK (wrklock); 879 X_UNLOCK (wrklock);
865} 880}
866 881
867static void atfork_child (void) 882static void atfork_child (void)
868{ 883{
869 aio_req prv; 884 bdb_req prv;
870 885
871 while (prv = reqq_shift (&req_queue)) 886 while (prv = reqq_shift (&req_queue))
872 req_free (prv); 887 req_free (prv);
873 888
874 while (prv = reqq_shift (&res_queue)) 889 while (prv = reqq_shift (&res_queue))
895 910
896 atfork_parent (); 911 atfork_parent ();
897} 912}
898 913
899#define dREQ(reqtype) \ 914#define dREQ(reqtype) \
900 aio_req req; \ 915 bdb_req req; \
901 int req_pri = next_pri; \ 916 int req_pri = next_pri; \
902 next_pri = DEFAULT_PRI + PRI_BIAS; \ 917 next_pri = DEFAULT_PRI + PRI_BIAS; \
903 \ 918 \
904 if (SvOK (callback) && !SvROK (callback)) \ 919 if (SvOK (callback) && !SvROK (callback)) \
905 croak ("callback must be undef or of reference type"); \ 920 croak ("callback must be undef or of reference type"); \
906 \ 921 \
907 Newz (0, req, 1, aio_cb); \ 922 Newz (0, req, 1, bdb_cb); \
908 if (!req) \ 923 if (!req) \
909 croak ("out of memory during aio_req allocation"); \ 924 croak ("out of memory during bdb_req allocation"); \
910 \ 925 \
911 req->callback = newSVsv (callback); \ 926 req->callback = newSVsv (callback); \
912 req->type = (reqtype); \ 927 req->type = (reqtype); \
913 req->pri = req_pri 928 req->pri = req_pri
914 929
915#define REQ_SEND \ 930#define REQ_SEND \
916 req_send (req) 931 req_send (req)
917 932
918#define SvPTR(var, arg, type, class, nullok) \ 933#define SvPTR(var, arg, type, class, nullok) \
919 if (!SvOK (arg)) \ 934 if (!SvOK (arg)) \
920 { \ 935 { \
921 if (!nullok) \ 936 if (nullok != 1) \
922 croak (# var " must be a " # class " object, not undef"); \ 937 croak (# var " must be a " # class " object, not undef"); \
923 \ 938 \
924 (var) = 0; \ 939 (var) = 0; \
925 } \ 940 } \
926 else if (sv_derived_from ((arg), # class)) \ 941 else if (sv_derived_from ((arg), # class)) \
927 { \ 942 { \
928 IV tmp = SvIV ((SV*) SvRV (arg)); \ 943 IV tmp = SvIV ((SV*) SvRV (arg)); \
929 (var) = INT2PTR (type, tmp); \ 944 (var) = INT2PTR (type, tmp); \
930 if (!var) \ 945 if (!var && nullok != 2) \
931 croak (# var " is not a valid " # class " object anymore"); \ 946 croak (# var " is not a valid " # class " object anymore"); \
932 } \ 947 } \
933 else \ 948 else \
934 croak (# var " is not of type " # class); \ 949 croak (# var " is not of type " # class); \
935 \ 950 \
937static void 952static void
938ptr_nuke (SV *sv) 953ptr_nuke (SV *sv)
939{ 954{
940 assert (SvROK (sv)); 955 assert (SvROK (sv));
941 sv_setiv (SvRV (sv), 0); 956 sv_setiv (SvRV (sv), 0);
957}
958
959static int
960errno_get (pTHX_ SV *sv, MAGIC *mg)
961{
962 if (*mg->mg_ptr == '!') // should always be the case
963 if (-30999 <= errno && errno <= -30800)
964 {
965 sv_setnv (sv, (NV)errno);
966 sv_setpv (sv, db_strerror (errno));
967 SvNOK_on (sv); /* what a wonderful hack! */
968 // ^^^ copied from perl sources
969 return 0;
970 }
971
972 return PL_vtbl_sv.svt_get (aTHX_ sv, mg);
973}
974
975static MGVTBL vtbl_errno;
976
977// this wonderful hack :( patches perl's $! variable to support our errno values
978static void
979patch_errno (void)
980{
981 SV *sv;
982 MAGIC *mg;
983
984 if (!(sv = get_sv ("!", 1)))
985 return;
986
987 if (!(mg = mg_find (sv, PERL_MAGIC_sv)))
988 return;
989
990 if (mg->mg_virtual != &PL_vtbl_sv)
991 return;
992
993 vtbl_errno = PL_vtbl_sv;
994 vtbl_errno.svt_get = errno_get;
995 mg->mg_virtual = &vtbl_errno;
942} 996}
943 997
944MODULE = BDB PACKAGE = BDB 998MODULE = BDB PACKAGE = BDB
945 999
946PROTOTYPES: ENABLE 1000PROTOTYPES: ENABLE
1018 const_iv (GET_BOTH_RANGE) 1072 const_iv (GET_BOTH_RANGE)
1019 //const_iv (SET_RECNO) 1073 //const_iv (SET_RECNO)
1020 //const_iv (MULTIPLE) 1074 //const_iv (MULTIPLE)
1021 const_iv (SNAPSHOT) 1075 const_iv (SNAPSHOT)
1022 const_iv (JOIN_ITEM) 1076 const_iv (JOIN_ITEM)
1077 const_iv (JOIN_NOSORT)
1023 const_iv (RMW) 1078 const_iv (RMW)
1024 1079
1025 const_iv (NOTFOUND) 1080 const_iv (NOTFOUND)
1026 const_iv (KEYEMPTY) 1081 const_iv (KEYEMPTY)
1027 const_iv (LOCK_DEADLOCK) 1082 const_iv (LOCK_DEADLOCK)
1043 const_iv (TXN_SYNC) 1098 const_iv (TXN_SYNC)
1044 1099
1045 const_iv (SET_LOCK_TIMEOUT) 1100 const_iv (SET_LOCK_TIMEOUT)
1046 const_iv (SET_TXN_TIMEOUT) 1101 const_iv (SET_TXN_TIMEOUT)
1047 1102
1048 const_iv (JOIN_ITEM)
1049 const_iv (FIRST) 1103 const_iv (FIRST)
1050 const_iv (NEXT) 1104 const_iv (NEXT)
1051 const_iv (NEXT_DUP) 1105 const_iv (NEXT_DUP)
1052 const_iv (NEXT_NODUP) 1106 const_iv (NEXT_NODUP)
1053 const_iv (PREV) 1107 const_iv (PREV)
1087 const_iv (LOG_BUFFER_FULL) 1141 const_iv (LOG_BUFFER_FULL)
1088 const_iv (NOSERVER) 1142 const_iv (NOSERVER)
1089 const_iv (NOSERVER_HOME) 1143 const_iv (NOSERVER_HOME)
1090 const_iv (NOSERVER_ID) 1144 const_iv (NOSERVER_ID)
1091 const_iv (NOTFOUND) 1145 const_iv (NOTFOUND)
1092 const_iv (OLD_VERSION)
1093 const_iv (PAGE_NOTFOUND) 1146 const_iv (PAGE_NOTFOUND)
1094 const_iv (REP_DUPMASTER) 1147 const_iv (REP_DUPMASTER)
1095 const_iv (REP_HANDLE_DEAD) 1148 const_iv (REP_HANDLE_DEAD)
1096 const_iv (REP_HOLDELECTION) 1149 const_iv (REP_HOLDELECTION)
1097 const_iv (REP_IGNORE) 1150 const_iv (REP_IGNORE)
1120 const_iv (MULTIVERSION) 1173 const_iv (MULTIVERSION)
1121 const_iv (TXN_SNAPSHOT) 1174 const_iv (TXN_SNAPSHOT)
1122#endif 1175#endif
1123#if DB_VERSION_MINOR >= 6 1176#if DB_VERSION_MINOR >= 6
1124 const_iv (PREV_DUP) 1177 const_iv (PREV_DUP)
1125# if 0
1126 const_iv (PRIORITY_UNCHANGED) 1178 const_iv (PRIORITY_UNCHANGED)
1127 const_iv (PRIORITY_VERY_LOW) 1179 const_iv (PRIORITY_VERY_LOW)
1128 const_iv (PRIORITY_LOW) 1180 const_iv (PRIORITY_LOW)
1129 const_iv (PRIORITY_DEFAULT) 1181 const_iv (PRIORITY_DEFAULT)
1130 const_iv (PRIORITY_HIGH) 1182 const_iv (PRIORITY_HIGH)
1131 const_iv (PRIORITY_VERY_HIGH) 1183 const_iv (PRIORITY_VERY_HIGH)
1132# endif
1133#endif 1184#endif
1134 }; 1185 };
1135 1186
1136 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; ) 1187 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; )
1137 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv)); 1188 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv));
1138 1189
1139 newCONSTSUB (stash, "DB_VERSION", newSVnv (DB_VERSION_MAJOR + DB_VERSION_MINOR * .1)); 1190 newCONSTSUB (stash, "VERSION", newSVnv (DB_VERSION_MAJOR + DB_VERSION_MINOR * .1));
1140 newCONSTSUB (stash, "DB_VERSION_STRING", newSVpv (DB_VERSION_STRING, 0)); 1191 newCONSTSUB (stash, "VERSION_STRING", newSVpv (DB_VERSION_STRING, 0));
1141 1192
1142 create_respipe (); 1193 create_respipe ();
1143 1194
1144 X_THREAD_ATFORK (atfork_prepare, atfork_parent, atfork_child); 1195 X_THREAD_ATFORK (atfork_prepare, atfork_parent, atfork_child);
1145#ifdef _WIN32 1196#ifdef _WIN32
1147 X_MUTEX_CHECK (reslock); 1198 X_MUTEX_CHECK (reslock);
1148 X_MUTEX_CHECK (reqlock); 1199 X_MUTEX_CHECK (reqlock);
1149 1200
1150 X_COND_CHECK (reqwait); 1201 X_COND_CHECK (reqwait);
1151#endif 1202#endif
1203 patch_errno ();
1152} 1204}
1153 1205
1154void 1206void
1155max_poll_reqs (int nreqs) 1207max_poll_reqs (int nreqs)
1156 PROTOTYPE: $ 1208 PROTOTYPE: $
1314} 1366}
1315 OUTPUT: 1367 OUTPUT:
1316 RETVAL 1368 RETVAL
1317 1369
1318void 1370void
1319db_env_open (DB_ENV *env, octetstring db_home, U32 open_flags, int mode, SV *callback = &PL_sv_undef) 1371db_env_open (DB_ENV *env, bdb_filename db_home, U32 open_flags, int mode, SV *callback = &PL_sv_undef)
1320 CODE: 1372 CODE:
1321{ 1373{
1322 dREQ (REQ_ENV_OPEN); 1374 dREQ (REQ_ENV_OPEN);
1323
1324 env->set_thread_count (env, wanted + 2);
1325 1375
1326 req->env = env; 1376 req->env = env;
1327 req->uint1 = open_flags | DB_THREAD; 1377 req->uint1 = open_flags | DB_THREAD;
1328 req->int1 = mode; 1378 req->int1 = mode;
1329 req->buf1 = strdup_ornull (db_home); 1379 req->buf1 = strdup_ornull (db_home);
1397} 1447}
1398 OUTPUT: 1448 OUTPUT:
1399 RETVAL 1449 RETVAL
1400 1450
1401void 1451void
1402db_open (DB *db, DB_TXN_ornull *txnid, octetstring file, octetstring database, int type, U32 flags, int mode, SV *callback = &PL_sv_undef) 1452db_open (DB *db, DB_TXN_ornull *txnid, bdb_filename file, bdb_filename database, int type, U32 flags, int mode, SV *callback = &PL_sv_undef)
1403 CODE: 1453 CODE:
1404{ 1454{
1405 dREQ (REQ_DB_OPEN); 1455 dREQ (REQ_DB_OPEN);
1406 req->db = db; 1456 req->db = db;
1407 req->txn = txnid; 1457 req->txn = txnid;
1447 req->uint1 = flags; 1497 req->uint1 = flags;
1448 REQ_SEND; 1498 REQ_SEND;
1449} 1499}
1450 1500
1451void 1501void
1502db_upgrade (DB *db, bdb_filename file, U32 flags = 0, SV *callback = &PL_sv_undef)
1503 CODE:
1504{
1505 dREQ (REQ_DB_SYNC);
1506 req->db = db;
1507 req->buf1 = strdup (file);
1508 req->uint1 = flags;
1509 REQ_SEND;
1510}
1511
1512void
1452db_key_range (DB *db, DB_TXN_ornull *txn, SV *key, SV *key_range, U32 flags = 0, SV *callback = &PL_sv_undef) 1513db_key_range (DB *db, DB_TXN_ornull *txn, SV *key, SV *key_range, U32 flags = 0, SV *callback = &PL_sv_undef)
1453 CODE: 1514 CODE:
1454{ 1515{
1455 dREQ (REQ_DB_KEY_RANGE); 1516 dREQ (REQ_DB_KEY_RANGE);
1456 req->db = db; 1517 req->db = db;
1475} 1536}
1476 1537
1477void 1538void
1478db_get (DB *db, DB_TXN_ornull *txn, SV *key, SV *data, U32 flags = 0, SV *callback = &PL_sv_undef) 1539db_get (DB *db, DB_TXN_ornull *txn, SV *key, SV *data, U32 flags = 0, SV *callback = &PL_sv_undef)
1479 CODE: 1540 CODE:
1541 if (SvREADONLY (data))
1542 croak ("can't modify read-only data scalar in db_get");
1480{ 1543{
1481 dREQ (REQ_DB_GET); 1544 dREQ (REQ_DB_GET);
1482 req->db = db; 1545 req->db = db;
1483 req->txn = txn; 1546 req->txn = txn;
1484 req->uint1 = flags; 1547 req->uint1 = flags;
1489} 1552}
1490 1553
1491void 1554void
1492db_pget (DB *db, DB_TXN_ornull *txn, SV *key, SV *pkey, SV *data, U32 flags = 0, SV *callback = &PL_sv_undef) 1555db_pget (DB *db, DB_TXN_ornull *txn, SV *key, SV *pkey, SV *data, U32 flags = 0, SV *callback = &PL_sv_undef)
1493 CODE: 1556 CODE:
1557 if (SvREADONLY (data))
1558 croak ("can't modify read-only data scalar in db_pget");
1494{ 1559{
1495 dREQ (REQ_DB_PGET); 1560 dREQ (REQ_DB_PGET);
1496 req->db = db; 1561 req->db = db;
1497 req->txn = txn; 1562 req->txn = txn;
1498 req->uint1 = flags; 1563 req->uint1 = flags;
1692 1757
1693 1758
1694MODULE = BDB PACKAGE = BDB::Env 1759MODULE = BDB PACKAGE = BDB::Env
1695 1760
1696void 1761void
1697DESTROY (DB_ENV_ornull *env) 1762DESTROY (DB_ENV_ornuked *env)
1698 CODE: 1763 CODE:
1699 if (env) 1764 if (env)
1700 env->close (env, 0); 1765 env->close (env, 0);
1701 1766
1702int set_data_dir (DB_ENV *env, const char *dir) 1767int set_data_dir (DB_ENV *env, const char *dir)
1727 CODE: 1792 CODE:
1728 RETVAL = env->set_cachesize (env, gbytes, bytes, ncache); 1793 RETVAL = env->set_cachesize (env, gbytes, bytes, ncache);
1729 OUTPUT: 1794 OUTPUT:
1730 RETVAL 1795 RETVAL
1731 1796
1732int set_flags (DB_ENV *env, U32 flags, int onoff) 1797int set_flags (DB_ENV *env, U32 flags, int onoff = 1)
1733 CODE: 1798 CODE:
1734 RETVAL = env->set_flags (env, flags, onoff); 1799 RETVAL = env->set_flags (env, flags, onoff);
1735 OUTPUT: 1800 OUTPUT:
1736 RETVAL 1801 RETVAL
1737 1802
1741 1806
1742void set_msgfile (DB_ENV *env, FILE *msgfile = 0) 1807void set_msgfile (DB_ENV *env, FILE *msgfile = 0)
1743 CODE: 1808 CODE:
1744 env->set_msgfile (env, msgfile); 1809 env->set_msgfile (env, msgfile);
1745 1810
1746int set_verbose (DB_ENV *env, U32 which, int onoff = 1) 1811int set_verbose (DB_ENV *env, U32 which = -1, int onoff = 1)
1747 CODE: 1812 CODE:
1748 RETVAL = env->set_verbose (env, which, onoff); 1813 RETVAL = env->set_verbose (env, which, onoff);
1749 OUTPUT: 1814 OUTPUT:
1750 RETVAL 1815 RETVAL
1751 1816
1849 RETVAL 1914 RETVAL
1850 1915
1851MODULE = BDB PACKAGE = BDB::Db 1916MODULE = BDB PACKAGE = BDB::Db
1852 1917
1853void 1918void
1854DESTROY (DB_ornull *db) 1919DESTROY (DB_ornuked *db)
1855 CODE: 1920 CODE:
1856 if (db) 1921 if (db)
1857 { 1922 {
1858 SV *env = (SV *)db->app_private; 1923 SV *env = (SV *)db->app_private;
1859 db->close (db, 0); 1924 db->close (db, 0);
1954 2019
1955 2020
1956MODULE = BDB PACKAGE = BDB::Txn 2021MODULE = BDB PACKAGE = BDB::Txn
1957 2022
1958void 2023void
1959DESTROY (DB_TXN_ornull *txn) 2024DESTROY (DB_TXN_ornuked *txn)
1960 CODE: 2025 CODE:
1961 if (txn) 2026 if (txn)
1962 txn->abort (txn); 2027 txn->abort (txn);
1963 2028
1964int set_timeout (DB_TXN *txn, NV timeout, U32 flags = DB_SET_TXN_TIMEOUT) 2029int set_timeout (DB_TXN *txn, NV timeout, U32 flags = DB_SET_TXN_TIMEOUT)
1975 2040
1976 2041
1977MODULE = BDB PACKAGE = BDB::Cursor 2042MODULE = BDB PACKAGE = BDB::Cursor
1978 2043
1979void 2044void
1980DESTROY (DBC_ornull *dbc) 2045DESTROY (DBC_ornuked *dbc)
1981 CODE: 2046 CODE:
1982 if (dbc) 2047 if (dbc)
1983 dbc->c_close (dbc); 2048 dbc->c_close (dbc);
1984 2049
2050#if DB_VERSION_MINOR >= 6
2051
2052int set_priority (DBC *dbc, int priority)
2053 CODE:
2054 dbc->set_priority (dbc, priority);
2055
2056#endif
2057
1985MODULE = BDB PACKAGE = BDB::Sequence 2058MODULE = BDB PACKAGE = BDB::Sequence
1986 2059
1987void 2060void
1988DESTROY (DB_SEQUENCE_ornull *seq) 2061DESTROY (DB_SEQUENCE_ornuked *seq)
1989 CODE: 2062 CODE:
1990 if (seq) 2063 if (seq)
1991 seq->close (seq, 0); 2064 seq->close (seq, 0);
1992 2065
1993int initial_value (DB_SEQUENCE *seq, db_seq_t value) 2066int initial_value (DB_SEQUENCE *seq, db_seq_t value)
2012 CODE: 2085 CODE:
2013 RETVAL = seq->set_range (seq, min, max); 2086 RETVAL = seq->set_range (seq, min, max);
2014 OUTPUT: 2087 OUTPUT:
2015 RETVAL 2088 RETVAL
2016 2089
2090

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines