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

MySQL数据库

开发平台:

Visual C++

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