diff options
author | Markus F.X.J. Oberhumer <markus@oberhumer.com> | 2021-04-15 18:37:32 +0200 |
---|---|---|
committer | Markus F.X.J. Oberhumer <markus@oberhumer.com> | 2021-04-15 18:37:32 +0200 |
commit | 3dad2125b9048fdc3790d3e7c4770f7174be889c (patch) | |
tree | 25a723baf00892f61d103029a983fec6b60bf550 /util.c | |
parent | 68622a02adfa7ebd3a195667d3fbf8e1f10ca93f (diff) | |
download | bfs-3dad2125b9048fdc3790d3e7c4770f7174be889c.tar.xz |
util: add safe_read_all() and safe_write_all() functions.
Diffstat (limited to 'util.c')
-rw-r--r-- | util.c | 35 |
1 files changed, 35 insertions, 0 deletions
@@ -379,6 +379,23 @@ ssize_t safe_read(int fd, void *buf, size_t nbytes) { } } +ssize_t safe_read_all(int fd, void *buf, size_t nbytes) { + size_t count = 0; + for (;;) { + ssize_t ret = read(fd, (char *)buf + count, nbytes - count); + if (ret < 0 && errno == EINTR) { + continue; + } + if (ret < 0) { + return ret; // always return error < 0 + } + count += ret; + if (ret == 0 || count == nbytes) { // EOF or success + return count; + } + } +} + ssize_t safe_write(int fd, const void *buf, size_t nbytes) { for (;;) { ssize_t ret = write(fd, buf, nbytes); @@ -388,3 +405,21 @@ ssize_t safe_write(int fd, const void *buf, size_t nbytes) { return ret; } } + +ssize_t safe_write_all(int fd, const void *buf, size_t nbytes) +{ + size_t count = 0; + for (;;) { + ssize_t ret = write(fd, (const char *)buf + count, nbytes - count); + if (ret < 0 && errno == EINTR) { + continue; + } + if (ret < 0) { + return ret; // always return error < 0 + } + count += ret; + if (ret == 0 || count == nbytes) { // EOF (should never happen with write) or success + return count; + } + } +} |