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

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) 1990, 1993, 1994
  9.  * Margo Seltzer.  All rights reserved.
  10.  */
  11. /*
  12.  * Copyright (c) 1990, 1993, 1994
  13.  * The Regents of the University of California.  All rights reserved.
  14.  *
  15.  * This code is derived from software contributed to Berkeley by
  16.  * Margo Seltzer.
  17.  *
  18.  * Redistribution and use in source and binary forms, with or without
  19.  * modification, are permitted provided that the following conditions
  20.  * are met:
  21.  * 1. Redistributions of source code must retain the above copyright
  22.  *    notice, this list of conditions and the following disclaimer.
  23.  * 2. Redistributions in binary form must reproduce the above copyright
  24.  *    notice, this list of conditions and the following disclaimer in the
  25.  *    documentation and/or other materials provided with the distribution.
  26.  * 3. Neither the name of the University nor the names of its contributors
  27.  *    may be used to endorse or promote products derived from this software
  28.  *    without specific prior written permission.
  29.  *
  30.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  31.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  32.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  33.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  34.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  35.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  36.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  37.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  38.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  39.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  40.  * SUCH DAMAGE.
  41.  *
  42.  * $Id: hash.h,v 11.26 2002/03/27 04:34:54 bostic Exp $
  43.  */
  44. #ifndef _DB_HASH_H_
  45. #define _DB_HASH_H_
  46. /* Hash internal structure. */
  47. typedef struct hash_t {
  48. db_pgno_t meta_pgno; /* Page number of the meta data page. */
  49. u_int32_t h_ffactor; /* Fill factor. */
  50. u_int32_t h_nelem; /* Number of elements. */
  51. /* Hash function. */
  52. u_int32_t (*h_hash) __P((DB *, const void *, u_int32_t));
  53. } HASH;
  54. /* Cursor structure definitions. */
  55. typedef struct cursor_t {
  56. /* struct __dbc_internal */
  57. __DBC_INTERNAL
  58. /* Hash private part */
  59. /* Per-thread information */
  60. DB_LOCK hlock; /* Metadata page lock. */
  61. HMETA *hdr; /* Pointer to meta-data page. */
  62. PAGE *split_buf; /* Temporary buffer for splits. */
  63. /* Hash cursor information */
  64. db_pgno_t bucket; /* Bucket we are traversing. */
  65. db_pgno_t lbucket; /* Bucket for which we are locked. */
  66. db_indx_t dup_off; /* Offset within a duplicate set. */
  67. db_indx_t dup_len; /* Length of current duplicate. */
  68. db_indx_t dup_tlen; /* Total length of duplicate entry. */
  69. u_int32_t seek_size; /* Number of bytes we need for add. */
  70. db_pgno_t seek_found_page;/* Page on which we can insert. */
  71. u_int32_t order; /* Relative order among deleted curs. */
  72. #define H_CONTINUE 0x0001 /* Join--search strictly fwd for data */
  73. #define H_DELETED 0x0002 /* Cursor item is deleted. */
  74. #define H_DIRTY 0x0004 /* Meta-data page needs to be written */
  75. #define H_DUPONLY 0x0008 /* Dups only; do not change key. */
  76. #define H_EXPAND 0x0010 /* Table expanded. */
  77. #define H_ISDUP 0x0020 /* Cursor is within duplicate set. */
  78. #define H_NEXT_NODUP 0x0040 /* Get next non-dup entry. */
  79. #define H_NOMORE 0x0080 /* No more entries in bucket. */
  80. #define H_OK 0x0100 /* Request succeeded. */
  81. u_int32_t flags;
  82. } HASH_CURSOR;
  83. /* Test string. */
  84. #define CHARKEY "%$sniglet^&"
  85. /* Overflow management */
  86. /*
  87.  * The spares table indicates the page number at which each doubling begins.
  88.  * From this page number we subtract the number of buckets already allocated
  89.  * so that we can do a simple addition to calculate the page number here.
  90.  */
  91. #define BS_TO_PAGE(bucket, spares)
  92. ((bucket) + (spares)[__db_log2((bucket) + 1)])
  93. #define BUCKET_TO_PAGE(I, B) (BS_TO_PAGE((B), (I)->hdr->spares))
  94. /* Constraints about much data goes on a page. */
  95. #define MINFILL 4
  96. #define ISBIG(I, N) (((N) > ((I)->hdr->dbmeta.pagesize / MINFILL)) ? 1 : 0)
  97. /* Shorthands for accessing structure */
  98. #define NDX_INVALID 0xFFFF
  99. #define BUCKET_INVALID 0xFFFFFFFF
  100. /* On page duplicates are stored as a string of size-data-size triples. */
  101. #define DUP_SIZE(len) ((len) + 2 * sizeof(db_indx_t))
  102. /* Log messages types (these are subtypes within a record type) */
  103. #define PAIR_KEYMASK 0x1
  104. #define PAIR_DATAMASK 0x2
  105. #define PAIR_DUPMASK 0x4
  106. #define PAIR_MASK 0xf
  107. #define PAIR_ISKEYBIG(N) (N & PAIR_KEYMASK)
  108. #define PAIR_ISDATABIG(N) (N & PAIR_DATAMASK)
  109. #define PAIR_ISDATADUP(N) (N & PAIR_DUPMASK)
  110. #define OPCODE_OF(N) (N & ~PAIR_MASK)
  111. #define PUTPAIR 0x20
  112. #define DELPAIR 0x30
  113. #define PUTOVFL 0x40
  114. #define DELOVFL 0x50
  115. #define HASH_UNUSED1 0x60
  116. #define HASH_UNUSED2 0x70
  117. #define SPLITOLD 0x80
  118. #define SPLITNEW 0x90
  119. typedef enum {
  120. DB_HAM_CHGPG = 1,
  121. DB_HAM_DELFIRSTPG = 2,
  122. DB_HAM_DELMIDPG = 3,
  123. DB_HAM_DELLASTPG = 4,
  124. DB_HAM_DUP   = 5,
  125. DB_HAM_SPLIT = 6
  126. } db_ham_mode;
  127. #include "dbinc_auto/hash_auto.h"
  128. #include "dbinc_auto/hash_ext.h"
  129. #include "dbinc/db_am.h"
  130. #endif /* !_DB_HASH_H_ */