diff options
author | midipix <writeonce@midipix.org> | 2018-06-26 14:18:11 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-07-14 22:11:25 -0400 |
commit | c353c661a24622db379f19fb401861dea8740f4b (patch) | |
tree | 334a0b3de430a0884d8b955d60d725d6a2cc0742 /src | |
parent | ae96cc9d975d7f65c3abc73db3c4f22984faa00c (diff) | |
download | perk-c353c661a24622db379f19fb401861dea8740f4b.tar.bz2 perk-c353c661a24622db379f19fb401861dea8740f4b.tar.xz |
internals: added pe_dprintf(), a signal-resilient dprintf implementation.
Diffstat (limited to 'src')
-rw-r--r-- | src/internal/perk_dprintf_impl.c | 56 | ||||
-rw-r--r-- | src/internal/perk_dprintf_impl.h | 6 |
2 files changed, 62 insertions, 0 deletions
diff --git a/src/internal/perk_dprintf_impl.c b/src/internal/perk_dprintf_impl.c new file mode 100644 index 0000000..30d3d11 --- /dev/null +++ b/src/internal/perk_dprintf_impl.c @@ -0,0 +1,56 @@ +#include <stdio.h> +#include <stdarg.h> +#include <stdlib.h> +#include <unistd.h> +#include <errno.h> + +int pe_dprintf(int fd, const char * fmt, ...) +{ + int ret; + int cnt; + int size; + va_list ap; + char * ch; + char * buf; + char chbuf[2048]; + + va_start(ap,fmt); + + size = sizeof(chbuf); + buf = ((cnt = vsnprintf(chbuf,size,fmt,ap)) < size) + ? chbuf : malloc(cnt + 1); + + va_end(ap); + + if (buf == chbuf) { + (void)0; + + } else if (buf) { + va_start(ap,fmt); + vsprintf(buf,fmt,ap); + va_end(ap); + + } else { + return -1; + } + + ret = 0; + ch = buf; + + for (; cnt && ret>=0; ) { + ret = write(fd,ch,cnt); + + while ((ret < 0) && (errno == EINTR)) + ret = write(fd,ch,cnt); + + ch += ret; + cnt -= ret; + } + + ret = (ret < 0) ? -1 : ch - buf; + + if (buf != chbuf) + free(buf); + + return ret; +} diff --git a/src/internal/perk_dprintf_impl.h b/src/internal/perk_dprintf_impl.h new file mode 100644 index 0000000..61e400d --- /dev/null +++ b/src/internal/perk_dprintf_impl.h @@ -0,0 +1,6 @@ +#ifndef PERK_DPRINTF_IMPL_H +#define PERK_DPRINTF_IMPL_H + +int pe_dprintf(int fd, const char * fmt, ...); + +#endif |