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

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 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. /* functions on blocks; Keys and records are saved in blocks */
  14. #include "heapdef.h"
  15. /*
  16.   Find record according to record-position.
  17.       
  18.   The record is located by factoring position number pos into (p_0, p_1, ...) 
  19.   such that
  20.      pos = SUM_i(block->level_info[i].records_under_level * p_i)
  21.   {p_0, p_1, ...} serve as indexes to descend the blocks tree.
  22. */
  23. byte *hp_find_block(HP_BLOCK *block, ulong pos)
  24. {
  25.   reg1 int i;
  26.   reg3 HP_PTRS *ptr; /* block base ptr */
  27.   for (i=block->levels-1, ptr=block->root ; i > 0 ; i--)
  28.   {
  29.     ptr=(HP_PTRS*)ptr->blocks[pos/block->level_info[i].records_under_level];
  30.     pos%=block->level_info[i].records_under_level;
  31.   }
  32.   return (byte*) ptr+ pos*block->recbuffer;
  33. }
  34. /*
  35.   Get one new block-of-records. Alloc ptr to block if needed
  36.   SYNOPSIS
  37.     hp_get_new_block()
  38.       block             HP_BLOCK tree-like block
  39.       alloc_length OUT  Amount of memory allocated from the heap
  40.       
  41.   Interrupts are stopped to allow ha_panic in interrupts 
  42.   RETURN
  43.     0  OK
  44.     1  Out of memory
  45. */
  46. int hp_get_new_block(HP_BLOCK *block, ulong *alloc_length)
  47. {
  48.   reg1 uint i,j;
  49.   HP_PTRS *root;
  50.   for (i=0 ; i < block->levels ; i++)
  51.     if (block->level_info[i].free_ptrs_in_block)
  52.       break;
  53.   /*
  54.     Allocate space for leaf block plus space for upper level blocks up to
  55.     first level that has a free slot to put the pointer. 
  56.     In some cases we actually allocate more then we need:
  57.     Consider e.g. a situation where we have one level 1 block and one level 0
  58.     block, the level 0 block is full and this function is called. We only 
  59.     need a leaf block in this case. Nevertheless, we will get here with i=1 
  60.     and will also allocate sizeof(HP_PTRS) for non-leaf block and will never 
  61.     use this space.
  62.     This doesn't add much overhead - with current values of sizeof(HP_PTRS) 
  63.     and my_default_record_cache_size we get about 1/128 unused memory.
  64.    */
  65.   *alloc_length=sizeof(HP_PTRS)*i+block->records_in_block* block->recbuffer;
  66.   if (!(root=(HP_PTRS*) my_malloc(*alloc_length,MYF(0))))
  67.     return 1;
  68.   if (i == 0)
  69.   {
  70.     block->levels=1;
  71.     block->root=block->level_info[0].last_blocks=root;
  72.   }
  73.   else
  74.   {
  75.     dont_break(); /* Dont allow SIGHUP or SIGINT */
  76.     if ((uint) i == block->levels)
  77.     {
  78.       /* Adding a new level on top of the existing ones. */
  79.       block->levels=i+1;
  80.       /*
  81.         Use first allocated HP_PTRS as a top-level block. Put the current
  82.         block tree into the first slot of a new top-level block.
  83.       */
  84.       block->level_info[i].free_ptrs_in_block=HP_PTRS_IN_NOD-1;
  85.       ((HP_PTRS**) root)[0]= block->root;
  86.       block->root=block->level_info[i].last_blocks= root++;
  87.     }
  88.     /* Occupy the free slot we've found at level i */
  89.     block->level_info[i].last_blocks->
  90.       blocks[HP_PTRS_IN_NOD - block->level_info[i].free_ptrs_in_block--]=
  91. (byte*) root;
  92.     
  93.     /* Add a block subtree with each node having one left-most child */
  94.     for (j=i-1 ; j >0 ; j--)
  95.     {
  96.       block->level_info[j].last_blocks= root++;
  97.       block->level_info[j].last_blocks->blocks[0]=(byte*) root;
  98.       block->level_info[j].free_ptrs_in_block=HP_PTRS_IN_NOD-1;
  99.     }
  100.     
  101.     /* 
  102.       root now points to last (block->records_in_block* block->recbuffer)
  103.       allocated bytes. Use it as a leaf block.
  104.     */
  105.     block->level_info[0].last_blocks= root;
  106.     allow_break(); /* Allow SIGHUP & SIGINT */
  107.   }
  108.   return 0;
  109. }
  110. /* free all blocks under level */
  111. byte *hp_free_level(HP_BLOCK *block, uint level, HP_PTRS *pos, byte *last_pos)
  112. {
  113.   int i,max_pos;
  114.   byte *next_ptr;
  115.   if (level == 1)
  116.     next_ptr=(byte*) pos+block->recbuffer;
  117.   else
  118.   {
  119.     max_pos= (block->level_info[level-1].last_blocks == pos) ?
  120.       HP_PTRS_IN_NOD - block->level_info[level-1].free_ptrs_in_block :
  121.     HP_PTRS_IN_NOD;
  122.     next_ptr=(byte*) (pos+1);
  123.     for (i=0 ; i < max_pos ; i++)
  124.       next_ptr=hp_free_level(block,level-1,
  125.       (HP_PTRS*) pos->blocks[i],next_ptr);
  126.   }
  127.   if ((byte*) pos != last_pos)
  128.   {
  129.     my_free((gptr) pos,MYF(0));
  130.     return last_pos;
  131.   }
  132.   return next_ptr; /* next memory position */
  133. }