vcs-svn: tweak test-line-buffer to not assume line-oriented input
[git.git] / test-line-buffer.c
blobda0bc6502cd609814035083f3bc4bde8a598629d
1 /*
2 * test-line-buffer.c: code to exercise the svn importer's input helper
3 */
5 #include "git-compat-util.h"
6 #include "vcs-svn/line_buffer.h"
8 static uint32_t strtouint32(const char *s)
10 char *end;
11 uintmax_t n = strtoumax(s, &end, 10);
12 if (*s == '\0' || *end != '\0')
13 die("invalid count: %s", s);
14 return (uint32_t) n;
17 static void handle_command(const char *command, const char *arg, struct line_buffer *buf)
19 switch (*command) {
20 case 'c':
21 if (!prefixcmp(command, "copy ")) {
22 buffer_copy_bytes(buf, strtouint32(arg));
23 return;
25 case 'r':
26 if (!prefixcmp(command, "read ")) {
27 const char *s = buffer_read_string(buf, strtouint32(arg));
28 fputs(s, stdout);
29 return;
31 case 's':
32 if (!prefixcmp(command, "skip ")) {
33 buffer_skip_bytes(buf, strtouint32(arg));
34 return;
36 default:
37 die("unrecognized command: %s", command);
41 static void handle_line(const char *line, struct line_buffer *stdin_buf)
43 const char *arg = strchr(line, ' ');
44 if (!arg)
45 die("no argument in line: %s", line);
46 handle_command(line, arg + 1, stdin_buf);
49 int main(int argc, char *argv[])
51 struct line_buffer stdin_buf = LINE_BUFFER_INIT;
52 char *s;
54 if (argc != 1)
55 usage("test-line-buffer < script");
57 if (buffer_init(&stdin_buf, NULL))
58 die_errno("open error");
59 while ((s = buffer_read_line(&stdin_buf)))
60 handle_line(s, &stdin_buf);
61 if (buffer_deinit(&stdin_buf))
62 die("input error");
63 if (ferror(stdout))
64 die("output error");
65 buffer_reset(&stdin_buf);
66 return 0;