]> git.ipfire.org Git - thirdparty/git.git/commit - fast-import.c
Improve reuse of sha1_file library within fast-import.
authorShawn O. Pearce <spearce@spearce.org>
Sun, 14 Jan 2007 11:20:23 +0000 (06:20 -0500)
committerShawn O. Pearce <spearce@spearce.org>
Mon, 15 Jan 2007 03:33:51 +0000 (22:33 -0500)
commitd489bc14919cdd37d3978065591199d21d6719f8
tree29d87171d148dc8efbd647e3e8294a4b1e803375
parent1fcdd62adf81a172f45c7c6a58177212d500b9d9
Improve reuse of sha1_file library within fast-import.

Now that the sha1_file.c library routines use the sliding mmap
routines to perform efficient access to portions of a packfile
I can remove that code from fast-import.c and just invoke it.
One benefit is we now have reloading support for any packfile which
uses OBJ_OFS_DELTA.  Another is we have significantly less code
to maintain.

This code reuse change *requires* that fast-import generate only
an OBJ_OFS_DELTA format packfile, as there is absolutely no index
available to perform OBJ_REF_DELTA lookup in while unpacking
an object.  This is probably reasonable to require as the delta
offsets result in smaller packfiles and are faster to unpack,
as no index searching is required.  Its also only a temporary
requirement as users could always repack without offsets before
making the import available to older versions of Git.

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