blob: 2f2c4372185d0f549ef5254be4418491777589fa [file] [log] [blame]
Igor Sysoev369145c2004-05-28 15:49:23 +00001
Igor Sysoevd90282d2004-09-28 08:34:51 +00002/*
Igor Sysoevff8da912004-09-29 16:00:49 +00003 * Copyright (C) Igor Sysoev
Igor Sysoevd90282d2004-09-28 08:34:51 +00004 */
5
6
Igor Sysoev369145c2004-05-28 15:49:23 +00007#include <ngx_config.h>
8#include <ngx_core.h>
9
10
Igor Sysoev8184d1b2005-03-04 14:06:57 +000011ngx_buf_t *
12ngx_create_temp_buf(ngx_pool_t *pool, size_t size)
Igor Sysoev369145c2004-05-28 15:49:23 +000013{
14 ngx_buf_t *b;
15
Igor Sysoevc1571722005-03-19 12:38:37 +000016 b = ngx_calloc_buf(pool);
17 if (b == NULL) {
Igor Sysoev369145c2004-05-28 15:49:23 +000018 return NULL;
19 }
20
Igor Sysoevc1571722005-03-19 12:38:37 +000021 b->start = ngx_palloc(pool, size);
22 if (b->start == NULL) {
Igor Sysoev369145c2004-05-28 15:49:23 +000023 return NULL;
24 }
25
Igor Sysoev8184d1b2005-03-04 14:06:57 +000026 /*
27 * set by ngx_calloc_buf():
28 *
29 * b->file_pos = 0;
30 * b->file_last = 0;
31 * b->file = NULL;
32 * b->shadow = NULL;
33 * b->tag = 0;
Igor Sysoev899b44e2005-05-12 14:58:06 +000034 * and flags
Igor Sysoev8184d1b2005-03-04 14:06:57 +000035 */
36
Igor Sysoev369145c2004-05-28 15:49:23 +000037 b->pos = b->start;
38 b->last = b->start;
39 b->end = b->last + size;
40 b->temporary = 1;
41
Igor Sysoev369145c2004-05-28 15:49:23 +000042 return b;
43}
44
45
Igor Sysoev8184d1b2005-03-04 14:06:57 +000046ngx_chain_t *
Igor Sysoev02f742b2005-04-08 15:18:55 +000047ngx_alloc_chain_link(ngx_pool_t *pool)
48{
49 ngx_chain_t *cl;
50
51 cl = pool->chain;
52
53 if (cl) {
54 pool->chain = cl->next;
55 return cl;
56 }
57
58 cl = ngx_palloc(pool, sizeof(ngx_chain_t));
59 if (cl == NULL) {
60 return NULL;
61 }
62
63 return cl;
64}
65
66
67ngx_chain_t *
Igor Sysoev8184d1b2005-03-04 14:06:57 +000068ngx_create_chain_of_bufs(ngx_pool_t *pool, ngx_bufs_t *bufs)
Igor Sysoev369145c2004-05-28 15:49:23 +000069{
70 u_char *p;
71 ngx_int_t i;
72 ngx_buf_t *b;
73 ngx_chain_t *chain, *cl, **ll;
74
Igor Sysoevc1571722005-03-19 12:38:37 +000075 p = ngx_palloc(pool, bufs->num * bufs->size);
76 if (p == NULL) {
Igor Sysoev369145c2004-05-28 15:49:23 +000077 return NULL;
78 }
79
80 ll = &chain;
81
82 for (i = 0; i < bufs->num; i++) {
Igor Sysoevc1571722005-03-19 12:38:37 +000083
84 b = ngx_calloc_buf(pool);
85 if (b == NULL) {
Igor Sysoev369145c2004-05-28 15:49:23 +000086 return NULL;
87 }
88
Igor Sysoev8184d1b2005-03-04 14:06:57 +000089 /*
90 * set by ngx_calloc_buf():
91 *
92 * b->file_pos = 0;
93 * b->file_last = 0;
94 * b->file = NULL;
95 * b->shadow = NULL;
96 * b->tag = 0;
Igor Sysoev899b44e2005-05-12 14:58:06 +000097 * and flags
Igor Sysoev8184d1b2005-03-04 14:06:57 +000098 *
99 */
100
Igor Sysoev369145c2004-05-28 15:49:23 +0000101 b->pos = p;
102 b->last = p;
103 b->temporary = 1;
104
105 b->start = p;
106 p += bufs->size;
107 b->end = p;
108
Igor Sysoevc1571722005-03-19 12:38:37 +0000109 cl = ngx_alloc_chain_link(pool);
110 if (cl == NULL) {
Igor Sysoev369145c2004-05-28 15:49:23 +0000111 return NULL;
112 }
113
114 cl->buf = b;
115 *ll = cl;
116 ll = &cl->next;
117 }
118
119 *ll = NULL;
120
121 return chain;
122}
123
124
Igor Sysoev8184d1b2005-03-04 14:06:57 +0000125ngx_int_t
126ngx_chain_add_copy(ngx_pool_t *pool, ngx_chain_t **chain, ngx_chain_t *in)
Igor Sysoev369145c2004-05-28 15:49:23 +0000127{
128 ngx_chain_t *cl, **ll;
129
130 ll = chain;
131
132 for (cl = *chain; cl; cl = cl->next) {
133 ll = &cl->next;
134 }
135
136 while (in) {
Igor Sysoevc1571722005-03-19 12:38:37 +0000137 cl = ngx_alloc_chain_link(pool);
138 if (cl == NULL) {
139 return NGX_ERROR;
140 }
Igor Sysoev369145c2004-05-28 15:49:23 +0000141
142 cl->buf = in->buf;
143 *ll = cl;
144 ll = &cl->next;
145 in = in->next;
146 }
147
148 *ll = NULL;
149
150 return NGX_OK;
151}
152
153
Igor Sysoevc31a9bb2005-11-26 10:11:11 +0000154ngx_chain_t *
155ngx_chain_get_free_buf(ngx_pool_t *p, ngx_chain_t **free)
156{
157 ngx_chain_t *cl;
158
159 if (*free) {
160 cl = *free;
161 *free = cl->next;
162 cl->next = NULL;
163 return cl;
164 }
165
166 cl = ngx_alloc_chain_link(p);
167 if (cl == NULL) {
168 return NULL;
169 }
170
171 cl->buf = ngx_calloc_buf(p);
172 if (cl->buf == NULL) {
173 return NULL;
174 }
175
176 cl->next = NULL;
177
178 return cl;
179}
180
181
Igor Sysoev8184d1b2005-03-04 14:06:57 +0000182void
183ngx_chain_update_chains(ngx_chain_t **free, ngx_chain_t **busy,
184 ngx_chain_t **out, ngx_buf_tag_t tag)
Igor Sysoev369145c2004-05-28 15:49:23 +0000185{
Igor Sysoev8184d1b2005-03-04 14:06:57 +0000186 ngx_chain_t *cl;
Igor Sysoev369145c2004-05-28 15:49:23 +0000187
188 if (*busy == NULL) {
189 *busy = *out;
190
191 } else {
Igor Sysoev8184d1b2005-03-04 14:06:57 +0000192 for (cl = *busy; cl->next; cl = cl->next) { /* void */ }
Igor Sysoevc0edbcc2004-10-21 15:34:38 +0000193
Igor Sysoev8184d1b2005-03-04 14:06:57 +0000194 cl->next = *out;
Igor Sysoev369145c2004-05-28 15:49:23 +0000195 }
196
197 *out = NULL;
198
199 while (*busy) {
200 if (ngx_buf_size((*busy)->buf) != 0) {
201 break;
202 }
203
Igor Sysoev369145c2004-05-28 15:49:23 +0000204 if ((*busy)->buf->tag != tag) {
205 *busy = (*busy)->next;
206 continue;
207 }
208
Igor Sysoev924bd792004-10-11 15:07:03 +0000209 (*busy)->buf->pos = (*busy)->buf->start;
210 (*busy)->buf->last = (*busy)->buf->start;
Igor Sysoev369145c2004-05-28 15:49:23 +0000211
Igor Sysoev8184d1b2005-03-04 14:06:57 +0000212 cl = *busy;
213 *busy = cl->next;
214 cl->next = *free;
215 *free = cl;
Igor Sysoev369145c2004-05-28 15:49:23 +0000216 }
217}