2004-09-28 16:34:51 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2002-2004 Igor Sysoev
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2002-08-07 00:39:45 +08:00
|
|
|
#ifndef _NGX_ARRAY_H_INCLUDED_
|
|
|
|
#define _NGX_ARRAY_H_INCLUDED_
|
|
|
|
|
|
|
|
|
|
|
|
#include <ngx_config.h>
|
2003-06-03 23:42:58 +08:00
|
|
|
#include <ngx_core.h>
|
2002-08-07 00:39:45 +08:00
|
|
|
|
|
|
|
|
2003-12-09 04:48:12 +08:00
|
|
|
struct ngx_array_s {
|
2004-03-16 15:10:12 +08:00
|
|
|
void *elts;
|
|
|
|
ngx_uint_t nelts;
|
|
|
|
size_t size;
|
|
|
|
ngx_uint_t nalloc;
|
|
|
|
ngx_pool_t *pool;
|
2003-12-09 04:48:12 +08:00
|
|
|
};
|
2002-08-07 00:39:45 +08:00
|
|
|
|
|
|
|
|
2004-03-16 15:10:12 +08:00
|
|
|
ngx_array_t *ngx_create_array(ngx_pool_t *p, ngx_uint_t n, size_t size);
|
2002-08-07 00:39:45 +08:00
|
|
|
void ngx_destroy_array(ngx_array_t *a);
|
|
|
|
void *ngx_push_array(ngx_array_t *a);
|
|
|
|
|
|
|
|
|
2004-09-07 02:45:00 +08:00
|
|
|
ngx_inline static ngx_int_t ngx_array_init(ngx_array_t *array, ngx_pool_t *pool,
|
2004-09-06 03:54:02 +08:00
|
|
|
ngx_uint_t n, size_t size)
|
|
|
|
{
|
|
|
|
if (!(array->elts = ngx_palloc(pool, n * size))) {
|
|
|
|
return NGX_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
array->nelts = 0;
|
|
|
|
array->size = size;
|
|
|
|
array->nalloc = n;
|
|
|
|
array->pool = pool;
|
|
|
|
|
|
|
|
return NGX_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2003-01-09 13:36:00 +08:00
|
|
|
#define ngx_init_array(a, p, n, s, rc) \
|
|
|
|
ngx_test_null(a.elts, ngx_palloc(p, n * s), rc); \
|
|
|
|
a.nelts = 0; a.size = s; a.nalloc = n; a.pool = p;
|
|
|
|
|
2004-09-16 00:00:43 +08:00
|
|
|
#define ngx_array_create ngx_create_array
|
|
|
|
#define ngx_array_push ngx_push_array
|
2004-09-07 23:29:22 +08:00
|
|
|
|
2003-01-09 13:36:00 +08:00
|
|
|
|
2002-08-07 00:39:45 +08:00
|
|
|
#endif /* _NGX_ARRAY_H_INCLUDED_ */
|