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
|
#include "test-tool.h"
#include "gpg-interface.h"
#include "strbuf.h"
int cmd__delete_gpgsig(int argc, const char **argv)
{
struct strbuf buf = STRBUF_INIT;
const char *pattern = "gpgsig";
const char *bufptr, *tail, *eol;
int deleting = 0;
size_t plen;
if (argc >= 2) {
pattern = argv[1];
argv++;
argc--;
}
plen = strlen(pattern);
strbuf_read(&buf, 0, 0);
if (!strcmp(pattern, "trailer")) {
size_t payload_size = parse_signed_buffer(buf.buf, buf.len);
fwrite(buf.buf, 1, payload_size, stdout);
fflush(stdout);
return 0;
}
bufptr = buf.buf;
tail = bufptr + buf.len;
while (bufptr < tail) {
/* Find the end of the line */
eol = memchr(bufptr, '\n', tail - bufptr);
if (!eol)
eol = tail;
/* Drop continuation lines */
if (deleting && (bufptr < eol) && (bufptr[0] == ' ')) {
bufptr = eol + 1;
continue;
}
deleting = 0;
/* Does the line match the prefix? */
if (((bufptr + plen) < eol) &&
!memcmp(bufptr, pattern, plen) &&
(bufptr[plen] == ' ')) {
deleting = 1;
bufptr = eol + 1;
continue;
}
/* Print all other lines */
fwrite(bufptr, 1, (eol - bufptr) + 1, stdout);
bufptr = eol + 1;
}
fflush(stdout);
return 0;
}
|