heapdef.h
Upload User: tsgydb
Upload Date: 2007-04-14
Package Size: 10674k
Code Size: 3k
Category:

MySQL

Development Platform:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  2.    
  3.    This program is free software; you can redistribute it and/or modify
  4.    it under the terms of the GNU General Public License as published by
  5.    the Free Software Foundation; either version 2 of the License, or
  6.    (at your option) any later version.
  7.    
  8.    This program 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
  11.    GNU General Public License for more details.
  12.    
  13.    You should have received a copy of the GNU General Public License
  14.    along with this program; if not, write to the Free Software
  15.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  16. /* This file is included in all heap-files */
  17. #include <my_base.h> /* This includes global */
  18. #ifdef THREAD
  19. #include <my_pthread.h>
  20. #endif
  21. #include "heap.h" /* Structs & some defines */
  22. /* Some extern variables */
  23. extern LIST *heap_open_list,*heap_share_list;
  24. #define test_active(info) 
  25. if (!(info->update & HA_STATE_AKTIV))
  26. { my_errno=HA_ERR_NO_ACTIVE_RECORD; DBUG_RETURN(-1); }
  27. #define hp_find_hash(A,B) ((HASH_INFO*) _hp_find_block((A),(B)))
  28. /* Find pos for record and update it in info->current_ptr */
  29. #define _hp_find_record(info,pos) (info)->current_ptr= _hp_find_block(&(info)->s->block,pos)
  30. typedef struct st_hash_info
  31. {
  32.   struct st_hash_info *next_key;
  33.   byte *ptr_to_rec;
  34. } HASH_INFO;
  35. /* Prototypes for intern functions */
  36. extern HP_SHARE *_hp_find_named_heap(const char *name);
  37. extern int _hp_rectest(HP_INFO *info,const byte *old);
  38. extern void _hp_delete_file_from_open_list(HP_INFO *info);
  39. extern byte *_hp_find_block(HP_BLOCK *info,ulong pos);
  40. extern int _hp_get_new_block(HP_BLOCK *info, ulong* alloc_length);
  41. extern void _hp_free(HP_SHARE *info);
  42. extern byte *_hp_free_level(HP_BLOCK *block,uint level,HP_PTRS *pos,
  43. byte *last_pos);
  44. extern int _hp_write_key(HP_SHARE *info,HP_KEYDEF *keyinfo,
  45.  const byte *record,byte *recpos);
  46. extern int _hp_delete_key(HP_INFO *info,HP_KEYDEF *keyinfo,
  47.   const byte *record,byte *recpos,int flag);
  48. extern HASH_INFO *_heap_find_hash(HP_BLOCK *block,ulong pos);
  49. extern byte *_hp_search(HP_INFO *info,HP_KEYDEF *keyinfo,const byte *key,
  50.     uint nextflag);
  51. extern byte *_hp_search_next(HP_INFO *info, HP_KEYDEF *keyinfo,
  52.      const byte *key,
  53.      HASH_INFO *pos);
  54. extern ulong _hp_hashnr(HP_KEYDEF *keyinfo,const byte *key);
  55. extern ulong _hp_rec_hashnr(HP_KEYDEF *keyinfo,const byte *rec);
  56. extern ulong _hp_mask(ulong hashnr,ulong buffmax,ulong maxlength);
  57. extern void _hp_movelink(HASH_INFO *pos,HASH_INFO *next_link,
  58.  HASH_INFO *newlink);
  59. extern int _hp_rec_key_cmp(HP_KEYDEF *keydef,const byte *rec1,
  60.        const byte *rec2);
  61. extern int _hp_key_cmp(HP_KEYDEF *keydef,const byte *rec,
  62.    const byte *key);
  63. extern void _hp_make_key(HP_KEYDEF *keydef,byte *key,const byte *rec);
  64. extern int _hp_close(register HP_INFO *info);
  65. extern void _hp_clear(HP_SHARE *info);
  66. #ifdef THREAD
  67. extern pthread_mutex_t THR_LOCK_heap;
  68. #else
  69. #define pthread_mutex_lock(A)
  70. #define pthread_mutex_unlock(A)
  71. #endif