nginx/src/os/unix/ngx_readv_chain.c

64 lines
1.5 KiB
C
Raw Normal View History

2003-04-10 23:08:54 +08:00
#include <ngx_config.h>
#include <ngx_core.h>
2003-06-11 23:28:34 +08:00
#include <ngx_event.h>
2003-04-10 23:08:54 +08:00
2003-10-23 00:38:26 +08:00
ssize_t ngx_readv_chain(ngx_connection_t *c, ngx_chain_t *chain)
2003-04-10 23:08:54 +08:00
{
2003-10-28 23:45:41 +08:00
char *prev;
2003-10-29 16:30:44 +08:00
ssize_t n, size;
2003-04-12 00:01:14 +08:00
struct iovec *iov;
ngx_err_t err;
ngx_array_t io;
2003-04-10 23:08:54 +08:00
2003-10-28 23:45:41 +08:00
prev = NULL;
2003-05-15 23:42:53 +08:00
iov = NULL;
2003-10-29 16:30:44 +08:00
size = 0;
2003-05-15 23:42:53 +08:00
2003-04-10 23:08:54 +08:00
ngx_init_array(io, c->pool, 10, sizeof(struct iovec), NGX_ERROR);
2003-10-28 23:45:41 +08:00
/* coalesce the neighbouring hunks */
2003-10-20 03:57:23 +08:00
2003-10-23 00:38:26 +08:00
while (chain) {
2003-10-28 23:45:41 +08:00
if (prev == chain->hunk->last) {
iov->iov_len += chain->hunk->end - chain->hunk->last;
} else {
ngx_test_null(iov, ngx_push_array(&io), NGX_ERROR);
iov->iov_base = chain->hunk->last;
iov->iov_len = chain->hunk->end - chain->hunk->last;
}
2003-10-29 16:30:44 +08:00
size += chain->hunk->end - chain->hunk->last;
2003-10-28 23:45:41 +08:00
prev = chain->hunk->end;
2003-10-23 00:38:26 +08:00
chain = chain->next;
2003-04-10 23:08:54 +08:00
}
2003-04-15 01:04:58 +08:00
ngx_log_debug(c->log, "recv: %d:%d" _ io.nelts _ iov->iov_len);
2003-04-10 23:08:54 +08:00
n = readv(c->fd, (struct iovec *) io.elts, io.nelts);
2003-10-28 23:45:41 +08:00
if (n == 0) {
c->read->eof = 1;
} else if (n == -1) {
2003-04-10 23:08:54 +08:00
c->read->ready = 0;
2003-04-15 01:04:58 +08:00
err = ngx_errno;
2003-04-10 23:08:54 +08:00
if (err == NGX_EAGAIN) {
ngx_log_error(NGX_LOG_INFO, c->log, err, "readv() returned EAGAIN");
return NGX_AGAIN;
}
2003-10-29 16:30:44 +08:00
c->read->error = 1;
2003-04-10 23:08:54 +08:00
ngx_log_error(NGX_LOG_ERR, c->log, err, "readv() failed");
return NGX_ERROR;
2003-10-29 16:30:44 +08:00
} else if (n < size) {
c->read->ready = 0;
2003-04-10 23:08:54 +08:00
}
return n;
}