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

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  2.    
  3.    This library is free software; you can redistribute it and/or
  4.    modify it under the terms of the GNU Library General Public
  5.    License as published by the Free Software Foundation; either
  6.    version 2 of the License, or (at your option) any later version.
  7.    
  8.    This library is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11.    Library General Public License for more details.
  12.    
  13.    You should have received a copy of the GNU Library General Public
  14.    License along with this library; if not, write to the Free
  15.    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
  16.    MA 02111-1307, USA */
  17. /* Dynamic hashing of record with different key-length */
  18. #ifndef _hash_h
  19. #define _hash_h
  20. #ifdef __cplusplus
  21. extern "C" {
  22. #endif
  23. typedef byte *(*hash_get_key)(const byte *,uint*,my_bool);
  24. typedef void (*hash_free_key)(void *);
  25.   /* flags for hash_init */
  26. #define HASH_CASE_INSENSITIVE 1
  27. typedef struct st_hash_info {
  28.   uint next; /* index to next key */
  29.   byte *data; /* data for current entry */
  30. } HASH_LINK;
  31. typedef struct st_hash {
  32.   uint key_offset,key_length; /* Length of key if const length */
  33.   uint records,blength,current_record;
  34.   uint flags;
  35.   DYNAMIC_ARRAY array; /* Place for hash_keys */
  36.   hash_get_key get_key;
  37.   void (*free)(void *);
  38.   uint (*calc_hashnr)(const byte *key,uint length);
  39. } HASH;
  40. my_bool hash_init(HASH *hash,uint default_array_elements, uint key_offset,
  41.   uint key_length, hash_get_key get_key,
  42.   void (*free_element)(void*), uint flags);
  43. void hash_free(HASH *tree);
  44. byte *hash_element(HASH *hash,uint idx);
  45. gptr hash_search(HASH *info,const byte *key,uint length);
  46. gptr hash_next(HASH *info,const byte *key,uint length);
  47. my_bool hash_insert(HASH *info,const byte *data);
  48. my_bool hash_delete(HASH *hash,byte *record);
  49. my_bool hash_update(HASH *hash,byte *record,byte *old_key,uint old_key_length);
  50. my_bool hash_check(HASH *hash); /* Only in debug library */
  51. #define hash_clear(H) bzero((char*) (H),sizeof(*(H)))
  52. #define hash_inited(H) ((H)->array.buffer != 0)
  53. #ifdef __cplusplus
  54. }
  55. #endif
  56. #endif