blob: ef1d7bae1441e07b6cb74e83a23d07b4720a8ebf [file] [log] [blame]
David Barr3bbaec02010-08-09 17:39:43 -05001/*
2 * test-line-buffer.c: code to exercise the svn importer's input helper
David Barr3bbaec02010-08-09 17:39:43 -05003 */
4
5#include "git-compat-util.h"
Jonathan Niedere832f432011-01-02 21:05:46 -06006#include "strbuf.h"
David Barr3bbaec02010-08-09 17:39:43 -05007#include "vcs-svn/line_buffer.h"
8
9static uint32_t strtouint32(const char *s)
10{
11 char *end;
12 uintmax_t n = strtoumax(s, &end, 10);
13 if (*s == '\0' || *end != '\0')
14 die("invalid count: %s", s);
15 return (uint32_t) n;
16}
17
Jonathan Nieder850c5ea2011-01-02 18:50:16 -060018static void handle_command(const char *command, const char *arg, struct line_buffer *buf)
19{
20 switch (*command) {
Jonathan Niedere832f432011-01-02 21:05:46 -060021 case 'b':
22 if (!prefixcmp(command, "binary ")) {
23 struct strbuf sb = STRBUF_INIT;
24 strbuf_addch(&sb, '>');
25 buffer_read_binary(buf, &sb, strtouint32(arg));
26 fwrite(sb.buf, 1, sb.len, stdout);
27 strbuf_release(&sb);
28 return;
29 }
Jonathan Nieder850c5ea2011-01-02 18:50:16 -060030 case 'c':
31 if (!prefixcmp(command, "copy ")) {
Jonathan Nieder7b990c92011-01-02 18:52:28 -060032 buffer_copy_bytes(buf, strtouint32(arg));
Jonathan Nieder850c5ea2011-01-02 18:50:16 -060033 return;
34 }
Jonathan Nieder7b990c92011-01-02 18:52:28 -060035 case 's':
36 if (!prefixcmp(command, "skip ")) {
37 buffer_skip_bytes(buf, strtouint32(arg));
Jonathan Nieder850c5ea2011-01-02 18:50:16 -060038 return;
39 }
40 default:
41 die("unrecognized command: %s", command);
42 }
43}
44
45static void handle_line(const char *line, struct line_buffer *stdin_buf)
46{
47 const char *arg = strchr(line, ' ');
48 if (!arg)
49 die("no argument in line: %s", line);
50 handle_command(line, arg + 1, stdin_buf);
51}
52
David Barr3bbaec02010-08-09 17:39:43 -050053int main(int argc, char *argv[])
54{
Jonathan Nieder850c5ea2011-01-02 18:50:16 -060055 struct line_buffer stdin_buf = LINE_BUFFER_INIT;
Jonathan Niederd280f682011-01-02 19:07:16 -060056 struct line_buffer file_buf = LINE_BUFFER_INIT;
57 struct line_buffer *input = &stdin_buf;
58 const char *filename;
David Barr3bbaec02010-08-09 17:39:43 -050059 char *s;
60
Jonathan Niederd280f682011-01-02 19:07:16 -060061 if (argc == 1)
62 filename = NULL;
63 else if (argc == 2)
64 filename = argv[1];
65 else
Jonathan Niedercb3f87c2011-01-02 21:09:38 -060066 usage("test-line-buffer [file | &fd] < script");
Jonathan Nieder850c5ea2011-01-02 18:50:16 -060067
68 if (buffer_init(&stdin_buf, NULL))
David Barr3bbaec02010-08-09 17:39:43 -050069 die_errno("open error");
Jonathan Niederd280f682011-01-02 19:07:16 -060070 if (filename) {
Jonathan Niedercb3f87c2011-01-02 21:09:38 -060071 if (*filename == '&') {
72 if (buffer_fdinit(&file_buf, strtouint32(filename + 1)))
73 die_errno("error opening fd %s", filename + 1);
74 } else {
75 if (buffer_init(&file_buf, filename))
76 die_errno("error opening %s", filename);
77 }
Jonathan Niederd280f682011-01-02 19:07:16 -060078 input = &file_buf;
79 }
80
Jonathan Nieder850c5ea2011-01-02 18:50:16 -060081 while ((s = buffer_read_line(&stdin_buf)))
Jonathan Niederd280f682011-01-02 19:07:16 -060082 handle_line(s, input);
83
84 if (filename && buffer_deinit(&file_buf))
85 die("error reading from %s", filename);
Jonathan Nieder850c5ea2011-01-02 18:50:16 -060086 if (buffer_deinit(&stdin_buf))
David Barr3bbaec02010-08-09 17:39:43 -050087 die("input error");
88 if (ferror(stdout))
89 die("output error");
David Barr3bbaec02010-08-09 17:39:43 -050090 return 0;
91}