{
char *url, buf[LARGE_PACKET_MAX];
int fd[2], i, len, rv;
- pid_t pid;
+ struct child_process *conn;
const char *exec = "git-upload-archive";
int exec_at = 0;
}
url = xstrdup(remote);
- pid = git_connect(fd, url, exec, 0);
- if (pid < 0)
- return pid;
+ conn = git_connect(fd, url, exec, 0);
for (i = 1; i < argc; i++) {
if (i == exec_at)
rv = recv_sideband("archive", fd[0], 1, 2);
close(fd[0]);
close(fd[1]);
- rv |= finish_connect(pid);
+ rv |= finish_connect(conn);
return !!rv;
}
-static void *convert_to_archive(const char *path,
- const void *src, unsigned long *sizep,
- const struct commit *commit)
-{
- static struct git_attr *attr_specfile;
- struct git_attr_check check[1];
- char *interpolated = NULL;
- unsigned long allocated = 0;
-
- if (!commit)
- return NULL;
-
- if (!attr_specfile)
- attr_specfile = git_attr("specfile", 8);
-
- check[0].attr = attr_specfile;
- if (git_checkattr(path, ARRAY_SIZE(check), check))
- return NULL;
- if (!ATTR_TRUE(check[0].value))
- return NULL;
-
- *sizep = format_commit_message(commit, src, &interpolated, &allocated);
-
- return interpolated;
-}
-
-void *sha1_file_to_archive(const char *path, const unsigned char *sha1,
- unsigned int mode, enum object_type *type,
- unsigned long *size,
- const struct commit *commit)
-{
- void *buffer, *converted;
-
- buffer = read_sha1_file(sha1, type, size);
- if (buffer && S_ISREG(mode)) {
- converted = convert_to_working_tree(path, buffer, size);
- if (converted) {
- free(buffer);
- buffer = converted;
- }
-
- converted = convert_to_archive(path, buffer, size, commit);
- if (converted) {
- free(buffer);
- buffer = converted;
- }
- }
-
- return buffer;
-}
-
static int init_archiver(const char *name, struct archiver *ar)
{
int rv = -1, i;