db_int.src
Upload User: tsgydb
Upload Date: 2007-04-14
Package Size: 10674k
Code Size: 13k
Category:

MySQL

Development Platform:

Visual C++

  1. /*-
  2.  * See the file LICENSE for redistribution information.
  3.  *
  4.  * Copyright (c) 1996, 1997, 1998, 1999, 2000
  5.  * Sleepycat Software.  All rights reserved.
  6.  *
  7.  * $Id: db_int.src,v 11.42 2001/01/11 17:49:17 krinsky Exp $
  8.  */
  9. #ifndef _DB_INTERNAL_H_
  10. #define _DB_INTERNAL_H_
  11. /*******************************************************
  12.  * General includes.
  13.  *******************************************************/
  14. #include "db.h"
  15. #ifndef NO_SYSTEM_INCLUDES
  16. #if defined(__STDC__) || defined(__cplusplus)
  17. #include <stdarg.h>
  18. #else
  19. #include <varargs.h>
  20. #endif
  21. #include <errno.h>
  22. #endif
  23. #include "queue.h"
  24. #include "shqueue.h"
  25. #if defined(__cplusplus)
  26. extern "C" {
  27. #endif
  28. /*******************************************************
  29.  * General purpose constants and macros.
  30.  *******************************************************/
  31. #define UINT16_T_MAX     0xffff /* Maximum 16 bit unsigned. */
  32. #define UINT32_T_MAX 0xffffffff /* Maximum 32 bit unsigned. */
  33. #define MEGABYTE 1048576
  34. #define GIGABYTE 1073741824
  35. #define MS_PER_SEC 1000 /* Milliseconds in a second. */
  36. #define USEC_PER_MS 1000 /* Microseconds in a millisecond. */
  37. #define DB_MIN_PGSIZE 0x000200 /* Minimum page size (512). */
  38. #define DB_MAX_PGSIZE 0x010000 /* Maximum page size (65536). */
  39. #define RECNO_OOB 0 /* Illegal record number. */
  40. /*
  41.  * If we are unable to determine the underlying filesystem block size, use
  42.  * 8K on the grounds that most OS's use less than 8K for a VM page size.
  43.  */
  44. #define DB_DEF_IOSIZE (8 * 1024)
  45. /*
  46.  * Aligning items to particular sizes or in pages or memory.
  47.  *
  48.  * db_align_t --
  49.  * Largest integral type, used to align structures in memory.  We don't store
  50.  * floating point types in structures, so integral types should be sufficient
  51.  * (and we don't have to worry about systems that store floats in other than
  52.  * power-of-2 numbers of bytes).  Additionally this fixes compiler that rewrite
  53.  * structure assignments and ANSI C memcpy calls to be in-line instructions
  54.  * that happen to require alignment.  Note: this alignment isn't sufficient for
  55.  * mutexes, which depend on things like cache line alignment.  Mutex alignment
  56.  * is handled separately, in mutex.h.
  57.  *
  58.  * db_alignp_t --
  59.  * Integral type that's the same size as a pointer.  There are places where
  60.  * DB modifies pointers by discarding the bottom bits to guarantee alignment.
  61.  * We can't use db_align_t, it may be larger than the pointer, and compilers
  62.  * get upset about that.  So far we haven't run on any machine where there
  63.  * isn't an integral type the same size as a pointer -- here's hoping.
  64.  */
  65. @db_align_t_decl@
  66. @db_alignp_t_decl@
  67. /* Align an integer to a specific boundary. */
  68. #undef ALIGN
  69. #define ALIGN(value, bound) 
  70.     (((value) + (bound) - 1) & ~(((u_int)bound) - 1))
  71. /* Align a pointer to a specific boundary. */
  72. #undef ALIGNP
  73. #define ALIGNP(value, bound) ALIGN((db_alignp_t)value, bound)
  74. /*
  75.  * There are several on-page structures that are declared to have a number of
  76.  * fields followed by a variable length array of items.  The structure size
  77.  * without including the variable length array or the address of the first of
  78.  * those elements can be found using SSZ.
  79.  *
  80.  * This macro can also be used to find the offset of a structure element in a
  81.  * structure.  This is used in various places to copy structure elements from
  82.  * unaligned memory references, e.g., pointers into a packed page.
  83.  *
  84.  * There are two versions because compilers object if you take the address of
  85.  * an array.
  86.  */
  87. #undef SSZ
  88. #define SSZ(name, field) ((int)&(((name *)0)->field))
  89. #undef SSZA
  90. #define SSZA(name, field) ((int)&(((name *)0)->field[0]))
  91. /*
  92.  * Print an address as a u_long (a u_long is the largest type we can print
  93.  * portably).  Most 64-bit systems have made longs 64-bits, so this should
  94.  * work.
  95.  */
  96. #define P_TO_ULONG(p) ((u_long)(db_alignp_t)(p))
  97. /* Structure used to print flag values. */
  98. typedef struct __fn {
  99. u_int32_t mask; /* Flag value. */
  100. const char *name; /* Flag name. */
  101. } FN;
  102. /* Set, clear and test flags. */
  103. #define FLD_CLR(fld, f) (fld) &= ~(f)
  104. #define FLD_ISSET(fld, f) ((fld) & (f))
  105. #define FLD_SET(fld, f) (fld) |= (f)
  106. #define F_CLR(p, f) (p)->flags &= ~(f)
  107. #define F_ISSET(p, f) ((p)->flags & (f))
  108. #define F_SET(p, f) (p)->flags |= (f)
  109. #define LF_CLR(f) (flags &= ~(f))
  110. #define LF_ISSET(f) (flags & (f))
  111. #define LF_SET(f) (flags |= (f))
  112. /* Display separator string. */
  113. #undef DB_LINE
  114. #define DB_LINE "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-="
  115. /* Unused, or not-used-yet variable.  "Shut that bloody compiler up!" */
  116. #define COMPQUIET(n, v) (n) = (v)
  117. /*******************************************************
  118.  * Files.
  119.  *******************************************************/
  120.  /*
  121.   * We use 1024 as the maximum path length.  It's too hard to figure out what
  122.   * the real path length is, as it was traditionally stored in <sys/param.h>,
  123.   * and that file isn't always available.
  124.   */
  125. #undef MAXPATHLEN
  126. #define MAXPATHLEN 1024
  127. #define PATH_DOT "." /* Current working directory. */
  128. #define PATH_SEPARATOR "/" /* Path separator character. */
  129. /*
  130.  * Flags understood by __os_open.
  131.  */
  132. #define DB_OSO_CREATE 0x001 /* POSIX: O_CREAT */
  133. #define DB_OSO_EXCL 0x002 /* POSIX: O_EXCL */
  134. #define DB_OSO_LOG 0x004 /* Opening a log file. */
  135. #define DB_OSO_RDONLY 0x008 /* POSIX: O_RDONLY */
  136. #define DB_OSO_REGION 0x010 /* Opening a region file. */
  137. #define DB_OSO_SEQ 0x020 /* Expected sequential access. */
  138. #define DB_OSO_TEMP 0x040 /* Remove after last close. */
  139. #define DB_OSO_TRUNC 0x080 /* POSIX: O_TRUNC */
  140. /*
  141.  * Seek options understood by __os_seek.
  142.  */
  143. typedef enum {
  144. DB_OS_SEEK_CUR, /* POSIX: SEEK_CUR */
  145. DB_OS_SEEK_END, /* POSIX: SEEK_END */
  146. DB_OS_SEEK_SET /* POSIX: SEEK_SET */
  147. } DB_OS_SEEK;
  148. /*******************************************************
  149.  * Environment.
  150.  *******************************************************/
  151. /* Type passed to __db_appname(). */
  152. typedef enum {
  153. DB_APP_NONE=0, /* No type (region). */
  154. DB_APP_DATA, /* Data file. */
  155. DB_APP_LOG, /* Log file. */
  156. DB_APP_TMP /* Temporary file. */
  157. } APPNAME;
  158. /*
  159.  * CDB_LOCKING CDB product locking.
  160.  * LOCKING_ON Locking has been configured.
  161.  * LOGGING_ON Logging has been configured.
  162.  * MPOOL_ON Memory pool has been configured.
  163.  * TXN_ON Transactions have been configured.
  164.  */
  165. #define CDB_LOCKING(dbenv) F_ISSET(dbenv, DB_ENV_CDB)
  166. #define LOCKING_ON(dbenv) ((dbenv)->lk_handle != NULL)
  167. #define LOGGING_ON(dbenv) ((dbenv)->lg_handle != NULL)
  168. #define MPOOL_ON(dbenv) ((dbenv)->mp_handle != NULL)
  169. #define TXN_ON(dbenv) ((dbenv)->tx_handle != NULL)
  170. /*
  171.  * STD_LOCKING Standard locking, that is, locking was configured and CDB
  172.  * was not.  We do not do locking in off-page duplicate trees,
  173.  * so we check for that in the cursor first.
  174.  */
  175. #define STD_LOCKING(dbc)
  176. (!F_ISSET(dbc, DBC_OPD) &&
  177.     !CDB_LOCKING((dbc)->dbp->dbenv) && LOCKING_ON((dbc)->dbp->dbenv))
  178. /*
  179.  * IS_RECOVERING The system is running recovery.
  180.  */
  181. #define IS_RECOVERING(dbenv)
  182. (LOGGING_ON(dbenv) &&
  183.     F_ISSET((DB_LOG *)(dbenv)->lg_handle, DBLOG_RECOVER))
  184. /* Most initialization methods cannot be called after open is called. */
  185. #define ENV_ILLEGAL_AFTER_OPEN(dbenv, name)
  186. if (F_ISSET((dbenv), DB_ENV_OPEN_CALLED))
  187. return (__db_mi_open(dbenv, name, 1));
  188. /* We're not actually user hostile, honest. */
  189. #define ENV_REQUIRES_CONFIG(dbenv, handle, subsystem)
  190. if (handle == NULL)
  191. return (__db_env_config(dbenv, subsystem));
  192. /*******************************************************
  193.  * Database Access Methods.
  194.  *******************************************************/
  195. /*
  196.  * DB_IS_THREADED --
  197.  * The database handle is free-threaded (was opened with DB_THREAD).
  198.  */
  199. #define DB_IS_THREADED(dbp)
  200. ((dbp)->mutexp != NULL)
  201. /* Initialization methods are often illegal before/after open is called. */
  202. #define DB_ILLEGAL_AFTER_OPEN(dbp, name)
  203. if (F_ISSET((dbp), DB_OPEN_CALLED))
  204. return (__db_mi_open(dbp->dbenv, name, 1));
  205. #define DB_ILLEGAL_BEFORE_OPEN(dbp, name)
  206. if (!F_ISSET((dbp), DB_OPEN_CALLED))
  207. return (__db_mi_open(dbp->dbenv, name, 0));
  208. /* Some initialization methods are illegal if environment isn't local. */
  209. #define DB_ILLEGAL_IN_ENV(dbp, name)
  210. if (!F_ISSET(dbp->dbenv, DB_ENV_DBLOCAL))
  211. return (__db_mi_env(dbp->dbenv, name));
  212. #define DB_ILLEGAL_METHOD(dbp, flags) {
  213. int __ret;
  214. if ((__ret = __dbh_am_chk(dbp, flags)) != 0)
  215. return (__ret);
  216. }
  217. /*
  218.  * Common DBC->internal fields.  Each access method adds additional fields
  219.  * to this list, but the initial fields are common.
  220.  */
  221. #define __DBC_INTERNAL
  222. DBC  *opd; /* Off-page duplicate cursor. */
  223. void  *page; /* Referenced page. */
  224. db_pgno_t root; /* Tree root. */
  225. db_pgno_t pgno; /* Referenced page number. */
  226. db_indx_t indx; /* Referenced key item index. */
  227. DB_LOCK lock; /* Cursor lock. */
  228. db_lockmode_t lock_mode; /* Lock mode. */
  229. struct __dbc_internal {
  230. __DBC_INTERNAL
  231. };
  232. /*
  233.  * Access-method-common macro for determining whether a cursor
  234.  * has been initialized.
  235.  */
  236. #define IS_INITIALIZED(dbc) ((dbc)->internal->pgno != PGNO_INVALID)
  237. /*******************************************************
  238.  * Mpool.
  239.  *******************************************************/
  240. /*
  241.  * File types for DB access methods.  Negative numbers are reserved to DB.
  242.  */
  243. #define DB_FTYPE_SET -1 /* Call pgin/pgout functions. */
  244. #define DB_FTYPE_NOTSET  0 /* Don't call... */
  245. /* Structure used as the DB pgin/pgout pgcookie. */
  246. typedef struct __dbpginfo {
  247. size_t db_pagesize; /* Underlying page size. */
  248. int needswap; /* If swapping required. */
  249. } DB_PGINFO;
  250. /*******************************************************
  251.  * Log.
  252.  *******************************************************/
  253. /* Initialize an LSN to 'zero'. */
  254. #define ZERO_LSN(LSN) do {
  255. (LSN).file = 0;
  256. (LSN).offset = 0;
  257. } while (0)
  258. /* Return 1 if LSN is a 'zero' lsn, otherwise return 0. */
  259. #define IS_ZERO_LSN(LSN) ((LSN).file == 0)
  260. /* Test if we need to log a change. */
  261. #define DB_LOGGING(dbc)
  262. (LOGGING_ON((dbc)->dbp->dbenv) && !F_ISSET(dbc, DBC_RECOVER))
  263. /* Internal flag for use with internal __log_unregister. */
  264. #define DB_LOGONLY 0x01
  265. /*******************************************************
  266.  * Txn.
  267.  *******************************************************/
  268. #define DB_NONBLOCK(C) ((C)->txn != NULL && F_ISSET((C)->txn, TXN_NOWAIT))
  269. #define IS_SUBTRANSACTION(txn) 
  270. ((txn) != NULL && (txn)->parent != NULL)
  271. /*******************************************************
  272.  * Global variables.
  273.  *******************************************************/
  274. #ifdef HAVE_VXWORKS
  275. #include "semLib.h"
  276. #endif
  277. /*
  278.  * DB global variables.  Done in a single structure to minimize the name-space
  279.  * pollution.
  280.  */
  281. typedef struct __db_globals {
  282. u_int32_t db_pageyield; /* db_set_pageyield */
  283. u_int32_t db_panic; /* db_set_panic */
  284. u_int32_t db_region_init; /* db_set_region_init */
  285. u_int32_t db_tas_spins; /* db_set_tas_spins */
  286. #ifdef HAVE_VXWORKS
  287. u_int32_t db_global_init; /* VxWorks: inited */
  288. SEM_ID db_global_lock; /* VxWorks: global semaphore */
  289. #endif
  290. /* XA: list of opened environments. */
  291. TAILQ_HEAD(__db_envq, __db_env) db_envq;
  292. } DB_GLOBALS;
  293. #ifdef DB_INITIALIZE_DB_GLOBALS
  294. DB_GLOBALS __db_global_values = {
  295. 0, /* db_set_pageyield */
  296. 1, /* db_set_panic */
  297. 0, /* db_set_region_init */
  298. 0, /* db_set_tas_spins */
  299. #ifdef HAVE_VXWORKS
  300. 0, /* db_global_init */
  301. NULL, /* db_global_lock */
  302. #endif
  303. /* XA environment queue */
  304. {NULL, &__db_global_values.db_envq.tqh_first}
  305. };
  306. #else
  307. extern DB_GLOBALS __db_global_values;
  308. #endif
  309. #define DB_GLOBAL(v) __db_global_values.v
  310. /* Forward structure declarations. */
  311. struct __db_reginfo_t; typedef struct __db_reginfo_t REGINFO;
  312. struct __mutex_t; typedef struct __mutex_t MUTEX;
  313. struct __vrfy_childinfo; typedef struct __vrfy_childinfo VRFY_CHILDINFO;
  314. struct __vrfy_dbinfo;   typedef struct __vrfy_dbinfo VRFY_DBINFO;
  315. struct __vrfy_pageinfo; typedef struct __vrfy_pageinfo VRFY_PAGEINFO;
  316. struct __db_txnlist; typedef struct __db_txnlist DB_TXNLIST;
  317. struct __db_txnhead; typedef struct __db_txnhead DB_TXNHEAD;
  318. typedef enum {
  319. TXNLIST_DELETE,
  320. TXNLIST_LSN,
  321. TXNLIST_TXNID,
  322. TXNLIST_PGNO
  323. } db_txnlist_type;
  324. /*
  325.  * Currently, region offsets are limited to 32-bits.  I expect that's going
  326.  * to have to be fixed in the not-too-distant future, since we won't want to
  327.  * split 100Gb memory pools into that many different regions.  It's typedef'd
  328.  * so it won't be too painful to upgrade.
  329.  */
  330. typedef u_int32_t roff_t;
  331. #if defined(__cplusplus)
  332. }
  333. #endif
  334. /*******************************************************
  335.  * More general includes.
  336.  *******************************************************/
  337. #include "debug.h"
  338. #include "mutex.h"
  339. #include "region.h"
  340. #include "mutex_ext.h"
  341. #include "env_ext.h"
  342. #include "os.h"
  343. #include "os_ext.h"
  344. #include "common_ext.h"
  345. #endif /* !_DB_INTERNAL_H_ */