]> git.ipfire.org Git - thirdparty/git.git/commit - fast-import.c
Support delimited data regions in fast-import.
authorShawn O. Pearce <spearce@spearce.org>
Thu, 18 Jan 2007 18:14:27 +0000 (13:14 -0500)
committerShawn O. Pearce <spearce@spearce.org>
Thu, 18 Jan 2007 18:25:37 +0000 (13:25 -0500)
commit3b4dce02752d37c3cef9308eefb01ed758efe323
tree9ff8ee1643c6527fa03601bd5868da1e955acd18
parente5808826c4abe183b4db9bae8f13445624696f66
Support delimited data regions in fast-import.

During testing its nice to not have to feed the length of a data
chunk to the 'data' command of fast-import.  Instead we would
prefer to be able to establish a data chunk much like shell's <<
operator and use a line delimiter to denote the end of the input.

So now if a data command is started as 'data <<EOF' we will look
for a terminator line containing only the string EOF on that line.
Once found, we stop the data command.  Everything between the two
lines is used as the data value.

The 'data <<' syntax is slower than 'data n', as we don't know how
many bytes to expect and instead must grow our buffer on the fly.
It also has the problem that the frontend must use a string which
will not appear on a line by itself in the input, and the data
region will always end in an LF.  For these reasons real import
frontends are encouraged to continue to use _only_ 'data n'.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
fast-import.c