diff options
| author | Mattias Andrée <maandree@kth.se> | 2017-01-12 09:40:50 +0100 |
|---|---|---|
| committer | Mattias Andrée <maandree@kth.se> | 2017-01-12 09:40:50 +0100 |
| commit | 6bcf1120ccde684a7ab09fd690931ce125fe4631 (patch) | |
| tree | e951aaf2b740c284f7c5c12d3bfe26f66d86727f /src | |
| parent | Add vu-to-text (diff) | |
| download | blind-6bcf1120ccde684a7ab09fd690931ce125fe4631.tar.gz blind-6bcf1120ccde684a7ab09fd690931ce125fe4631.tar.bz2 blind-6bcf1120ccde684a7ab09fd690931ce125fe4631.tar.xz | |
Add vu-from-text
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'src')
| -rw-r--r-- | src/stream.c | 2 | ||||
| -rw-r--r-- | src/vu-from-text.c | 71 |
2 files changed, 72 insertions, 1 deletions
diff --git a/src/stream.c b/src/stream.c index 4f20455..edee6a7 100644 --- a/src/stream.c +++ b/src/stream.c @@ -17,7 +17,7 @@ eninit_stream(int status, struct stream *stream) size_t n; char *p = NULL, *w, *h, *f, *end; - for (stream->ptr = 0; p;) { + for (stream->ptr = 0; stream->fd >= 0 && p;) { r = read(stream->fd, stream->buf + stream->ptr, sizeof(stream->buf) - stream->ptr); if (r < 0) enprintf(status, "read %s:", stream->file); diff --git a/src/vu-from-text.c b/src/vu-from-text.c new file mode 100644 index 0000000..88cee62 --- /dev/null +++ b/src/vu-from-text.c @@ -0,0 +1,71 @@ +/* See LICENSE file for copyright and license details. */ +#include "stream.h" +#include "util.h" + +#include <stdio.h> +#include <stdint.h> +#include <string.h> +#include <unistd.h> + +USAGE("") + +static void +process_xyza(struct stream *stream) +{ + double buf[BUFSIZ / sizeof(double)]; + size_t i; + int r, done = 0; + + while (!done) { + for (i = 0; i < ELEMENTSOF(buf); i += (size_t)r) { + r = scanf("%lf", buf + i); + if (r == EOF) { + done = 1; + break; + } + } + ewriteall(STDOUT_FILENO, buf, i * sizeof(*buf), "<stdout>"); + } +} + +int +main(int argc, char *argv[]) +{ + struct stream stream; + size_t size = 0; + char *line = NULL; + ssize_t len; + void (*process)(struct stream *stream) = NULL; + + ENOFLAGS(argc); + + len = getline(&line, &size, stdin); + if (len < 0) { + if (ferror(stdin)) + eprintf("getline <stdin>:"); + else + eprintf("<stdin>: no input\n"); + } + if (len && line[len - 1] == '\n') + line[--len] = '\n'; + if (len + 6 > sizeof(stream.buf)) + eprintf("<stdin>: head is too long\n"); + stream.fd = -1; + stream.file = "<stdin>"; + memcpy(stream.buf, line, (size_t)len); + memcpy(stream.buf + len, "\n\0uivf", 6); + stream.ptr = (size_t)len + 6; + free(line); + ewriteall(STDOUT_FILENO, stream.buf, stream.ptr, "<stdout>"); + einit_stream(&stream); + + if (!strcmp(stream.pixfmt, "xyza")) + process = process_xyza; + else + eprintf("pixel format %s is not supported, try xyza\n", stream.pixfmt); + + process(&stream); + + efshut(stdin, "<stdin>"); + return 0; +} |
