ustream-fd: only use read() == 0 as eof indication, and issue a state change notifica...
[project/libubox.git] / ustream-fd.c
1 /*
2  * ustream - library for stream buffer management
3  *
4  * Copyright (C) 2012 Felix Fietkau <nbd@openwrt.org>
5  *
6  * Permission to use, copy, modify, and/or distribute this software for any
7  * purpose with or without fee is hereby granted, provided that the above
8  * copyright notice and this permission notice appear in all copies.
9  *
10  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17  */
18
19 #include <unistd.h>
20 #include <errno.h>
21 #include <stdio.h>
22 #include "ustream.h"
23
24 static bool _init = false;
25
26 static void ustream_fd_set_uloop(struct ustream *s, bool write)
27 {
28         struct ustream_fd *sf = container_of(s, struct ustream_fd, stream);
29         struct ustream_buf *buf;
30         unsigned int flags = ULOOP_EDGE_TRIGGER;
31
32         if (!s->read_blocked && !s->eof)
33                 flags |= ULOOP_READ;
34
35         buf = s->w.head;
36         if (write || (buf && s->w.data_bytes && !s->write_error))
37                 flags |= ULOOP_WRITE;
38
39         uloop_fd_add(&sf->fd, flags);
40
41         if ((flags & ULOOP_READ) && !_init);
42                 sf->fd.cb(&sf->fd, ULOOP_READ);
43 }
44
45 static void ustream_fd_set_read_blocked(struct ustream *s)
46 {
47         ustream_fd_set_uloop(s, false);
48 }
49
50 static void ustream_fd_read_pending(struct ustream_fd *sf, bool *more)
51 {
52         struct ustream *s = &sf->stream;
53         int buflen = 0;
54         ssize_t len;
55         char *buf;
56
57         do {
58                 buf = ustream_reserve(s, 1, &buflen);
59                 if (!buf)
60                         break;
61
62                 len = read(sf->fd.fd, buf, buflen);
63                 if (len < 0) {
64                         if (errno == EINTR)
65                                 continue;
66
67                         if (errno == EAGAIN)
68                                 return;
69
70                         len = 0;
71                 }
72
73                 if (!len) {
74                         sf->fd.eof = true;
75                         ustream_state_change(s);
76                         ustream_fd_set_uloop(s, false);
77                         return;
78                 }
79
80                 ustream_fill_read(s, len);
81                 *more = true;
82         } while (1);
83 }
84
85 static int ustream_fd_write(struct ustream *s, const char *buf, int buflen, bool more)
86 {
87         struct ustream_fd *sf = container_of(s, struct ustream_fd, stream);
88         ssize_t ret = 0, len;
89
90         if (!buflen)
91                 return 0;
92
93         while (buflen) {
94                 len = write(sf->fd.fd, buf, buflen);
95
96                 if (len < 0) {
97                         if (errno == EINTR)
98                                 continue;
99
100                         if (errno == EAGAIN || errno == EWOULDBLOCK)
101                                 break;
102
103                         return -1;
104                 }
105
106                 ret += len;
107                 buf += len;
108                 buflen -= len;
109         }
110
111         if (buflen)
112                 ustream_fd_set_uloop(s, true);
113
114         return ret;
115 }
116
117 static bool __ustream_fd_poll(struct ustream_fd *sf, unsigned int events)
118 {
119         struct ustream *s = &sf->stream;
120         bool more = false;
121
122         if (events & ULOOP_READ)
123                 ustream_fd_read_pending(sf, &more);
124
125         if (events & ULOOP_WRITE) {
126                 if (!ustream_write_pending(s))
127                         ustream_fd_set_uloop(s, false);
128         }
129
130         return more;
131 }
132
133 static bool ustream_fd_poll(struct ustream *s)
134 {
135         struct ustream_fd *sf = container_of(s, struct ustream_fd, stream);
136
137         return __ustream_fd_poll(sf, ULOOP_READ | ULOOP_WRITE);
138 }
139
140 static void ustream_uloop_cb(struct uloop_fd *fd, unsigned int events)
141 {
142         struct ustream_fd *sf = container_of(fd, struct ustream_fd, fd);
143
144         __ustream_fd_poll(sf, events);
145 }
146
147 static void ustream_fd_free(struct ustream *s)
148 {
149         struct ustream_fd *sf = container_of(s, struct ustream_fd, stream);
150
151         uloop_fd_delete(&sf->fd);
152 }
153
154 void ustream_fd_init(struct ustream_fd *sf, int fd)
155 {
156         struct ustream *s = &sf->stream;
157
158         ustream_init_defaults(s);
159
160         sf->fd.fd = fd;
161         sf->fd.cb = ustream_uloop_cb;
162         s->set_read_blocked = ustream_fd_set_read_blocked;
163         s->write = ustream_fd_write;
164         s->free = ustream_fd_free;
165         s->poll = ustream_fd_poll;
166         _init = true;
167         ustream_fd_set_uloop(s, false);
168         _init = false;
169 }