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

Comparing BDB/BDB.xs (file contents):
Revision 1.38 by root, Wed May 21 19:13:43 2008 UTC vs.
Revision 1.39 by root, Mon Jul 7 22:11:04 2008 UTC

137} 137}
138 138
139enum { 139enum {
140 REQ_QUIT, 140 REQ_QUIT,
141 REQ_ENV_OPEN, REQ_ENV_CLOSE, REQ_ENV_TXN_CHECKPOINT, REQ_ENV_LOCK_DETECT, 141 REQ_ENV_OPEN, REQ_ENV_CLOSE, REQ_ENV_TXN_CHECKPOINT, REQ_ENV_LOCK_DETECT,
142 REQ_ENV_MEMP_SYNC, REQ_ENV_MEMP_TRICKLE, 142 REQ_ENV_MEMP_SYNC, REQ_ENV_MEMP_TRICKLE, REQ_ENV_DBREMOVE, REQ_ENV_DBRENAME,
143 REQ_DB_OPEN, REQ_DB_CLOSE, REQ_DB_COMPACT, REQ_DB_SYNC, REQ_DB_UPGRADE, 143 REQ_DB_OPEN, REQ_DB_CLOSE, REQ_DB_COMPACT, REQ_DB_SYNC, REQ_DB_UPGRADE,
144 REQ_DB_PUT, REQ_DB_GET, REQ_DB_PGET, REQ_DB_DEL, REQ_DB_KEY_RANGE, 144 REQ_DB_PUT, REQ_DB_GET, REQ_DB_PGET, REQ_DB_DEL, REQ_DB_KEY_RANGE,
145 REQ_TXN_COMMIT, REQ_TXN_ABORT, REQ_TXN_FINISH, 145 REQ_TXN_COMMIT, REQ_TXN_ABORT, REQ_TXN_FINISH,
146 REQ_C_CLOSE, REQ_C_COUNT, REQ_C_PUT, REQ_C_GET, REQ_C_PGET, REQ_C_DEL, 146 REQ_C_CLOSE, REQ_C_COUNT, REQ_C_PUT, REQ_C_GET, REQ_C_PGET, REQ_C_DEL,
147 REQ_SEQ_OPEN, REQ_SEQ_CLOSE, REQ_SEQ_GET, REQ_SEQ_REMOVE, 147 REQ_SEQ_OPEN, REQ_SEQ_CLOSE, REQ_SEQ_GET, REQ_SEQ_REMOVE,
159 DBC *dbc; 159 DBC *dbc;
160 160
161 UV uv1; 161 UV uv1;
162 int int1, int2; 162 int int1, int2;
163 U32 uint1, uint2; 163 U32 uint1, uint2;
164 char *buf1, *buf2; 164 char *buf1, *buf2, *buf3;
165 SV *sv1, *sv2, *sv3; 165 SV *sv1, *sv2, *sv3;
166 166
167 DBT dbt1, dbt2, dbt3; 167 DBT dbt1, dbt2, dbt3;
168 DB_KEY_RANGE key_range; 168 DB_KEY_RANGE key_range;
169 DB_SEQUENCE *seq; 169 DB_SEQUENCE *seq;
413 413
414static void req_free (bdb_req req) 414static void req_free (bdb_req req)
415{ 415{
416 free (req->buf1); 416 free (req->buf1);
417 free (req->buf2); 417 free (req->buf2);
418 free (req->buf3);
418 Safefree (req); 419 Safefree (req);
419} 420}
420 421
421#ifdef USE_SOCKETS_AS_HANDLES 422#ifdef USE_SOCKETS_AS_HANDLES
422# define TO_SOCKET(x) (win32_get_osfhandle (x)) 423# define TO_SOCKET(x) (win32_get_osfhandle (x))
770 req->result = req->env->memp_sync (req->env, 0); 771 req->result = req->env->memp_sync (req->env, 0);
771 break; 772 break;
772 773
773 case REQ_ENV_MEMP_TRICKLE: 774 case REQ_ENV_MEMP_TRICKLE:
774 req->result = req->env->memp_trickle (req->env, req->int1, &req->int2); 775 req->result = req->env->memp_trickle (req->env, req->int1, &req->int2);
776 break;
777
778 case REQ_ENV_DBREMOVE:
779 req->result = req->env->dbremove (req->env, req->txn, req->buf1, req->buf2, req->uint1);
780 break;
781
782 case REQ_ENV_DBRENAME:
783 req->result = req->env->dbrename (req->env, req->txn, req->buf1, req->buf2, req->buf3, req->uint1);
775 break; 784 break;
776 785
777 case REQ_DB_OPEN: 786 case REQ_DB_OPEN:
778 req->result = req->db->open (req->db, req->txn, req->buf1, req->buf2, req->int1, req->uint1, req->int2); 787 req->result = req->db->open (req->db, req->txn, req->buf1, req->buf2, req->int1, req->uint1, req->int2);
779 break; 788 break;
1071 const_iv (REGISTER) 1080 const_iv (REGISTER)
1072 const_iv (SYSTEM_MEM) 1081 const_iv (SYSTEM_MEM)
1073 const_iv (AUTO_COMMIT) 1082 const_iv (AUTO_COMMIT)
1074 const_iv (CDB_ALLDB) 1083 const_iv (CDB_ALLDB)
1075 const_iv (DIRECT_DB) 1084 const_iv (DIRECT_DB)
1076 const_iv (DIRECT_LOG)
1077 const_iv (DSYNC_DB) 1085 const_iv (DSYNC_DB)
1078 const_iv (DSYNC_LOG)
1079 const_iv (LOG_AUTOREMOVE)
1080 const_iv (LOG_INMEMORY)
1081 const_iv (NOLOCKING) 1086 const_iv (NOLOCKING)
1082 const_iv (NOMMAP) 1087 const_iv (NOMMAP)
1083 const_iv (NOPANIC) 1088 const_iv (NOPANIC)
1084 const_iv (OVERWRITE) 1089 const_iv (OVERWRITE)
1085 const_iv (PANIC_ENVIRONMENT) 1090 const_iv (PANIC_ENVIRONMENT)
1224 const_iv (PRIORITY_LOW) 1229 const_iv (PRIORITY_LOW)
1225 const_iv (PRIORITY_DEFAULT) 1230 const_iv (PRIORITY_DEFAULT)
1226 const_iv (PRIORITY_HIGH) 1231 const_iv (PRIORITY_HIGH)
1227 const_iv (PRIORITY_VERY_HIGH) 1232 const_iv (PRIORITY_VERY_HIGH)
1228#endif 1233#endif
1234#if DB_VERSION_MINOR >= 7
1235 const_iv (LOG_DIRECT)
1236 const_iv (LOG_DSYNC)
1237 const_iv (LOG_AUTO_REMOVE)
1238 const_iv (LOG_IN_MEMORY)
1239 const_iv (LOG_ZERO)
1240#else
1241 const_iv (DIRECT_LOG)
1242 const_iv (DSYNC_LOG)
1243 const_iv (LOG_AUTOREMOVE)
1244 const_iv (LOG_INMEMORY)
1245#endif
1229 }; 1246 };
1230 1247
1231 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; ) 1248 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; )
1232 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv)); 1249 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv));
1233 1250
1473 req->env = env; 1490 req->env = env;
1474 req->int1 = percent; 1491 req->int1 = percent;
1475 REQ_SEND; 1492 REQ_SEND;
1476} 1493}
1477 1494
1495void
1496db_env_dbremove (DB_ENV *env, DB_TXN_ornull *txnid, bdb_filename file, bdb_filename database, U32 flags = 0, SV *callback = &PL_sv_undef)
1497 CODE:
1498{
1499 dREQ (REQ_ENV_DBREMOVE);
1500 req->env = env;
1501 req->buf1 = strdup_ornull (file);
1502 req->buf2 = strdup_ornull (database);
1503 req->uint1 = flags;
1504 REQ_SEND;
1505}
1506
1507void
1508db_env_dbrename (DB_ENV *env, DB_TXN_ornull *txnid, bdb_filename file, bdb_filename database, bdb_filename newname, U32 flags = 0, SV *callback = &PL_sv_undef)
1509 CODE:
1510{
1511 dREQ (REQ_ENV_DBRENAME);
1512 req->env = env;
1513 req->buf1 = strdup_ornull (file);
1514 req->buf2 = strdup_ornull (database);
1515 req->buf3 = strdup_ornull (newname);
1516 req->uint1 = flags;
1517 REQ_SEND;
1518}
1478 1519
1479DB * 1520DB *
1480db_create (DB_ENV *env = 0, U32 flags = 0) 1521db_create (DB_ENV *env = 0, U32 flags = 0)
1481 CODE: 1522 CODE:
1482{ 1523{
1840 CODE: 1881 CODE:
1841 RETVAL = env->set_flags (env, flags, onoff); 1882 RETVAL = env->set_flags (env, flags, onoff);
1842 OUTPUT: 1883 OUTPUT:
1843 RETVAL 1884 RETVAL
1844 1885
1886#if DB_VERSION_MINOR >= 7
1887
1888int set_intermediate_dir_mode (DB_ENV *env, const char *mode)
1889 CODE:
1890 RETVAL = env->set_intermediate_dir_mode (env, mode);
1891 OUTPUT:
1892 RETVAL
1893
1894int log_set_config (DB_ENV *env, U32 flags, int onoff = 1)
1895 CODE:
1896 RETVAL = env->log_set_config (env, flags, onoff);
1897 OUTPUT:
1898 RETVAL
1899
1900#endif
1901
1902
1845void set_errfile (DB_ENV *env, FILE *errfile = 0) 1903void set_errfile (DB_ENV *env, FILE *errfile = 0)
1846 CODE: 1904 CODE:
1847 env->set_errfile (env, errfile); 1905 env->set_errfile (env, errfile);
1848 1906
1849void set_msgfile (DB_ENV *env, FILE *msgfile = 0) 1907void set_msgfile (DB_ENV *env, FILE *msgfile = 0)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines