summaryrefslogtreecommitdiff
path: root/packfile.c
AgeCommit message (Expand)AuthorFilesLines
2025-11-23streaming: move into object database subsystemPatrick Steinhardt1-1/+1
2025-11-23streaming: move logic to read packed objects streams into backendPatrick Steinhardt1-0/+128
2025-11-23packfile: introduce function to read object info from a storePatrick Steinhardt1-17/+54
2025-11-19odb: adopt logic to close object databasesPatrick Steinhardt1-15/+0
2025-11-03object-file: refactor freshening of objectsPatrick Steinhardt1-0/+16
2025-10-30packfile: track packs via the MRU list exclusivelyPatrick Steinhardt1-20/+7
2025-10-30packfile: always add packfiles to MRU when adding a packPatrick Steinhardt1-0/+1
2025-10-30packfile: move list of packs into the packfile storePatrick Steinhardt1-46/+37
2025-10-30packfile: fix approximation of object countsPatrick Steinhardt1-4/+4
2025-10-30http: refactor subsystem to use `packfile_list`sPatrick Steinhardt1-0/+9
2025-10-30packfile: move the MRU list into the packfile storePatrick Steinhardt1-9/+83
2025-10-30packfile: use a `strmap` to store packs by namePatrick Steinhardt1-20/+4
2025-10-16packfile: rename `packfile_store_get_all_packs()`Patrick Steinhardt1-1/+1
2025-10-16packfile: introduce macro to iterate through packsPatrick Steinhardt1-2/+2
2025-10-16packfile: drop `packfile_store_get_packs()`Patrick Steinhardt1-6/+0
2025-09-24packfile: refactor `get_packed_git_mru()` to work on packfile storePatrick Steinhardt1-3/+3
2025-09-24packfile: refactor `get_all_packs()` to work on packfile storePatrick Steinhardt1-6/+6
2025-09-24packfile: refactor `get_packed_git()` to work on packfile storePatrick Steinhardt1-3/+3
2025-09-24packfile: move `get_multi_pack_index()` into "midx.c"Patrick Steinhardt1-7/+1
2025-09-24packfile: introduce function to load and add packfilesPatrick Steinhardt1-13/+31
2025-09-24packfile: refactor `install_packed_git()` to work on packfile storePatrick Steinhardt1-5/+6
2025-09-24packfile: split up responsibilities of `reprepare_packed_git()`Patrick Steinhardt1-22/+4
2025-09-24packfile: refactor `prepare_packed_git()` to work on packfile storePatrick Steinhardt1-23/+18
2025-09-24packfile: reorder functions to avoid function declarationPatrick Steinhardt1-34/+33
2025-09-24odb: move kept cache into `struct packfile_store`Patrick Steinhardt1-8/+8
2025-09-24odb: move MRU list of packfiles into `struct packfile_store`Patrick Steinhardt1-5/+6
2025-09-24odb: move packfile map into `struct packfile_store`Patrick Steinhardt1-2/+18
2025-09-24odb: move initialization bit into `struct packfile_store`Patrick Steinhardt1-3/+3
2025-09-24odb: move list of packfiles into `struct packfile_store`Patrick Steinhardt1-17/+25
2025-09-24packfile: introduce a new `struct packfile_store`Patrick Steinhardt1-0/+13
2025-08-11midx: drop redundant `struct repository` parameterPatrick Steinhardt1-2/+2
2025-08-11odb: store locality in object database sourcesPatrick Steinhardt1-5/+4
2025-07-15midx: remove now-unused linked list of multi-pack indicesPatrick Steinhardt1-1/+0
2025-07-15packfile: stop using linked MIDX list in `get_all_packs()`Patrick Steinhardt1-5/+6
2025-07-15packfile: stop using linked MIDX list in `find_pack_entry()`Patrick Steinhardt1-6/+5
2025-07-15packfile: refactor `get_multi_pack_index()` to work on sourcesPatrick Steinhardt1-19/+12
2025-07-15midx: stop using linked list when closing MIDXPatrick Steinhardt1-5/+6
2025-07-15packfile: refactor `prepare_packed_git_one()` to work on sourcesPatrick Steinhardt1-14/+9
2025-07-15midx: start tracking per object database sourcePatrick Steinhardt1-1/+3
2025-07-01odb: rename `oid_object_info()`Patrick Steinhardt1-2/+3
2025-07-01odb: get rid of `the_repository` when handling alternatesPatrick Steinhardt1-2/+2
2025-07-01object-store: rename files to "odb.{c,h}"Patrick Steinhardt1-1/+1
2025-07-01object-store: rename `object_directory` to `odb_source`Patrick Steinhardt1-8/+8
2025-07-01object-store: rename `raw_object_store` to `object_database`Patrick Steinhardt1-1/+1
2025-05-30Merge branch 'ps/midx-negative-packfile-cache'Junio C Hamano1-0/+11
2025-05-28packfile: explain ordering of how we look up auxiliary pack filesPatrick Steinhardt1-0/+11
2025-05-16oid_object_info(): drop type_name strbufJeff King1-6/+1
2025-04-15object-store: merge "object-store-ll.h" and "object-store.h"Patrick Steinhardt1-1/+1
2025-03-13builtin/pack-objects.c: freshen objects from existing cruft packsTaylor Blau1-1/+2
2025-01-28Merge branch 'jk/pack-header-parse-alignment-fix'Junio C Hamano1-0/+20