~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/dynamic_array.h

  • Committer: Brian Aker
  • Date: 2010-05-27 01:25:56 UTC
  • mfrom: (1567.1.4 new-staging)
  • Revision ID: brian@gaz-20100527012556-5zgkirkl7swbigd6
Merge of Brian, Paul. PBXT compile issue, and test framework cleanup. 

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