diff options
author | Jiang Xin <zhiyou.jx@alibaba-inc.com> | 2023-12-17 15:41:37 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2023-12-18 22:24:37 +0100 |
commit | 64220dc5f7450d8eca471fa484965b1dcddc2827 (patch) | |
tree | 2b8c592b39a440f65f6ccc9cd44f00573cd61478 /pkt-line.h | |
parent | test-pkt-line: add option parser for unpack-sideband (diff) | |
download | git-64220dc5f7450d8eca471fa484965b1dcddc2827.tar.xz git-64220dc5f7450d8eca471fa484965b1dcddc2827.zip |
pkt-line: memorize sideband fragment in reader
When we turn on the "use_sideband" field of the packet_reader,
"packet_reader_read()" will call the function "demultiplex_sideband()"
to parse and consume sideband messages. Sideband fragment which does not
end with "\r" or "\n" will be saved in the sixth parameter "scratch"
and it can be reused and be concatenated when parsing another sideband
message.
In "packet_reader_read()" function, the local variable "scratch" can
only be reused by subsequent sideband messages. But if there is a
payload message between two sideband fragments, the first fragment
which is saved in the local variable "scratch" will be lost.
To solve this problem, we can add a new field "scratch" in
packet_reader to memorize the sideband fragment across different calls
of "packet_reader_read()".
Signed-off-by: Jiang Xin <zhiyou.jx@alibaba-inc.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'pkt-line.h')
-rw-r--r-- | pkt-line.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pkt-line.h b/pkt-line.h index 954eec8719..be1010d34e 100644 --- a/pkt-line.h +++ b/pkt-line.h @@ -194,6 +194,9 @@ struct packet_reader { /* hash algorithm in use */ const struct git_hash_algo *hash_algo; + + /* hold temporary sideband message */ + struct strbuf scratch; }; /* |