db.h
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:50k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* DO NOT EDIT: automatically built by dist/s_vxworks. */
  2. /*-
  3.  * See the file LICENSE for redistribution information.
  4.  *
  5.  * Copyright (c) 1996, 1997, 1998, 1999, 2000
  6.  * Sleepycat Software.  All rights reserved.
  7.  *
  8.  * $Id: db.src,v 11.121 2001/01/10 15:43:08 sue Exp $
  9.  */
  10. #ifndef _DB_H_
  11. #define _DB_H_
  12. #ifndef __NO_SYSTEM_INCLUDES
  13. #include <sys/types.h>
  14. #include <stdio.h>
  15. #endif
  16. #if defined(__cplusplus)
  17. extern "C" {
  18. #endif
  19. /*
  20.  * XXX
  21.  * Handle function prototypes and the keyword "const".  This steps on name
  22.  * space that DB doesn't control, but all of the other solutions are worse.
  23.  *
  24.  * XXX
  25.  * While Microsoft's compiler is ANSI C compliant, it doesn't have _STDC_
  26.  * defined by default, you specify a command line flag or #pragma to turn
  27.  * it on.  Don't do that, however, because some of Microsoft's own header
  28.  * files won't compile.
  29.  */
  30. #undef __P
  31. #if defined(__STDC__) || defined(__cplusplus) || defined(_MSC_VER)
  32. #define __P(protos) protos /* ANSI C prototypes */
  33. #else
  34. #define const
  35. #define __P(protos) () /* K&R C preprocessor */
  36. #endif
  37. /*
  38.  * !!!
  39.  * DB needs basic information about specifically sized types.  If they're
  40.  * not provided by the system, typedef them here.
  41.  *
  42.  * We protect them against multiple inclusion using __BIT_TYPES_DEFINED__,
  43.  * as does BIND and Kerberos, since we don't know for sure what #include
  44.  * files the user is using.
  45.  *
  46.  * !!!
  47.  * We also provide the standard u_int, u_long etc., if they're not provided
  48.  * by the system.
  49.  */
  50. #ifndef __BIT_TYPES_DEFINED__
  51. #define __BIT_TYPES_DEFINED__
  52. typedef unsigned char u_int8_t;
  53. typedef unsigned short u_int16_t;
  54. typedef unsigned int u_int32_t;
  55. #endif
  56. #define DB_VERSION_MAJOR 3
  57. #define DB_VERSION_MINOR 2
  58. #define DB_VERSION_PATCH 9
  59. #define DB_VERSION_STRING "Sleepycat Software: Berkeley DB 3.2.9a: (March 16, 2001)"
  60. typedef u_int32_t db_pgno_t; /* Page number type. */
  61. typedef u_int16_t db_indx_t; /* Page offset type. */
  62. #define DB_MAX_PAGES 0xffffffff /* >= # of pages in a file */
  63. typedef u_int32_t db_recno_t; /* Record number type. */
  64. #define DB_MAX_RECORDS 0xffffffff /* >= # of records in a tree */
  65. /* Forward structure declarations, so applications get type checking. */
  66. struct __db; typedef struct __db DB;
  67. #ifdef DB_DBM_HSEARCH
  68. typedef struct __db DBM;
  69. #endif
  70. struct __db_bt_stat; typedef struct __db_bt_stat DB_BTREE_STAT;
  71. struct __db_dbt; typedef struct __db_dbt DBT;
  72. struct __db_env; typedef struct __db_env DB_ENV;
  73. struct __db_h_stat; typedef struct __db_h_stat DB_HASH_STAT;
  74. struct __db_ilock; typedef struct __db_ilock DB_LOCK_ILOCK;
  75. struct __db_lock_stat; typedef struct __db_lock_stat DB_LOCK_STAT;
  76. struct __db_lock_u; typedef struct __db_lock_u DB_LOCK;
  77. struct __db_lockreq; typedef struct __db_lockreq DB_LOCKREQ;
  78. struct __db_log_stat; typedef struct __db_log_stat DB_LOG_STAT;
  79. struct __db_lsn; typedef struct __db_lsn DB_LSN;
  80. struct __db_mpool_finfo;typedef struct __db_mpool_finfo DB_MPOOL_FINFO;
  81. struct __db_mpool_fstat;typedef struct __db_mpool_fstat DB_MPOOL_FSTAT;
  82. struct __db_mpool_stat; typedef struct __db_mpool_stat DB_MPOOL_STAT;
  83. struct __db_mpoolfile; typedef struct __db_mpoolfile DB_MPOOLFILE;
  84. struct __db_qam_stat; typedef struct __db_qam_stat DB_QUEUE_STAT;
  85. struct __db_txn; typedef struct __db_txn DB_TXN;
  86. struct __db_txn_active; typedef struct __db_txn_active DB_TXN_ACTIVE;
  87. struct __db_txn_stat; typedef struct __db_txn_stat DB_TXN_STAT;
  88. struct __dbc; typedef struct __dbc DBC;
  89. struct __dbc_internal; typedef struct __dbc_internal DBC_INTERNAL;
  90. struct __fh_t; typedef struct __fh_t DB_FH;
  91. struct __key_range; typedef struct __key_range DB_KEY_RANGE;
  92. /* Key/data structure -- a Data-Base Thang. */
  93. struct __db_dbt {
  94. /*
  95.  * data/size must be fields 1 and 2 for DB 1.85 compatibility.
  96.  */
  97. void  *data; /* Key/data */
  98. u_int32_t size; /* key/data length */
  99. u_int32_t ulen; /* RO: length of user buffer. */
  100. u_int32_t dlen; /* RO: get/put record length. */
  101. u_int32_t doff; /* RO: get/put record offset. */
  102. #define DB_DBT_ISSET 0x001 /* Lower level calls set value. */
  103. #define DB_DBT_MALLOC 0x002 /* Return in malloc'd memory. */
  104. #define DB_DBT_PARTIAL 0x004 /* Partial put/get. */
  105. #define DB_DBT_REALLOC 0x008 /* Return in realloc'd memory. */
  106. #define DB_DBT_USERMEM 0x010 /* Return in user's memory. */
  107. #define DB_DBT_DUPOK 0x020 /* Insert if duplicate. */
  108. u_int32_t flags;
  109. };
  110. /*
  111.  * Common flags --
  112.  * Interfaces which use any of these common flags should never have
  113.  * interface specific flags in this range.
  114.  */
  115. #define DB_CREATE       0x000001 /* Create file as necessary. */
  116. #define DB_CXX_NO_EXCEPTIONS  0x000002 /* C++: return error values. */
  117. #define DB_FORCE       0x000004 /* Force (anything). */
  118. #define DB_NOMMAP       0x000008 /* Don't mmap underlying file. */
  119. #define DB_RDONLY       0x000010 /* Read-only (O_RDONLY). */
  120. #define DB_RECOVER       0x000020 /* Run normal recovery. */
  121. #define DB_THREAD       0x000040 /* Applications are threaded. */
  122. #define DB_TXN_NOSYNC       0x000080 /* Do not sync log on commit. */
  123. #define DB_USE_ENVIRON       0x000100 /* Use the environment. */
  124. #define DB_USE_ENVIRON_ROOT   0x000200 /* Use the environment if root. */
  125. /*
  126.  * Flags private to db_env_create.
  127.  */
  128. #define DB_CLIENT       0x000400 /* Open for a client environment. */
  129. /*
  130.  * Flags private to db_create.
  131.  */
  132. #define DB_XA_CREATE       0x000400 /* Open in an XA environment. */
  133. /*
  134.  * Flags private to DBENV->open.
  135.  */
  136. #define DB_INIT_CDB       0x000400 /* Concurrent Access Methods. */
  137. #define DB_INIT_LOCK       0x000800 /* Initialize locking. */
  138. #define DB_INIT_LOG       0x001000 /* Initialize logging. */
  139. #define DB_INIT_MPOOL       0x002000 /* Initialize mpool. */
  140. #define DB_INIT_TXN       0x004000 /* Initialize transactions. */
  141. #define DB_JOINENV       0x008000  /* Initialize all subsystems present. */
  142. #define DB_LOCKDOWN       0x010000 /* Lock memory into physical core. */
  143. #define DB_PRIVATE       0x020000 /* DB_ENV is process local. */
  144. #define DB_RECOVER_FATAL      0x040000 /* Run catastrophic recovery. */
  145. #define DB_SYSTEM_MEM       0x080000 /* Use system-backed memory. */
  146. /*
  147.  * Flags private to DB->open.
  148.  */
  149. #define DB_EXCL       0x000400 /* Exclusive open (O_EXCL). */
  150. #define DB_FCNTL_LOCKING      0x000800 /* UNDOC: fcntl(2) locking. */
  151. #define DB_ODDFILESIZE       0x001000  /* UNDOC: truncate to N * pgsize. */
  152. #define DB_RDWRMASTER       0x002000  /* UNDOC: allow subdb master open R/W */
  153. #define DB_TRUNCATE       0x004000 /* Discard existing DB (O_TRUNC). */
  154. #define DB_EXTENT       0x008000  /* UNDOC: dealing with an extent. */
  155. /*
  156.  * Flags private to DBENV->txn_begin.
  157.  */
  158. #define DB_TXN_NOWAIT       0x000400 /* Do not wait for locks in this TXN. */
  159. #define DB_TXN_SYNC       0x000800 /* Always sync log on commit. */
  160. /*
  161.  * Flags private to DBENV->set_flags.
  162.  */
  163. #define DB_CDB_ALLDB       0x000400 /* In CDB, lock across environment. */
  164. /*
  165.  * Flags private to DB->set_feedback's callback.
  166.  */
  167. #define DB_UPGRADE       0x000400 /* Upgrading. */
  168. #define DB_VERIFY       0x000800  /* Verifying. */
  169. /*
  170.  * Flags private to DB->set_flags.
  171.  *
  172.  * DB->set_flags does not share common flags and so values start at 0x01.
  173.  */
  174. #define DB_DUP 0x0001 /* Btree, Hash: duplicate keys. */
  175. #define DB_DUPSORT 0x0002 /* Btree, Hash: duplicate keys. */
  176. #define DB_RECNUM 0x0004 /* Btree: record numbers. */
  177. #define DB_RENUMBER 0x0008 /* Recno: renumber on insert/delete. */
  178. #define DB_REVSPLITOFF 0x0010 /* Btree: turn off reverse splits. */
  179. #define DB_SNAPSHOT 0x0020 /* Recno: snapshot the input. */
  180. /*
  181.  * Flags private to DB->join.
  182.  *
  183.  * DB->join does not share common flags and so values start at 0x01.
  184.  */
  185. #define DB_JOIN_NOSORT 0x0001  /* Don't try to optimize join. */
  186. /*
  187.  * Flags private to DB->verify.
  188.  *
  189.  * DB->verify does not share common flags and so values start at 0x01.
  190.  */
  191. #define DB_AGGRESSIVE       0x0001  /* Salvage anything which might be data.*/
  192. #define DB_NOORDERCHK       0x0002  /* Skip order check; subdb w/ user func */
  193. #define DB_ORDERCHKONLY       0x0004  /* Only perform an order check on subdb */
  194. #define DB_PR_PAGE       0x0008  /* Show page contents (-da). */
  195. #define DB_PR_HEADERS       0x0010  /* Show only page headers (-dh). */
  196. #define DB_PR_RECOVERYTEST    0x0020  /* Recovery test (-dr). */
  197. #define DB_SALVAGE       0x0040  /* Salvage what looks like data. */
  198. /*
  199.  * !!!
  200.  * These must not go over 0x8000, or they will collide with the flags
  201.  * used by __bam_vrfy_subtree.
  202.  */
  203. #define DB_VRFY_FLAGMASK      0xffff  /* For masking above flags. */
  204. /*
  205.  * Deadlock detector modes; used in the DBENV structure to configure the
  206.  * locking subsystem.
  207.  */
  208. #define DB_LOCK_NORUN 0
  209. #define DB_LOCK_DEFAULT 1 /* Default policy. */
  210. #define DB_LOCK_OLDEST 2 /* Abort oldest transaction. */
  211. #define DB_LOCK_RANDOM 3 /* Abort random transaction. */
  212. #define DB_LOCK_YOUNGEST 4 /* Abort youngest transaction. */
  213. /*******************************************************
  214.  * Environment.
  215.  *******************************************************/
  216. #define DB_REGION_MAGIC 0x120897 /* Environment magic number. */
  217. typedef enum {
  218. DB_NOTICE_LOGFILE_CHANGED
  219. /* DB_NOTICE_DISK_LOW */
  220. } db_notices;
  221. typedef enum {
  222. DB_TXN_ABORT,
  223. DB_TXN_BACKWARD_ROLL,
  224. DB_TXN_FORWARD_ROLL,
  225. DB_TXN_OPENFILES
  226. } db_recops;
  227. #define DB_UNDO(op) ((op) == DB_TXN_ABORT || (op) == DB_TXN_BACKWARD_ROLL)
  228. #define DB_REDO(op) ((op) == DB_TXN_FORWARD_ROLL)
  229. struct __db_env {
  230. /*******************************************************
  231.  * Public: owned by the application.
  232.  *******************************************************/
  233. FILE *db_errfile; /* Error message file stream. */
  234. const char *db_errpfx; /* Error message prefix. */
  235. /* Callbacks. */
  236. void (*db_errcall) __P((const char *, char *));
  237. void (*db_feedback) __P((DB_ENV *, int, int));
  238. void (*db_noticecall) __P((DB_ENV *, db_notices));
  239. void (*db_paniccall) __P((DB_ENV *, int));
  240. int  (*db_recovery_init) __P((DB_ENV *));
  241. /*
  242.  * Currently, the verbose list is a bit field with room for 32
  243.  * entries.  There's no reason that it needs to be limited, if
  244.  * there are ever more than 32 entries, convert to a bit array.
  245.  */
  246. #define DB_VERB_CHKPOINT 0x0001 /* List checkpoints. */
  247. #define DB_VERB_DEADLOCK 0x0002 /* Deadlock detection information. */
  248. #define DB_VERB_RECOVERY 0x0004 /* Recovery information. */
  249. #define DB_VERB_WAITSFOR 0x0008 /* Dump waits-for table. */
  250. u_int32_t  verbose; /* Verbose output. */
  251. void *app_private; /* Application-private handle. */
  252. /* Locking. */
  253. u_int8_t *lk_conflicts; /* Two dimensional conflict matrix. */
  254. u_int32_t  lk_modes; /* Number of lock modes in table. */
  255. u_int32_t  lk_max; /* Maximum number of locks. */
  256. u_int32_t  lk_max_lockers;/* Maximum number of lockers. */
  257. u_int32_t  lk_max_objects;/* Maximum number of locked objects. */
  258. u_int32_t  lk_detect; /* Deadlock detect on all conflicts. */
  259. /* Logging. */
  260. u_int32_t  lg_bsize; /* Buffer size. */
  261. u_int32_t  lg_max; /* Maximum file size. */
  262. /* Memory pool. */
  263. u_int32_t  mp_gbytes; /* Cachesize: GB. */
  264. u_int32_t  mp_bytes; /* Cachesize: Bytes. */
  265. size_t  mp_size; /* DEPRECATED: Cachesize: bytes. */
  266. int  mp_ncache; /* Number of cache regions. */
  267. size_t  mp_mmapsize; /* Maximum file size for mmap. */
  268. /* Transactions. */
  269. u_int32_t  tx_max; /* Maximum number of transactions. */
  270. time_t  tx_timestamp; /* Recover to specific timestamp. */
  271. int (*tx_recover) /* Dispatch function for recovery. */
  272.     __P((DB_ENV *, DBT *, DB_LSN *, db_recops));
  273. /*******************************************************
  274.  * Private: owned by DB.
  275.  *******************************************************/
  276. int  db_panic; /* Panic causing errno. */
  277. /* User files, paths. */
  278. char *db_home; /* Database home. */
  279. char *db_log_dir; /* Database log file directory. */
  280. char *db_tmp_dir; /* Database tmp file directory. */
  281. char        **db_data_dir; /* Database data file directories. */
  282. int  data_cnt; /* Database data file slots. */
  283. int  data_next; /* Next Database data file slot. */
  284. int  db_mode; /* Default open permissions. */
  285. void *reginfo; /* REGINFO structure reference. */
  286. DB_FH *lockfhp; /* fcntl(2) locking file handle. */
  287. long  shm_key; /* shmget(2) key. */
  288. void *lg_handle; /* Log handle. */
  289. void *lk_handle; /* Lock handle. */
  290. void *mp_handle; /* Mpool handle. */
  291. void *tx_handle; /* Txn handle. */
  292. int       (**dtab) /* Dispatch table */
  293.     __P((DB_ENV *, DBT *, DB_LSN *, db_recops, void *));
  294. size_t  dtab_size; /* Slots in the dispatch table. */
  295. void *cl_handle; /* RPC: remote client handle. */
  296. long  cl_id; /* RPC: Remote client env id. */
  297. int  dblocal_ref; /* DB_ENV_DBLOCAL: reference count. */
  298. u_int32_t  db_mutexlocks; /* db_set_mutexlocks */
  299. /*
  300.  * List of open DB handles for this DB_ENV, used for cursor
  301.  * adjustment.  Must be protected for multi-threaded support.
  302.  *
  303.  * !!!
  304.  * As this structure is allocated in per-process memory, the
  305.  * mutex may need to be stored elsewhere on architectures unable
  306.  * to support mutexes in heap memory, e.g. HP/UX 9.
  307.  */
  308. void *dblist_mutexp; /* Mutex. */
  309. /*
  310.  * !!!
  311.  * Explicit representation of structure in queue.h.
  312.  * LIST_HEAD(dblist, __db);
  313.  */
  314. struct {
  315. struct __db *lh_first;
  316. } dblist;
  317. /*
  318.  * XA support.
  319.  *
  320.  * !!!
  321.  * Explicit representations of structures in queue.h.
  322.  *
  323.  * TAILQ_ENTRY(__db_env);
  324.  */
  325. struct {
  326. struct __db_env *tqe_next;
  327. struct __db_env **tqe_prev;
  328. } links;
  329. int  xa_rmid; /* XA Resource Manager ID. */
  330. DB_TXN *xa_txn; /* XA Current transaction. */
  331. void *cj_internal; /* C++/Java private. */
  332. /* Methods. */
  333. int  (*close) __P((DB_ENV *, u_int32_t));
  334. void (*err) __P((const DB_ENV *, int, const char *, ...));
  335. void (*errx) __P((const DB_ENV *, const char *, ...));
  336. int  (*open) __P((DB_ENV *, const char *, u_int32_t, int));
  337. int  (*remove) __P((DB_ENV *, const char *, u_int32_t));
  338. int  (*set_data_dir) __P((DB_ENV *, const char *));
  339. void (*set_errcall) __P((DB_ENV *, void (*)(const char *, char *)));
  340. void (*set_errfile) __P((DB_ENV *, FILE *));
  341. void (*set_errpfx) __P((DB_ENV *, const char *));
  342. int  (*set_feedback) __P((DB_ENV *, void (*)(DB_ENV *, int, int)));
  343. int  (*set_flags) __P((DB_ENV *, u_int32_t, int));
  344. int  (*set_mutexlocks) __P((DB_ENV *, int));
  345. void (*set_noticecall) __P((DB_ENV *, void (*)(DB_ENV *, db_notices)));
  346. int  (*set_paniccall) __P((DB_ENV *, void (*)(DB_ENV *, int)));
  347. int  (*set_recovery_init) __P((DB_ENV *, int (*)(DB_ENV *)));
  348. int  (*set_server) __P((DB_ENV *, char *, long, long, u_int32_t));
  349. int  (*set_shm_key) __P((DB_ENV *, long));
  350. int  (*set_tmp_dir) __P((DB_ENV *, const char *));
  351. int  (*set_verbose) __P((DB_ENV *, u_int32_t, int));
  352. int  (*set_lg_bsize) __P((DB_ENV *, u_int32_t));
  353. int  (*set_lg_dir) __P((DB_ENV *, const char *));
  354. int  (*set_lg_max) __P((DB_ENV *, u_int32_t));
  355. int  (*set_lk_conflicts) __P((DB_ENV *, u_int8_t *, int));
  356. int  (*set_lk_detect) __P((DB_ENV *, u_int32_t));
  357. int  (*set_lk_max) __P((DB_ENV *, u_int32_t));
  358. int  (*set_lk_max_locks) __P((DB_ENV *, u_int32_t));
  359. int  (*set_lk_max_lockers) __P((DB_ENV *, u_int32_t));
  360. int  (*set_lk_max_objects) __P((DB_ENV *, u_int32_t));
  361. int  (*set_mp_mmapsize) __P((DB_ENV *, size_t));
  362. int  (*set_cachesize) __P((DB_ENV *, u_int32_t, u_int32_t, int));
  363. int  (*set_tx_max) __P((DB_ENV *, u_int32_t));
  364. int  (*set_tx_recover) __P((DB_ENV *,
  365. int (*)(DB_ENV *, DBT *, DB_LSN *, db_recops)));
  366. int  (*set_tx_timestamp) __P((DB_ENV *, time_t *));
  367. #ifdef CONFIG_TEST
  368. #define DB_TEST_PREOPEN  1 /* before __os_open */
  369. #define DB_TEST_POSTOPEN  2 /* after __os_open */
  370. #define DB_TEST_POSTLOGMETA  3 /* after logging meta in btree */
  371. #define DB_TEST_POSTLOG  4 /* after logging all pages */
  372. #define DB_TEST_POSTSYNC  5 /* after syncing the log */
  373. #define DB_TEST_PRERENAME  6 /* before __os_rename */
  374. #define DB_TEST_POSTRENAME  7 /* after __os_rename */
  375. int  test_abort; /* Abort value for testing. */
  376. int  test_copy; /* Copy value for testing. */
  377. #endif
  378. #define DB_ENV_CDB 0x00001 /* DB_INIT_CDB. */
  379. #define DB_ENV_CDB_ALLDB 0x00002 /* CDB environment wide locking. */
  380. #define DB_ENV_CREATE 0x00004 /* DB_CREATE set. */
  381. #define DB_ENV_DBLOCAL 0x00008 /* DB_ENV allocated for private DB. */
  382. #define DB_ENV_LOCKDOWN 0x00010 /* DB_LOCKDOWN set. */
  383. #define DB_ENV_NOMMAP 0x00020 /* DB_NOMMAP set. */
  384. #define DB_ENV_OPEN_CALLED 0x00040 /* DBENV->open called (paths valid). */
  385. #define DB_ENV_PRIVATE 0x00080 /* DB_PRIVATE set. */
  386. #define DB_ENV_RPCCLIENT 0x00100 /* DB_CLIENT set. */
  387. #define DB_ENV_STANDALONE 0x00200 /* Test: freestanding environment. */
  388. #define DB_ENV_SYSTEM_MEM 0x00400 /* DB_SYSTEM_MEM set. */
  389. #define DB_ENV_THREAD 0x00800 /* DB_THREAD set. */
  390. #define DB_ENV_TXN_NOSYNC 0x01000 /* DB_TXN_NOSYNC set. */
  391. #define DB_ENV_USER_ALLOC 0x02000 /* User allocated the structure. */
  392. u_int32_t  flags; /* Flags. */
  393. };
  394. /*******************************************************
  395.  * Access methods.
  396.  *******************************************************/
  397. /*
  398.  * !!!
  399.  * Changes here must be reflected in java/src/com/sleepycat/db/Db.java.
  400.  */
  401. typedef enum {
  402. DB_BTREE=1,
  403. DB_HASH,
  404. DB_RECNO,
  405. DB_QUEUE,
  406. DB_UNKNOWN /* Figure it out on open. */
  407. } DBTYPE;
  408. #define DB_BTREEVERSION 8 /* Current btree version. */
  409. #define DB_BTREEOLDVER 6 /* Oldest btree version supported. */
  410. #define DB_BTREEMAGIC 0x053162
  411. #define DB_HASHVERSION 7 /* Current hash version. */
  412. #define DB_HASHOLDVER 4 /* Oldest hash version supported. */
  413. #define DB_HASHMAGIC 0x061561
  414. #define DB_QAMVERSION 3 /* Current queue version. */
  415. #define DB_QAMOLDVER 1 /* Oldest queue version supported. */
  416. #define DB_QAMMAGIC 0x042253
  417. #define DB_LOGVERSION 3 /* Current log version. */
  418. #define DB_LOGOLDVER 3 /* Oldest log version supported. */
  419. #define DB_LOGMAGIC 0x040988
  420. /*
  421.  * DB access method and cursor operation values.  Each value is an operation
  422.  * code to which additional bit flags are added.
  423.  */
  424. #define DB_AFTER  1 /* c_put() */
  425. #define DB_APPEND  2 /* put() */
  426. #define DB_BEFORE  3 /* c_put() */
  427. #define DB_CACHED_COUNTS 4 /* stat() */
  428. #define DB_CHECKPOINT  5 /* log_put(), log_get() */
  429. #define DB_CONSUME  6 /* get() */
  430. #define DB_CONSUME_WAIT  7 /* get() */
  431. #define DB_CURLSN  8 /* log_put() */
  432. #define DB_CURRENT  9 /* c_get(), c_put(), log_get() */
  433. #define DB_FIRST 10 /* c_get(), log_get() */
  434. #define DB_FLUSH 11 /* log_put() */
  435. #define DB_GET_BOTH 12 /* get(), c_get() */
  436. #define DB_GET_BOTHC 13 /* c_get() (internal) */
  437. #define DB_GET_RECNO 14 /* c_get() */
  438. #define DB_JOIN_ITEM 15 /* c_get(); do not do primary lookup */
  439. #define DB_KEYFIRST 16 /* c_put() */
  440. #define DB_KEYLAST 17 /* c_put() */
  441. #define DB_LAST 18 /* c_get(), log_get() */
  442. #define DB_NEXT 19 /* c_get(), log_get() */
  443. #define DB_NEXT_DUP 20 /* c_get() */
  444. #define DB_NEXT_NODUP 21 /* c_get() */
  445. #define DB_NODUPDATA 22 /* put(), c_put() */
  446. #define DB_NOOVERWRITE 23 /* put() */
  447. #define DB_NOSYNC 24 /* close() */
  448. #define DB_POSITION 25 /* c_dup() */
  449. #define DB_POSITIONI 26 /* c_dup() (internal) */
  450. #define DB_PREV 27 /* c_get(), log_get() */
  451. #define DB_PREV_NODUP 28 /* c_get(), log_get() */
  452. #define DB_RECORDCOUNT 29 /* stat() */
  453. #define DB_SET 30 /* c_get(), log_get() */
  454. #define DB_SET_RANGE 31 /* c_get() */
  455. #define DB_SET_RECNO 32 /* get(), c_get() */
  456. #define DB_WRITECURSOR 33 /* cursor() */
  457. #define DB_WRITELOCK 34 /* cursor() (internal) */
  458. /* This has to change when the max opcode hits 255. */
  459. #define DB_OPFLAGS_MASK 0x000000ff /* Mask for operations flags. */
  460. #define DB_RMW 0x80000000 /* Acquire write flag immediately. */
  461. /*
  462.  * DB (user visible) error return codes.
  463.  *
  464.  * !!!
  465.  * Changes to any of the user visible error return codes must be reflected
  466.  * in java/src/com/sleepycat/db/Db.java.
  467.  *
  468.  * !!!
  469.  * For source compatibility with DB 2.X deadlock return (EAGAIN), use the
  470.  * following:
  471.  * #include <errno.h>
  472.  * #define DB_LOCK_DEADLOCK EAGAIN
  473.  *
  474.  * !!!
  475.  * We don't want our error returns to conflict with other packages where
  476.  * possible, so pick a base error value that's hopefully not common.  We
  477.  * document that we own the error name space from -30,800 to -30,999.
  478.  */
  479. /* Public error return codes. */
  480. #define DB_INCOMPLETE (-30999)/* Sync didn't finish. */
  481. #define DB_KEYEMPTY (-30998)/* Key/data deleted or never created. */
  482. #define DB_KEYEXIST (-30997)/* The key/data pair already exists. */
  483. #define DB_LOCK_DEADLOCK (-30996)/* Deadlock. */
  484. #define DB_LOCK_NOTGRANTED (-30995)/* Lock unavailable. */
  485. #define DB_NOSERVER (-30994)/* Server panic return. */
  486. #define DB_NOSERVER_HOME (-30993)/* Bad home sent to server. */
  487. #define DB_NOSERVER_ID (-30992)/* Bad ID sent to server. */
  488. #define DB_NOTFOUND (-30991)/* Key/data pair not found (EOF). */
  489. #define DB_OLD_VERSION (-30990)/* Out-of-date version. */
  490. #define DB_RUNRECOVERY (-30989)/* Panic return. */
  491. #define DB_VERIFY_BAD (-30988)/* Verify failed; bad format. */
  492. /* DB (private) error return codes. */
  493. #define DB_ALREADY_ABORTED (-30899)
  494. #define DB_DELETED (-30898)/* Recovery file marked deleted. */
  495. #define DB_JAVA_CALLBACK (-30897)/* Exception during a java callback. */
  496. #define DB_NEEDSPLIT (-30896)/* Page needs to be split. */
  497. #define DB_SWAPBYTES (-30895)/* Database needs byte swapping. */
  498. #define DB_TXN_CKP (-30894)/* Encountered ckp record in log. */
  499. #define DB_VERIFY_FATAL (-30893)/* Fatal: DB->verify cannot proceed. */
  500. #define DB_FILE_ID_LEN 20 /* DB file ID length. */
  501. /* DB access method description structure. */
  502. struct __db {
  503. /*******************************************************
  504.  * Public: owned by the application.
  505.  *******************************************************/
  506. u_int32_t pgsize; /* Database logical page size. */
  507. /* Callbacks. */
  508. int (*db_append_recno) __P((DB *, DBT *, db_recno_t));
  509. void (*db_feedback) __P((DB *, int, int));
  510. void *(*db_malloc) __P((size_t));
  511. void *(*db_realloc) __P((void *, size_t));
  512. int (*dup_compare) __P((DB *, const DBT *, const DBT *));
  513. void *app_private; /* Application-private handle. */
  514. /*******************************************************
  515.  * Private: owned by DB.
  516.  *******************************************************/
  517. DB_ENV  *dbenv; /* Backing environment. */
  518. DBTYPE  type; /* DB access method type. */
  519. DB_MPOOLFILE *mpf; /* Backing buffer pool. */
  520. void *mutexp; /* Synchronization for free threading */
  521. u_int8_t fileid[DB_FILE_ID_LEN];/* File's unique ID for locking. */
  522. u_int32_t adj_fileid; /* File's unique ID for curs. adj. */
  523. #define DB_LOGFILEID_INVALID -1
  524. int32_t  log_fileid; /* File's unique ID for logging. */
  525. db_pgno_t meta_pgno; /* Meta page number */
  526. DB_TXN *open_txn; /* Transaction to protect creates. */
  527. long  cl_id; /* RPC: remote client id. */
  528. /*
  529.  * !!!
  530.  * Some applications use DB but implement their own locking outside of
  531.  * DB.  If they're using fcntl(2) locking on the underlying database
  532.  * file, and we open and close a file descriptor for that file, we will
  533.  * discard their locks.  The DB_FCNTL_LOCKING flag to DB->open is an
  534.  * undocumented interface to support this usage which leaves any file
  535.  * descriptors we open until DB->close.  This will only work with the
  536.  * DB->open interface and simple caches, e.g., creating a transaction
  537.  * thread may open/close file descriptors this flag doesn't protect.
  538.  * Locking with fcntl(2) on a file that you don't own is a very, very
  539.  * unsafe thing to do.  'Nuff said.
  540.  */
  541. DB_FH *saved_open_fhp; /* Saved file handle. */
  542. /*
  543.  * Linked list of DBP's, used in the log's dbentry table
  544.  * to keep track of all open db handles for a given log id.
  545.  * !!!
  546.  * Explicit representations of structures in queue.h.
  547.  *
  548.  * TAILQ_ENTRY(__db) links;
  549.  */
  550. struct {
  551. struct __db *tqe_next;
  552. struct __db **tqe_prev;
  553. } links;
  554. /*
  555.  * Linked list of DBP's, linked from the DB_ENV, used to
  556.  * keep track of all open db handles for cursor adjustment.
  557.  *
  558.  * XXX
  559.  * Eventually, this should be merged with "links" above.
  560.  *
  561.  * !!!
  562.  * Explicit representations of structures in queue.h.
  563.  *
  564.  * LIST_ENTRY(__db) dblistlinks;
  565.  */
  566. struct {
  567. struct __db *le_next;
  568. struct __db **le_prev;
  569. } dblistlinks;
  570. /*
  571.  * Cursor queues.
  572.  *
  573.  * !!!
  574.  * Explicit representations of structures in queue.h.
  575.  *
  576.  * TAILQ_HEAD(free_queue, __dbc);
  577.  * TAILQ_HEAD(active_queue, __dbc);
  578.  * TAILQ_HEAD(join_queue, __dbc);
  579.  */
  580. struct {
  581. struct __dbc *tqh_first;
  582. struct __dbc **tqh_last;
  583. } free_queue;
  584. struct {
  585. struct __dbc *tqh_first;
  586. struct __dbc **tqh_last;
  587. } active_queue;
  588. struct {
  589. struct __dbc *tqh_first;
  590. struct __dbc **tqh_last;
  591. } join_queue;
  592. void *bt_internal; /* Btree/Recno access method private. */
  593. void *cj_internal; /* C++/Java private. */
  594. void *h_internal; /* Hash access method private. */
  595. void *q_internal; /* Queue access method private. */
  596. void *xa_internal; /* XA private. */
  597. /* Methods. */
  598. int  (*close) __P((DB *, u_int32_t));
  599. int  (*cursor) __P((DB *, DB_TXN *, DBC **, u_int32_t));
  600. int  (*del) __P((DB *, DB_TXN *, DBT *, u_int32_t));
  601. void (*err) __P((DB *, int, const char *, ...));
  602. void (*errx) __P((DB *, const char *, ...));
  603. int  (*fd) __P((DB *, int *));
  604. int  (*get) __P((DB *, DB_TXN *, DBT *, DBT *, u_int32_t));
  605. int  (*get_byteswapped) __P((DB *));
  606. DBTYPE
  607.      (*get_type) __P((DB *));
  608. int  (*join) __P((DB *, DBC **, DBC **, u_int32_t));
  609. int  (*key_range) __P((DB *,
  610. DB_TXN *, DBT *, DB_KEY_RANGE *, u_int32_t));
  611. int  (*open) __P((DB *,
  612. const char *, const char *, DBTYPE, u_int32_t, int));
  613. int  (*put) __P((DB *, DB_TXN *, DBT *, DBT *, u_int32_t));
  614. int  (*remove) __P((DB *, const char *, const char *, u_int32_t));
  615. int  (*rename) __P((DB *,
  616.     const char *, const char *, const char *, u_int32_t));
  617. int  (*set_append_recno) __P((DB *, int (*)(DB *, DBT *, db_recno_t)));
  618. int  (*set_cachesize) __P((DB *, u_int32_t, u_int32_t, int));
  619. int  (*set_dup_compare) __P((DB *,
  620.     int (*)(DB *, const DBT *, const DBT *)));
  621. void (*set_errcall) __P((DB *, void (*)(const char *, char *)));
  622. void (*set_errfile) __P((DB *, FILE *));
  623. void (*set_errpfx) __P((DB *, const char *));
  624. int  (*set_feedback) __P((DB *, void (*)(DB *, int, int)));
  625. int  (*set_flags) __P((DB *, u_int32_t));
  626. int  (*set_lorder) __P((DB *, int));
  627. int  (*set_malloc) __P((DB *, void *(*)(size_t)));
  628. int  (*set_pagesize) __P((DB *, u_int32_t));
  629. int  (*set_paniccall) __P((DB *, void (*)(DB_ENV *, int)));
  630. int  (*set_realloc) __P((DB *, void *(*)(void *, size_t)));
  631. int  (*stat) __P((DB *, void *, void *(*)(size_t), u_int32_t));
  632. int  (*sync) __P((DB *, u_int32_t));
  633. int  (*upgrade) __P((DB *, const char *, u_int32_t));
  634. int  (*verify) __P((DB *,
  635.     const char *, const char *, FILE *, u_int32_t));
  636. int  (*set_bt_compare) __P((DB *,
  637.     int (*)(DB *, const DBT *, const DBT *)));
  638. int  (*set_bt_maxkey) __P((DB *, u_int32_t));
  639. int  (*set_bt_minkey) __P((DB *, u_int32_t));
  640. int  (*set_bt_prefix) __P((DB *,
  641.     size_t (*)(DB *, const DBT *, const DBT *)));
  642. int  (*set_h_ffactor) __P((DB *, u_int32_t));
  643. int  (*set_h_hash) __P((DB *,
  644.     u_int32_t (*)(DB *, const void *, u_int32_t)));
  645. int  (*set_h_nelem) __P((DB *, u_int32_t));
  646. int  (*set_re_delim) __P((DB *, int));
  647. int  (*set_re_len) __P((DB *, u_int32_t));
  648. int  (*set_re_pad) __P((DB *, int));
  649. int  (*set_re_source) __P((DB *, const char *));
  650. int  (*set_q_extentsize) __P((DB *, u_int32_t));
  651. int  (*db_am_remove) __P((DB *, const char *,
  652.     const char *, DB_LSN *, int (**)(DB *, void*), void **));
  653. int  (*db_am_rename) __P((DB *,
  654.     const char *, const char *, const char *));
  655. #define DB_OK_BTREE 0x01
  656. #define DB_OK_HASH 0x02
  657. #define DB_OK_QUEUE 0x04
  658. #define DB_OK_RECNO 0x08
  659. u_int32_t am_ok; /* Legal AM choices. */
  660. #define DB_AM_DISCARD 0x00001 /* Discard any cached pages. */
  661. #define DB_AM_DUP 0x00002 /* DB_DUP. */
  662. #define DB_AM_DUPSORT 0x00004 /* DB_DUPSORT. */
  663. #define DB_AM_INMEM 0x00008 /* In-memory; no sync on close. */
  664. #define DB_AM_PGDEF 0x00010 /* Page size was defaulted. */
  665. #define DB_AM_RDONLY 0x00020 /* Database is readonly. */
  666. #define DB_AM_RECOVER 0x00040 /* DBP opened by recovery routine. */
  667. #define DB_AM_SUBDB 0x00080 /* Subdatabases supported. */
  668. #define DB_AM_SWAP 0x00100 /* Pages need to be byte-swapped. */
  669. #define DB_AM_TXN 0x00200 /* DBP was in a transaction. */
  670. #define DB_AM_VERIFYING 0x00400 /* DB handle is in the verifier. */
  671. #define DB_BT_RECNUM 0x00800 /* DB_RECNUM. */
  672. #define DB_BT_REVSPLIT 0x01000 /* DB_REVSPLITOFF. */
  673. #define DB_DBM_ERROR 0x02000 /* Error in DBM/NDBM database. */
  674. #define DB_OPEN_CALLED 0x04000 /* DB->open called. */
  675. #define DB_RE_DELIMITER 0x08000 /* Variablen length delimiter set. */
  676. #define DB_RE_FIXEDLEN 0x10000 /* Fixed-length records. */
  677. #define DB_RE_PAD 0x20000 /* Fixed-length record pad. */
  678. #define DB_RE_RENUMBER 0x40000 /* DB_RENUMBER. */
  679. #define DB_RE_SNAPSHOT 0x80000 /* DB_SNAPSHOT. */
  680. u_int32_t flags;
  681. };
  682. /*
  683.  * DB_LOCK_ILOCK --
  684.  * Internal DB access method lock.
  685.  */
  686. struct __db_ilock {
  687. db_pgno_t pgno; /* Page being locked. */
  688. u_int8_t fileid[DB_FILE_ID_LEN];/* File id. */
  689. #define DB_RECORD_LOCK 1
  690. #define DB_PAGE_LOCK 2
  691. u_int8_t type; /* Record or Page lock */
  692. };
  693. /*
  694.  * DB_LOCK --
  695.  * The structure is allocated by the caller and filled in during a
  696.  * lock_get request (or a lock_vec/DB_LOCK_GET).
  697.  */
  698. struct __db_lock_u {
  699. size_t off; /* Offset of the lock in the region */
  700. u_int32_t ndx; /* Index of the object referenced by
  701.  * this lock; used for locking. */
  702. u_int32_t gen; /* Generation number of this lock. */
  703. };
  704. /* Cursor description structure. */
  705. struct __dbc {
  706. DB *dbp; /* Related DB access method. */
  707. DB_TXN  *txn; /* Associated transaction. */
  708. /*
  709.  * !!!
  710.  * Explicit representations of structures in queue.h.
  711.  *
  712.  * TAILQ_ENTRY(__dbc) links; Active/free cursor queues.
  713.  */
  714. struct {
  715. DBC *tqe_next;
  716. DBC **tqe_prev;
  717. } links;
  718. DBT   rkey; /* Returned key. */
  719. DBT   rdata; /* Returned data. */
  720. u_int32_t lid; /* Default process' locker id. */
  721. u_int32_t locker; /* Locker for this operation. */
  722. DBT   lock_dbt; /* DBT referencing lock. */
  723. DB_LOCK_ILOCK lock; /* Object to be locked. */
  724. DB_LOCK   mylock; /* Lock held on this cursor. */
  725. long   cl_id; /* Remote client id. */
  726. DBTYPE   dbtype; /* Cursor type. */
  727. DBC_INTERNAL *internal; /* Access method private. */
  728. int (*c_close) __P((DBC *)); /* Methods: public. */
  729. int (*c_count) __P((DBC *, db_recno_t *, u_int32_t));
  730. int (*c_del) __P((DBC *, u_int32_t));
  731. int (*c_dup) __P((DBC *, DBC **, u_int32_t));
  732. int (*c_get) __P((DBC *, DBT *, DBT *, u_int32_t));
  733. int (*c_put) __P((DBC *, DBT *, DBT *, u_int32_t));
  734. /* Methods: private. */
  735. int (*c_am_close) __P((DBC *, db_pgno_t, int *));
  736. int (*c_am_del) __P((DBC *));
  737. int (*c_am_destroy) __P((DBC *));
  738. int (*c_am_get) __P((DBC *, DBT *, DBT *, u_int32_t, db_pgno_t *));
  739. int (*c_am_put) __P((DBC *, DBT *, DBT *, u_int32_t, db_pgno_t *));
  740. int (*c_am_writelock) __P((DBC *));
  741. #define DBC_ACTIVE 0x001 /* Cursor is being used. */
  742. #define DBC_OPD 0x002 /* Cursor references off-page dups. */
  743. #define DBC_RECOVER 0x004 /* Cursor created by  recovery routine
  744.  * (do not log or lock).
  745.  */
  746. #define DBC_RMW 0x008 /* Acquire write flag in read op. */
  747. #define DBC_WRITECURSOR 0x010 /* Cursor may be used to write (CDB). */
  748. #define DBC_WRITEDUP 0x020 /* idup'ed DBC_WRITECURSOR (CDB). */
  749. #define DBC_WRITER 0x040 /* Cursor immediately writing (CDB). */
  750. #define DBC_TRANSIENT 0x080 /* Cursor is transient. */
  751. #define DBC_COMPENSATE 0x100 /* Cursor is doing compensation
  752.  * do not lock.
  753.  */
  754. u_int32_t flags;
  755. };
  756. /* Key range statistics structure */
  757. struct __key_range {
  758. double less;
  759. double equal;
  760. double greater;
  761. };
  762. /* Btree/Recno statistics structure. */
  763. struct __db_bt_stat {
  764. u_int32_t bt_magic; /* Magic number. */
  765. u_int32_t bt_version; /* Version number. */
  766. u_int32_t bt_metaflags; /* Metadata flags. */
  767. u_int32_t bt_nkeys; /* Number of unique keys. */
  768. u_int32_t bt_ndata; /* Number of data items. */
  769. u_int32_t bt_pagesize; /* Page size. */
  770. u_int32_t bt_maxkey; /* Maxkey value. */
  771. u_int32_t bt_minkey; /* Minkey value. */
  772. u_int32_t bt_re_len; /* Fixed-length record length. */
  773. u_int32_t bt_re_pad; /* Fixed-length record pad. */
  774. u_int32_t bt_levels; /* Tree levels. */
  775. u_int32_t bt_int_pg; /* Internal pages. */
  776. u_int32_t bt_leaf_pg; /* Leaf pages. */
  777. u_int32_t bt_dup_pg; /* Duplicate pages. */
  778. u_int32_t bt_over_pg; /* Overflow pages. */
  779. u_int32_t bt_free; /* Pages on the free list. */
  780. u_int32_t bt_int_pgfree; /* Bytes free in internal pages. */
  781. u_int32_t bt_leaf_pgfree; /* Bytes free in leaf pages. */
  782. u_int32_t bt_dup_pgfree; /* Bytes free in duplicate pages. */
  783. u_int32_t bt_over_pgfree; /* Bytes free in overflow pages. */
  784. };
  785. /* Queue statistics structure. */
  786. struct __db_qam_stat {
  787. u_int32_t qs_magic; /* Magic number. */
  788. u_int32_t qs_version; /* Version number. */
  789. u_int32_t qs_metaflags; /* Metadata flags. */
  790. u_int32_t qs_nkeys; /* Number of unique keys. */
  791. u_int32_t qs_ndata; /* Number of data items. */
  792. u_int32_t qs_pagesize; /* Page size. */
  793. u_int32_t qs_pages; /* Data pages. */
  794. u_int32_t qs_re_len; /* Fixed-length record length. */
  795. u_int32_t qs_re_pad; /* Fixed-length record pad. */
  796. u_int32_t qs_pgfree; /* Bytes free in data pages. */
  797. u_int32_t qs_first_recno; /* First not deleted record. */
  798. u_int32_t qs_cur_recno; /* Last allocated record number. */
  799. };
  800. /* Hash statistics structure. */
  801. struct __db_h_stat {
  802. u_int32_t hash_magic; /* Magic number. */
  803. u_int32_t hash_version; /* Version number. */
  804. u_int32_t hash_metaflags; /* Metadata flags. */
  805. u_int32_t hash_nkeys; /* Number of unique keys. */
  806. u_int32_t hash_ndata; /* Number of data items. */
  807. u_int32_t hash_pagesize; /* Page size. */
  808. u_int32_t hash_nelem; /* Original nelem specified. */
  809. u_int32_t hash_ffactor; /* Fill factor specified at create. */
  810. u_int32_t hash_buckets; /* Number of hash buckets. */
  811. u_int32_t hash_free; /* Pages on the free list. */
  812. u_int32_t hash_bfree; /* Bytes free on bucket pages. */
  813. u_int32_t hash_bigpages; /* Number of big key/data pages. */
  814. u_int32_t hash_big_bfree; /* Bytes free on big item pages. */
  815. u_int32_t hash_overflows; /* Number of overflow pages. */
  816. u_int32_t hash_ovfl_free; /* Bytes free on ovfl pages. */
  817. u_int32_t hash_dup; /* Number of dup pages. */
  818. u_int32_t hash_dup_free; /* Bytes free on duplicate pages. */
  819. };
  820. int   db_create __P((DB **, DB_ENV *, u_int32_t));
  821. int   db_env_create __P((DB_ENV **, u_int32_t));
  822. int   db_env_set_func_close __P((int (*)(int)));
  823. int   db_env_set_func_dirfree __P((void (*)(char **, int)));
  824. int   db_env_set_func_dirlist __P((int (*)(const char *, char ***, int *)));
  825. int   db_env_set_func_exists __P((int (*)(const char *, int *)));
  826. int   db_env_set_func_free __P((void (*)(void *)));
  827. int   db_env_set_func_fsync __P((int (*)(int)));
  828. int   db_env_set_func_ioinfo __P((int (*)(const char *,
  829.   int, u_int32_t *, u_int32_t *, u_int32_t *)));
  830. int   db_env_set_func_malloc __P((void *(*)(size_t)));
  831. int   db_env_set_func_map __P((int (*)(char *, size_t, int, int, void **)));
  832. int   db_env_set_func_open __P((int (*)(const char *, int, ...)));
  833. int   db_env_set_func_read __P((ssize_t (*)(int, void *, size_t)));
  834. int   db_env_set_func_realloc __P((void *(*)(void *, size_t)));
  835. int   db_env_set_func_rename __P((int (*)(const char *, const char *)));
  836. int   db_env_set_func_seek
  837.   __P((int (*)(int, size_t, db_pgno_t, u_int32_t, int, int)));
  838. int   db_env_set_func_sleep __P((int (*)(u_long, u_long)));
  839. int   db_env_set_func_unlink __P((int (*)(const char *)));
  840. int   db_env_set_func_unmap __P((int (*)(void *, size_t)));
  841. int   db_env_set_func_write __P((ssize_t (*)(int, const void *, size_t)));
  842. int   db_env_set_func_yield __P((int (*)(void)));
  843. int   db_env_set_pageyield __P((int));
  844. int   db_env_set_panicstate __P((int));
  845. int   db_env_set_region_init __P((int));
  846. int   db_env_set_tas_spins __P((u_int32_t));
  847. char *db_strerror __P((int));
  848. char *db_version __P((int *, int *, int *));
  849. /*******************************************************
  850.  * Locking
  851.  *******************************************************/
  852. #define DB_LOCKVERSION 1
  853. /* Flag values for lock_vec(), lock_get(). */
  854. #define DB_LOCK_NOWAIT 0x01 /* Don't wait on unavailable lock. */
  855. #define DB_LOCK_RECORD 0x02 /* Internal: record lock. */
  856. #define DB_LOCK_UPGRADE 0x04 /* Internal: upgrade existing lock. */
  857. #define DB_LOCK_SWITCH 0x08 /* Internal: switch existing lock. */
  858. /* Flag values for lock_detect(). */
  859. #define DB_LOCK_CONFLICT 0x01 /* Run on any conflict. */
  860. /*
  861.  * Request types.
  862.  *
  863.  * !!!
  864.  * Changes here must be reflected in java/src/com/sleepycat/db/Db.java.
  865.  */
  866. typedef enum {
  867. DB_LOCK_DUMP=0, /* Display held locks. */
  868. DB_LOCK_GET, /* Get the lock. */
  869. DB_LOCK_INHERIT, /* Pass locks to parent. */
  870. DB_LOCK_PUT, /* Release the lock. */
  871. DB_LOCK_PUT_ALL, /* Release locker's locks. */
  872. DB_LOCK_PUT_OBJ /* Release locker's locks on obj. */
  873. } db_lockop_t;
  874. /*
  875.  * Simple R/W lock modes and for multi-granularity intention locking.
  876.  *
  877.  * !!!
  878.  * These values are NOT random, as they are used as an index into the lock
  879.  * conflicts arrays, i.e., DB_LOCK_IWRITE must be == 3, and DB_LOCK_IREAD
  880.  * must be == 4.
  881.  *
  882.  * !!!
  883.  * Changes here must be reflected in java/src/com/sleepycat/db/Db.java.
  884.  */
  885. typedef enum {
  886. DB_LOCK_NG=0, /* Not granted. */
  887. DB_LOCK_READ, /* Shared/read. */
  888. DB_LOCK_WRITE, /* Exclusive/write. */
  889. DB_LOCK_WAIT, /* Wait for event */
  890. DB_LOCK_IWRITE, /* Intent exclusive/write. */
  891. DB_LOCK_IREAD, /* Intent to share/read. */
  892. DB_LOCK_IWR /* Intent to read and write. */
  893. } db_lockmode_t;
  894. /*
  895.  * Status of a lock.
  896.  */
  897. typedef enum {
  898. DB_LSTAT_ABORTED, /* Lock belongs to an aborted txn. */
  899. DB_LSTAT_ERR, /* Lock is bad. */
  900. DB_LSTAT_FREE, /* Lock is unallocated. */
  901. DB_LSTAT_HELD, /* Lock is currently held. */
  902. DB_LSTAT_NOGRANT, /* Lock was not granted. */
  903. DB_LSTAT_PENDING, /* Lock was waiting and has been
  904.  * promoted; waiting for the owner
  905.  * to run and upgrade it to held. */
  906. DB_LSTAT_WAITING /* Lock is on the wait queue. */
  907. } db_status_t;
  908. /* Lock request structure. */
  909. struct __db_lockreq {
  910. db_lockop_t  op; /* Operation. */
  911. db_lockmode_t  mode; /* Requested mode. */
  912. u_int32_t  locker; /* Locker identity. */
  913. DBT *obj; /* Object being locked. */
  914. DB_LOCK  lock; /* Lock returned. */
  915. };
  916. /*
  917.  * Commonly used conflict matrices.
  918.  *
  919.  */
  920. /* Multi-granularity locking. */
  921. #define DB_LOCK_RIW_N 7
  922. extern const u_int8_t db_riw_conflicts[];
  923. struct __db_lock_stat {
  924. u_int32_t st_lastid; /* Last allocated locker ID. */
  925. u_int32_t st_maxlocks; /* Maximum number of locks in table. */
  926. u_int32_t st_maxlockers; /* Maximum number of lockers in table. */
  927. u_int32_t st_maxobjects; /* Maximum number of objects in table. */
  928. u_int32_t st_nmodes; /* Number of lock modes. */
  929. u_int32_t st_nlocks; /* Current number of locks. */
  930. u_int32_t st_maxnlocks; /* Maximum number of locks so far. */
  931. u_int32_t st_nlockers; /* Current number of lockers. */
  932. u_int32_t st_maxnlockers; /* Maximum number of lockers so far. */
  933. u_int32_t st_nobjects; /* Current number of objects. */
  934. u_int32_t st_maxnobjects; /* Maximum number of objects so far. */
  935. u_int32_t st_nconflicts; /* Number of lock conflicts. */
  936. u_int32_t st_nrequests; /* Number of lock gets. */
  937. u_int32_t st_nreleases; /* Number of lock puts. */
  938. u_int32_t st_nnowaits; /* Number of requests that would have
  939.    waited, but NOWAIT was set. */
  940. u_int32_t st_ndeadlocks; /* Number of lock deadlocks. */
  941. u_int32_t st_region_wait; /* Region lock granted after wait. */
  942. u_int32_t st_region_nowait; /* Region lock granted without wait. */
  943. u_int32_t st_regsize; /* Region size. */
  944. };
  945. int   lock_detect __P((DB_ENV *, u_int32_t, u_int32_t, int *));
  946. int   lock_get __P((DB_ENV *,
  947.     u_int32_t, u_int32_t, const DBT *, db_lockmode_t, DB_LOCK *));
  948. int   lock_id __P((DB_ENV *, u_int32_t *));
  949. int   lock_put __P((DB_ENV *, DB_LOCK *));
  950. int   lock_stat __P((DB_ENV *, DB_LOCK_STAT **, void *(*)(size_t)));
  951. int   lock_vec __P((DB_ENV *,
  952.     u_int32_t, u_int32_t, DB_LOCKREQ *, int, DB_LOCKREQ **));
  953. /*******************************************************
  954.  * Logging.
  955.  *******************************************************/
  956. /* Flag values for log_archive(). */
  957. #define DB_ARCH_ABS 0x001 /* Absolute pathnames. */
  958. #define DB_ARCH_DATA 0x002 /* Data files. */
  959. #define DB_ARCH_LOG 0x004 /* Log files. */
  960. /*
  961.  * A DB_LSN has two parts, a fileid which identifies a specific file, and an
  962.  * offset within that file.  The fileid is an unsigned 4-byte quantity that
  963.  * uniquely identifies a file within the log directory -- currently a simple
  964.  * counter inside the log.  The offset is also an unsigned 4-byte value.  The
  965.  * log manager guarantees the offset is never more than 4 bytes by switching
  966.  * to a new log file before the maximum length imposed by an unsigned 4-byte
  967.  * offset is reached.
  968.  */
  969. struct __db_lsn {
  970. u_int32_t file; /* File ID. */
  971. u_int32_t offset; /* File offset. */
  972. };
  973. /* Log statistics structure. */
  974. struct __db_log_stat {
  975. u_int32_t st_magic; /* Log file magic number. */
  976. u_int32_t st_version; /* Log file version number. */
  977. int st_mode; /* Log file mode. */
  978. u_int32_t st_lg_bsize; /* Log buffer size. */
  979. u_int32_t st_lg_max; /* Maximum log file size. */
  980. u_int32_t st_w_bytes; /* Bytes to log. */
  981. u_int32_t st_w_mbytes; /* Megabytes to log. */
  982. u_int32_t st_wc_bytes; /* Bytes to log since checkpoint. */
  983. u_int32_t st_wc_mbytes; /* Megabytes to log since checkpoint. */
  984. u_int32_t st_wcount; /* Total writes to the log. */
  985. u_int32_t st_wcount_fill; /* Overflow writes to the log. */
  986. u_int32_t st_scount; /* Total syncs to the log. */
  987. u_int32_t st_region_wait; /* Region lock granted after wait. */
  988. u_int32_t st_region_nowait; /* Region lock granted without wait. */
  989. u_int32_t st_cur_file; /* Current log file number. */
  990. u_int32_t st_cur_offset; /* Current log file offset. */
  991. u_int32_t st_regsize; /* Region size. */
  992. };
  993. int  log_archive __P((DB_ENV *, char **[], u_int32_t, void *(*)(size_t)));
  994. int  log_compare __P((const DB_LSN *, const DB_LSN *));
  995. int  log_file __P((DB_ENV *, const DB_LSN *, char *, size_t));
  996. int  log_flush __P((DB_ENV *, const DB_LSN *));
  997. int  log_get __P((DB_ENV *, DB_LSN *, DBT *, u_int32_t));
  998. int  log_put __P((DB_ENV *, DB_LSN *, const DBT *, u_int32_t));
  999. int  log_register __P((DB_ENV *, DB *, const char *));
  1000. int  log_stat __P((DB_ENV *, DB_LOG_STAT **, void *(*)(size_t)));
  1001. int  log_unregister __P((DB_ENV *, DB *));
  1002. /*******************************************************
  1003.  * Mpool
  1004.  *******************************************************/
  1005. /* Flag values for memp_fget(). */
  1006. #define DB_MPOOL_CREATE 0x001 /* Create a page. */
  1007. #define DB_MPOOL_LAST 0x002 /* Return the last page. */
  1008. #define DB_MPOOL_NEW 0x004 /* Create a new page. */
  1009. #define DB_MPOOL_NEW_GROUP 0x008 /* Create a group of pages. */
  1010. #define DB_MPOOL_EXTENT 0x010 /* Get for an extent. */
  1011. /* Flag values for memp_fput(), memp_fset(). */
  1012. #define DB_MPOOL_CLEAN 0x001 /* Page is not modified. */
  1013. #define DB_MPOOL_DIRTY 0x002 /* Page is modified. */
  1014. #define DB_MPOOL_DISCARD 0x004 /* Don't cache the page. */
  1015. /* Mpool statistics structure. */
  1016. struct __db_mpool_stat {
  1017. u_int32_t st_cache_hit; /* Pages found in the cache. */
  1018. u_int32_t st_cache_miss; /* Pages not found in the cache. */
  1019. u_int32_t st_map; /* Pages from mapped files. */
  1020. u_int32_t st_page_create; /* Pages created in the cache. */
  1021. u_int32_t st_page_in; /* Pages read in. */
  1022. u_int32_t st_page_out; /* Pages written out. */
  1023. u_int32_t st_ro_evict; /* Clean pages forced from the cache. */
  1024. u_int32_t st_rw_evict; /* Dirty pages forced from the cache. */
  1025. u_int32_t st_hash_buckets; /* Number of hash buckets. */
  1026. u_int32_t st_hash_searches; /* Total hash chain searches. */
  1027. u_int32_t st_hash_longest; /* Longest hash chain searched. */
  1028. u_int32_t st_hash_examined; /* Total hash entries searched. */
  1029. u_int32_t st_page_clean; /* Clean pages. */
  1030. u_int32_t st_page_dirty; /* Dirty pages. */
  1031. u_int32_t st_page_trickle; /* Pages written by memp_trickle. */
  1032. u_int32_t st_region_wait; /* Region lock granted after wait. */
  1033. u_int32_t st_region_nowait; /* Region lock granted without wait. */
  1034. u_int32_t st_gbytes; /* Total cache size: GB. */
  1035. u_int32_t st_bytes; /* Total cache size: B. */
  1036. u_int32_t st_ncache; /* Number of caches. */
  1037. u_int32_t st_regsize; /* Cache size. */
  1038. };
  1039. /* Mpool file open information structure. */
  1040. struct __db_mpool_finfo {
  1041. int    ftype; /* File type. */
  1042. DBT   *pgcookie; /* Byte-string passed to pgin/pgout. */
  1043. u_int8_t  *fileid; /* Unique file ID. */
  1044. int32_t    lsn_offset; /* LSN offset in page. */
  1045. u_int32_t  clear_len; /* Cleared length on created pages. */
  1046. };
  1047. /* Mpool file statistics structure. */
  1048. struct __db_mpool_fstat {
  1049. char *file_name; /* File name. */
  1050. size_t st_pagesize; /* Page size. */
  1051. u_int32_t st_cache_hit; /* Pages found in the cache. */
  1052. u_int32_t st_cache_miss; /* Pages not found in the cache. */
  1053. u_int32_t st_map; /* Pages from mapped files. */
  1054. u_int32_t st_page_create; /* Pages created in the cache. */
  1055. u_int32_t st_page_in; /* Pages read in. */
  1056. u_int32_t st_page_out; /* Pages written out. */
  1057. };
  1058. int memp_fclose __P((DB_MPOOLFILE *));
  1059. int memp_fget __P((DB_MPOOLFILE *, db_pgno_t *, u_int32_t, void *));
  1060. int memp_fopen __P((DB_ENV *, const char *,
  1061.     u_int32_t, int, size_t, DB_MPOOL_FINFO *, DB_MPOOLFILE **));
  1062. int memp_fput __P((DB_MPOOLFILE *, void *, u_int32_t));
  1063. int memp_fset __P((DB_MPOOLFILE *, void *, u_int32_t));
  1064. int memp_fsync __P((DB_MPOOLFILE *));
  1065. int memp_register __P((DB_ENV *, int,
  1066.     int (*)(DB_ENV *, db_pgno_t, void *, DBT *),
  1067.     int (*)(DB_ENV *, db_pgno_t, void *, DBT *)));
  1068. int memp_stat __P((DB_ENV *,
  1069.     DB_MPOOL_STAT **, DB_MPOOL_FSTAT ***, void *(*)(size_t)));
  1070. int memp_sync __P((DB_ENV *, DB_LSN *));
  1071. int memp_trickle __P((DB_ENV *, int, int *));
  1072. /*******************************************************
  1073.  * Transactions.
  1074.  *******************************************************/
  1075. #define DB_TXNVERSION 1
  1076. /* Operations values to the tx_recover() function. */
  1077. #define DB_TXN_BACKWARD_ROLL 1 /* Read the log backwards. */
  1078. #define DB_TXN_FORWARD_ROLL 2 /* Read the log forwards. */
  1079. #define DB_TXN_OPENFILES 3 /* Read for open files. */
  1080. #define DB_TXN_REDO 4 /* Redo the operation. */
  1081. #define DB_TXN_UNDO 5 /* Undo the operation. */
  1082. /* Internal transaction status values. */
  1083. /* Transaction statistics structure. */
  1084. struct __db_txn_active {
  1085. u_int32_t txnid; /* Transaction ID */
  1086. u_int32_t parentid; /* Transaction ID of parent */
  1087. DB_LSN lsn; /* Lsn of the begin record */
  1088. };
  1089. struct __db_txn_stat {
  1090. DB_LSN   st_last_ckp; /* lsn of the last checkpoint */
  1091. DB_LSN   st_pending_ckp; /* last checkpoint did not finish */
  1092. time_t   st_time_ckp; /* time of last checkpoint */
  1093. u_int32_t st_last_txnid; /* last transaction id given out */
  1094. u_int32_t st_maxtxns; /* maximum txns possible */
  1095. u_int32_t st_naborts; /* number of aborted transactions */
  1096. u_int32_t st_nbegins; /* number of begun transactions */
  1097. u_int32_t st_ncommits; /* number of committed transactions */
  1098. u_int32_t st_nactive; /* number of active transactions */
  1099. u_int32_t st_maxnactive; /* maximum active transactions */
  1100. DB_TXN_ACTIVE
  1101.  *st_txnarray; /* array of active transactions */
  1102. u_int32_t st_region_wait; /* Region lock granted after wait. */
  1103. u_int32_t st_region_nowait; /* Region lock granted without wait. */
  1104. u_int32_t st_regsize; /* Region size. */
  1105. };
  1106. int   txn_abort __P((DB_TXN *));
  1107. int   txn_begin __P((DB_ENV *, DB_TXN *, DB_TXN **, u_int32_t));
  1108. int   txn_checkpoint __P((DB_ENV *, u_int32_t, u_int32_t, u_int32_t));
  1109. int   txn_commit __P((DB_TXN *, u_int32_t));
  1110. u_int32_t txn_id __P((DB_TXN *));
  1111. int   txn_prepare __P((DB_TXN *));
  1112. int   txn_stat __P((DB_ENV *, DB_TXN_STAT **, void *(*)(size_t)));
  1113. #ifndef DB_DBM_HSEARCH
  1114. #define DB_DBM_HSEARCH 0 /* No historic interfaces by default. */
  1115. #endif
  1116. #if DB_DBM_HSEARCH != 0
  1117. /*******************************************************
  1118.  * Dbm/Ndbm historic interfaces.
  1119.  *******************************************************/
  1120. #define DBM_INSERT 0 /* Flags to dbm_store(). */
  1121. #define DBM_REPLACE 1
  1122. /*
  1123.  * The DB support for ndbm(3) always appends this suffix to the
  1124.  * file name to avoid overwriting the user's original database.
  1125.  */
  1126. #define DBM_SUFFIX ".db"
  1127. #if defined(_XPG4_2)
  1128. typedef struct {
  1129. char *dptr;
  1130. size_t dsize;
  1131. } datum;
  1132. #else
  1133. typedef struct {
  1134. char *dptr;
  1135. int dsize;
  1136. } datum;
  1137. #endif
  1138. /*
  1139.  * Translate DBM calls into DB calls so that DB doesn't step on the
  1140.  * application's name space.
  1141.  *
  1142.  * The global variables dbrdonly, dirf and pagf were not retained when 4BSD
  1143.  * replaced the dbm interface with ndbm, and are not supported here.
  1144.  */
  1145. #define dbminit(a) __db_dbm_init(a)
  1146. #define dbmclose __db_dbm_close
  1147. #if !defined(__cplusplus)
  1148. #define delete(a) __db_dbm_delete(a)
  1149. #endif
  1150. #define fetch(a) __db_dbm_fetch(a)
  1151. #define firstkey __db_dbm_firstkey
  1152. #define nextkey(a) __db_dbm_nextkey(a)
  1153. #define store(a, b) __db_dbm_store(a, b)
  1154. /* Prototype the DB calls. */
  1155. int  __db_dbm_close __P((void));
  1156. int  __db_dbm_dbrdonly __P((void));
  1157. int  __db_dbm_delete __P((datum));
  1158. int  __db_dbm_dirf __P((void));
  1159. datum  __db_dbm_fetch __P((datum));
  1160. datum  __db_dbm_firstkey __P((void));
  1161. int  __db_dbm_init __P((char *));
  1162. datum  __db_dbm_nextkey __P((datum));
  1163. int  __db_dbm_pagf __P((void));
  1164. int  __db_dbm_store __P((datum, datum));
  1165. /*
  1166.  * Translate NDBM calls into DB calls so that DB doesn't step on the
  1167.  * application's name space.
  1168.  */
  1169. #define dbm_clearerr(a) __db_ndbm_clearerr(a)
  1170. #define dbm_close(a) __db_ndbm_close(a)
  1171. #define dbm_delete(a, b) __db_ndbm_delete(a, b)
  1172. #define dbm_dirfno(a) __db_ndbm_dirfno(a)
  1173. #define dbm_error(a) __db_ndbm_error(a)
  1174. #define dbm_fetch(a, b) __db_ndbm_fetch(a, b)
  1175. #define dbm_firstkey(a) __db_ndbm_firstkey(a)
  1176. #define dbm_nextkey(a) __db_ndbm_nextkey(a)
  1177. #define dbm_open(a, b, c) __db_ndbm_open(a, b, c)
  1178. #define dbm_pagfno(a) __db_ndbm_pagfno(a)
  1179. #define dbm_rdonly(a) __db_ndbm_rdonly(a)
  1180. #define dbm_store(a, b, c, d) __db_ndbm_store(a, b, c, d)
  1181. /* Prototype the DB calls. */
  1182. int  __db_ndbm_clearerr __P((DBM *));
  1183. void  __db_ndbm_close __P((DBM *));
  1184. int  __db_ndbm_delete __P((DBM *, datum));
  1185. int  __db_ndbm_dirfno __P((DBM *));
  1186. int  __db_ndbm_error __P((DBM *));
  1187. datum  __db_ndbm_fetch __P((DBM *, datum));
  1188. datum  __db_ndbm_firstkey __P((DBM *));
  1189. datum  __db_ndbm_nextkey __P((DBM *));
  1190. DBM *__db_ndbm_open __P((const char *, int, int));
  1191. int  __db_ndbm_pagfno __P((DBM *));
  1192. int  __db_ndbm_rdonly __P((DBM *));
  1193. int  __db_ndbm_store __P((DBM *, datum, datum, int));
  1194. /*******************************************************
  1195.  * Hsearch historic interface.
  1196.  *******************************************************/
  1197. typedef enum {
  1198. FIND, ENTER
  1199. } ACTION;
  1200. typedef struct entry {
  1201. char *key;
  1202. char *data;
  1203. } ENTRY;
  1204. /*
  1205.  * Translate HSEARCH calls into DB calls so that DB doesn't step on the
  1206.  * application's name space.
  1207.  */
  1208. #define hcreate(a) __db_hcreate(a)
  1209. #define hdestroy __db_hdestroy
  1210. #define hsearch(a, b) __db_hsearch(a, b)
  1211. /* Prototype the DB calls. */
  1212. int  __db_hcreate __P((size_t));
  1213. void  __db_hdestroy __P((void));
  1214. ENTRY *__db_hsearch __P((ENTRY, ACTION));
  1215. #endif /* DB_DBM_HSEARCH */
  1216. /*
  1217.  * XXX
  1218.  * MacOS: Reset Metrowerks C enum sizes.
  1219.  */
  1220. #ifdef __MWERKS__
  1221. #pragma enumsalwaysint reset
  1222. #endif
  1223. #if defined(__cplusplus)
  1224. }
  1225. #endif
  1226. #endif /* !_DB_H_ */