diff options
author | Ben Peart <peartben@gmail.com> | 2017-05-05 17:28:02 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-05-15 06:01:57 +0200 |
commit | 4f2a2e9f0e26c1c543d1f282d6e88b3d0f608d07 (patch) | |
tree | e6f92f415fc89c7c982773020acfa7bd5964477e /sub-process.c | |
parent | sub-process: move sub-process functions into separate files (diff) | |
download | git-4f2a2e9f0e26c1c543d1f282d6e88b3d0f608d07.tar.xz git-4f2a2e9f0e26c1c543d1f282d6e88b3d0f608d07.zip |
convert: update subprocess_read_status() to not die on EOF
Enable sub-processes to gracefully handle when the process dies by
updating subprocess_read_status to return an error on EOF instead of
dying.
Update apply_multi_file_filter to take advantage of the revised
subprocess_read_status.
Signed-off-by: Ben Peart <benpeart@microsoft.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'sub-process.c')
-rw-r--r-- | sub-process.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/sub-process.c b/sub-process.c index 536b60cced..92f8aea70a 100644 --- a/sub-process.c +++ b/sub-process.c @@ -21,13 +21,15 @@ struct subprocess_entry *subprocess_find_entry(struct hashmap *hashmap, const ch return hashmap_get(hashmap, &key, NULL); } -void subprocess_read_status(int fd, struct strbuf *status) +int subprocess_read_status(int fd, struct strbuf *status) { struct strbuf **pair; char *line; + int len; + for (;;) { - line = packet_read_line(fd, NULL); - if (!line) + len = packet_read_line_gently(fd, NULL, &line); + if ((len < 0) || !line) break; pair = strbuf_split_str(line, '=', 2); if (pair[0] && pair[0]->len && pair[1]) { @@ -39,6 +41,8 @@ void subprocess_read_status(int fd, struct strbuf *status) } strbuf_list_free(pair); } + + return (len < 0) ? len : 0; } void subprocess_stop(struct hashmap *hashmap, struct subprocess_entry *entry) |