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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
/* 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("")
#define PROCESS(TYPE, FMT)\
do {\
TYPE buf[BUFSIZ / sizeof(TYPE)];\
size_t i;\
int r, done = 0;\
while (!done) {\
for (i = 0; i < ELEMENTSOF(buf); i += (size_t)r) {\
r = scanf("%"FMT, buf + i);\
if (r == EOF) {\
done = 1;\
break;\
}\
}\
ewriteall(STDOUT_FILENO, buf, i * sizeof(*buf), "<stdout>");\
}\
} while (0)
static void process_xyza (void) {PROCESS(double, "lf");}
static void process_xyzaf(void) {PROCESS(float, "f");}
int
main(int argc, char *argv[])
{
struct stream stream;
size_t size = 0;
char *line = NULL;
ssize_t len;
void (*process)(void) = NULL;
UNOFLAGS(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] = '\0';
if ((size_t)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 if (!strcmp(stream.pixfmt, "xyza f"))
process = process_xyzaf;
else
eprintf("pixel format %s is not supported, try xyza\n", stream.pixfmt);
process();
efshut(stdin, "<stdin>");
return 0;
}
|