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

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000,2004 MySQL AB & MySQL Finland AB & TCX DataKonsult 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. /* This file is included in all heap-files */
  14. #include <my_base.h> /* This includes global */
  15. #ifdef THREAD
  16. #include <my_pthread.h>
  17. #endif
  18. #include "heap.h" /* Structs & some defines */
  19. #include "my_tree.h"
  20. /*
  21.   When allocating keys /rows in the internal block structure, do it
  22.   within the following boundaries.
  23.   The challenge is to find the balance between allocate as few blocks
  24.   as possible and keep memory consumption down.
  25. */
  26. #define HP_MIN_RECORDS_IN_BLOCK 16
  27. #define HP_MAX_RECORDS_IN_BLOCK 8192
  28. /* Some extern variables */
  29. extern LIST *heap_open_list,*heap_share_list;
  30. #define test_active(info) 
  31. if (!(info->update & HA_STATE_AKTIV))
  32. { my_errno=HA_ERR_NO_ACTIVE_RECORD; DBUG_RETURN(-1); }
  33. #define hp_find_hash(A,B) ((HASH_INFO*) hp_find_block((A),(B)))
  34. /* Find pos for record and update it in info->current_ptr */
  35. #define hp_find_record(info,pos) (info)->current_ptr= hp_find_block(&(info)->s->block,pos)
  36. typedef struct st_hp_hash_info
  37. {
  38.   struct st_hp_hash_info *next_key;
  39.   byte *ptr_to_rec;
  40. } HASH_INFO;
  41. typedef struct {
  42.   HA_KEYSEG *keyseg;
  43.   uint key_length;
  44.   uint search_flag;
  45. } heap_rb_param;
  46.       
  47. /* Prototypes for intern functions */
  48. extern HP_SHARE *hp_find_named_heap(const char *name);
  49. extern int hp_rectest(HP_INFO *info,const byte *old);
  50. extern byte *hp_find_block(HP_BLOCK *info,ulong pos);
  51. extern int hp_get_new_block(HP_BLOCK *info, ulong* alloc_length);
  52. extern void hp_free(HP_SHARE *info);
  53. extern byte *hp_free_level(HP_BLOCK *block,uint level,HP_PTRS *pos,
  54.    byte *last_pos);
  55. extern int hp_write_key(HP_INFO *info, HP_KEYDEF *keyinfo,
  56. const byte *record, byte *recpos);
  57. extern int hp_rb_write_key(HP_INFO *info, HP_KEYDEF *keyinfo, 
  58.    const byte *record, byte *recpos);
  59. extern int hp_rb_delete_key(HP_INFO *info,HP_KEYDEF *keyinfo,
  60.     const byte *record,byte *recpos,int flag);
  61. extern int hp_delete_key(HP_INFO *info,HP_KEYDEF *keyinfo,
  62.  const byte *record,byte *recpos,int flag);
  63. extern HASH_INFO *_heap_find_hash(HP_BLOCK *block,ulong pos);
  64. extern byte *hp_search(HP_INFO *info,HP_KEYDEF *keyinfo,const byte *key,
  65.        uint nextflag);
  66. extern byte *hp_search_next(HP_INFO *info, HP_KEYDEF *keyinfo,
  67.     const byte *key, HASH_INFO *pos);
  68. extern ulong hp_hashnr(HP_KEYDEF *keyinfo,const byte *key);
  69. extern ulong hp_rec_hashnr(HP_KEYDEF *keyinfo,const byte *rec);
  70. extern ulong hp_mask(ulong hashnr,ulong buffmax,ulong maxlength);
  71. extern void hp_movelink(HASH_INFO *pos,HASH_INFO *next_link,
  72.  HASH_INFO *newlink);
  73. extern int hp_rec_key_cmp(HP_KEYDEF *keydef,const byte *rec1,
  74.   const byte *rec2);
  75. extern int hp_key_cmp(HP_KEYDEF *keydef,const byte *rec,
  76.       const byte *key);
  77. extern void hp_make_key(HP_KEYDEF *keydef,byte *key,const byte *rec);
  78. extern uint hp_rb_make_key(HP_KEYDEF *keydef, byte *key, 
  79.    const byte *rec, byte *recpos);
  80. extern uint hp_rb_key_length(HP_KEYDEF *keydef, const byte *key);
  81. extern uint hp_rb_null_key_length(HP_KEYDEF *keydef, const byte *key);
  82. extern my_bool hp_if_null_in_key(HP_KEYDEF *keyinfo, const byte *record);
  83. extern int hp_close(register HP_INFO *info);
  84. extern void hp_clear(HP_SHARE *info);
  85. extern void hp_clear_keys(HP_SHARE *info);
  86. extern uint hp_rb_pack_key(HP_KEYDEF *keydef, uchar *key, const uchar *old, 
  87.    uint k_len);
  88. #ifdef THREAD
  89. extern pthread_mutex_t THR_LOCK_heap;
  90. #else
  91. #define pthread_mutex_lock(A)
  92. #define pthread_mutex_unlock(A)
  93. #endif