static int parse_bundle_header(int fd, struct bundle_header *header, const char *report_path) { struct strbuf buf = STRBUF_INIT; int status = 0; /* The bundle header begins with the signature */ if (strbuf_getwholeline_fd(&buf, fd, '\n') || strcmp(buf.buf, bundle_signature)) { if (report_path) error("'%s' does not look like a v2 bundle file", report_path); status = -1; goto abort; } /* The bundle header ends with an empty line */ while (!strbuf_getwholeline_fd(&buf, fd, '\n') && buf.len && buf.buf[0] != '\n') { unsigned char sha1[20]; int is_prereq = 0; if (*buf.buf == '-') { is_prereq = 1; strbuf_remove(&buf, 0, 1); } strbuf_rtrim(&buf); /* * Tip lines have object name, SP, and refname. * Prerequisites have object name that is optionally * followed by SP and subject line. */ if (get_sha1_hex(buf.buf, sha1) || (40 <= buf.len && !isspace(buf.buf[40])) || (!is_prereq && buf.len <= 40)) { if (report_path) error("unrecognized header: %s%s (%d)", (is_prereq ? "-" : ""), buf.buf, (int)buf.len); status = -1; break; } else { if (is_prereq) add_to_ref_list(sha1, "", &header->prerequisites); else add_to_ref_list(sha1, buf.buf + 41, &header->references); } } abort: if (status) { close(fd); fd = -1; } strbuf_release(&buf); return fd; }
static void append_merge_parents(struct commit_list **tail) { int merge_head; struct strbuf line = STRBUF_INIT; merge_head = open(git_path_merge_head(), O_RDONLY); if (merge_head < 0) { if (errno == ENOENT) return; die("cannot open '%s' for reading", git_path_merge_head()); } while (!strbuf_getwholeline_fd(&line, merge_head, '\n')) { struct object_id oid; if (line.len < GIT_SHA1_HEXSZ || get_oid_hex(line.buf, &oid)) die("unknown line in '%s': %s", git_path_merge_head(), line.buf); tail = append_parent(tail, &oid); } close(merge_head); strbuf_release(&line); }