• S
    Loop over pack_windows when inflating/accessing data. · 079afb18
    Shawn O. Pearce 提交于
    When multiple mmaps start getting used for all pack file access it
    is not possible to get all data associated with a specific object
    in one contiguous memory region.  This limitation prevents simply
    passing a single address and length to SHA1_Update or to inflate.
    
    Instead we need to loop until we have processed all data of interest.
    
    As we loop over the data we are always interested in reusing the same
    window 'cursor', as the prior window will no longer be of any use
    to us.  This allows the use_pack() call to automatically decrement
    the use count of the prior window before setting up access for us
    to the next window.
    
    Within each loop we need to make use of the available length output
    parameter of use_pack() to tell us how many bytes are available in
    the current memory region, as we cannot tell otherwise.
    Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
    Signed-off-by: NJunio C Hamano <junkio@cox.net>
    079afb18
sha1_file.c 45.1 KB