2 * Copyright (c) 2006 Franck Bui-Huu
9 #include "repository.h"
10 #include "run-command.h"
13 static const char upload_archive_usage
[] =
14 "git upload-archive <repository>";
16 static const char deadchild
[] =
17 "git upload-archive: archiver died with error";
21 int cmd_upload_archive_writer(int argc
, const char **argv
, const char *prefix
)
23 struct strvec sent_argv
= STRVEC_INIT
;
24 const char *arg_cmd
= "argument ";
26 if (argc
!= 2 || !strcmp(argv
[1], "-h"))
27 usage(upload_archive_usage
);
29 if (!enter_repo(argv
[1], 0))
30 die("'%s' does not appear to be a git repository", argv
[1]);
34 /* put received options in sent_argv[] */
35 strvec_push(&sent_argv
, "git-upload-archive");
37 char *buf
= packet_read_line(0, NULL
);
39 break; /* got a flush */
40 if (sent_argv
.nr
> MAX_ARGS
)
41 die("Too many options (>%d)", MAX_ARGS
- 1);
43 if (!starts_with(buf
, arg_cmd
))
44 die("'argument' token or flush expected");
45 strvec_push(&sent_argv
, buf
+ strlen(arg_cmd
));
48 /* parse all options sent by the client */
49 return write_archive(sent_argv
.nr
, sent_argv
.v
, prefix
,
50 the_repository
, NULL
, 1);
53 __attribute__((format (printf
, 1, 2)))
54 static void error_clnt(const char *fmt
, ...)
56 struct strbuf buf
= STRBUF_INIT
;
59 va_start(params
, fmt
);
60 strbuf_vaddf(&buf
, fmt
, params
);
62 send_sideband(1, 3, buf
.buf
, buf
.len
, LARGE_PACKET_MAX
);
63 die("sent error to the client: %s", buf
.buf
);
66 static ssize_t
process_input(int child_fd
, int band
)
69 ssize_t sz
= read(child_fd
, buf
, sizeof(buf
));
71 if (errno
!= EAGAIN
&& errno
!= EINTR
)
72 error_clnt("read error: %s\n", strerror(errno
));
75 send_sideband(1, band
, buf
, sz
, LARGE_PACKET_MAX
);
79 int cmd_upload_archive(int argc
, const char **argv
, const char *prefix
)
81 struct child_process writer
= CHILD_PROCESS_INIT
;
83 BUG_ON_NON_EMPTY_PREFIX(prefix
);
85 if (argc
== 2 && !strcmp(argv
[1], "-h"))
86 usage(upload_archive_usage
);
89 * Set up sideband subprocess.
91 * We (parent) monitor and read from child, sending its fd#1 and fd#2
92 * multiplexed out to our fd#1. If the child dies, we tell the other
93 * end over channel #3.
95 writer
.out
= writer
.err
= -1;
97 strvec_push(&writer
.args
, "upload-archive--writer");
98 strvec_pushv(&writer
.args
, argv
+ 1);
99 if (start_command(&writer
)) {
101 packet_write_fmt(1, "NACK unable to spawn subprocess\n");
102 die("upload-archive: %s", strerror(err
));
105 packet_write_fmt(1, "ACK\n");
109 struct pollfd pfd
[2];
111 pfd
[0].fd
= writer
.out
;
112 pfd
[0].events
= POLLIN
;
113 pfd
[1].fd
= writer
.err
;
114 pfd
[1].events
= POLLIN
;
115 if (poll(pfd
, 2, -1) < 0) {
116 if (errno
!= EINTR
) {
117 error_errno("poll failed resuming");
122 if (pfd
[1].revents
& POLLIN
)
123 /* Status stream ready */
124 if (process_input(pfd
[1].fd
, 2))
126 if (pfd
[0].revents
& POLLIN
)
127 /* Data stream ready */
128 if (process_input(pfd
[0].fd
, 1))
131 if (finish_command(&writer
))
132 error_clnt("%s", deadchild
);