blob: 00206cb1be331a02b96e139ac44776326feae3bc [file] [log] [blame]
Igor Sysoevd90282d2004-09-28 08:34:51 +00001
2/*
Igor Sysoevff8da912004-09-29 16:00:49 +00003 * Copyright (C) Igor Sysoev
Igor Sysoevd90282d2004-09-28 08:34:51 +00004 */
5
6
Igor Sysoev6de5c2c2002-08-06 16:39:45 +00007#ifndef _NGX_ARRAY_H_INCLUDED_
8#define _NGX_ARRAY_H_INCLUDED_
9
10
11#include <ngx_config.h>
Igor Sysoev1c104622003-06-03 15:42:58 +000012#include <ngx_core.h>
Igor Sysoev6de5c2c2002-08-06 16:39:45 +000013
Igor Sysoev6de5c2c2002-08-06 16:39:45 +000014
Igor Sysoev5f800782003-12-08 20:48:12 +000015struct ngx_array_s {
Igor Sysoev10a543a2004-03-16 07:10:12 +000016 void *elts;
17 ngx_uint_t nelts;
18 size_t size;
19 ngx_uint_t nalloc;
20 ngx_pool_t *pool;
Igor Sysoev5f800782003-12-08 20:48:12 +000021};
Igor Sysoev6de5c2c2002-08-06 16:39:45 +000022
23
Igor Sysoev805d9db2005-02-03 19:33:37 +000024ngx_array_t *ngx_array_create(ngx_pool_t *p, ngx_uint_t n, size_t size);
25void ngx_array_destroy(ngx_array_t *a);
26void *ngx_array_push(ngx_array_t *a);
27void *ngx_array_push_n(ngx_array_t *a, ngx_uint_t n);
Igor Sysoev6de5c2c2002-08-06 16:39:45 +000028
29
Igor Sysoevc1571722005-03-19 12:38:37 +000030static ngx_inline ngx_int_t
31ngx_array_init(ngx_array_t *array, ngx_pool_t *pool, ngx_uint_t n, size_t size)
Igor Sysoev980a9242004-09-05 19:54:02 +000032{
Igor Sysoev899b44e2005-05-12 14:58:06 +000033 /*
34 * set "array->nelts" before "array->elts", otherwise MSVC thinks
35 * that "array->nelts" may be used without having been initialized
36 */
Igor Sysoev980a9242004-09-05 19:54:02 +000037
38 array->nelts = 0;
39 array->size = size;
40 array->nalloc = n;
41 array->pool = pool;
42
Igor Sysoev899b44e2005-05-12 14:58:06 +000043 array->elts = ngx_palloc(pool, n * size);
44 if (array->elts == NULL) {
45 return NGX_ERROR;
46 }
47
Igor Sysoev980a9242004-09-05 19:54:02 +000048 return NGX_OK;
49}
50
51
Igor Sysoev6de5c2c2002-08-06 16:39:45 +000052#endif /* _NGX_ARRAY_H_INCLUDED_ */