db_dispatch.h
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:3k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /*-
  2.  * See the file LICENSE for redistribution information.
  3.  *
  4.  * Copyright (c) 1996-2002
  5.  * Sleepycat Software.  All rights reserved.
  6.  */
  7. /*
  8.  * Copyright (c) 1995, 1996
  9.  * The President and Fellows of Harvard University.  All rights reserved.
  10.  *
  11.  * Redistribution and use in source and binary forms, with or without
  12.  * modification, are permitted provided that the following conditions
  13.  * are met:
  14.  * 1. Redistributions of source code must retain the above copyright
  15.  *    notice, this list of conditions and the following disclaimer.
  16.  * 2. Redistributions in binary form must reproduce the above copyright
  17.  *    notice, this list of conditions and the following disclaimer in the
  18.  *    documentation and/or other materials provided with the distribution.
  19.  * 3. Neither the name of the University nor the names of its contributors
  20.  *    may be used to endorse or promote products derived from this software
  21.  *    without specific prior written permission.
  22.  *
  23.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  24.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  25.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  26.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  27.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  28.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  29.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  30.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  31.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  32.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  33.  * SUCH DAMAGE.
  34.  *
  35.  * $Id: db_dispatch.h,v 11.30 2002/06/20 19:34:03 margo Exp $
  36.  */
  37. #ifndef _DB_DISPATCH_H_
  38. #define _DB_DISPATCH_H_
  39. /*
  40.  * Declarations and typedefs for the list of transaction IDs used during
  41.  * recovery.  This is a generic list used to pass along whatever information
  42.  * we need during recovery.
  43.  */
  44. typedef enum {
  45. TXNLIST_DELETE,
  46. TXNLIST_LSN,
  47. TXNLIST_PGNO,
  48. TXNLIST_TXNID
  49. } db_txnlist_type;
  50. #define DB_TXNLIST_MASK(hp, n)  (n % hp->nslots)
  51. struct __db_txnhead {
  52. u_int32_t maxid; /* Maximum transaction id. */
  53. DB_LSN maxlsn; /* Maximum commit lsn. */
  54. DB_LSN ckplsn; /* LSN of last retained checkpoint. */
  55. DB_LSN trunc_lsn; /* Lsn to which we are going to truncate;
  56.  * make sure we abort anyone after this. */
  57. int32_t generation; /* Current generation number. */
  58. int32_t gen_alloc; /* Number of generations allocated. */
  59. struct {
  60. int32_t generation;
  61. u_int32_t txn_min;
  62. u_int32_t txn_max;
  63. } *gen_array; /* Array of txnids associted with a gen. */
  64. int nslots;
  65. LIST_HEAD(__db_headlink, __db_txnlist) head[1];
  66. };
  67. struct __db_txnlist {
  68. db_txnlist_type type;
  69. LIST_ENTRY(__db_txnlist) links;
  70. union {
  71. struct {
  72. u_int32_t txnid;
  73. int32_t generation;
  74. int32_t status;
  75. } t;
  76. struct {
  77. int32_t ntxns;
  78. int32_t maxn;
  79. DB_LSN *lsn_array;
  80. } l;
  81. struct {
  82. int32_t nentries;
  83. int32_t maxentry;
  84. int32_t locked;
  85. char *fname;
  86. int32_t fileid;
  87. db_pgno_t *pgno_array;
  88. u_int8_t uid[DB_FILE_ID_LEN];
  89. } p;
  90. } u;
  91. };
  92. /*
  93.  * Flag value for __db_txnlist_lsnadd. Distinguish whether we are replacing
  94.  * an entry in the transaction list or adding a new one.
  95.  */
  96. #define TXNLIST_NEW 0x1
  97. #define DB_user_BEGIN 10000
  98. #endif /* !_DB_DISPATCH_H_ */