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

Comparing BDB/BDB.xs (file contents):
Revision 1.64 by root, Wed Nov 12 16:52:51 2008 UTC vs.
Revision 1.79 by root, Tue Feb 2 04:07:06 2016 UTC

6 6
7#include "EXTERN.h" 7#include "EXTERN.h"
8#include "perl.h" 8#include "perl.h"
9#include "XSUB.h" 9#include "XSUB.h"
10 10
11#include "schmorp.h"
12
11// perl stupidly defines these as macros, breaking 13// perl stupidly defines these as argument-less macros, breaking
12// lots and lots of code. 14// lots and lots of code.
13#undef open 15#undef open
14#undef close 16#undef close
15#undef abort 17#undef abort
16#undef malloc 18#undef malloc
29# include <unistd.h> 31# include <unistd.h>
30#endif 32#endif
31 33
32#include <db.h> 34#include <db.h>
33 35
34#if DB_VERSION_MAJOR != 4 || (DB_VERSION_MAJOR == 4 && DB_VERSION_MINOR < 3) 36#define DBVER DB_VERSION_MAJOR * 100 + DB_VERSION_MINOR
37
38#if DBVER < 403
35# error you need Berkeley DB 4.3 or a newer 4.x version installed 39# error you need Berkeley DB 4.3 or a newer version installed
36#endif 40#endif
37 41
38/* number of seconds after which idle threads exit */ 42/* number of seconds after which idle threads exit */
39#define IDLE_TIMEOUT 10 43#define IDLE_TIMEOUT 10
40 44
48typedef DB_ENV DB_ENV_ornuked; 52typedef DB_ENV DB_ENV_ornuked;
49typedef DB_TXN DB_TXN_ornuked; 53typedef DB_TXN DB_TXN_ornuked;
50typedef DBC DBC_ornuked; 54typedef DBC DBC_ornuked;
51typedef DB DB_ornuked; 55typedef DB DB_ornuked;
52 56
53#if DB_VERSION_MINOR >= 3 57#if DBVER >= 403
54typedef DB_SEQUENCE DB_SEQUENCE_ornull; 58typedef DB_SEQUENCE DB_SEQUENCE_ornull;
55typedef DB_SEQUENCE DB_SEQUENCE_ornuked; 59typedef DB_SEQUENCE DB_SEQUENCE_ornuked;
56#endif 60#endif
57 61
58typedef char *bdb_filename; 62typedef char *bdb_filename;
59 63
60static SV *prepare_cb; 64static SV *prepare_cb;
61 65
62#if DB_VERSION_MINOR >= 6 66static HV
67 *bdb_stash,
68 *bdb_env_stash,
69 *bdb_txn_stash,
70 *bdb_cursor_stash,
71 *bdb_db_stash,
72 *bdb_sequence_stash;
73
74#if DBVER >= 406
63# define c_close close 75# define c_close close
64# define c_count count 76# define c_count count
65# define c_del del 77# define c_del del
66# define c_dup dup 78# define c_dup dup
67# define c_get get 79# define c_get get
149 161
150enum { 162enum {
151 REQ_QUIT, 163 REQ_QUIT,
152 REQ_ENV_OPEN, REQ_ENV_CLOSE, REQ_ENV_TXN_CHECKPOINT, REQ_ENV_LOCK_DETECT, 164 REQ_ENV_OPEN, REQ_ENV_CLOSE, REQ_ENV_TXN_CHECKPOINT, REQ_ENV_LOCK_DETECT,
153 REQ_ENV_MEMP_SYNC, REQ_ENV_MEMP_TRICKLE, REQ_ENV_DBREMOVE, REQ_ENV_DBRENAME, 165 REQ_ENV_MEMP_SYNC, REQ_ENV_MEMP_TRICKLE, REQ_ENV_DBREMOVE, REQ_ENV_DBRENAME,
154 REQ_ENV_LOG_ARCHIVE, 166 REQ_ENV_LOG_ARCHIVE, REQ_ENV_LSN_RESET,
155 REQ_DB_OPEN, REQ_DB_CLOSE, REQ_DB_COMPACT, REQ_DB_SYNC, REQ_DB_UPGRADE, 167 REQ_DB_OPEN, REQ_DB_CLOSE, REQ_DB_COMPACT, REQ_DB_SYNC, REQ_DB_VERIFY, REQ_DB_UPGRADE,
156 REQ_DB_PUT, REQ_DB_EXISTS, REQ_DB_GET, REQ_DB_PGET, REQ_DB_DEL, REQ_DB_KEY_RANGE, 168 REQ_DB_PUT, REQ_DB_EXISTS, REQ_DB_GET, REQ_DB_PGET, REQ_DB_DEL, REQ_DB_KEY_RANGE,
157 REQ_TXN_COMMIT, REQ_TXN_ABORT, REQ_TXN_FINISH, 169 REQ_TXN_COMMIT, REQ_TXN_ABORT, REQ_TXN_FINISH,
158 REQ_C_CLOSE, REQ_C_COUNT, REQ_C_PUT, REQ_C_GET, REQ_C_PGET, REQ_C_DEL, 170 REQ_C_CLOSE, REQ_C_COUNT, REQ_C_PUT, REQ_C_GET, REQ_C_PGET, REQ_C_DEL,
159 REQ_SEQ_OPEN, REQ_SEQ_CLOSE, REQ_SEQ_GET, REQ_SEQ_REMOVE, 171 REQ_SEQ_OPEN, REQ_SEQ_CLOSE, REQ_SEQ_GET, REQ_SEQ_REMOVE,
160}; 172};
176 char *buf1, *buf2, *buf3; 188 char *buf1, *buf2, *buf3;
177 SV *sv1, *sv2, *sv3; 189 SV *sv1, *sv2, *sv3;
178 190
179 DBT dbt1, dbt2, dbt3; 191 DBT dbt1, dbt2, dbt3;
180 DB_KEY_RANGE key_range; 192 DB_KEY_RANGE key_range;
181#if DB_VERSION_MINOR >= 3 193#if DBVER >= 403
182 DB_SEQUENCE *seq; 194 DB_SEQUENCE *seq;
183 db_seq_t seq_t; 195 db_seq_t seq_t;
184#endif 196#endif
185 197
186 SV *rsv1, *rsv2; // keep some request objects alive 198 SV *rsv1, *rsv2; // keep some request objects alive
214static int next_pri = DEFAULT_PRI + PRI_BIAS; 226static int next_pri = DEFAULT_PRI + PRI_BIAS;
215 227
216static unsigned int started, idle, wanted; 228static unsigned int started, idle, wanted;
217 229
218/* worker threads management */ 230/* worker threads management */
219static mutex_t wrklock = X_MUTEX_INIT; 231static xmutex_t wrklock = X_MUTEX_INIT;
220 232
221typedef struct worker { 233typedef struct worker {
222 /* locked by wrklock */ 234 /* locked by wrklock */
223 struct worker *prev, *next; 235 struct worker *prev, *next;
224 236
225 thread_t tid; 237 xthread_t tid;
226 238
227 /* locked by reslock, reqlock or wrklock */ 239 /* locked by reslock, reqlock or wrklock */
228 bdb_req req; /* currently processed request */ 240 bdb_req req; /* currently processed request */
229 void *dbuf; 241 void *dbuf;
230 DIR *dirp; 242 DIR *dirp;
245} 257}
246 258
247static volatile unsigned int nreqs, nready, npending; 259static volatile unsigned int nreqs, nready, npending;
248static volatile unsigned int max_idle = 4; 260static volatile unsigned int max_idle = 4;
249static volatile unsigned int max_outstanding = 0xffffffff; 261static volatile unsigned int max_outstanding = 0xffffffff;
250static int respipe_osf [2], respipe [2] = { -1, -1 }; 262static s_epipe respipe;
251 263
252static mutex_t reslock = X_MUTEX_INIT; 264static xmutex_t reslock = X_MUTEX_INIT;
253static mutex_t reqlock = X_MUTEX_INIT; 265static xmutex_t reqlock = X_MUTEX_INIT;
254static cond_t reqwait = X_COND_INIT; 266static xcond_t reqwait = X_COND_INIT;
255 267
256#if WORDACCESS_UNSAFE 268#if WORDACCESS_UNSAFE
257 269
258static unsigned int get_nready (void) 270static unsigned int get_nready (void)
259{ 271{
387 SvREFCNT_dec (av); 399 SvREFCNT_dec (av);
388 SvREFCNT_dec (req->sv1); 400 SvREFCNT_dec (req->sv1);
389 } 401 }
390 break; 402 break;
391 403
392#if DB_VERSION_MINOR >= 3 404#if DBVER >= 403
393 case REQ_SEQ_GET: 405 case REQ_SEQ_GET:
394 SvREADONLY_off (req->sv1); 406 SvREADONLY_off (req->sv1);
395 407
396 if (sizeof (IV) > 4) 408 if (sizeof (IV) > 4)
397 sv_setiv_mg (req->sv1, (IV)req->seq_t); 409 sv_setiv_mg (req->sv1, (IV)req->seq_t);
456 free (req->buf3); 468 free (req->buf3);
457 469
458 Safefree (req); 470 Safefree (req);
459} 471}
460 472
461#ifdef USE_SOCKETS_AS_HANDLES
462# define TO_SOCKET(x) (win32_get_osfhandle (x))
463#else
464# define TO_SOCKET(x) (x)
465#endif
466
467static void 473static void
468create_respipe (void) 474create_respipe (void)
469{ 475{
470#ifdef _WIN32
471 int arg; /* argg */
472#endif
473 int old_readfd = respipe [0];
474
475 if (respipe [1] >= 0)
476 respipe_close (TO_SOCKET (respipe [1]));
477
478#ifdef _WIN32
479 if (PerlSock_socketpair (AF_UNIX, SOCK_STREAM, 0, respipe))
480#else
481 if (pipe (respipe)) 476 if (s_epipe_renew (&respipe))
482#endif 477 croak ("BDB: unable to create event pipe");
483 croak ("unable to initialize result pipe");
484
485 if (old_readfd >= 0)
486 {
487 if (dup2 (TO_SOCKET (respipe [0]), TO_SOCKET (old_readfd)) < 0)
488 croak ("unable to initialize result pipe(2)");
489
490 respipe_close (respipe [0]);
491 respipe [0] = old_readfd;
492 }
493
494#ifdef _WIN32
495 arg = 1;
496 if (ioctlsocket (TO_SOCKET (respipe [0]), FIONBIO, &arg)
497 || ioctlsocket (TO_SOCKET (respipe [1]), FIONBIO, &arg))
498#else
499 if (fcntl (respipe [0], F_SETFL, O_NONBLOCK)
500 || fcntl (respipe [1], F_SETFL, O_NONBLOCK))
501#endif
502 croak ("unable to initialize result pipe(3)");
503
504 respipe_osf [0] = TO_SOCKET (respipe [0]);
505 respipe_osf [1] = TO_SOCKET (respipe [1]);
506} 478}
507 479
508static void bdb_request (bdb_req req); 480static void bdb_request (bdb_req req);
509X_THREAD_PROC (bdb_proc); 481X_THREAD_PROC (bdb_proc);
510 482
514 486
515 if (!wrk) 487 if (!wrk)
516 croak ("unable to allocate worker thread data"); 488 croak ("unable to allocate worker thread data");
517 489
518 X_LOCK (wrklock); 490 X_LOCK (wrklock);
519 if (thread_create (&wrk->tid, bdb_proc, (void *)wrk)) 491 if (xthread_create (&wrk->tid, bdb_proc, (void *)wrk))
520 { 492 {
521 wrk->prev = &wrk_first; 493 wrk->prev = &wrk_first;
522 wrk->next = wrk_first.next; 494 wrk->next = wrk_first.next;
523 wrk_first.next->prev = wrk; 495 wrk_first.next->prev = wrk;
524 wrk_first.next = wrk; 496 wrk_first.next = wrk;
646 end_thread (); 618 end_thread ();
647} 619}
648 620
649static void poll_wait (void) 621static void poll_wait (void)
650{ 622{
651 fd_set rfd;
652
653 while (nreqs) 623 while (nreqs)
654 { 624 {
655 int size; 625 int size;
656 if (WORDACCESS_UNSAFE) X_LOCK (reslock); 626 if (WORDACCESS_UNSAFE) X_LOCK (reslock);
657 size = res_queue.size; 627 size = res_queue.size;
660 if (size) 630 if (size)
661 return; 631 return;
662 632
663 maybe_start_thread (); 633 maybe_start_thread ();
664 634
665 FD_ZERO (&rfd); 635 s_epipe_wait (&respipe);
666 FD_SET (respipe [0], &rfd);
667
668 PerlSock_select (respipe [0] + 1, &rfd, 0, 0, 0);
669 } 636 }
670} 637}
671 638
672static int poll_cb (void) 639static int poll_cb (void)
673{ 640{
693 if (req) 660 if (req)
694 { 661 {
695 --npending; 662 --npending;
696 663
697 if (!res_queue.size) 664 if (!res_queue.size)
698 {
699 /* read any signals sent by the worker threads */ 665 /* read any signals sent by the worker threads */
700 char buf [4]; 666 s_epipe_drain (&respipe);
701 while (respipe_read (respipe [0], buf, 4) == 4)
702 ;
703 }
704 } 667 }
705 668
706 X_UNLOCK (reslock); 669 X_UNLOCK (reslock);
707 670
708 if (!req) 671 if (!req)
788 751
789 case REQ_DB_CLOSE: 752 case REQ_DB_CLOSE:
790 req->result = req->db->close (req->db, req->uint1); 753 req->result = req->db->close (req->db, req->uint1);
791 break; 754 break;
792 755
793#if DB_VERSION_MINOR >= 4 756#if DBVER >= 404
794 case REQ_DB_COMPACT: 757 case REQ_DB_COMPACT:
795 req->result = req->db->compact (req->db, req->txn, req->dbt1.data ? &req->dbt1 : 0, req->dbt2.data ? &req->dbt2 : 0, 0, req->uint1, 0); 758 req->result = req->db->compact (req->db, req->txn, req->dbt1.data ? &req->dbt1 : 0, req->dbt2.data ? &req->dbt2 : 0, 0, req->uint1, 0);
796 break; 759 break;
797#endif 760#endif
798 761
799 case REQ_DB_SYNC: 762 case REQ_DB_SYNC:
800 req->result = req->db->sync (req->db, req->uint1); 763 req->result = req->db->sync (req->db, req->uint1);
801 break; 764 break;
802 765
766 case REQ_DB_VERIFY:
767 req->result = req->db->verify (req->db, req->buf1, req->buf2, 0, req->uint1);
768 break;
769
803 case REQ_DB_UPGRADE: 770 case REQ_DB_UPGRADE:
804 req->result = req->db->upgrade (req->db, req->buf1, req->uint1); 771 req->result = req->db->upgrade (req->db, req->buf1, req->uint1);
805 break; 772 break;
806 773
807 case REQ_DB_PUT: 774 case REQ_DB_PUT:
808 req->result = req->db->put (req->db, req->txn, &req->dbt1, &req->dbt2, req->uint1); 775 req->result = req->db->put (req->db, req->txn, &req->dbt1, &req->dbt2, req->uint1);
809 break; 776 break;
810 777
811#if DB_VERSION_MINOR >= 6 778#if DBVER >= 406
812 case REQ_DB_EXISTS: 779 case REQ_DB_EXISTS:
813 req->result = req->db->exists (req->db, req->txn, &req->dbt1, req->uint1); 780 req->result = req->db->exists (req->db, req->txn, &req->dbt1, req->uint1);
814 break; 781 break;
815#endif 782#endif
816 case REQ_DB_GET: 783 case REQ_DB_GET:
874 841
875 case REQ_C_DEL: 842 case REQ_C_DEL:
876 req->result = req->dbc->c_del (req->dbc, req->uint1); 843 req->result = req->dbc->c_del (req->dbc, req->uint1);
877 break; 844 break;
878 845
879#if DB_VERSION_MINOR >= 3 846#if DBVER >= 403
880 case REQ_SEQ_OPEN: 847 case REQ_SEQ_OPEN:
881 req->result = req->seq->open (req->seq, req->txn, &req->dbt1, req->uint1); 848 req->result = req->seq->open (req->seq, req->txn, &req->dbt1, req->uint1);
882 break; 849 break;
883 850
884 case REQ_SEQ_CLOSE: 851 case REQ_SEQ_CLOSE:
891 858
892 case REQ_SEQ_REMOVE: 859 case REQ_SEQ_REMOVE:
893 req->result = req->seq->remove (req->seq, req->txn, req->uint1); 860 req->result = req->seq->remove (req->seq, req->txn, req->uint1);
894 break; 861 break;
895#endif 862#endif
863
864 case REQ_ENV_LSN_RESET:
865 req->result = req->env->lsn_reset (req->env, req->buf1, req->uint1);
866 break;
896 867
897 case REQ_ENV_LOG_ARCHIVE: 868 case REQ_ENV_LOG_ARCHIVE:
898 { 869 {
899 char **listp = 0; /* DB_ARCH_REMOVE does not touch listp, contrary to docs */ 870 char **listp = 0; /* DB_ARCH_REMOVE does not touch listp, contrary to docs */
900 req->result = req->env->log_archive (req->env, &listp, req->uint1); 871 req->result = req->env->log_archive (req->env, &listp, req->uint1);
920 /* try to distribute timeouts somewhat evenly */ 891 /* try to distribute timeouts somewhat evenly */
921 ts.tv_nsec = ((unsigned long)self & 1023UL) * (1000000000UL / 1024UL); 892 ts.tv_nsec = ((unsigned long)self & 1023UL) * (1000000000UL / 1024UL);
922 893
923 for (;;) 894 for (;;)
924 { 895 {
925 ts.tv_sec = time (0) + IDLE_TIMEOUT; 896 ts.tv_sec = time (0) + IDLE_TIMEOUT;
926 897
927 X_LOCK (reqlock); 898 X_LOCK (reqlock);
928 899
929 for (;;) 900 for (;;)
930 { 901 {
975 X_LOCK (reslock); 946 X_LOCK (reslock);
976 947
977 ++npending; 948 ++npending;
978 949
979 if (!reqq_push (&res_queue, req)) 950 if (!reqq_push (&res_queue, req))
980 /* write a dummy byte to the pipe so fh becomes ready */ 951 s_epipe_signal (&respipe);
981 respipe_write (respipe_osf [1], (const void *)&respipe_osf, 1);
982 952
983 self->req = 0; 953 self->req = 0;
984 worker_clear (self); 954 worker_clear (self);
985 955
986 X_UNLOCK (reslock); 956 X_UNLOCK (reslock);
1048 next_pri = DEFAULT_PRI + PRI_BIAS; \ 1018 next_pri = DEFAULT_PRI + PRI_BIAS; \
1049 \ 1019 \
1050 if (callback && SvOK (callback)) \ 1020 if (callback && SvOK (callback)) \
1051 croak ("callback has illegal type or extra arguments"); \ 1021 croak ("callback has illegal type or extra arguments"); \
1052 \ 1022 \
1053 Newz (0, req, 1, bdb_cb); \ 1023 Newz (0, req, 1, bdb_cb); \
1054 if (!req) \ 1024 if (!req) \
1055 croak ("out of memory during bdb_req allocation"); \ 1025 croak ("out of memory during bdb_req allocation"); \
1056 \ 1026 \
1057 req->callback = SvREFCNT_inc (cb); \ 1027 req->callback = SvREFCNT_inc (cb); \
1058 req->type = (reqtype); \ 1028 req->type = (reqtype); \
1059 req->pri = req_pri; \ 1029 req->pri = req_pri; \
1060 if (rsvcnt >= 1) req->rsv1 = SvREFCNT_inc (ST (0)); \ 1030 if (rsvcnt >= 1) req->rsv1 = SvREFCNT_inc (ST (0)); \
1061 if (rsvcnt >= 2) req->rsv2 = SvREFCNT_inc (ST (1)); \ 1031 if (rsvcnt >= 2) req->rsv2 = SvREFCNT_inc (ST (1)); \
1062 (void)0; 1032 (void)0;
1063 1033
1064#define REQ_SEND \ 1034#define REQ_SEND \
1065 req_send (req) 1035 req_send (req)
1066 1036
1067#define SvPTR(var, arg, type, class, nullok) \ 1037#define SvPTR(var, arg, type, stash, class, nullok) \
1068 if (!SvOK (arg)) \ 1038 if (!SvOK (arg)) \
1069 { \ 1039 { \
1070 if (nullok != 1) \ 1040 if (nullok != 1) \
1071 croak (# var " must be a " # class " object, not undef"); \ 1041 croak (# var " must be a " # class " object, not undef"); \
1072 \ 1042 \
1073 (var) = 0; \ 1043 (var) = 0; \
1074 } \ 1044 } \
1075 else if (sv_derived_from ((arg), # class)) \ 1045 else if (SvSTASH (SvRV (arg)) == stash || sv_derived_from ((arg), # class)) \
1076 { \ 1046 { \
1077 IV tmp = SvIV ((SV*) SvRV (arg)); \ 1047 IV tmp = SvIV ((SV*) SvRV (arg)); \
1078 (var) = INT2PTR (type, tmp); \ 1048 (var) = INT2PTR (type, tmp); \
1079 if (!var && nullok != 2) \ 1049 if (!var && nullok != 2) \
1080 croak (# var " is not a valid " # class " object anymore"); \ 1050 croak (# var " is not a valid " # class " object anymore"); \
1083 croak (# var " is not of type " # class); 1053 croak (# var " is not of type " # class);
1084 1054
1085#define ARG_MUTABLE(name) \ 1055#define ARG_MUTABLE(name) \
1086 if (SvREADONLY (name)) \ 1056 if (SvREADONLY (name)) \
1087 croak ("argument " #name " is read-only/constant, but the request requires it to be mutable"); 1057 croak ("argument " #name " is read-only/constant, but the request requires it to be mutable");
1058
1059static SV *
1060newSVptr (void *ptr, HV *stash)
1061{
1062 SV *rv = NEWSV (0, 0);
1063 sv_upgrade (rv, SVt_PVMG);
1064 sv_setiv (rv, PTR2IV (ptr));
1065
1066 return sv_bless (newRV_noinc (rv), stash);
1067}
1088 1068
1089static void 1069static void
1090ptr_nuke (SV *sv) 1070ptr_nuke (SV *sv)
1091{ 1071{
1092 assert (SvROK (sv)); 1072 assert (SvROK (sv));
1214 1194
1215PROTOTYPES: ENABLE 1195PROTOTYPES: ENABLE
1216 1196
1217BOOT: 1197BOOT:
1218{ 1198{
1219 HV *stash = gv_stashpv ("BDB", 1);
1220
1221 static const struct { 1199 static const struct {
1222 const char *name; 1200 const char *name;
1223 IV iv; 1201 IV iv;
1224 } *civ, const_iv[] = { 1202 } *civ, const_iv[] = {
1225#define const_iv(name) { # name, (IV)DB_ ## name }, 1203#define const_iv(name) { # name, (IV)DB_ ## name },
1204#if DBVER <= 408
1226 const_iv (RPCCLIENT) 1205 const_iv (RPCCLIENT)
1206#endif
1227 const_iv (INIT_CDB) 1207 const_iv (INIT_CDB)
1228 const_iv (INIT_LOCK) 1208 const_iv (INIT_LOCK)
1229 const_iv (INIT_LOG) 1209 const_iv (INIT_LOG)
1230 const_iv (INIT_MPOOL) 1210 const_iv (INIT_MPOOL)
1231 const_iv (INIT_REP) 1211 const_iv (INIT_REP)
1254 const_iv (TXN_NOT_DURABLE) 1234 const_iv (TXN_NOT_DURABLE)
1255 const_iv (TXN_WRITE_NOSYNC) 1235 const_iv (TXN_WRITE_NOSYNC)
1256 const_iv (WRITECURSOR) 1236 const_iv (WRITECURSOR)
1257 const_iv (YIELDCPU) 1237 const_iv (YIELDCPU)
1258 const_iv (ENCRYPT_AES) 1238 const_iv (ENCRYPT_AES)
1239#if DBVER < 408
1259 const_iv (XA_CREATE) 1240 const_iv (XA_CREATE)
1241#endif
1260 const_iv (BTREE) 1242 const_iv (BTREE)
1261 const_iv (HASH) 1243 const_iv (HASH)
1262 const_iv (QUEUE) 1244 const_iv (QUEUE)
1263 const_iv (RECNO) 1245 const_iv (RECNO)
1264 const_iv (UNKNOWN) 1246 const_iv (UNKNOWN)
1328 const_iv (LOCK_OLDEST) 1310 const_iv (LOCK_OLDEST)
1329 const_iv (LOCK_RANDOM) 1311 const_iv (LOCK_RANDOM)
1330 const_iv (LOCK_YOUNGEST) 1312 const_iv (LOCK_YOUNGEST)
1331 1313
1332 const_iv (DONOTINDEX) 1314 const_iv (DONOTINDEX)
1333 const_iv (KEYEMPTY ) 1315 const_iv (KEYEMPTY)
1334 const_iv (KEYEXIST ) 1316 const_iv (KEYEXIST)
1335 const_iv (LOCK_DEADLOCK) 1317 const_iv (LOCK_DEADLOCK)
1336 const_iv (LOCK_NOTGRANTED) 1318 const_iv (LOCK_NOTGRANTED)
1337 const_iv (NOSERVER) 1319 const_iv (NOSERVER)
1320#if DBVER < 502
1338 const_iv (NOSERVER_HOME) 1321 const_iv (NOSERVER_HOME)
1339 const_iv (NOSERVER_ID) 1322 const_iv (NOSERVER_ID)
1323#endif
1340 const_iv (NOTFOUND) 1324 const_iv (NOTFOUND)
1341 const_iv (PAGE_NOTFOUND) 1325 const_iv (PAGE_NOTFOUND)
1342 const_iv (REP_DUPMASTER) 1326 const_iv (REP_DUPMASTER)
1343 const_iv (REP_HANDLE_DEAD) 1327 const_iv (REP_HANDLE_DEAD)
1344 const_iv (REP_HOLDELECTION) 1328 const_iv (REP_HOLDELECTION)
1349 const_iv (REP_UNAVAIL) 1333 const_iv (REP_UNAVAIL)
1350 const_iv (RUNRECOVERY) 1334 const_iv (RUNRECOVERY)
1351 const_iv (SECONDARY_BAD) 1335 const_iv (SECONDARY_BAD)
1352 const_iv (VERIFY_BAD) 1336 const_iv (VERIFY_BAD)
1353 1337
1338 const_iv (SALVAGE)
1339 const_iv (AGGRESSIVE)
1340 const_iv (PRINTABLE)
1341 const_iv (NOORDERCHK)
1342 const_iv (ORDERCHKONLY)
1343
1354 const_iv (ARCH_ABS) 1344 const_iv (ARCH_ABS)
1355 const_iv (ARCH_DATA) 1345 const_iv (ARCH_DATA)
1356 const_iv (ARCH_LOG) 1346 const_iv (ARCH_LOG)
1357 const_iv (ARCH_REMOVE) 1347 const_iv (ARCH_REMOVE)
1358 1348
1362 const_iv (VERB_WAITSFOR) 1352 const_iv (VERB_WAITSFOR)
1363 1353
1364 const_iv (VERSION_MAJOR) 1354 const_iv (VERSION_MAJOR)
1365 const_iv (VERSION_MINOR) 1355 const_iv (VERSION_MINOR)
1366 const_iv (VERSION_PATCH) 1356 const_iv (VERSION_PATCH)
1367#if DB_VERSION_MINOR >= 3 1357 const_iv (LOGVERSION)
1358 const_iv (LOGOLDVER)
1359#if DBVER >= 403
1368 const_iv (INORDER) 1360 const_iv (INORDER)
1369 const_iv (LOCK_MAXWRITE) 1361 const_iv (LOCK_MAXWRITE)
1370 const_iv (SEQ_DEC) 1362 const_iv (SEQ_DEC)
1371 const_iv (SEQ_INC) 1363 const_iv (SEQ_INC)
1372 const_iv (SEQ_WRAP) 1364 const_iv (SEQ_WRAP)
1373 const_iv (BUFFER_SMALL) 1365 const_iv (BUFFER_SMALL)
1374 const_iv (LOG_BUFFER_FULL) 1366 const_iv (LOG_BUFFER_FULL)
1375 const_iv (VERSION_MISMATCH) 1367 const_iv (VERSION_MISMATCH)
1376#endif 1368#endif
1377#if DB_VERSION_MINOR >= 4 1369#if DBVER >= 404
1378 const_iv (REGISTER) 1370 const_iv (REGISTER)
1379 const_iv (DSYNC_DB) 1371 const_iv (DSYNC_DB)
1380 const_iv (READ_COMMITTED) 1372 const_iv (READ_COMMITTED)
1381 const_iv (READ_UNCOMMITTED) 1373 const_iv (READ_UNCOMMITTED)
1382 const_iv (REP_IGNORE) 1374 const_iv (REP_IGNORE)
1384 const_iv (REP_JOIN_FAILURE) 1376 const_iv (REP_JOIN_FAILURE)
1385 const_iv (FREE_SPACE) 1377 const_iv (FREE_SPACE)
1386 const_iv (FREELIST_ONLY) 1378 const_iv (FREELIST_ONLY)
1387 const_iv (VERB_REGISTER) 1379 const_iv (VERB_REGISTER)
1388#endif 1380#endif
1389#if DB_VERSION_MINOR >= 5 1381#if DBVER >= 405
1390 const_iv (MULTIVERSION) 1382 const_iv (MULTIVERSION)
1391 const_iv (TXN_SNAPSHOT) 1383 const_iv (TXN_SNAPSHOT)
1392#endif 1384#endif
1393#if DB_VERSION_MINOR >= 6 1385#if DBVER >= 406
1394 const_iv (PREV_DUP) 1386 const_iv (PREV_DUP)
1395 const_iv (PRIORITY_UNCHANGED) 1387 const_iv (PRIORITY_UNCHANGED)
1396 const_iv (PRIORITY_VERY_LOW) 1388 const_iv (PRIORITY_VERY_LOW)
1397 const_iv (PRIORITY_LOW) 1389 const_iv (PRIORITY_LOW)
1398 const_iv (PRIORITY_DEFAULT) 1390 const_iv (PRIORITY_DEFAULT)
1399 const_iv (PRIORITY_HIGH) 1391 const_iv (PRIORITY_HIGH)
1400 const_iv (PRIORITY_VERY_HIGH) 1392 const_iv (PRIORITY_VERY_HIGH)
1401 const_iv (IGNORE_LEASE) 1393 const_iv (IGNORE_LEASE)
1402#endif 1394#endif
1403#if DB_VERSION_MINOR >= 7 1395#if DBVER >= 407
1404 //const_iv (MULTIPLE_KEY) 1396 //const_iv (MULTIPLE_KEY)
1405 const_iv (LOG_DIRECT) 1397 const_iv (LOG_DIRECT)
1406 const_iv (LOG_DSYNC) 1398 const_iv (LOG_DSYNC)
1407 const_iv (LOG_AUTO_REMOVE) 1399 const_iv (LOG_AUTO_REMOVE)
1408 const_iv (LOG_IN_MEMORY) 1400 const_iv (LOG_IN_MEMORY)
1409 const_iv (LOG_ZERO) 1401 const_iv (LOG_ZERO)
1410#else 1402#else
1411 const_iv (DIRECT_LOG) 1403 const_iv (DIRECT_LOG)
1412 const_iv (LOG_AUTOREMOVE) 1404 const_iv (LOG_AUTOREMOVE)
1413# if DB_VERSION_MINOR >= 3 1405# if DBVER >= 403
1414 const_iv (DSYNC_LOG) 1406 const_iv (DSYNC_LOG)
1415 const_iv (LOG_INMEMORY) 1407 const_iv (LOG_INMEMORY)
1416# endif 1408# endif
1409#if DBVER >= 408
1410 const_iv (LOGVERSION_LATCHING)
1411#endif
1417#endif 1412#endif
1418 }; 1413 };
1419 1414
1415 bdb_stash = gv_stashpv ("BDB" , 1);
1416 bdb_env_stash = gv_stashpv ("BDB::Env" , 1);
1417 bdb_txn_stash = gv_stashpv ("BDB::Txn" , 1);
1418 bdb_cursor_stash = gv_stashpv ("BDB::Cursor" , 1);
1419 bdb_db_stash = gv_stashpv ("BDB::Db" , 1);
1420 bdb_sequence_stash = gv_stashpv ("BDB::Sequence", 1);
1421
1420 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; ) 1422 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ > const_iv; civ--)
1421 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv)); 1423 newCONSTSUB (bdb_stash, (char *)civ[-1].name, newSViv (civ[-1].iv));
1422 1424
1423 prepare_cb = &PL_sv_undef; 1425 prepare_cb = &PL_sv_undef;
1424 1426
1425 { 1427 {
1426 /* we currently only allow version, minor-version and patchlevel to go up to 255 */ 1428 /* we currently only allow version, minor-version and patchlevel to go up to 255 */
1427 char vstring[3] = { DB_VERSION_MAJOR, DB_VERSION_MINOR, DB_VERSION_PATCH }; 1429 char vstring[3] = { DB_VERSION_MAJOR, DB_VERSION_MINOR, DB_VERSION_PATCH };
1428 1430
1429 newCONSTSUB (stash, "VERSION_v", newSVpvn (vstring, 3)); 1431 newCONSTSUB (bdb_stash, "VERSION_v", newSVpvn (vstring, 3));
1430 } 1432 }
1431 1433
1432 newCONSTSUB (stash, "VERSION_STRING", newSVpv (DB_VERSION_STRING, 0)); 1434 newCONSTSUB (bdb_stash, "VERSION_STRING", newSVpv (DB_VERSION_STRING, 0));
1433 1435
1434 create_respipe (); 1436 create_respipe ();
1435 1437
1436 X_THREAD_ATFORK (atfork_prepare, atfork_parent, atfork_child); 1438 X_THREAD_ATFORK (atfork_prepare, atfork_parent, atfork_child);
1437 patch_errno (); 1439 patch_errno ();
1515 1517
1516int 1518int
1517poll_fileno () 1519poll_fileno ()
1518 PROTOTYPE: 1520 PROTOTYPE:
1519 CODE: 1521 CODE:
1520 RETVAL = respipe [0]; 1522 RETVAL = s_epipe_fd (&respipe);
1521 OUTPUT: 1523 OUTPUT:
1522 RETVAL 1524 RETVAL
1523 1525
1524int 1526int
1525poll_cb (...) 1527poll_cb (...)
1710 req->env = env; 1712 req->env = env;
1711 req->buf1 = strdup_ornull (file); 1713 req->buf1 = strdup_ornull (file);
1712 req->buf2 = strdup_ornull (database); 1714 req->buf2 = strdup_ornull (database);
1713 req->buf3 = strdup_ornull (newname); 1715 req->buf3 = strdup_ornull (newname);
1714 req->uint1 = flags; 1716 req->uint1 = flags;
1717 REQ_SEND;
1718}
1719
1720void
1721db_env_lsn_reset (DB_ENV *env, bdb_filename db, U32 flags = 0, SV *callback = 0)
1722 PREINIT:
1723 CALLBACK
1724 CODE:
1725{
1726 dREQ (REQ_ENV_LSN_RESET, 1);
1727 req->env = env;
1728 req->uint1 = flags;
1729 req->buf1 = strdup_ornull (db);
1715 REQ_SEND; 1730 REQ_SEND;
1716} 1731}
1717 1732
1718void 1733void
1719db_env_log_archive (DB_ENV *env, SV_mutable *listp, U32 flags = 0, SV *callback = 0) 1734db_env_log_archive (DB_ENV *env, SV_mutable *listp, U32 flags = 0, SV *callback = 0)
1771 req->uint1 = flags; 1786 req->uint1 = flags;
1772 req->sv1 = (SV *)db->app_private; 1787 req->sv1 = (SV *)db->app_private;
1773 REQ_SEND; 1788 REQ_SEND;
1774} 1789}
1775 1790
1776#if DB_VERSION_MINOR >= 4 1791#if DBVER >= 404
1777 1792
1778void 1793void
1779db_compact (DB *db, DB_TXN_ornull *txn = 0, SV *start = 0, SV *stop = 0, SV *unused1 = 0, U32 flags = DB_FREE_SPACE, SV *unused2 = 0, SV *callback = 0) 1794db_compact (DB *db, DB_TXN_ornull *txn = 0, SV *start = 0, SV *stop = 0, SV *unused1 = 0, U32 flags = DB_FREE_SPACE, SV *unused2 = 0, SV *callback = 0)
1780 PREINIT: 1795 PREINIT:
1781 CALLBACK 1796 CALLBACK
1803 req->uint1 = flags; 1818 req->uint1 = flags;
1804 REQ_SEND; 1819 REQ_SEND;
1805} 1820}
1806 1821
1807void 1822void
1823db_verify (DB *db, bdb_filename file, bdb_filename database = 0, SV *dummy = 0, U32 flags = 0, SV *callback = 0)
1824 PREINIT:
1825 CALLBACK
1826 CODE:
1827{
1828 dREQ (REQ_DB_VERIFY, 1);
1829 ptr_nuke (ST (0)); /* verify destroys the database handle, hopefully it is freed as well */
1830 req->db = db;
1831 req->buf1 = strdup (file);
1832 req->buf2 = strdup_ornull (database);
1833 req->uint1 = flags;
1834 REQ_SEND;
1835}
1836
1837void
1808db_upgrade (DB *db, bdb_filename file, U32 flags = 0, SV *callback = 0) 1838db_upgrade (DB *db, bdb_filename file, U32 flags = 0, SV *callback = 0)
1809 PREINIT: 1839 PREINIT:
1810 CALLBACK 1840 CALLBACK
1811 CODE: 1841 CODE:
1812{ 1842{
1813 dREQ (REQ_DB_SYNC, 1); 1843 dREQ (REQ_DB_UPGRADE, 1);
1814 req->db = db; 1844 req->db = db;
1815 req->buf1 = strdup (file); 1845 req->buf1 = strdup (file);
1816 req->uint1 = flags; 1846 req->uint1 = flags;
1817 REQ_SEND; 1847 REQ_SEND;
1818} 1848}
1845 sv_to_dbt (&req->dbt2, data); 1875 sv_to_dbt (&req->dbt2, data);
1846 req->uint1 = flags; 1876 req->uint1 = flags;
1847 REQ_SEND; 1877 REQ_SEND;
1848} 1878}
1849 1879
1850#if DB_VERSION_MINOR >= 6 1880#if DBVER >= 406
1851 1881
1852void 1882void
1853db_exists (DB *db, DB_TXN_ornull *txn, SV *key, U32 flags = 0, SV *callback = 0) 1883db_exists (DB *db, DB_TXN_ornull *txn, SV *key, U32 flags = 0, SV *callback = 0)
1854 PREINIT: 1884 PREINIT:
1855 CALLBACK 1885 CALLBACK
2088 req->uint1 = flags; 2118 req->uint1 = flags;
2089 REQ_SEND; 2119 REQ_SEND;
2090} 2120}
2091 2121
2092 2122
2093#if DB_VERSION_MINOR >= 3 2123#if DBVER >= 403
2094 2124
2095void 2125void
2096db_sequence_open (DB_SEQUENCE *seq, DB_TXN_ornull *txnid, SV *key, U32 flags = 0, SV *callback = 0) 2126db_sequence_open (DB_SEQUENCE *seq, DB_TXN_ornull *txnid, SV *key, U32 flags = 0, SV *callback = 0)
2097 PREINIT: 2127 PREINIT:
2098 CALLBACK 2128 CALLBACK
2192 CODE: 2222 CODE:
2193 RETVAL = env->set_flags (env, flags, onoff); 2223 RETVAL = env->set_flags (env, flags, onoff);
2194 OUTPUT: 2224 OUTPUT:
2195 RETVAL 2225 RETVAL
2196 2226
2197#if DB_VERSION_MINOR >= 7 2227#if DBVER >= 407
2198 2228
2199int set_intermediate_dir_mode (DB_ENV *env, const char *mode) 2229int set_intermediate_dir_mode (DB_ENV *env, const char *mode)
2200 CODE: 2230 CODE:
2201 RETVAL = env->set_intermediate_dir_mode (env, mode); 2231 RETVAL = env->set_intermediate_dir_mode (env, mode);
2202 OUTPUT: 2232 OUTPUT:
2289 CODE: 2319 CODE:
2290 RETVAL = env->set_lg_max (env, max); 2320 RETVAL = env->set_lg_max (env, max);
2291 OUTPUT: 2321 OUTPUT:
2292 RETVAL 2322 RETVAL
2293 2323
2294#if DB_VERSION_MINOR >= 4 2324#if DBVER >= 404
2295 2325
2296int mutex_set_max (DB_ENV *env, U32 max) 2326int mutex_set_max (DB_ENV *env, U32 max)
2297 CODE: 2327 CODE:
2298 RETVAL = env->mutex_set_max (env, max); 2328 RETVAL = env->mutex_set_max (env, max);
2299 OUTPUT: 2329 OUTPUT:
2326 if (errno) 2356 if (errno)
2327 croak ("DB_ENV->txn_begin: %s", db_strerror (errno)); 2357 croak ("DB_ENV->txn_begin: %s", db_strerror (errno));
2328 OUTPUT: 2358 OUTPUT:
2329 RETVAL 2359 RETVAL
2330 2360
2331#if DB_VERSION_MINOR >= 5 2361#if DBVER >= 405
2332 2362
2333DB_TXN * 2363DB_TXN *
2334cdsgroup_begin (DB_ENV *env) 2364cdsgroup_begin (DB_ENV *env)
2335 CODE: 2365 CODE:
2336 errno = env->cdsgroup_begin (env, &RETVAL); 2366 errno = env->cdsgroup_begin (env, &RETVAL);
2438 if (errno) 2468 if (errno)
2439 croak ("DB->cursor: %s", db_strerror (errno)); 2469 croak ("DB->cursor: %s", db_strerror (errno));
2440 OUTPUT: 2470 OUTPUT:
2441 RETVAL 2471 RETVAL
2442 2472
2443#if DB_VERSION_MINOR >= 3 2473#if DBVER >= 403
2444 2474
2445DB_SEQUENCE * 2475DB_SEQUENCE *
2446sequence (DB *db, U32 flags = 0) 2476sequence (DB *db, U32 flags = 0)
2447 CODE: 2477 CODE:
2448{ 2478{
2483DESTROY (DBC_ornuked *dbc) 2513DESTROY (DBC_ornuked *dbc)
2484 CODE: 2514 CODE:
2485 if (dbc) 2515 if (dbc)
2486 dbc->c_close (dbc); 2516 dbc->c_close (dbc);
2487 2517
2488#if DB_VERSION_MINOR >= 6 2518#if DBVER >= 406
2489 2519
2490int set_priority (DBC *dbc, int priority) 2520int set_priority (DBC *dbc, int priority)
2491 CODE: 2521 CODE:
2492 dbc->set_priority (dbc, priority); 2522 dbc->set_priority (dbc, priority);
2493 2523
2494#endif 2524#endif
2495 2525
2496#if DB_VERSION_MINOR >= 3 2526#if DBVER >= 403
2497 2527
2498MODULE = BDB PACKAGE = BDB::Sequence 2528MODULE = BDB PACKAGE = BDB::Sequence
2499 2529
2500void 2530void
2501DESTROY (DB_SEQUENCE_ornuked *seq) 2531DESTROY (DB_SEQUENCE_ornuked *seq)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines