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

MySQL数据库

开发平台:

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. /*
  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.17 2000/12/14 07:39:13 ubell 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. struct __db_txnhead {
  45. LIST_HEAD(__db_headlink, __db_txnlist) head;
  46. u_int32_t maxid;
  47. int32_t generation;
  48. };
  49. #define TXNLIST_INVALID_ID 0xffffffff
  50. struct __db_txnlist {
  51. db_txnlist_type type;
  52. LIST_ENTRY(__db_txnlist) links;
  53. union {
  54. struct {
  55. u_int32_t txnid;
  56. int32_t generation;
  57. int32_t aborted;
  58. } t;
  59. struct {
  60. #define TXNLIST_FLAG_DELETED 0x1
  61. #define TXNLIST_FLAG_CLOSED 0x2
  62. u_int32_t flags;
  63. int32_t fileid;
  64. u_int32_t count;
  65. char *fname;
  66. } d;
  67. struct {
  68. int32_t ntxns;
  69. int32_t maxn;
  70. DB_LSN *lsn_array;
  71. } l;
  72. struct {
  73. int32_t nentries;
  74. int32_t maxentry;
  75. char *fname;
  76. int32_t fileid;
  77. db_pgno_t *pgno_array;
  78. u_int8_t uid[DB_FILE_ID_LEN];
  79. } p;
  80. } u;
  81. };
  82. /*
  83.  * Flag value for __db_txnlist_lsnadd. Distinguish whether we are replacing
  84.  * an entry in the transaction list or adding a new one.
  85.  */
  86. #define TXNLIST_NEW 0x1
  87. #define DB_user_BEGIN 10000
  88. #endif