~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/dynamic_array.h

  • Committer: brian
  • Date: 2008-06-25 05:29:13 UTC
  • Revision ID: brian@localhost.localdomain-20080625052913-6upwo0jsrl4lnapl
clean slate

Show diffs side-by-side

added added

removed removed

Lines of Context:
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 DRIZZLED_DYNAMIC_ARRAY_H
22
 
#define DRIZZLED_DYNAMIC_ARRAY_H
23
 
 
24
 
#include <stddef.h>
25
 
 
26
 
#ifdef __cplusplus
27
 
extern "C" {
28
 
#endif
29
 
 
30
 
typedef struct st_dynamic_array
31
 
{
32
 
  unsigned char *buffer;
33
 
  size_t elements,max_element;
34
 
  uint32_t alloc_increment;
35
 
  uint32_t size_of_element;
36
 
} DYNAMIC_ARRAY;
37
 
 
38
 
#define my_init_dynamic_array(A,B,C,D) init_dynamic_array2(A,B,NULL,C,D)
39
 
#define my_init_dynamic_array_ci(A,B,C,D) init_dynamic_array2(A,B,NULL,C,D)
40
 
 
41
 
extern bool init_dynamic_array2(DYNAMIC_ARRAY *array,uint32_t element_size,
42
 
                                   void *init_buffer, uint32_t init_alloc,
43
 
                                   uint32_t alloc_increment);
44
 
/* init_dynamic_array() function is deprecated */
45
 
extern bool init_dynamic_array(DYNAMIC_ARRAY *array,uint32_t element_size,
46
 
                                  uint32_t init_alloc,uint32_t alloc_increment);
47
 
extern bool insert_dynamic(DYNAMIC_ARRAY *array,unsigned char * element);
48
 
extern unsigned char *alloc_dynamic(DYNAMIC_ARRAY *array);
49
 
extern unsigned char *pop_dynamic(DYNAMIC_ARRAY*);
50
 
extern bool set_dynamic(DYNAMIC_ARRAY *array,unsigned char * element,uint32_t array_index);
51
 
extern void get_dynamic(DYNAMIC_ARRAY *array,unsigned char * element,uint32_t array_index);
52
 
extern void delete_dynamic(DYNAMIC_ARRAY *array);
53
 
extern void delete_dynamic_element(DYNAMIC_ARRAY *array, uint32_t array_index);
54
 
extern void freeze_size(DYNAMIC_ARRAY *array);
55
 
extern int  get_index_dynamic(DYNAMIC_ARRAY *array, unsigned char * element);
56
 
#define dynamic_array_ptr(array,array_index) ((array)->buffer+(array_index)*(array)->size_of_element)
57
 
#define dynamic_element(array,array_index,type) ((type)((array)->buffer) +(array_index))
58
 
#define push_dynamic(A,B) insert_dynamic((A),(B))
59
 
#define reset_dynamic(array) ((array)->elements= 0)
60
 
#define sort_dynamic(A,cmp) my_qsort((A)->buffer, (A)->elements, (A)->size_of_element, (cmp))
61
 
 
62
 
#ifdef __cplusplus
63
 
}
64
 
#endif
65
 
 
66
 
#endif /* DRIZZLED_DYNAMIC_ARRAY_H */