db_server_int.h
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:2k
- /*-
- * See the file LICENSE for redistribution information.
- *
- * Copyright (c) 2000
- * Sleepycat Software. All rights reserved.
- *
- * $Id: db_server_int.h,v 1.13 2001/01/11 18:19:52 bostic Exp $
- */
- #ifndef _DB_SERVER_INT_H_
- #define _DB_SERVER_INT_H_
- #define DB_SERVER_TIMEOUT 300 /* 5 minutes */
- #define DB_SERVER_MAXTIMEOUT 1200 /* 20 minutes */
- #define DB_SERVER_IDLETIMEOUT 86400 /* 1 day */
- #define CT_CURSOR 0x001 /* Cursor */
- #define CT_DB 0x002 /* Database */
- #define CT_ENV 0x004 /* Env */
- #define CT_TXN 0x008 /* Txn */
- #define CT_JOIN 0x10000000 /* Join cursor component */
- #define CT_JOINCUR 0x20000000 /* Join cursor */
- typedef struct home_entry home_entry;
- struct home_entry {
- LIST_ENTRY(home_entry) entries;
- char *home;
- char *dir;
- char *name;
- };
- /*
- * We maintain an activity timestamp for each handle. However, we
- * set it to point, possibly to the ct_active field of its own handle
- * or it may point to the ct_active field of a parent. In the case
- * of nested transactions and any cursors within transactions it must
- * point to the ct_active field of the ultimate parent of the transaction
- * no matter how deeply it is nested.
- */
- typedef struct ct_entry ct_entry;
- struct ct_entry {
- LIST_ENTRY(ct_entry) entries; /* List of entries */
- union {
- DB_ENV *envp; /* H_ENV */
- DB_TXN *txnp; /* H_TXN */
- DB *dbp; /* H_DB */
- DBC *dbc; /* H_CURSOR */
- void *anyp;
- } handle_u;
- long ct_id; /* Client ID */
- long *ct_activep; /* Activity timestamp pointer*/
- long *ct_origp; /* Original timestamp pointer*/
- long ct_active; /* Activity timestamp */
- long ct_timeout; /* Resource timeout */
- long ct_idle; /* Idle timeout */
- u_int32_t ct_type; /* This entry's type */
- struct ct_entry *ct_parent; /* Its parent */
- struct ct_entry *ct_envparent; /* Its environment */
- };
- #define ct_envp handle_u.envp
- #define ct_txnp handle_u.txnp
- #define ct_dbp handle_u.dbp
- #define ct_dbc handle_u.dbc
- #define ct_anyp handle_u.anyp
- extern int __dbsrv_verbose;
- /*
- * Get ctp and activate it.
- * Assumes local variable 'replyp'.
- * NOTE: May 'return' from macro.
- */
- #define ACTIVATE_CTP(ctp, id, type) {
- (ctp) = get_tableent(id);
- if ((ctp) == NULL) {
- replyp->status = DB_NOSERVER_ID;
- return;
- }
- DB_ASSERT((ctp)->ct_type & (type));
- __dbsrv_active(ctp);
- }
- #endif /* _DB_SERVER_INT_H_ */