2007-12-30 17:41:49 +01:00
|
|
|
/***************************************************************************
|
|
|
|
|
2009-08-17 12:41:51 +02:00
|
|
|
gb_array.h
|
2007-12-30 17:41:49 +01:00
|
|
|
|
2009-08-17 12:41:51 +02:00
|
|
|
(c) 2000-2009 Benoît Minisini <gambas@users.sourceforge.net>
|
2007-12-30 17:41:49 +01:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
2009-08-17 12:41:51 +02:00
|
|
|
the Free Software Foundation; either version 2, or (at your option)
|
2007-12-30 17:41:49 +01:00
|
|
|
any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#ifndef __GB_ARRAY_H
|
|
|
|
#define __GB_ARRAY_H
|
|
|
|
|
|
|
|
typedef
|
|
|
|
struct {
|
2008-01-05 15:07:21 +01:00
|
|
|
int count;
|
|
|
|
int max;
|
2007-12-30 17:41:49 +01:00
|
|
|
size_t size;
|
2008-01-05 15:07:21 +01:00
|
|
|
int inc;
|
2007-12-30 17:41:49 +01:00
|
|
|
}
|
|
|
|
ARRAY;
|
|
|
|
|
|
|
|
typedef
|
|
|
|
int (*ARRAY_COMP_FUNC)(const void *, const void *);
|
|
|
|
|
2009-12-24 03:02:05 +01:00
|
|
|
#define DATA_TO_ARRAY(data) ((ARRAY *)(data) - 1)
|
|
|
|
#define ARRAY_TO_DATA(array) ((char *)((ARRAY *)(array) + 1))
|
2007-12-30 17:41:49 +01:00
|
|
|
|
|
|
|
#define ARRAY_create(data) ARRAY_create_with_size((data), sizeof(**(data)), 32)
|
|
|
|
#define ARRAY_create_inc(data, inc) ARRAY_create_with_size((data), sizeof(**(data)), (inc))
|
|
|
|
|
2009-07-08 21:57:50 +02:00
|
|
|
void ARRAY_create_with_size(void *p_data, size_t size, int inc);
|
|
|
|
void ARRAY_delete(void *p_data);
|
2007-12-30 17:41:49 +01:00
|
|
|
|
|
|
|
#define ARRAY_size(_data) (DATA_TO_ARRAY(_data)->size)
|
|
|
|
#define ARRAY_count(_data) ((_data) ? DATA_TO_ARRAY(_data)->count : 0)
|
|
|
|
|
2009-07-08 21:57:50 +02:00
|
|
|
void *ARRAY_add_data(void *p_data, int num, bool zero);
|
|
|
|
void *ARRAY_add_data_one(void *p_data, bool zero);
|
2007-12-30 17:41:49 +01:00
|
|
|
|
|
|
|
#define ARRAY_add(_pdata) ARRAY_add_data_one(_pdata, FALSE)
|
|
|
|
#define ARRAY_add_void(_pdata) ARRAY_add_data_one(_pdata, TRUE)
|
|
|
|
#define ARRAY_add_many(_pdata, _num) ARRAY_add_data(_pdata, _num, FALSE)
|
|
|
|
#define ARRAY_add_many_void(_pdata, _num) ARRAY_add_data(_pdata, _num, TRUE)
|
|
|
|
|
|
|
|
//PUBLIC void *ARRAY_get(void *data, int pos);
|
|
|
|
#define ARRAY_get(_data, _pos) ((char *)(_data) + DATA_TO_ARRAY(_data)->size * (_pos))
|
|
|
|
|
2009-07-08 21:57:50 +02:00
|
|
|
void *ARRAY_insert_many(void *p_data, int pos, int count);
|
2007-12-30 17:41:49 +01:00
|
|
|
#define ARRAY_insert(_pdata, _pos) ARRAY_insert_many(_pdata, _pos, 1);
|
2009-07-08 21:57:50 +02:00
|
|
|
void ARRAY_remove_many(void *p_data, int pos, int count);
|
2007-12-30 17:41:49 +01:00
|
|
|
#define ARRAY_remove(_pdata, _pos) ARRAY_remove_many(_pdata, _pos, 1);
|
|
|
|
|
2009-07-08 21:57:50 +02:00
|
|
|
void ARRAY_remove_last(void *p_data);
|
2007-12-30 17:41:49 +01:00
|
|
|
|
2009-07-08 21:57:50 +02:00
|
|
|
void ARRAY_qsort(void *data, ARRAY_COMP_FUNC cmp);
|
2007-12-30 17:41:49 +01:00
|
|
|
|
|
|
|
#endif
|