|
97128b57
|
2018-04-02T10:09:22
|
|
in get_packfile_size(), get errno from stat() and init output early
|
|
1c7e24f1
|
2018-04-02T10:05:35
|
|
avoid unnecessary string copies and allocations in get_packfile_size()
|
|
4810de4a
|
2018-04-01T23:16:35
|
|
we have implemented all object types, switch to better error code
|
|
16dcbf91
|
2018-04-01T15:59:36
|
|
remove debug code accidentally committed
|
|
72eb3431
|
2018-04-01T15:57:43
|
|
look up deltas in the correct pack file
|
|
040bf4a1
|
2018-04-01T14:43:53
|
|
stop using fmemopen(); that code path didn't work correctly
|
|
0a585a0d
|
2018-03-17T18:13:19
|
|
remove GOT_ERR_NO_MEM, we can just use errno in those cases
|
|
718b3ab0
|
2018-03-17T17:50:48
|
|
rename the library-internal headers again to a common prefix
|
|
4589e373
|
2018-03-17T15:41:39
|
|
remove mmap() stuff; checkout is fast enough for now
|
|
0bd0053c
|
2018-03-17T15:31:18
|
|
handle empty files in got_packfile_extract_object()
|
|
d0f3be7c
|
2018-03-17T15:17:14
|
|
initialize some output variables on failure
|
|
6bb255dc
|
2018-03-17T15:12:44
|
|
don't dup_packidx() during cache lookup; fixes performance :)
|
|
40426839
|
2018-03-17T15:05:06
|
|
remove unused argument from get_delta_chain_max_size()
|
|
c52ac529
|
2018-03-17T15:01:36
|
|
extract objects smaller than DELTA_RESULT_SIZE_CACHED_MAX to memory
|
|
a53d2f13
|
2018-03-17T14:19:13
|
|
cache delta data in struct got_delta directly
|
|
6d89869a
|
2018-03-17T03:35:04
|
|
use cached packfile in open_packed_object()
|
|
999f19f6
|
2018-03-17T02:36:20
|
|
use cached packfile in resolve_ref_delta()
|
|
e1ad6ebc
|
2018-03-17T02:12:34
|
|
remove path_packfile from struct got_delta_cache; add a counter instead
|
|
f7e127f3
|
2018-03-17T02:02:32
|
|
move delta cache into struct got_pack
|
|
7e656b93
|
2018-03-17T01:37:48
|
|
add struct got_pack; some preparation for mmap, which isn't used yet
|
|
b29656e2
|
2018-03-16T23:05:12
|
|
set obj->size of packed deltified objects to object's actual size
|
|
65cf1e80
|
2018-03-16T22:33:22
|
|
revert the pack file handle cache again; needs more thought
|
|
ef2bccd9
|
2018-03-16T22:14:51
|
|
stop opening pack files redundantly to read deltas
|
|
6845d284
|
2018-03-16T21:40:20
|
|
use SEEK_SET instead of SEEK_CUR after opening packfile
|
|
87c99799
|
2018-03-16T21:26:06
|
|
start caching file handles to packfiles
|
|
ea35256b
|
2018-03-16T19:27:48
|
|
avoid a round-trip via tempfile when reading packed commits
|
|
40dc5ff8
|
2018-03-16T19:22:22
|
|
rename a function for clarity
|
|
e0ab43e7
|
2018-03-16T19:20:15
|
|
avoid a round-trip of data through a temp file when reading trees
|
|
8628c62d
|
2018-03-15T01:21:57
|
|
process small deltas in memory; unfortunately it is not faster...
|
|
1cc8e7f9
|
2018-03-15T00:31:05
|
|
remove a useless and leaky allocation
|
|
9db65d41
|
2018-03-14T23:42:16
|
|
In dump_delta_chain(), don't open the packfile if it's not needed.
|
|
ec889268
|
2018-03-14T23:32:19
|
|
fix open file handle leak in dump_delta_chain()
|
|
9feb4ff2
|
2018-03-14T02:37:58
|
|
propagate error from delta cache insertion; fixes mem leak
|
|
bd1223b9
|
2018-03-14T01:21:09
|
|
add a delta cache; saves us from reading + decompressing some deltas
|
|
22484865
|
2018-03-13T18:28:40
|
|
process delta chains in memory if max size is < 32 MB
|
|
25783624
|
2018-03-12T13:59:29
|
|
use stricter CPPFLAGS from mpi
|
|
32cb896c
|
2018-03-11T14:10:56
|
|
rename library-private headers from *_priv.h to *_lib.h
|
|
5677e194
|
2018-03-11T13:20:25
|
|
rename got_zb_priv.h to got_zbuf_priv.h
|
|
63afc6c6
|
2018-03-10T01:09:31
|
|
unwrap short line
|
|
0a71ee67
|
2018-03-09T18:12:10
|
|
return error from search_packidx() if dup_packidx() fails
|
|
79b11c62
|
2018-03-09T17:01:49
|
|
add a pack index cache; speeds tree listing up quite a lot
|
|
39e73dc9
|
2018-03-03T14:18:08
|
|
We don't use a delta combiner, we use delta application.
A "delta combiner" (as used in SVN) combines deltas and applies
the combined delta to the base. We don't do this yet; we apply
deltas one by one.
|
|
1411938b
|
2018-02-12T23:25:38
|
|
rename private header filenames so they are in got_ namespace
|
|
908b0194
|
2018-02-12T21:29:08
|
|
move struct got_zstream_buf to private header zb.h
|
|
bdd2fbb3
|
2018-02-12T00:01:26
|
|
read delta data from the right offset
|
|
0e22967e
|
2018-02-11T22:43:21
|
|
we must store delta's type-and-size length separately to skip it
|
|
a6b158cc
|
2018-02-11T19:15:55
|
|
don't read plain objects to memory during unpack
|
|
044e7393
|
2018-02-11T18:35:45
|
|
don't assume objects IDs are sorted by their values in packidx
|
|
61d262a8
|
2018-02-11T16:37:53
|
|
make got_inflate_read() properly indicate if it needs to be called again
|
|
3606d7fc
|
2018-02-11T16:17:37
|
|
tweak the API which inflates data to a file
|
|
885d3e02
|
2018-01-27T01:05:56
|
|
implement delta combiner and a small test suite for it
|
|
ef715580
|
2018-01-26T15:01:44
|
|
ensure we don't call closedir(NULL) in search_packidx()
|
|
710bb5ca
|
2018-01-23T23:48:41
|
|
rename delta dumping helper function and tweak its parameter list
|
|
6691714a
|
2018-01-23T23:44:49
|
|
prepare application of deltas
|
|
c7fe698a
|
2018-01-23T18:07:21
|
|
add a helper function for opening a pack file
|
|
b432fb3b
|
2018-01-23T17:52:24
|
|
treat tag objects as a plain type in got_packfile_extract_object()
|
|
d33fc9ef
|
2018-01-23T17:50:42
|
|
treat tag objects as a plain type in open_packed_object()
|
|
a48db7e5
|
2018-01-23T17:49:03
|
|
add support for opening ref delta objects
|
|
6b9c9673
|
2018-01-23T17:44:17
|
|
resolve ref deltas as part of a delta chain
|
|
348f621c
|
2018-01-23T15:22:16
|
|
s/decode_/parse_/
|
|
c3703302
|
2018-01-23T15:19:45
|
|
model delta chains in a better way
|
|
a3500804
|
2018-01-23T13:52:21
|
|
add a helper function to reduce size of a switch statement
|
|
96f5e8b3
|
2018-01-23T13:38:17
|
|
add support for delta chains; implement them for offset deltas
|
|
cecc778e
|
2018-01-23T11:27:29
|
|
compute off_delta offset correctly
|
|
4e8cda55
|
2018-01-19T18:14:44
|
|
We only support plain objects as delta base for now.
|
|
eef6493a
|
2018-01-19T18:09:29
|
|
Make struct got_object opaque to users of the library
|
|
b107e67f
|
2018-01-19T18:03:07
|
|
Implement open() support for offset delta objects
|
|
9710aac2
|
2018-01-19T16:29:59
|
|
rename helper function
|
|
6ccb713b
|
2018-01-19T16:28:55
|
|
Add helper function for opening packed plain objects
|
|
efd2a263
|
2018-01-19T16:18:44
|
|
add some stub code for packed ref-delta objects
|
|
bbcf6d65
|
2018-01-17T22:33:38
|
|
plug a memory leak by freeing packidx
|
|
3ee5fc21
|
2018-01-17T22:25:01
|
|
add support for extracting non-deltified packed objects
|
|
6c00b545
|
2018-01-17T21:59:05
|
|
open packed objects correctly; don't worry about their contents yet
|
|
a487c1d0
|
2018-01-14T17:49:25
|
|
refactor dump_packed_object() a bit; no functional change
|
|
2b2ca9f0
|
2018-01-13T12:32:35
|
|
call got_object_id_cmp() just once in got_object_idx()
|
|
c54542a0
|
2018-01-13T12:27:47
|
|
whitespace
|
|
8251fdbc
|
2018-01-12T23:00:06
|
|
introduce got_ferror() and use it
|
|
f334529e
|
2018-01-12T21:17:22
|
|
add a conversion function from errno to got_error and use it
|
|
a1fd68d8
|
2018-01-12T20:59:51
|
|
Extract non-deltified objects from pack files.
|
|
24541888
|
2018-01-10T21:58:17
|
|
get_packfile_size() should be static
|
|
39b01da5
|
2018-01-10T21:57:50
|
|
whitespace
|
|
0ebaf008
|
2018-01-10T21:56:48
|
|
verify pack file index checksum
|
|
b0517dd0
|
2018-01-10T21:18:24
|
|
fix off-by-one in pack file size check
|
|
0a0a3048
|
2018-01-10T21:15:21
|
|
open pack file index
|