]> git.ipfire.org Git - thirdparty/git.git/commit - entry.c
streaming_write_entry(): use streaming API in write_entry()
authorJunio C Hamano <gitster@pobox.com>
Thu, 12 May 2011 21:31:08 +0000 (14:31 -0700)
committerJunio C Hamano <gitster@pobox.com>
Sat, 21 May 2011 01:46:58 +0000 (18:46 -0700)
commitdd8e912190540ef6578386aa1343fbbe196cb8c1
treef66b651a6c060a07a280d0d6aa73cd21c134b1e8
parent46bf043807cc5d8986f41139a8c28491f613c5e0
streaming_write_entry(): use streaming API in write_entry()

When the output to a path does not have to be converted, we can read from
the object database from the streaming API and write to the file in the
working tree, without having to hold everything in the memory.

The ident, auto- and safe- crlf conversions inherently require you to read
the whole thing before deciding what to do, so while it is technically
possible to support them by using a buffer of an unbound size or rewinding
and reading the stream twice, it is less practical than the traditional
"read the whole thing in core and convert" approach.

Adding streaming filters for the other conversions on top of this should
be doable by tweaking the can_bypass_conversion() function (it should be
renamed to can_filter_stream() when it happens). Then the streaming API
can be extended to wrap the git_istream streaming_write_entry() opens on
the underlying object in another git_istream that reads from it, filters
what is read, and let the streaming_write_entry() read the filtered
result. But that is outside the scope of this series.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
cache.h
convert.c
entry.c