~drizzle-trunk/drizzle/development

1 by brian
clean slate
1
/* Copyright (C) 2000-2002, 2004 MySQL 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; version 2 of the License.
6
7
   This program is distributed in the hope that it will be useful,
8
   but WITHOUT ANY WARRANTY; without even the implied warranty of
9
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10
   GNU General Public License for more details.
11
12
   You should have received a copy of the GNU General Public License
13
   along with this program; if not, write to the Free Software
14
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
15
16
/* functions on blocks; Keys and records are saved in blocks */
17
18
#include "heapdef.h"
19
20
/*
21
  Find record according to record-position.
22
      
23
  The record is located by factoring position number pos into (p_0, p_1, ...) 
24
  such that
25
     pos = SUM_i(block->level_info[i].records_under_level * p_i)
26
  {p_0, p_1, ...} serve as indexes to descend the blocks tree.
27
*/
28
29
uchar *hp_find_block(HP_BLOCK *block, ulong pos)
30
{
31
  register int i;
32
  register HP_PTRS *ptr; /* block base ptr */
33
34
  for (i=block->levels-1, ptr=block->root ; i > 0 ; i--)
35
  {
36
    ptr=(HP_PTRS*)ptr->blocks[pos/block->level_info[i].records_under_level];
37
    pos%=block->level_info[i].records_under_level;
38
  }
39
  return (uchar*) ptr+ pos*block->recbuffer;
40
}
41
42
43
/*
44
  Get one new block-of-records. Alloc ptr to block if needed
45
46
  SYNOPSIS
47
    hp_get_new_block()
48
      block             HP_BLOCK tree-like block
49
      alloc_length OUT  Amount of memory allocated from the heap
50
      
51
  Interrupts are stopped to allow ha_panic in interrupts 
52
  RETURN
53
    0  OK
54
    1  Out of memory
55
*/
56
57
int hp_get_new_block(HP_BLOCK *block, size_t *alloc_length)
58
{
59
  register uint i,j;
60
  HP_PTRS *root;
61
62
  for (i=0 ; i < block->levels ; i++)
63
    if (block->level_info[i].free_ptrs_in_block)
64
      break;
65
66
  /*
67
    Allocate space for leaf block plus space for upper level blocks up to
68
    first level that has a free slot to put the pointer. 
69
    In some cases we actually allocate more then we need:
70
    Consider e.g. a situation where we have one level 1 block and one level 0
71
    block, the level 0 block is full and this function is called. We only 
72
    need a leaf block in this case. Nevertheless, we will get here with i=1 
73
    and will also allocate sizeof(HP_PTRS) for non-leaf block and will never 
74
    use this space.
75
    This doesn't add much overhead - with current values of sizeof(HP_PTRS) 
76
    and my_default_record_cache_size we get about 1/128 unused memory.
77
   */
78
  *alloc_length=sizeof(HP_PTRS)*i+block->records_in_block* block->recbuffer;
79
  if (!(root=(HP_PTRS*) my_malloc(*alloc_length,MYF(MY_WME))))
80
    return 1;
81
82
  if (i == 0)
83
  {
84
    block->levels=1;
85
    block->root=block->level_info[0].last_blocks=root;
86
  }
87
  else
88
  {
89
    dont_break();		/* Dont allow SIGHUP or SIGINT */
90
    if ((uint) i == block->levels)
91
    {
92
      /* Adding a new level on top of the existing ones. */
93
      block->levels=i+1;
94
      /*
95
        Use first allocated HP_PTRS as a top-level block. Put the current
96
        block tree into the first slot of a new top-level block.
97
      */
98
      block->level_info[i].free_ptrs_in_block=HP_PTRS_IN_NOD-1;
99
      ((HP_PTRS**) root)[0]= block->root;
100
      block->root=block->level_info[i].last_blocks= root++;
101
    }
102
    /* Occupy the free slot we've found at level i */
103
    block->level_info[i].last_blocks->
104
      blocks[HP_PTRS_IN_NOD - block->level_info[i].free_ptrs_in_block--]=
105
	(uchar*) root;
106
    
107
    /* Add a block subtree with each node having one left-most child */
108
    for (j=i-1 ; j >0 ; j--)
109
    {
110
      block->level_info[j].last_blocks= root++;
111
      block->level_info[j].last_blocks->blocks[0]=(uchar*) root;
112
      block->level_info[j].free_ptrs_in_block=HP_PTRS_IN_NOD-1;
113
    }
114
    
115
    /* 
116
      root now points to last (block->records_in_block* block->recbuffer)
117
      allocated bytes. Use it as a leaf block.
118
    */
119
    block->level_info[0].last_blocks= root;
120
    allow_break();		/* Allow SIGHUP & SIGINT */
121
  }
122
  return 0;
123
}
124
125
126
	/* free all blocks under level */
127
128
uchar *hp_free_level(HP_BLOCK *block, uint level, HP_PTRS *pos, uchar *last_pos)
129
{
130
  int i,max_pos;
131
  uchar *next_ptr;
132
133
  if (level == 1)
134
    next_ptr=(uchar*) pos+block->recbuffer;
135
  else
136
  {
137
    max_pos= (block->level_info[level-1].last_blocks == pos) ?
138
      HP_PTRS_IN_NOD - block->level_info[level-1].free_ptrs_in_block :
139
    HP_PTRS_IN_NOD;
140
141
    next_ptr=(uchar*) (pos+1);
142
    for (i=0 ; i < max_pos ; i++)
143
      next_ptr=hp_free_level(block,level-1,
144
			      (HP_PTRS*) pos->blocks[i],next_ptr);
145
  }
146
  if ((uchar*) pos != last_pos)
147
  {
148
    my_free((uchar*) pos,MYF(0));
149
    return last_pos;
150
  }
151
  return next_ptr;			/* next memory position */
152
}