~drizzle-trunk/drizzle/development

1089.1.13 by Brian Aker
Sorting methods into class files.
1
/* - mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
 *
4
 *  Copyright (C) 2008 MySQL
5
 *
6
 *  This program is free software; you can redistribute it and/or modify
7
 *  it under the terms of the GNU General Public License as published by
8
 *  the Free Software Foundation; either version 2 of the License, or
9
 *  (at your option) any later version.
10
 *
11
 *  This program is distributed in the hope that it will be useful,
12
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 *  GNU General Public License for more details.
15
 *
16
 *  You should have received a copy of the GNU General Public License
17
 *  along with this program; if not, write to the Free Software
18
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19
 */
20
21
#ifndef MYSYS_DYNAMIC_ARRAY_H
22
#define MYSYS_DYNAMIC_ARRAY_H
23
24
typedef struct st_dynamic_array
25
{
26
  unsigned char *buffer;
27
  size_t elements,max_element;
28
  uint32_t alloc_increment;
29
  uint32_t size_of_element;
30
} DYNAMIC_ARRAY;
31
32
#define my_init_dynamic_array(A,B,C,D) init_dynamic_array2(A,B,NULL,C,D)
33
#define my_init_dynamic_array_ci(A,B,C,D) init_dynamic_array2(A,B,NULL,C,D)
34
35
extern bool init_dynamic_array2(DYNAMIC_ARRAY *array,uint32_t element_size,
36
                                   void *init_buffer, uint32_t init_alloc,
37
                                   uint32_t alloc_increment);
38
/* init_dynamic_array() function is deprecated */
39
extern bool init_dynamic_array(DYNAMIC_ARRAY *array,uint32_t element_size,
40
                                  uint32_t init_alloc,uint32_t alloc_increment);
41
extern bool insert_dynamic(DYNAMIC_ARRAY *array,unsigned char * element);
42
extern unsigned char *alloc_dynamic(DYNAMIC_ARRAY *array);
43
extern unsigned char *pop_dynamic(DYNAMIC_ARRAY*);
44
extern bool set_dynamic(DYNAMIC_ARRAY *array,unsigned char * element,uint32_t array_index);
45
extern void get_dynamic(DYNAMIC_ARRAY *array,unsigned char * element,uint32_t array_index);
46
extern void delete_dynamic(DYNAMIC_ARRAY *array);
47
extern void delete_dynamic_element(DYNAMIC_ARRAY *array, uint32_t array_index);
48
extern void freeze_size(DYNAMIC_ARRAY *array);
49
extern int  get_index_dynamic(DYNAMIC_ARRAY *array, unsigned char * element);
50
#define dynamic_array_ptr(array,array_index) ((array)->buffer+(array_index)*(array)->size_of_element)
51
#define dynamic_element(array,array_index,type) ((type)((array)->buffer) +(array_index))
52
#define push_dynamic(A,B) insert_dynamic((A),(B))
53
#define reset_dynamic(array) ((array)->elements= 0)
54
#define sort_dynamic(A,cmp) my_qsort((A)->buffer, (A)->elements, (A)->size_of_element, (cmp))
55
56
57
#endif /* MYSYS_DYNAMIC_ARRAY_H */