nginx/src/os/unix/ngx_writev_chain.c

116 lines
2.6 KiB
C
Raw Normal View History

2003-05-21 21:28:21 +08:00
#include <ngx_config.h>
#include <ngx_core.h>
2003-10-13 00:49:16 +08:00
#include <ngx_event.h>
2003-05-21 21:28:21 +08:00
ngx_chain_t *ngx_writev_chain(ngx_connection_t *c, ngx_chain_t *in)
{
char *prev;
2003-06-11 23:28:34 +08:00
ssize_t n, size;
2003-05-21 21:28:21 +08:00
off_t sent;
struct iovec *iov;
2003-11-28 03:01:37 +08:00
ngx_int_t eintr;
2003-05-21 21:28:21 +08:00
ngx_err_t err;
2003-11-03 06:56:18 +08:00
ngx_array_t io;
ngx_chain_t *cl;
2003-11-28 03:01:37 +08:00
ngx_event_t *wev;
2003-05-21 21:28:21 +08:00
2003-11-28 03:01:37 +08:00
wev = c->write;
if (!wev->ready) {
2003-10-13 00:49:16 +08:00
return in;
}
2004-02-12 01:08:49 +08:00
#if (HAVE_KQUEUE)
if ((ngx_event_flags & NGX_HAVE_KQUEUE_EVENT) && wev->kq_eof) {
ngx_log_error(NGX_LOG_INFO, c->log, wev->kq_errno,
"kevent() reported about an closed connection");
wev->error = 1;
return NGX_CHAIN_ERROR;
}
#endif
2003-11-03 06:56:18 +08:00
ngx_init_array(io, c->pool, 10, sizeof(struct iovec), NGX_CHAIN_ERROR);
2003-05-21 21:28:21 +08:00
2003-11-28 03:01:37 +08:00
do {
prev = NULL;
iov = NULL;
eintr = 0;
2003-05-21 21:28:21 +08:00
2003-11-28 03:01:37 +08:00
/* create the iovec and coalesce the neighbouring hunks */
2003-11-14 15:20:34 +08:00
2003-11-28 03:01:37 +08:00
for (cl = in; cl; cl = cl->next) {
2003-05-21 21:28:21 +08:00
2003-11-28 03:01:37 +08:00
if (prev == cl->hunk->pos) {
iov->iov_len += cl->hunk->last - cl->hunk->pos;
prev = cl->hunk->last;
2003-05-21 21:28:21 +08:00
2003-11-28 03:01:37 +08:00
} else {
ngx_test_null(iov, ngx_push_array(&io), NGX_CHAIN_ERROR);
iov->iov_base = cl->hunk->pos;
iov->iov_len = cl->hunk->last - cl->hunk->pos;
prev = cl->hunk->last;
}
2003-05-21 21:28:21 +08:00
}
2003-11-28 03:01:37 +08:00
n = writev(c->fd, io.elts, io.nelts);
2003-05-21 21:28:21 +08:00
2003-11-28 03:01:37 +08:00
if (n == -1) {
err = ngx_errno;
2003-05-21 21:28:21 +08:00
2004-02-12 01:08:49 +08:00
if (err == NGX_EAGAIN || err == NGX_EINTR) {
if (err == NGX_EINTR) {
eintr = 1;
}
ngx_log_debug0(NGX_LOG_DEBUG_EVENT, c->log, err,
"writev() not ready");
2003-05-21 21:28:21 +08:00
2003-11-28 03:01:37 +08:00
} else {
wev->error = 1;
2004-02-12 01:08:49 +08:00
ngx_connection_error(c, err, "writev() failed");
2003-11-28 03:01:37 +08:00
return NGX_CHAIN_ERROR;
}
2003-05-21 21:28:21 +08:00
}
2003-11-28 03:01:37 +08:00
sent = n > 0 ? n : 0;
2003-05-21 21:28:21 +08:00
2004-02-12 01:08:49 +08:00
ngx_log_debug1(NGX_LOG_DEBUG_EVENT, c->log, 0,
"writev: " OFF_T_FMT, sent);
2003-05-21 21:28:21 +08:00
2003-11-28 03:01:37 +08:00
c->sent += sent;
2003-05-21 21:28:21 +08:00
2003-11-28 03:01:37 +08:00
for (cl = in; cl && sent > 0; cl = cl->next) {
2003-05-21 21:28:21 +08:00
2003-11-28 03:01:37 +08:00
size = cl->hunk->last - cl->hunk->pos;
2003-05-21 21:28:21 +08:00
2003-11-28 03:01:37 +08:00
if (sent >= size) {
sent -= size;
if (cl->hunk->type & NGX_HUNK_IN_MEMORY) {
cl->hunk->pos = cl->hunk->last;
}
continue;
}
2003-05-21 21:28:21 +08:00
2003-11-03 06:56:18 +08:00
if (cl->hunk->type & NGX_HUNK_IN_MEMORY) {
2003-11-28 03:01:37 +08:00
cl->hunk->pos += sent;
2003-05-21 21:28:21 +08:00
}
2003-11-28 03:01:37 +08:00
break;
2003-05-21 21:28:21 +08:00
}
2003-11-28 03:01:37 +08:00
} while (eintr);
2003-05-21 21:28:21 +08:00
2003-11-28 03:01:37 +08:00
if (cl) {
wev->ready = 0;
2003-05-21 21:28:21 +08:00
}
2003-11-03 06:56:18 +08:00
return cl;
2003-05-21 21:28:21 +08:00
}