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

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) 1990, 1993, 1994
  9.  * The Regents of the University of California.  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_185.h,v 11.4 2000/02/14 02:59:54 bostic Exp $
  36.  */
  37. #ifndef _DB_185_H_
  38. #define _DB_185_H_
  39. #include <sys/types.h>
  40. #include <limits.h>
  41. /*
  42.  * XXX
  43.  * Handle function prototypes and the keyword "const".  This steps on name
  44.  * space that DB doesn't control, but all of the other solutions are worse.
  45.  */
  46. #undef __P
  47. #if defined(__STDC__) || defined(__cplusplus)
  48. #define __P(protos) protos /* ANSI C prototypes */
  49. #else
  50. #define const
  51. #define __P(protos) () /* K&R C preprocessor */
  52. #endif
  53. #define RET_ERROR -1 /* Return values. */
  54. #define RET_SUCCESS  0
  55. #define RET_SPECIAL  1
  56. #ifndef __BIT_TYPES_DEFINED__
  57. #define __BIT_TYPES_DEFINED__
  58. @u_int8_decl@
  59. @int16_decl@
  60. @u_int16_decl@
  61. @int32_decl@
  62. @u_int32_decl@
  63. #endif
  64. /*
  65.  * XXX
  66.  * SGI/IRIX already has a pgno_t.
  67.  */
  68. #ifdef sgi
  69. #define pgno_t db_pgno_t
  70. #endif
  71. #define MAX_PAGE_NUMBER 0xffffffff /* >= # of pages in a file */
  72. typedef u_int32_t pgno_t;
  73. #define MAX_PAGE_OFFSET 65535 /* >= # of bytes in a page */
  74. typedef u_int16_t indx_t;
  75. #define MAX_REC_NUMBER 0xffffffff /* >= # of records in a tree */
  76. typedef u_int32_t recno_t;
  77. /* Key/data structure -- a Data-Base Thang. */
  78. typedef struct {
  79. void *data; /* data */
  80. size_t  size; /* data length */
  81. } DBT;
  82. /* Routine flags. */
  83. #define R_CURSOR 1 /* del, put, seq */
  84. #define __R_UNUSED 2 /* UNUSED */
  85. #define R_FIRST 3 /* seq */
  86. #define R_IAFTER 4 /* put (RECNO) */
  87. #define R_IBEFORE 5 /* put (RECNO) */
  88. #define R_LAST 6 /* seq (BTREE, RECNO) */
  89. #define R_NEXT 7 /* seq */
  90. #define R_NOOVERWRITE 8 /* put */
  91. #define R_PREV 9 /* seq (BTREE, RECNO) */
  92. #define R_SETCURSOR 10 /* put (RECNO) */
  93. #define R_RECNOSYNC 11 /* sync (RECNO) */
  94. typedef enum { DB_BTREE, DB_HASH, DB_RECNO } DBTYPE;
  95. /* Access method description structure. */
  96. typedef struct __db {
  97. DBTYPE type; /* Underlying db type. */
  98. int (*close) __P((struct __db *));
  99. int (*del) __P((const struct __db *, const DBT *, u_int));
  100. int (*get) __P((const struct __db *, const DBT *, DBT *, u_int));
  101. int (*put) __P((const struct __db *, DBT *, const DBT *, u_int));
  102. int (*seq) __P((const struct __db *, DBT *, DBT *, u_int));
  103. int (*sync) __P((const struct __db *, u_int));
  104. void *internal; /* Access method private. */
  105. int (*fd) __P((const struct __db *));
  106. } DB;
  107. #define BTREEMAGIC 0x053162
  108. #define BTREEVERSION 3
  109. /* Structure used to pass parameters to the btree routines. */
  110. typedef struct {
  111. #define R_DUP 0x01 /* duplicate keys */
  112. u_int32_t flags;
  113. u_int32_t cachesize; /* bytes to cache */
  114. u_int32_t maxkeypage; /* maximum keys per page */
  115. u_int32_t minkeypage; /* minimum keys per page */
  116. u_int32_t psize; /* page size */
  117. int (*compare) /* comparison function */
  118.     __P((const DBT *, const DBT *));
  119. size_t (*prefix) /* prefix function */
  120.     __P((const DBT *, const DBT *));
  121. int lorder; /* byte order */
  122. } BTREEINFO;
  123. #define HASHMAGIC 0x061561
  124. #define HASHVERSION 2
  125. /* Structure used to pass parameters to the hashing routines. */
  126. typedef struct {
  127. u_int32_t bsize; /* bucket size */
  128. u_int32_t ffactor; /* fill factor */
  129. u_int32_t nelem; /* number of elements */
  130. u_int32_t cachesize; /* bytes to cache */
  131. u_int32_t /* hash function */
  132. (*hash) __P((const void *, size_t));
  133. int lorder; /* byte order */
  134. } HASHINFO;
  135. /* Structure used to pass parameters to the record routines. */
  136. typedef struct {
  137. #define R_FIXEDLEN 0x01 /* fixed-length records */
  138. #define R_NOKEY 0x02 /* key not required */
  139. #define R_SNAPSHOT 0x04 /* snapshot the input */
  140. u_int32_t flags;
  141. u_int32_t cachesize; /* bytes to cache */
  142. u_int32_t psize; /* page size */
  143. int lorder; /* byte order */
  144. size_t reclen; /* record length (fixed-length records) */
  145. u_char bval; /* delimiting byte (variable-length records */
  146. char *bfname; /* btree file name */
  147. } RECNOINFO;
  148. #if defined(__cplusplus)
  149. extern "C" {
  150. #endif
  151. #define dbopen __db185_open
  152. DB *__db185_open __P((const char *, int, int, DBTYPE, const void *));
  153. #if defined(__cplusplus)
  154. }
  155. #endif
  156. #endif /* !_DB_185_H_ */