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-05-21 21:28:21 +08:00
|
|
|
ssize_t ngx_readv_chain(ngx_connection_t *c, ngx_chain_t *entry)
|
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-04-28 23:06:39 +08:00
|
|
|
while (entry) {
|
2003-04-10 23:08:54 +08:00
|
|
|
ngx_test_null(iov, ngx_push_array(&io), NGX_ERROR);
|
2003-10-21 01:14:07 +08:00
|
|
|
iov->iov_base = entry->hunk->last;
|
2003-04-28 23:06:39 +08:00
|
|
|
iov->iov_len = entry->hunk->end - entry->hunk->last;
|
|
|
|
entry = entry->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);
|
|
|
|
|
|
|
|
ngx_destroy_array(&io);
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|