aboutsummaryrefslogtreecommitdiffstats
path: root/src/blind-skip-pattern.c
blob: e8eee0b0feb30416e580f1d16633909e678546e0 (plain) (blame)
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
75
76
77
78
79
80
81
/* See LICENSE file for copyright and license details. */
#include "stream.h"
#include "util.h"

#include <string.h>

USAGE("(skipped-frames | +included-frames) ...")

static int
process_frame(struct stream *stream, int include)
{
	size_t h, n, m;
	int anything = 0;

	for (h = stream->height; h; h--) {
		for (n = stream->row_size; n; n -= m, anything = 1) {
			if (!stream->ptr && !eread_stream(stream, n))
				goto done;
			m = MIN(stream->ptr, n);
			if (include)
				ewriteall(STDOUT_FILENO, stream->buf, m, "<stdout>");
			memmove(stream->buf, stream->buf + m, stream->ptr -= m);
		}
	}
done:

	if (anything && h)
		eprintf("%s: is shorter than expected\n", stream->file);

	return anything;
}

int
main(int argc, char *argv[])
{
	struct stream stream;
	int i, include;
	size_t f, n, total = 0;
	char *includes;
	size_t *ns;

	UNOFLAGS(!argc);

	eopen_stream(&stream, NULL);

	includes = emalloc((size_t)argc);
	ns = ecalloc((size_t)argc, sizeof(*ns));

	for (i = 0; i < argc; i++) {
		include = argv[i][0] == '+';
		n = etozu_arg(include ? "included frame count" : "skipped frame count",
			      argv[i] + include, 0, SIZE_MAX);
		total += ns[i] = n;
		includes[i] = (char)include;
	}
	if (!total)
		eprintf("null pattern is not allowed");

	for (i = 0, total = 0, f = stream.frames; f; i = (i + 1) % argc) {
		include = (int)includes[i];
		for (n = ns[i]; n-- && f--;)
			total += (size_t)include;
	}

	stream.frames = total;
	echeck_dimensions(&stream, WIDTH, NULL);
	fprint_stream_head(stdout, &stream);
	efflush(stdout, "<stdout>");

	for (i = 0;; i = (i + 1) % argc) {
		include = (int)includes[i];
		for (n = ns[i]; n--;)
			if (!process_frame(&stream, include))
				goto done;
	}

done:
	free(includes);
	free(ns);
	return 0;
}