nginx/src/os/unix/ngx_readv_chain.c

48 lines
1.1 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-04-28 23:06:39 +08:00
ssize_t n;
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-05-15 23:42:53 +08:00
#if (NGX_SUPPRESS_WARN)
iov = NULL;
#endif
2003-04-10 23:08:54 +08:00
ngx_init_array(io, c->pool, 10, sizeof(struct iovec), NGX_ERROR);
2003-10-20 03:57:23 +08:00
/* TODO: coalesce the neighbouring chain entries */
2003-10-23 00:38:26 +08:00
while (chain) {
2003-04-10 23:08:54 +08:00
ngx_test_null(iov, ngx_push_array(&io), NGX_ERROR);
2003-10-23 00:38:26 +08:00
iov->iov_base = chain->hunk->last;
iov->iov_len = chain->hunk->end - chain->hunk->last;
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);
if (n == -1) {
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;
}
ngx_log_error(NGX_LOG_ERR, c->log, err, "readv() failed");
return NGX_ERROR;
}
return n;
}