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

Comparing BDB/BDB.xs (file contents):
Revision 1.13 by root, Sun Jul 8 11:12:12 2007 UTC vs.
Revision 1.25 by root, Mon Dec 10 04:45:54 2007 UTC

45typedef SV SV8; /* byte-sv, used for argument-checking */ 45typedef SV SV8; /* byte-sv, used for argument-checking */
46typedef char *octetstring; 46typedef char *octetstring;
47 47
48static SV *prepare_cb; 48static SV *prepare_cb;
49 49
50#if DB_VERSION_MINOR >= 6
51# define c_close close
52# define c_count count
53# define c_del del
54# define c_dup dup
55# define c_get get
56# define c_pget pget
57# define c_put put
58#endif
59
60static void
61debug_errcall (const DB_ENV *dbenv, const char *errpfx, const char *msg)
62{
63 printf ("err[%s]\n", msg);
64}
65
66static void
67debug_msgcall (const DB_ENV *dbenv, const char *msg)
68{
69 printf ("msg[%s]\n", msg);
70}
71
50static char * 72static char *
51strdup_ornull (const char *s) 73strdup_ornull (const char *s)
52{ 74{
53 return s ? strdup (s) : 0; 75 return s ? strdup (s) : 0;
54} 76}
82 REQ_QUIT, 104 REQ_QUIT,
83 REQ_ENV_OPEN, REQ_ENV_CLOSE, REQ_ENV_TXN_CHECKPOINT, REQ_ENV_LOCK_DETECT, 105 REQ_ENV_OPEN, REQ_ENV_CLOSE, REQ_ENV_TXN_CHECKPOINT, REQ_ENV_LOCK_DETECT,
84 REQ_ENV_MEMP_SYNC, REQ_ENV_MEMP_TRICKLE, 106 REQ_ENV_MEMP_SYNC, REQ_ENV_MEMP_TRICKLE,
85 REQ_DB_OPEN, REQ_DB_CLOSE, REQ_DB_COMPACT, REQ_DB_SYNC, 107 REQ_DB_OPEN, REQ_DB_CLOSE, REQ_DB_COMPACT, REQ_DB_SYNC,
86 REQ_DB_PUT, REQ_DB_GET, REQ_DB_PGET, REQ_DB_DEL, REQ_DB_KEY_RANGE, 108 REQ_DB_PUT, REQ_DB_GET, REQ_DB_PGET, REQ_DB_DEL, REQ_DB_KEY_RANGE,
87 REQ_TXN_COMMIT, REQ_TXN_ABORT, 109 REQ_TXN_COMMIT, REQ_TXN_ABORT, REQ_TXN_FINISH,
88 REQ_C_CLOSE, REQ_C_COUNT, REQ_C_PUT, REQ_C_GET, REQ_C_PGET, REQ_C_DEL, 110 REQ_C_CLOSE, REQ_C_COUNT, REQ_C_PUT, REQ_C_GET, REQ_C_PGET, REQ_C_DEL,
89 REQ_SEQ_OPEN, REQ_SEQ_CLOSE, REQ_SEQ_GET, REQ_SEQ_REMOVE, 111 REQ_SEQ_OPEN, REQ_SEQ_CLOSE, REQ_SEQ_GET, REQ_SEQ_REMOVE,
90}; 112};
91 113
92typedef struct aio_cb 114typedef struct aio_cb
169} 191}
170 192
171static volatile unsigned int nreqs, nready, npending; 193static volatile unsigned int nreqs, nready, npending;
172static volatile unsigned int max_idle = 4; 194static volatile unsigned int max_idle = 4;
173static volatile unsigned int max_outstanding = 0xffffffff; 195static volatile unsigned int max_outstanding = 0xffffffff;
174static int respipe [2], respipe_osf [2]; 196static int respipe_osf [2], respipe [2] = { -1, -1 };
175 197
176static mutex_t reslock = X_MUTEX_INIT; 198static mutex_t reslock = X_MUTEX_INIT;
177static mutex_t reqlock = X_MUTEX_INIT; 199static mutex_t reqlock = X_MUTEX_INIT;
178static cond_t reqwait = X_COND_INIT; 200static cond_t reqwait = X_COND_INIT;
179 201
304 dbt_to_sv (req->sv1, &req->dbt1); 326 dbt_to_sv (req->sv1, &req->dbt1);
305 dbt_to_sv (req->sv2, &req->dbt2); 327 dbt_to_sv (req->sv2, &req->dbt2);
306 dbt_to_sv (req->sv3, &req->dbt3); 328 dbt_to_sv (req->sv3, &req->dbt3);
307 break; 329 break;
308 330
331 case REQ_DB_PUT:
332 case REQ_C_PUT:
333 dbt_to_sv (0, &req->dbt1);
334 dbt_to_sv (0, &req->dbt2);
335 break;
336
309 case REQ_DB_KEY_RANGE: 337 case REQ_DB_KEY_RANGE:
310 { 338 {
311 AV *av = newAV (); 339 AV *av = newAV ();
312 340
313 av_push (av, newSVnv (req->key_range.less)); 341 av_push (av, newSVnv (req->key_range.less));
322 350
323 case REQ_SEQ_GET: 351 case REQ_SEQ_GET:
324 SvREADONLY_off (req->sv1); 352 SvREADONLY_off (req->sv1);
325 353
326 if (sizeof (IV) > 4) 354 if (sizeof (IV) > 4)
327 sv_setiv_mg (req->sv1, req->seq_t); 355 sv_setiv_mg (req->sv1, (IV)req->seq_t);
328 else 356 else
329 sv_setnv_mg (req->sv1, req->seq_t); 357 sv_setnv_mg (req->sv1, (NV)req->seq_t);
330 358
331 SvREFCNT_dec (req->sv1); 359 SvREFCNT_dec (req->sv1);
332 break; 360 break;
333 } 361 }
334 362
357#else 385#else
358# define TO_SOCKET(x) (x) 386# define TO_SOCKET(x) (x)
359#endif 387#endif
360 388
361static void 389static void
362create_pipe (int fd[2]) 390create_respipe ()
363{ 391{
364#ifdef _WIN32 392#ifdef _WIN32
365 int arg = 1; 393 int arg; /* argg */
394#endif
395 int old_readfd = respipe [0];
396
397 if (respipe [1] >= 0)
398 respipe_close (TO_SOCKET (respipe [1]));
399
400#ifdef _WIN32
366 if (PerlSock_socketpair (AF_UNIX, SOCK_STREAM, 0, fd) 401 if (PerlSock_socketpair (AF_UNIX, SOCK_STREAM, 0, respipe))
367 || ioctlsocket (TO_SOCKET (fd [0]), FIONBIO, &arg)
368 || ioctlsocket (TO_SOCKET (fd [1]), FIONBIO, &arg))
369#else 402#else
370 if (pipe (fd) 403 if (pipe (respipe))
371 || fcntl (fd [0], F_SETFL, O_NONBLOCK)
372 || fcntl (fd [1], F_SETFL, O_NONBLOCK))
373#endif 404#endif
374 croak ("unable to initialize result pipe"); 405 croak ("unable to initialize result pipe");
406
407 if (old_readfd >= 0)
408 {
409 if (dup2 (TO_SOCKET (respipe [0]), TO_SOCKET (old_readfd)) < 0)
410 croak ("unable to initialize result pipe(2)");
411
412 respipe_close (respipe [0]);
413 respipe [0] = old_readfd;
414 }
415
416#ifdef _WIN32
417 arg = 1;
418 if (ioctlsocket (TO_SOCKET (respipe [0]), FIONBIO, &arg)
419 || ioctlsocket (TO_SOCKET (respipe [1]), FIONBIO, &arg))
420#else
421 if (fcntl (respipe [0], F_SETFL, O_NONBLOCK)
422 || fcntl (respipe [1], F_SETFL, O_NONBLOCK))
423#endif
424 croak ("unable to initialize result pipe(3)");
375 425
376 respipe_osf [0] = TO_SOCKET (respipe [0]); 426 respipe_osf [0] = TO_SOCKET (respipe [0]);
377 respipe_osf [1] = TO_SOCKET (respipe [1]); 427 respipe_osf [1] = TO_SOCKET (respipe [1]);
378} 428}
379 429
646 X_UNLOCK (reqlock); 696 X_UNLOCK (reqlock);
647 697
648 switch (req->type) 698 switch (req->type)
649 { 699 {
650 case REQ_QUIT: 700 case REQ_QUIT:
701 req->result = ENOSYS;
651 goto quit; 702 goto quit;
652 703
653 case REQ_ENV_OPEN: 704 case REQ_ENV_OPEN:
654 req->result = req->env->open (req->env, req->buf1, req->uint1, req->int1); 705 req->result = req->env->open (req->env, req->buf1, req->uint1, req->int1);
655 break; 706 break;
714 req->result = req->txn->commit (req->txn, req->uint1); 765 req->result = req->txn->commit (req->txn, req->uint1);
715 break; 766 break;
716 767
717 case REQ_TXN_ABORT: 768 case REQ_TXN_ABORT:
718 req->result = req->txn->abort (req->txn); 769 req->result = req->txn->abort (req->txn);
770 break;
771
772 case REQ_TXN_FINISH:
773 if (req->txn->flags & TXN_DEADLOCK)
774 {
775 req->result = req->txn->abort (req->txn);
776 if (!req->result)
777 req->result = DB_LOCK_DEADLOCK;
778 }
779 else
780 req->result = req->txn->commit (req->txn, req->uint1);
719 break; 781 break;
720 782
721 case REQ_C_CLOSE: 783 case REQ_C_CLOSE:
722 req->result = req->dbc->c_close (req->dbc); 784 req->result = req->dbc->c_close (req->dbc);
723 break; 785 break;
765 default: 827 default:
766 req->result = ENOSYS; 828 req->result = ENOSYS;
767 break; 829 break;
768 } 830 }
769 831
832 if (req->txn && (req->result > 0 || req->result == DB_LOCK_NOTGRANTED))
833 req->txn->flags |= TXN_DEADLOCK;
834
770 X_LOCK (reslock); 835 X_LOCK (reslock);
771 836
772 ++npending; 837 ++npending;
773 838
774 if (!reqq_push (&res_queue, req)) 839 if (!reqq_push (&res_queue, req))
830 idle = 0; 895 idle = 0;
831 nreqs = 0; 896 nreqs = 0;
832 nready = 0; 897 nready = 0;
833 npending = 0; 898 npending = 0;
834 899
835 respipe_close (respipe [0]);
836 respipe_close (respipe [1]);
837
838 create_pipe (respipe); 900 create_respipe ();
839 901
840 atfork_parent (); 902 atfork_parent ();
841} 903}
842 904
843#define dREQ(reqtype) \ 905#define dREQ(reqtype) \
907 const_iv (INIT_TXN) 969 const_iv (INIT_TXN)
908 const_iv (RECOVER) 970 const_iv (RECOVER)
909 const_iv (INIT_TXN) 971 const_iv (INIT_TXN)
910 const_iv (RECOVER_FATAL) 972 const_iv (RECOVER_FATAL)
911 const_iv (CREATE) 973 const_iv (CREATE)
974 const_iv (RDONLY)
912 const_iv (USE_ENVIRON) 975 const_iv (USE_ENVIRON)
913 const_iv (USE_ENVIRON_ROOT) 976 const_iv (USE_ENVIRON_ROOT)
914 const_iv (LOCKDOWN) 977 const_iv (LOCKDOWN)
915 const_iv (PRIVATE) 978 const_iv (PRIVATE)
916 const_iv (REGISTER) 979 const_iv (REGISTER)
929 const_iv (OVERWRITE) 992 const_iv (OVERWRITE)
930 const_iv (PANIC_ENVIRONMENT) 993 const_iv (PANIC_ENVIRONMENT)
931 const_iv (REGION_INIT) 994 const_iv (REGION_INIT)
932 const_iv (TIME_NOTGRANTED) 995 const_iv (TIME_NOTGRANTED)
933 const_iv (TXN_NOSYNC) 996 const_iv (TXN_NOSYNC)
997 const_iv (TXN_NOT_DURABLE)
934 const_iv (TXN_WRITE_NOSYNC) 998 const_iv (TXN_WRITE_NOSYNC)
935 const_iv (WRITECURSOR) 999 const_iv (WRITECURSOR)
936 const_iv (YIELDCPU) 1000 const_iv (YIELDCPU)
937 const_iv (ENCRYPT_AES) 1001 const_iv (ENCRYPT_AES)
938 const_iv (XA_CREATE) 1002 const_iv (XA_CREATE)
946 const_iv (READ_UNCOMMITTED) 1010 const_iv (READ_UNCOMMITTED)
947 const_iv (TRUNCATE) 1011 const_iv (TRUNCATE)
948 const_iv (NOSYNC) 1012 const_iv (NOSYNC)
949 const_iv (CHKSUM) 1013 const_iv (CHKSUM)
950 const_iv (ENCRYPT) 1014 const_iv (ENCRYPT)
951 const_iv (TXN_NOT_DURABLE)
952 const_iv (DUP) 1015 const_iv (DUP)
953 const_iv (DUPSORT) 1016 const_iv (DUPSORT)
954 const_iv (RECNUM) 1017 const_iv (RECNUM)
955 const_iv (RENUMBER) 1018 const_iv (RENUMBER)
956 const_iv (REVSPLITOFF) 1019 const_iv (REVSPLITOFF)
1018 const_iv (LOCK_YOUNGEST) 1081 const_iv (LOCK_YOUNGEST)
1019 1082
1020 const_iv (SEQ_DEC) 1083 const_iv (SEQ_DEC)
1021 const_iv (SEQ_INC) 1084 const_iv (SEQ_INC)
1022 const_iv (SEQ_WRAP) 1085 const_iv (SEQ_WRAP)
1086
1087 const_iv (BUFFER_SMALL)
1088 const_iv (DONOTINDEX)
1089 const_iv (KEYEMPTY )
1090 const_iv (KEYEXIST )
1091 const_iv (LOCK_DEADLOCK)
1092 const_iv (LOCK_NOTGRANTED)
1093 const_iv (LOG_BUFFER_FULL)
1094 const_iv (NOSERVER)
1095 const_iv (NOSERVER_HOME)
1096 const_iv (NOSERVER_ID)
1097 const_iv (NOTFOUND)
1098 const_iv (PAGE_NOTFOUND)
1099 const_iv (REP_DUPMASTER)
1100 const_iv (REP_HANDLE_DEAD)
1101 const_iv (REP_HOLDELECTION)
1102 const_iv (REP_IGNORE)
1103 const_iv (REP_ISPERM)
1104 const_iv (REP_JOIN_FAILURE)
1105 const_iv (REP_LOCKOUT)
1106 const_iv (REP_NEWMASTER)
1107 const_iv (REP_NEWSITE)
1108 const_iv (REP_NOTPERM)
1109 const_iv (REP_UNAVAIL)
1110 const_iv (RUNRECOVERY)
1111 const_iv (SECONDARY_BAD)
1112 const_iv (VERIFY_BAD)
1113 const_iv (VERSION_MISMATCH)
1114
1115 const_iv (VERB_DEADLOCK)
1116 const_iv (VERB_RECOVERY)
1117 const_iv (VERB_REGISTER)
1118 const_iv (VERB_REPLICATION)
1119 const_iv (VERB_WAITSFOR)
1120
1121 const_iv (VERSION_MAJOR)
1122 const_iv (VERSION_MINOR)
1123 const_iv (VERSION_PATCH)
1023#if DB_VERSION_MINOR >= 5 1124#if DB_VERSION_MINOR >= 5
1024 const_iv (MULTIVERSION) 1125 const_iv (MULTIVERSION)
1025 const_iv (TXN_SNAPSHOT) 1126 const_iv (TXN_SNAPSHOT)
1026#endif 1127#endif
1128#if DB_VERSION_MINOR >= 6
1129 const_iv (PREV_DUP)
1130# if 0
1131 const_iv (PRIORITY_UNCHANGED)
1132 const_iv (PRIORITY_VERY_LOW)
1133 const_iv (PRIORITY_LOW)
1134 const_iv (PRIORITY_DEFAULT)
1135 const_iv (PRIORITY_HIGH)
1136 const_iv (PRIORITY_VERY_HIGH)
1137# endif
1138#endif
1027 }; 1139 };
1028 1140
1029 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; ) 1141 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; )
1030 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv)); 1142 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv));
1031 1143
1144 newCONSTSUB (stash, "VERSION", newSVnv (DB_VERSION_MAJOR + DB_VERSION_MINOR * .1));
1145 newCONSTSUB (stash, "VERSION_STRING", newSVpv (DB_VERSION_STRING, 0));
1146
1032 create_pipe (respipe); 1147 create_respipe ();
1033 1148
1034 X_THREAD_ATFORK (atfork_prepare, atfork_parent, atfork_child); 1149 X_THREAD_ATFORK (atfork_prepare, atfork_parent, atfork_child);
1035#ifdef _WIN32 1150#ifdef _WIN32
1036 X_MUTEX_CHECK (wrklock); 1151 X_MUTEX_CHECK (wrklock);
1037 X_MUTEX_CHECK (reslock); 1152 X_MUTEX_CHECK (reslock);
1178 PROTOTYPE: & 1293 PROTOTYPE: &
1179 CODE: 1294 CODE:
1180 SvREFCNT_dec (prepare_cb); 1295 SvREFCNT_dec (prepare_cb);
1181 prepare_cb = newSVsv (cb); 1296 prepare_cb = newSVsv (cb);
1182 1297
1298char *
1299strerror (int errorno = errno)
1300 PROTOTYPE: ;$
1301 CODE:
1302 RETVAL = db_strerror (errorno);
1303 OUTPUT:
1304 RETVAL
1183 1305
1184DB_ENV * 1306DB_ENV *
1185db_env_create (U32 env_flags = 0) 1307db_env_create (U32 env_flags = 0)
1186 CODE: 1308 CODE:
1187{ 1309{
1188 errno = db_env_create (&RETVAL, env_flags); 1310 errno = db_env_create (&RETVAL, env_flags);
1189 if (errno) 1311 if (errno)
1190 croak ("db_env_create: %s", db_strerror (errno)); 1312 croak ("db_env_create: %s", db_strerror (errno));
1313
1314 if (0)
1315 {
1316 RETVAL->set_errcall (RETVAL, debug_errcall);
1317 RETVAL->set_msgcall (RETVAL, debug_msgcall);
1318 }
1191} 1319}
1192 OUTPUT: 1320 OUTPUT:
1193 RETVAL 1321 RETVAL
1194 1322
1195void 1323void
1196db_env_open (DB_ENV *env, octetstring db_home, U32 open_flags, int mode, SV *callback = &PL_sv_undef) 1324db_env_open (DB_ENV *env, octetstring db_home, U32 open_flags, int mode, SV *callback = &PL_sv_undef)
1197 CODE: 1325 CODE:
1198{ 1326{
1199 dREQ (REQ_ENV_OPEN); 1327 dREQ (REQ_ENV_OPEN);
1200 1328
1201 env->set_thread_count (env, get_nthreads ()); 1329 env->set_thread_count (env, wanted + 2);
1202 1330
1203 req->env = env; 1331 req->env = env;
1204 req->uint1 = open_flags | DB_THREAD; 1332 req->uint1 = open_flags | DB_THREAD;
1205 req->int1 = mode; 1333 req->int1 = mode;
1206 req->buf1 = strdup_ornull (db_home); 1334 req->buf1 = strdup_ornull (db_home);
1412 REQ_SEND; 1540 REQ_SEND;
1413 ptr_nuke (ST (0)); 1541 ptr_nuke (ST (0));
1414} 1542}
1415 1543
1416void 1544void
1545db_txn_finish (DB_TXN *txn, U32 flags = 0, SV *callback = &PL_sv_undef)
1546 CODE:
1547{
1548 dREQ (REQ_TXN_FINISH);
1549 req->txn = txn;
1550 req->uint1 = flags;
1551 REQ_SEND;
1552 ptr_nuke (ST (0));
1553}
1554
1555void
1417db_c_close (DBC *dbc, SV *callback = &PL_sv_undef) 1556db_c_close (DBC *dbc, SV *callback = &PL_sv_undef)
1418 CODE: 1557 CODE:
1419{ 1558{
1420 dREQ (REQ_C_CLOSE); 1559 dREQ (REQ_C_CLOSE);
1421 req->dbc = dbc; 1560 req->dbc = dbc;
1593 CODE: 1732 CODE:
1594 RETVAL = env->set_cachesize (env, gbytes, bytes, ncache); 1733 RETVAL = env->set_cachesize (env, gbytes, bytes, ncache);
1595 OUTPUT: 1734 OUTPUT:
1596 RETVAL 1735 RETVAL
1597 1736
1598int set_flags (DB_ENV *env, U32 flags, int onoff) 1737int set_flags (DB_ENV *env, U32 flags, int onoff = 1)
1599 CODE: 1738 CODE:
1600 RETVAL = env->set_flags (env, flags, onoff); 1739 RETVAL = env->set_flags (env, flags, onoff);
1601 OUTPUT: 1740 OUTPUT:
1602 RETVAL 1741 RETVAL
1603 1742
1743void set_errfile (DB_ENV *env, FILE *errfile = 0)
1744 CODE:
1745 env->set_errfile (env, errfile);
1746
1747void set_msgfile (DB_ENV *env, FILE *msgfile = 0)
1748 CODE:
1749 env->set_msgfile (env, msgfile);
1750
1751int set_verbose (DB_ENV *env, U32 which = -1, int onoff = 1)
1752 CODE:
1753 RETVAL = env->set_verbose (env, which, onoff);
1754 OUTPUT:
1755 RETVAL
1756
1604int set_encrypt (DB_ENV *env, const char *password, U32 flags = 0) 1757int set_encrypt (DB_ENV *env, const char *password, U32 flags = 0)
1605 CODE: 1758 CODE:
1606 RETVAL = env->set_encrypt (env, password, flags); 1759 RETVAL = env->set_encrypt (env, password, flags);
1607 OUTPUT: 1760 OUTPUT:
1608 RETVAL 1761 RETVAL
1609 1762
1610int set_timeout (DB_ENV *env, NV timeout, U32 flags) 1763int set_timeout (DB_ENV *env, NV timeout, U32 flags = DB_SET_TXN_TIMEOUT)
1611 CODE: 1764 CODE:
1612 RETVAL = env->set_timeout (env, timeout * 1000000, flags); 1765 RETVAL = env->set_timeout (env, timeout * 1000000, flags);
1613 OUTPUT: 1766 OUTPUT:
1614 RETVAL 1767 RETVAL
1615 1768
1663 1816
1664int set_lg_max (DB_ENV *env, U32 max) 1817int set_lg_max (DB_ENV *env, U32 max)
1665 CODE: 1818 CODE:
1666 RETVAL = env->set_lg_max (env, max); 1819 RETVAL = env->set_lg_max (env, max);
1667 OUTPUT: 1820 OUTPUT:
1821 RETVAL
1822
1823int mutex_set_max (DB_ENV *env, U32 max)
1824 CODE:
1825 RETVAL = env->mutex_set_max (env, max);
1826 OUTPUT:
1827 RETVAL
1828
1829int mutex_set_increment (DB_ENV *env, U32 increment)
1830 CODE:
1831 RETVAL = env->mutex_set_increment (env, increment);
1832 OUTPUT:
1833 RETVAL
1834
1835int mutex_set_tas_spins (DB_ENV *env, U32 tas_spins)
1836 CODE:
1837 RETVAL = env->mutex_set_tas_spins (env, tas_spins);
1838 OUTPUT:
1839 RETVAL
1840
1841int mutex_set_align (DB_ENV *env, U32 align)
1842 CODE:
1843 RETVAL = env->mutex_set_align (env, align);
1844 OUTPUT:
1668 RETVAL 1845 RETVAL
1669 1846
1670DB_TXN * 1847DB_TXN *
1671txn_begin (DB_ENV *env, DB_TXN_ornull *parent = 0, U32 flags = 0) 1848txn_begin (DB_ENV *env, DB_TXN_ornull *parent = 0, U32 flags = 0)
1672 CODE: 1849 CODE:
1692 CODE: 1869 CODE:
1693 RETVAL = db->set_cachesize (db, gbytes, bytes, ncache); 1870 RETVAL = db->set_cachesize (db, gbytes, bytes, ncache);
1694 OUTPUT: 1871 OUTPUT:
1695 RETVAL 1872 RETVAL
1696 1873
1697int set_flags (DB *db, U32 flags); 1874int set_flags (DB *db, U32 flags)
1698 CODE: 1875 CODE:
1699 RETVAL = db->set_flags (db, flags); 1876 RETVAL = db->set_flags (db, flags);
1700 OUTPUT: 1877 OUTPUT:
1701 RETVAL 1878 RETVAL
1702 1879
1716 CODE: 1893 CODE:
1717 RETVAL = db->set_bt_minkey (db, minkey); 1894 RETVAL = db->set_bt_minkey (db, minkey);
1718 OUTPUT: 1895 OUTPUT:
1719 RETVAL 1896 RETVAL
1720 1897
1721int set_re_delim(DB *db, int delim); 1898int set_re_delim (DB *db, int delim)
1722 CODE: 1899 CODE:
1723 RETVAL = db->set_re_delim (db, delim); 1900 RETVAL = db->set_re_delim (db, delim);
1724 OUTPUT: 1901 OUTPUT:
1725 RETVAL 1902 RETVAL
1726 1903
1787DESTROY (DB_TXN_ornull *txn) 1964DESTROY (DB_TXN_ornull *txn)
1788 CODE: 1965 CODE:
1789 if (txn) 1966 if (txn)
1790 txn->abort (txn); 1967 txn->abort (txn);
1791 1968
1792int set_timeout (DB_TXN *txn, NV timeout, U32 flags) 1969int set_timeout (DB_TXN *txn, NV timeout, U32 flags = DB_SET_TXN_TIMEOUT)
1793 CODE: 1970 CODE:
1794 RETVAL = txn->set_timeout (txn, timeout * 1000000, flags); 1971 RETVAL = txn->set_timeout (txn, timeout * 1000000, flags);
1972 OUTPUT:
1973 RETVAL
1974
1975int failed (DB_TXN *txn)
1976 CODE:
1977 RETVAL = !!(txn->flags & TXN_DEADLOCK);
1795 OUTPUT: 1978 OUTPUT:
1796 RETVAL 1979 RETVAL
1797 1980
1798 1981
1799MODULE = BDB PACKAGE = BDB::Cursor 1982MODULE = BDB PACKAGE = BDB::Cursor

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines