hashtable.h
上传用户:tany51
上传日期:2013-06-12
资源大小:1397k
文件大小:5k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /*
  2.  * Copyright (C) 2000  Ross Combs (rocombs@cs.nmsu.edu)
  3.  *
  4.  * This program is free software; you can redistribute it and/or
  5.  * modify it under the terms of the GNU General Public License
  6.  * as published by the Free Software Foundation; either version 2
  7.  * of the License, or (at your option) any later version.
  8.  *
  9.  * This program is distributed in the hope that it will be useful,
  10.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.  * GNU General Public License for more details.
  13.  *
  14.  * You should have received a copy of the GNU General Public License
  15.  * along with this program; if not, write to the Free Software
  16.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  17.  */
  18. #ifndef INCLUDED_HASHTABLE_TYPES
  19. #define INCLUDED_HASHTABLE_TYPES
  20. #ifdef HASHTABLE_INTERNAL_ACCESS
  21. struct hashtable; /* forward reference for t_entry */
  22. #endif
  23. #ifdef HASHTABLE_INTERNAL_ACCESS
  24. typedef struct internentry
  25. {
  26.     void *               data;
  27.     struct internentry * next;
  28. }
  29. t_internentry;
  30. #endif
  31. typedef struct entry
  32. #ifdef HASHTABLE_INTERNAL_ACCESS
  33. {
  34.     unsigned int             row;
  35.     t_internentry *          real;
  36.     struct hashtable const * hashtable;
  37. }
  38. #endif
  39. t_entry;
  40. typedef struct hashtable
  41. #ifdef HASHTABLE_INTERNAL_ACCESS
  42. {
  43.     unsigned int      num_rows;
  44.     unsigned int      len;
  45.     unsigned int      zombies;
  46.     t_internentry * * rows;
  47. }
  48. #endif
  49. t_hashtable;
  50. #endif
  51. /*****/
  52. #ifndef JUST_NEED_TYPES
  53. #ifndef INCLUDED_HASHTABLE_PROTOS
  54. #define INCLUDED_HASHTABLE_PROTOS
  55. #ifdef USE_CHECK_ALLOC
  56. extern t_hashtable * hashtable_create_real(unsigned int num_rows, char const * fn, unsigned int ln) ;
  57. # define hashtable_create(N) hashtable_create_real(N, __FILE__"{hashtable_create}",__LINE__)
  58. #else
  59. extern t_hashtable * hashtable_create(unsigned int num_rows) ;
  60. #endif
  61. extern int hashtable_destroy(t_hashtable * hashtable);
  62. extern int hashtable_purge(t_hashtable * hashtable);
  63. extern int hashtable_check(t_hashtable const * hashtable);
  64. extern unsigned int hashtable_get_length(t_hashtable const * hashtable);
  65. #ifdef USE_CHECK_ALLOC
  66. extern int hashtable_insert_data_real(t_hashtable * hashtable, void * data, unsigned int hash, char const * fn, unsigned int ln);
  67. # define hashtable_insert_data(L,D,H) hashtable_insert_data_real(L,D,H,__FILE__"{hashtable_insert_data}",__LINE__)
  68. #else
  69. extern int hashtable_insert_data(t_hashtable * hashtable, void * data, unsigned int hash);
  70. #endif
  71. extern t_entry * hashtable_get_entry_by_data(t_hashtable const * hashtable, void const * data, unsigned int hash);
  72. extern t_entry const * hashtable_get_entry_by_data_const(t_hashtable const * hashtable, void const * data, unsigned int hash);
  73. extern int hashtable_remove_data(t_hashtable * hashtable, void const * data, unsigned int hash); /* delete matching item */
  74. extern int hashtable_remove_entry(t_hashtable * hashtable, t_entry * entry);
  75. extern void * hashtable_get_data_by_pos(t_hashtable const * hashtable, unsigned int pos);
  76. extern void * entry_get_data(t_entry const * entry);
  77. #ifdef HASHTABLE_DEBUG
  78. extern t_entry * hashtable_match_get_first_real(t_hashtable const * hashtable, unsigned int hash, char const * fn, unsigned int ln);
  79. # define hashtable_match_get_first(L,H) hashtable_match_get_first_real(L,H,__FILE__,__LINE__)
  80. #else
  81. extern t_entry * hashtable_match_get_first(t_hashtable const * hashtable, unsigned int hash);
  82. #endif
  83. extern t_entry * entry_match_get_next(t_entry const * entry, unsigned int hash);
  84. #ifdef HASHTABLE_DEBUG
  85. extern t_entry * hashtable_get_first_real(t_hashtable const * hashtable, char const * fn, unsigned int ln);
  86. # define hashtable_get_first(L) hashtable_get_first_real(L,__FILE__,__LINE__)
  87. #else
  88. extern t_entry * hashtable_get_first(t_hashtable const * hashtable);
  89. #endif
  90. extern t_entry * entry_get_next(t_entry * entry);
  91. #ifdef HASHTABLE_DEBUG
  92. extern t_entry * hashtable_get_first_matching_real(t_hashtable const * hashtable, unsigned int hash, char const * fn, unsigned int ln);
  93. # define hashtable_get_first_matching(L,H) hashtable_get_first_matching_real(L,H,__FILE__,__LINE__)
  94. #else
  95. extern t_entry * hashtable_get_first_matching(t_hashtable const * hashtable, unsigned int hash);
  96. #endif
  97. extern t_entry * entry_get_next_matching(t_entry * entry);
  98. extern int hashtable_entry_release(t_entry * entry);
  99. extern int hashtable_stats(t_hashtable * hashtable);
  100. #define HASHTABLE_TRAVERSE(hashtable,curr) for (curr=hashtable_get_first(hashtable); curr; curr=entry_get_next(curr))
  101. #define HASHTABLE_TRAVERSE_MATCHING(hashtable,curr,hash) for (curr=hashtable_get_first_matching(hashtable,hash); curr; curr=entry_get_next_matching(curr))
  102. #endif
  103. #endif