summaryrefslogtreecommitdiffhomepage
path: root/src/os/unix/ngx_aio_read_chain.c
blob: 31f7c857377bed36d6d1e98bb075e9603b99f0dc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57

#include <ngx_config.h>
#include <ngx_core.h>
#include <ngx_event.h>
#include <ngx_aio.h>


ssize_t ngx_aio_read_chain(ngx_connection_t *c, ngx_chain_t *cl)
{
    int           n;
    char         *buf, *prev;
    size_t        size, total;
    ngx_err_t     err;

    total = 0;

    while (cl) {

        /* we can post the single aio operation only */

        if (c->read->active) {
            return total ? total : NGX_AGAIN;
        }

        buf = cl->hunk->pos;
        prev = buf;
        size = 0;

        /* coalesce the neighbouring hunks */

        while (cl && prev == cl->hunk->pos) {
            size += cl->hunk->last - cl->hunk->pos;
            prev = cl->hunk->last;
            cl = cl->next;
        }

        n = ngx_aio_read(c, buf, size);

        ngx_log_debug(c->log, "aio_read: %d" _ n);

        if (n == NGX_AGAIN) {
            return total ? total : NGX_AGAIN;
        }

        if (n == NGX_ERROR) {
            return NGX_ERROR;
        }

        if (n > 0) {
            total += n;
        }

        ngx_log_debug(c->log, "aio_read total: %d" _ total);
    }

    return total ? total : NGX_AGAIN;
}