aboutsummaryrefslogtreecommitdiffstats
path: root/streaming.c
AgeCommit message (Expand)AuthorFilesLines
2023-07-05treewide: remove unnecessary includes for wrapper.hCalvin Wan1-1/+0
2023-06-21object-store-ll.h: split this header out of object-store.hElijah Newren1-1/+1
2023-04-11treewide: remove cache.h inclusion due to object-file.h changesElijah Newren1-1/+1
2023-04-11object-file.h: move declarations for object-file.c functions from cache.hElijah Newren1-0/+1
2023-04-11treewide: be explicit about dependence on convert.hElijah Newren1-0/+1
2023-03-21environment.h: move declarations for environment.c functions from cache.hElijah Newren1-0/+1
2023-03-21wrapper.h: move declarations for wrapper.c functions from cache.hElijah Newren1-0/+1
2023-01-08streaming: inline call to read_object_file_extended()Jeff King1-3/+8
2022-09-01git-compat-util.h: use "UNUSED", not "UNUSED(var)"Ævar Arnfjörð Bjarmason1-3/+3
2022-08-19streaming: mark unused virtual method parametersJeff King1-3/+3
2021-10-01object-file.c: stop dying in parse_loose_header()Ævar Arnfjörð Bjarmason1-1/+2
2021-10-01object-file.c: return ULHR_TOO_LONG on "header too long"Ævar Arnfjörð Bjarmason1-0/+1
2021-10-01object-file.c: use "enum" return type for unpack_loose_header()Ævar Arnfjörð Bjarmason1-10/+13
2021-10-01object-file.c: simplify unpack_loose_short_header()Ævar Arnfjörð Bjarmason1-1/+2
2021-10-01object-file.c: make parse_loose_header_extended() publicÆvar Arnfjörð Bjarmason1-1/+4
2021-05-06streaming.c: move {open,close,read} from vtable to "struct git_istream"Ævar Arnfjörð Bjarmason1-43/+29
2021-05-06streaming.c: stop passing around "object_info *" to open()Ævar Arnfjörð Bjarmason1-22/+20
2021-05-06streaming.c: remove {open,close,read}_method_decl() macrosÆvar Arnfjörð Bjarmason1-25/+22
2021-05-06streaming.c: remove enum/function/vtbl indirectionÆvar Arnfjörð Bjarmason1-25/+11
2021-05-06streaming.c: avoid forward declarationsÆvar Arnfjörð Bjarmason1-88/+83
2020-01-31streaming: allow open_istream() to handle any repoMatheus Tavares1-13/+15
2019-02-06Merge branch 'jk/loose-object-cache-oid'Junio C Hamano1-8/+8
2019-02-05Merge branch 'sb/more-repo-in-api'Junio C Hamano1-1/+1
2019-01-08sha1-file: modernize loose header/stream functionsJeff King1-6/+6
2019-01-08sha1-file: modernize loose object file functionsJeff King1-2/+2
2018-11-14object-store: allow read_object_file_extended to read from any repoStefan Beller1-1/+1
2018-10-31read_istream_pack_non_delta(): document input handlingJeff King1-0/+9
2018-04-26cache.h: add repository argument to oid_object_info_extendedStefan Beller1-1/+1
2018-04-12replace-object: add repository argument to lookup_replace_objectStefan Beller1-1/+1
2018-04-12object-store: move lookup_replace_object to replace-object.hStefan Beller1-0/+1
2018-04-11Merge branch 'sb/object-store'Junio C Hamano1-1/+4
2018-03-26sha1_file: add repository argument to map_sha1_fileStefan Beller1-1/+4
2018-03-14Convert lookup_replace_object to struct object_idbrian m. carlson1-11/+5
2018-03-14sha1_file: convert read_sha1_file to struct object_idbrian m. carlson1-1/+1
2018-03-14streaming: convert istream internals to struct object_idbrian m. carlson1-6/+9
2018-03-14sha1_file: convert sha1_object_info* to object_idbrian m. carlson1-1/+1
2018-03-14Convert remaining callers of sha1_object_info_extended to object_idbrian m. carlson1-1/+4
2018-03-14streaming: convert open_istream to use struct object_idbrian m. carlson1-3/+3
2017-09-25Merge branch 'jk/write-in-full-fix'Junio C Hamano1-1/+1
2017-09-14convert less-trivial versions of "write_in_full() != len"Jeff King1-1/+1
2017-08-23pack: move use_pack()Jonathan Tan1-0/+1
2016-10-10Merge branch 'jk/pack-objects-optim-mru'Junio C Hamano1-1/+1
2016-10-03Merge branch 'jc/verify-loose-object-header'Junio C Hamano1-6/+6
2016-09-26streaming: make sure to notice corrupt objectJunio C Hamano1-6/+6
2016-09-07streaming: make stream_blob_to_fd take struct object_idbrian m. carlson1-2/+2
2016-08-11provide an initializer for "struct object_info"Jeff King1-1/+1
2015-04-14Merge branch 'sb/plug-streaming-leak'Junio C Hamano1-1/+4
2015-03-31streaming.c: fix a memleakJohn Keeping1-1/+4
2014-02-18open_istream(): do not dereference NULL in the error caseJunio C Hamano1-1/+3
2014-01-27Merge branch 'ef/mingw-write'Junio C Hamano1-1/+1
2014-01-17prefer xwrite instead of writeErik Faye-Lund1-1/+1
2013-12-12sha1_object_info_extended(): add an "unsigned flags" parameterChristian Couder1-1/+1
2013-07-24Merge branch 'jk/cat-file-batch-optim'Junio C Hamano1-2/+2
2013-07-23open_istream: remove unneeded check for null pointerStefan Beller1-1/+1
2013-07-18Fix some sparse warningsRamsay Jones1-1/+1
2013-07-12sha1_object_info_extended: make type calculation optionalJeff King1-1/+1
2013-07-07zero-initialize object_info structsJeff King1-1/+1
2013-03-27avoid infinite loop in read_istream_looseJeff King1-1/+1
2013-03-27read_istream_filtered: propagate read error from upstreamJeff King1-1/+1
2013-03-27stream_blob_to_fd: detect errors reading from streamJeff King1-0/+2
2012-05-18pack-objects, streaming: turn "xx >= big_file_threshold" to ".. > .."Nguyễn Thái Ngọc Duy1-1/+1
2012-05-03streaming: void pointer instead of char pointerRené Scharfe1-1/+1
2012-03-07streaming: make streaming-write-entry to be more reusableJunio C Hamano1-0/+55
2011-08-01Merge branch 'jc/streaming-filter'Junio C Hamano1-1/+3
2011-07-22streaming: free git_istream upon closingJeff King1-1/+3
2011-07-19Merge branch 'jc/zlib-wrap'Junio C Hamano1-1/+1
2011-05-26stream filter: add "no more input" to the filtersJunio C Hamano1-3/+23
2011-05-26Add streaming filter APIJunio C Hamano1-1/+99
2011-05-20streaming: read loose objects incrementallyJunio C Hamano1-3/+82
2011-05-20streaming: read non-delta incrementally from a packJunio C Hamano1-3/+102
2011-05-20streaming: a new API to read from the object storeJunio C Hamano1-0/+193