array.c
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:5k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  2.    
  3.    This library is free software; you can redistribute it and/or
  4.    modify it under the terms of the GNU Library General Public
  5.    License as published by the Free Software Foundation; either
  6.    version 2 of the License, or (at your option) any later version.
  7.    
  8.    This library 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 GNU
  11.    Library General Public License for more details.
  12.    
  13.    You should have received a copy of the GNU Library General Public
  14.    License along with this library; if not, write to the Free
  15.    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
  16.    MA 02111-1307, USA */
  17. /* Handling of arrays that can grow dynamicly. */
  18. #if defined(WIN32) || defined(__WIN__)
  19. #undef SAFEMALLOC /* Problems with threads */
  20. #endif
  21. #include "mysys_priv.h"
  22. #include "m_string.h"
  23. /*
  24.   Initiate array and alloc space for init_alloc elements. Array is usable
  25.   even if space allocation failed
  26. */
  27. my_bool init_dynamic_array(DYNAMIC_ARRAY *array, uint element_size,
  28.    uint init_alloc, uint alloc_increment)
  29. {
  30.   DBUG_ENTER("init_dynamic_array");
  31.   if (!alloc_increment)
  32.   { 
  33.     alloc_increment=max((8192-MALLOC_OVERHEAD)/element_size,16);
  34.     if (init_alloc > 8 && alloc_increment > init_alloc * 2)
  35.       alloc_increment=init_alloc*2;
  36.   }
  37.   if (!init_alloc)
  38.     init_alloc=alloc_increment;
  39.   array->elements=0;
  40.   array->max_element=init_alloc;
  41.   array->alloc_increment=alloc_increment;
  42.   array->size_of_element=element_size;
  43.   if (!(array->buffer=(char*) my_malloc(element_size*init_alloc,MYF(MY_WME))))
  44.   {
  45.     array->max_element=0;
  46.     DBUG_RETURN(TRUE);
  47.   }
  48.   DBUG_RETURN(FALSE);
  49. }
  50. my_bool insert_dynamic(DYNAMIC_ARRAY *array, gptr element)
  51. {
  52.   gptr buffer;
  53.   if (array->elements == array->max_element)
  54.   { /* Call only when nessesary */
  55.     if (!(buffer=alloc_dynamic(array)))
  56.       return TRUE;
  57.   }
  58.   else
  59.   {
  60.     buffer=array->buffer+(array->elements * array->size_of_element);
  61.     array->elements++;
  62.   }
  63.   memcpy(buffer,element,(size_t) array->size_of_element);
  64.   return FALSE;
  65. }
  66. /* Alloc room for one element */
  67. byte *alloc_dynamic(DYNAMIC_ARRAY *array)
  68. {
  69.   if (array->elements == array->max_element)
  70.   {
  71.     char *new_ptr;
  72.     if (!(new_ptr=(char*) my_realloc(array->buffer,(array->max_element+
  73.      array->alloc_increment)*
  74.      array->size_of_element,
  75.      MYF(MY_WME | MY_ALLOW_ZERO_PTR))))
  76.       return 0;
  77.     array->buffer=new_ptr;
  78.     array->max_element+=array->alloc_increment;
  79.   }
  80.   return array->buffer+(array->elements++ * array->size_of_element);
  81. }
  82. /* remove last element from array and return it */
  83. byte *pop_dynamic(DYNAMIC_ARRAY *array)
  84. {
  85.   if (array->elements)
  86.     return array->buffer+(--array->elements * array->size_of_element);
  87.   return 0;
  88. }
  89. my_bool set_dynamic(DYNAMIC_ARRAY *array, gptr element, uint idx)
  90. {
  91.   if (idx >= array->elements)
  92.   {
  93.     if (idx >= array->max_element)
  94.     {
  95.       uint size;
  96.       char *new_ptr;
  97.       size=(idx+array->alloc_increment)/array->alloc_increment;
  98.       size*= array->alloc_increment;
  99.       if (!(new_ptr=(char*) my_realloc(array->buffer,size*
  100.        array->size_of_element,
  101.        MYF(MY_WME | MY_ALLOW_ZERO_PTR))))
  102. return TRUE;
  103.       array->buffer=new_ptr;
  104.       array->max_element=size;
  105.     }
  106.     bzero((gptr) (array->buffer+array->elements*array->size_of_element),
  107.   (idx - array->elements)*array->size_of_element);
  108.     array->elements=idx+1;
  109.   }
  110.   memcpy(array->buffer+(idx * array->size_of_element),element,
  111.  (size_t) array->size_of_element);
  112.   return FALSE;
  113. }
  114. void get_dynamic(DYNAMIC_ARRAY *array, gptr element, uint idx)
  115. {
  116.   if (idx >= array->elements)
  117.   {
  118.     DBUG_PRINT("warning",("To big array idx: %d, array size is %d",
  119.   idx,array->elements));
  120.     bzero(element,array->size_of_element);
  121.     return;
  122.   }
  123.   memcpy(element,array->buffer+idx*array->size_of_element,
  124.  (size_t) array->size_of_element);
  125. }
  126. void delete_dynamic(DYNAMIC_ARRAY *array)
  127. {
  128.   if (array->buffer)
  129.   {
  130.     my_free(array->buffer,MYF(MY_WME));
  131.     array->buffer=0;
  132.     array->elements=array->max_element=0;
  133.   }
  134. }
  135. void delete_dynamic_element(DYNAMIC_ARRAY *array, uint idx)
  136. {
  137.   char *ptr=array->buffer+array->size_of_element*idx;
  138.   array->elements--;
  139.   memmove(ptr,ptr+array->size_of_element,
  140.   (array->elements-idx)*array->size_of_element);
  141. }
  142. void freeze_size(DYNAMIC_ARRAY *array)
  143. {
  144.   uint elements=max(array->elements,1);
  145.   if (array->buffer && array->max_element != elements)
  146.   {
  147.     array->buffer=(char*) my_realloc(array->buffer,
  148.      elements*array->size_of_element,
  149.      MYF(MY_WME));
  150.     array->max_element=elements;
  151.   }
  152. }