6 * Receive multiplexed output stream over git native protocol.
7 * in_stream is the input stream from the remote, which carries data
8 * in pkt_line format with band designator. Demultiplex it into out
9 * and err and return error appropriately. Band #1 carries the
10 * primary payload. Things coming over band #2 is not necessarily
11 * error; they are usually informative message on the standard error
12 * stream, aka "verbose"). A message over band #3 is a signal that
13 * the remote died unexpectedly. A flush() concludes the stream.
16 #define PREFIX "remote: "
18 #define ANSI_SUFFIX "\033[K"
19 #define DUMB_SUFFIX " "
21 int recv_sideband(const char *me
, int in_stream
, int out
)
24 char buf
[LARGE_PACKET_MAX
+ 1];
25 struct strbuf outbuf
= STRBUF_INIT
;
28 if (isatty(2) && !is_terminal_dumb())
36 len
= packet_read(in_stream
, NULL
, NULL
, buf
, LARGE_PACKET_MAX
, 0);
41 "%s%s: protocol error: no band designator",
42 outbuf
.len
? "\n" : "", me
);
43 retval
= SIDEBAND_PROTOCOL_ERROR
;
51 strbuf_addf(&outbuf
, "%s%s%s", outbuf
.len
? "\n" : "",
53 retval
= SIDEBAND_REMOTE_ERROR
;
59 * Append a suffix to each nonempty line to clear the
60 * end of the screen line.
62 * The output is accumulated in a buffer and
63 * each line is printed to stderr using
64 * write(2) to ensure inter-process atomicity.
66 while ((brk
= strpbrk(b
, "\n\r"))) {
67 int linelen
= brk
- b
;
70 strbuf_addstr(&outbuf
, PREFIX
);
72 strbuf_addf(&outbuf
, "%.*s%s%c",
73 linelen
, b
, suffix
, *brk
);
75 strbuf_addch(&outbuf
, *brk
);
77 xwrite(2, outbuf
.buf
, outbuf
.len
);
78 strbuf_reset(&outbuf
);
84 strbuf_addf(&outbuf
, "%s%s",
85 outbuf
.len
? "" : PREFIX
, b
);
88 write_or_die(out
, buf
+ 1, len
);
91 strbuf_addf(&outbuf
, "%s%s: protocol error: bad band #%d",
92 outbuf
.len
? "\n" : "", me
, band
);
93 retval
= SIDEBAND_PROTOCOL_ERROR
;
99 strbuf_addch(&outbuf
, '\n');
100 xwrite(2, outbuf
.buf
, outbuf
.len
);
102 strbuf_release(&outbuf
);
107 * fd is connected to the remote side; send the sideband data
108 * over multiplexed packet stream.
110 void send_sideband(int fd
, int band
, const char *data
, ssize_t sz
, int packet_max
)
112 const char *p
= data
;
119 if (packet_max
- 5 < n
)
122 xsnprintf(hdr
, sizeof(hdr
), "%04x", n
+ 5);
124 write_or_die(fd
, hdr
, 5);
126 xsnprintf(hdr
, sizeof(hdr
), "%04x", n
+ 4);
127 write_or_die(fd
, hdr
, 4);
129 write_or_die(fd
, p
, n
);