rugged 1.1.0 → 1.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE +1 -0
- data/README.md +1 -1
- data/ext/rugged/rugged.c +7 -4
- data/ext/rugged/rugged_object.c +1 -1
- data/ext/rugged/rugged_repo.c +3 -3
- data/lib/rugged/repository.rb +2 -2
- data/lib/rugged/version.rb +1 -1
- data/vendor/libgit2/CMakeLists.txt +11 -6
- data/vendor/libgit2/COPYING +109 -1
- data/vendor/libgit2/cmake/Findfutimens.cmake +14 -0
- data/vendor/libgit2/cmake/SelectHTTPSBackend.cmake +4 -0
- data/vendor/libgit2/cmake/SelectHashes.cmake +1 -0
- data/vendor/libgit2/deps/chromium-zlib/CMakeLists.txt +101 -0
- data/vendor/libgit2/deps/ntlmclient/CMakeLists.txt +18 -5
- data/vendor/libgit2/deps/ntlmclient/compat.h +0 -34
- data/vendor/libgit2/deps/ntlmclient/crypt.h +14 -9
- data/vendor/libgit2/deps/ntlmclient/crypt_commoncrypto.c +20 -20
- data/vendor/libgit2/deps/ntlmclient/crypt_commoncrypto.h +3 -3
- data/vendor/libgit2/deps/ntlmclient/crypt_mbedtls.c +37 -36
- data/vendor/libgit2/deps/ntlmclient/crypt_mbedtls.h +4 -3
- data/vendor/libgit2/deps/ntlmclient/crypt_openssl.c +178 -51
- data/vendor/libgit2/deps/ntlmclient/crypt_openssl.h +74 -5
- data/vendor/libgit2/deps/ntlmclient/ntlm.c +156 -124
- data/vendor/libgit2/deps/ntlmclient/ntlm.h +13 -9
- data/vendor/libgit2/deps/ntlmclient/ntlmclient.h +16 -3
- data/vendor/libgit2/deps/ntlmclient/unicode.h +10 -4
- data/vendor/libgit2/deps/ntlmclient/unicode_builtin.c +16 -27
- data/vendor/libgit2/deps/ntlmclient/unicode_builtin.h +20 -0
- data/vendor/libgit2/deps/ntlmclient/unicode_iconv.c +28 -52
- data/vendor/libgit2/deps/ntlmclient/unicode_iconv.h +22 -0
- data/vendor/libgit2/deps/ntlmclient/util.c +15 -1
- data/vendor/libgit2/deps/ntlmclient/util.h +2 -1
- data/vendor/libgit2/include/git2/apply.h +2 -0
- data/vendor/libgit2/include/git2/attr.h +89 -0
- data/vendor/libgit2/include/git2/blame.h +93 -42
- data/vendor/libgit2/include/git2/blob.h +31 -3
- data/vendor/libgit2/include/git2/branch.h +25 -0
- data/vendor/libgit2/include/git2/cert.h +42 -5
- data/vendor/libgit2/include/git2/checkout.h +28 -12
- data/vendor/libgit2/include/git2/commit.h +35 -19
- data/vendor/libgit2/include/git2/common.h +19 -4
- data/vendor/libgit2/include/git2/config.h +1 -1
- data/vendor/libgit2/include/git2/deprecated.h +206 -6
- data/vendor/libgit2/include/git2/diff.h +35 -20
- data/vendor/libgit2/include/git2/errors.h +6 -6
- data/vendor/libgit2/include/git2/filter.h +57 -17
- data/vendor/libgit2/include/git2/graph.h +20 -2
- data/vendor/libgit2/include/git2/index.h +3 -3
- data/vendor/libgit2/include/git2/indexer.h +2 -1
- data/vendor/libgit2/include/git2/odb.h +44 -20
- data/vendor/libgit2/include/git2/patch.h +8 -0
- data/vendor/libgit2/include/git2/rebase.h +25 -1
- data/vendor/libgit2/include/git2/refs.h +9 -5
- data/vendor/libgit2/include/git2/remote.h +59 -6
- data/vendor/libgit2/include/git2/repository.h +95 -52
- data/vendor/libgit2/include/git2/revparse.h +5 -5
- data/vendor/libgit2/include/git2/status.h +115 -59
- data/vendor/libgit2/include/git2/submodule.h +9 -0
- data/vendor/libgit2/include/git2/sys/commit_graph.h +174 -0
- data/vendor/libgit2/include/git2/sys/filter.h +49 -28
- data/vendor/libgit2/include/git2/sys/midx.h +74 -0
- data/vendor/libgit2/include/git2/sys/odb_backend.h +7 -0
- data/vendor/libgit2/include/git2/sys/transport.h +1 -0
- data/vendor/libgit2/include/git2/tag.h +12 -0
- data/vendor/libgit2/include/git2/transport.h +1 -1
- data/vendor/libgit2/include/git2/tree.h +2 -14
- data/vendor/libgit2/include/git2/types.h +9 -0
- data/vendor/libgit2/include/git2/version.h +3 -3
- data/vendor/libgit2/include/git2/worktree.h +1 -0
- data/vendor/libgit2/src/CMakeLists.txt +25 -4
- data/vendor/libgit2/src/alloc.c +21 -8
- data/vendor/libgit2/src/allocators/failalloc.c +92 -0
- data/vendor/libgit2/src/allocators/failalloc.h +23 -0
- data/vendor/libgit2/src/allocators/stdalloc.c +41 -10
- data/vendor/libgit2/src/allocators/win32_leakcheck.c +118 -0
- data/vendor/libgit2/src/allocators/{win32_crtdbg.h → win32_leakcheck.h} +3 -3
- data/vendor/libgit2/src/annotated_commit.c +21 -9
- data/vendor/libgit2/src/apply.c +16 -7
- data/vendor/libgit2/src/array.h +11 -11
- data/vendor/libgit2/src/attr.c +181 -74
- data/vendor/libgit2/src/attr_file.c +84 -39
- data/vendor/libgit2/src/attr_file.h +32 -11
- data/vendor/libgit2/src/attrcache.c +42 -37
- data/vendor/libgit2/src/attrcache.h +4 -5
- data/vendor/libgit2/src/blame.c +26 -15
- data/vendor/libgit2/src/blob.c +44 -24
- data/vendor/libgit2/src/branch.c +69 -17
- data/vendor/libgit2/src/buffer.c +334 -25
- data/vendor/libgit2/src/buffer.h +153 -2
- data/vendor/libgit2/src/cache.c +2 -2
- data/vendor/libgit2/src/cache.h +7 -7
- data/vendor/libgit2/src/cc-compat.h +10 -2
- data/vendor/libgit2/src/checkout.c +48 -26
- data/vendor/libgit2/src/cherrypick.c +6 -2
- data/vendor/libgit2/src/clone.c +26 -11
- data/vendor/libgit2/src/commit.c +41 -28
- data/vendor/libgit2/src/commit_graph.c +1209 -0
- data/vendor/libgit2/src/commit_graph.h +162 -0
- data/vendor/libgit2/src/commit_list.c +46 -0
- data/vendor/libgit2/src/commit_list.h +2 -0
- data/vendor/libgit2/src/common.h +25 -2
- data/vendor/libgit2/src/config.c +37 -15
- data/vendor/libgit2/src/config_cache.c +9 -4
- data/vendor/libgit2/src/config_file.c +16 -8
- data/vendor/libgit2/src/config_parse.c +4 -6
- data/vendor/libgit2/src/crlf.c +16 -6
- data/vendor/libgit2/src/date.c +4 -3
- data/vendor/libgit2/src/delta.c +1 -1
- data/vendor/libgit2/src/describe.c +6 -3
- data/vendor/libgit2/src/diff.c +11 -8
- data/vendor/libgit2/src/diff_driver.c +21 -17
- data/vendor/libgit2/src/diff_file.c +2 -6
- data/vendor/libgit2/src/diff_generate.c +46 -17
- data/vendor/libgit2/src/diff_print.c +19 -6
- data/vendor/libgit2/src/diff_stats.c +7 -5
- data/vendor/libgit2/src/diff_tform.c +11 -10
- data/vendor/libgit2/src/diff_xdiff.c +4 -2
- data/vendor/libgit2/src/diff_xdiff.h +1 -1
- data/vendor/libgit2/src/errors.c +24 -19
- data/vendor/libgit2/src/features.h.in +5 -1
- data/vendor/libgit2/src/fetch.c +5 -2
- data/vendor/libgit2/src/fetchhead.c +8 -4
- data/vendor/libgit2/src/filebuf.c +9 -7
- data/vendor/libgit2/src/filter.c +206 -110
- data/vendor/libgit2/src/filter.h +24 -5
- data/vendor/libgit2/src/futils.c +5 -5
- data/vendor/libgit2/src/futils.h +1 -1
- data/vendor/libgit2/src/graph.c +64 -9
- data/vendor/libgit2/src/hash/sha1/collisiondetect.c +3 -3
- data/vendor/libgit2/src/hash/sha1/common_crypto.c +3 -3
- data/vendor/libgit2/src/hash/sha1/generic.h +1 -1
- data/vendor/libgit2/src/hash/sha1/mbedtls.c +12 -12
- data/vendor/libgit2/src/hash/sha1/openssl.c +3 -3
- data/vendor/libgit2/src/hash/sha1/sha1dc/sha1.c +0 -2
- data/vendor/libgit2/src/hash/sha1/win32.c +15 -11
- data/vendor/libgit2/src/hash.c +16 -13
- data/vendor/libgit2/src/hash.h +1 -1
- data/vendor/libgit2/src/hashsig.c +23 -10
- data/vendor/libgit2/src/ident.c +13 -3
- data/vendor/libgit2/src/ignore.c +35 -19
- data/vendor/libgit2/src/index.c +112 -75
- data/vendor/libgit2/src/index.h +1 -1
- data/vendor/libgit2/src/indexer.c +50 -32
- data/vendor/libgit2/src/integer.h +79 -2
- data/vendor/libgit2/src/iterator.c +36 -24
- data/vendor/libgit2/src/iterator.h +1 -1
- data/vendor/libgit2/src/khash.h +2 -11
- data/vendor/libgit2/src/{settings.c → libgit2.c} +117 -50
- data/vendor/libgit2/src/libgit2.h +15 -0
- data/vendor/libgit2/src/mailmap.c +23 -10
- data/vendor/libgit2/src/map.h +3 -3
- data/vendor/libgit2/src/merge.c +75 -32
- data/vendor/libgit2/src/merge.h +2 -1
- data/vendor/libgit2/src/merge_driver.c +19 -13
- data/vendor/libgit2/src/merge_file.c +11 -3
- data/vendor/libgit2/src/message.c +3 -1
- data/vendor/libgit2/src/midx.c +471 -10
- data/vendor/libgit2/src/midx.h +28 -1
- data/vendor/libgit2/src/mwindow.c +106 -60
- data/vendor/libgit2/src/mwindow.h +3 -3
- data/vendor/libgit2/src/net.c +127 -3
- data/vendor/libgit2/src/net.h +16 -2
- data/vendor/libgit2/src/netops.c +6 -4
- data/vendor/libgit2/src/netops.h +2 -2
- data/vendor/libgit2/src/notes.c +10 -10
- data/vendor/libgit2/src/object.c +22 -14
- data/vendor/libgit2/src/odb.c +289 -51
- data/vendor/libgit2/src/odb.h +16 -2
- data/vendor/libgit2/src/odb_loose.c +28 -18
- data/vendor/libgit2/src/odb_mempack.c +1 -1
- data/vendor/libgit2/src/odb_pack.c +391 -114
- data/vendor/libgit2/src/oid.c +5 -4
- data/vendor/libgit2/src/pack-objects.c +54 -48
- data/vendor/libgit2/src/pack.c +339 -125
- data/vendor/libgit2/src/pack.h +25 -7
- data/vendor/libgit2/src/patch.c +14 -7
- data/vendor/libgit2/src/patch_generate.c +2 -2
- data/vendor/libgit2/src/patch_parse.c +2 -1
- data/vendor/libgit2/src/path.c +98 -53
- data/vendor/libgit2/src/path.h +79 -6
- data/vendor/libgit2/src/pathspec.c +8 -8
- data/vendor/libgit2/src/pool.c +13 -7
- data/vendor/libgit2/src/posix.c +43 -12
- data/vendor/libgit2/src/posix.h +9 -0
- data/vendor/libgit2/src/reader.c +10 -6
- data/vendor/libgit2/src/rebase.c +93 -49
- data/vendor/libgit2/src/refdb.c +30 -13
- data/vendor/libgit2/src/refdb_fs.c +125 -71
- data/vendor/libgit2/src/reflog.c +19 -14
- data/vendor/libgit2/src/refs.c +91 -43
- data/vendor/libgit2/src/refs.h +1 -1
- data/vendor/libgit2/src/refspec.c +80 -44
- data/vendor/libgit2/src/remote.c +281 -105
- data/vendor/libgit2/src/remote.h +2 -1
- data/vendor/libgit2/src/repository.c +191 -118
- data/vendor/libgit2/src/repository.h +13 -2
- data/vendor/libgit2/src/reset.c +7 -6
- data/vendor/libgit2/src/revert.c +6 -2
- data/vendor/libgit2/src/revparse.c +14 -9
- data/vendor/libgit2/src/revwalk.c +32 -15
- data/vendor/libgit2/src/runtime.c +162 -0
- data/vendor/libgit2/src/runtime.h +62 -0
- data/vendor/libgit2/src/settings.h +11 -0
- data/vendor/libgit2/src/signature.c +6 -5
- data/vendor/libgit2/src/sortedcache.h +10 -8
- data/vendor/libgit2/src/stash.c +3 -1
- data/vendor/libgit2/src/status.c +7 -4
- data/vendor/libgit2/src/strarray.c +2 -1
- data/vendor/libgit2/src/streams/mbedtls.c +14 -17
- data/vendor/libgit2/src/streams/mbedtls.h +1 -1
- data/vendor/libgit2/src/streams/openssl.c +101 -201
- data/vendor/libgit2/src/streams/openssl.h +9 -1
- data/vendor/libgit2/src/streams/openssl_dynamic.c +309 -0
- data/vendor/libgit2/src/streams/openssl_dynamic.h +348 -0
- data/vendor/libgit2/src/streams/openssl_legacy.c +203 -0
- data/vendor/libgit2/src/streams/openssl_legacy.h +63 -0
- data/vendor/libgit2/src/streams/registry.c +5 -6
- data/vendor/libgit2/src/streams/socket.c +6 -2
- data/vendor/libgit2/src/streams/stransport.c +6 -3
- data/vendor/libgit2/src/streams/tls.c +5 -3
- data/vendor/libgit2/src/submodule.c +128 -62
- data/vendor/libgit2/src/submodule.h +9 -9
- data/vendor/libgit2/src/sysdir.c +4 -6
- data/vendor/libgit2/src/tag.c +47 -11
- data/vendor/libgit2/src/thread.c +140 -0
- data/vendor/libgit2/src/thread.h +479 -0
- data/vendor/libgit2/src/threadstate.c +83 -0
- data/vendor/libgit2/src/threadstate.h +24 -0
- data/vendor/libgit2/src/trace.c +2 -2
- data/vendor/libgit2/src/trace.h +17 -13
- data/vendor/libgit2/src/transaction.c +19 -8
- data/vendor/libgit2/src/transport.c +3 -3
- data/vendor/libgit2/src/transports/auth.c +1 -1
- data/vendor/libgit2/src/transports/auth_negotiate.c +11 -4
- data/vendor/libgit2/src/transports/auth_ntlm.c +10 -6
- data/vendor/libgit2/src/transports/credential.c +15 -7
- data/vendor/libgit2/src/transports/git.c +1 -3
- data/vendor/libgit2/src/transports/http.c +19 -17
- data/vendor/libgit2/src/transports/http.h +1 -0
- data/vendor/libgit2/src/transports/httpclient.c +62 -30
- data/vendor/libgit2/src/transports/httpclient.h +1 -1
- data/vendor/libgit2/src/transports/local.c +3 -3
- data/vendor/libgit2/src/transports/smart.c +12 -7
- data/vendor/libgit2/src/transports/smart.h +1 -1
- data/vendor/libgit2/src/transports/smart_protocol.c +11 -5
- data/vendor/libgit2/src/transports/ssh.c +51 -17
- data/vendor/libgit2/src/transports/winhttp.c +138 -81
- data/vendor/libgit2/src/tree.c +100 -77
- data/vendor/libgit2/src/tree.h +1 -0
- data/vendor/libgit2/src/tsort.c +0 -2
- data/vendor/libgit2/src/unix/map.c +3 -1
- data/vendor/libgit2/src/unix/posix.h +3 -0
- data/vendor/libgit2/src/unix/pthread.h +2 -1
- data/vendor/libgit2/src/utf8.c +150 -0
- data/vendor/libgit2/src/utf8.h +52 -0
- data/vendor/libgit2/src/util.c +53 -129
- data/vendor/libgit2/src/util.h +33 -39
- data/vendor/libgit2/src/vector.c +23 -19
- data/vendor/libgit2/src/vector.h +4 -2
- data/vendor/libgit2/src/win32/findfile.c +4 -2
- data/vendor/libgit2/src/win32/map.c +1 -1
- data/vendor/libgit2/src/win32/msvc-compat.h +9 -1
- data/vendor/libgit2/src/win32/path_w32.c +22 -24
- data/vendor/libgit2/src/win32/path_w32.h +0 -1
- data/vendor/libgit2/src/win32/posix_w32.c +77 -1
- data/vendor/libgit2/src/win32/precompiled.h +0 -1
- data/vendor/libgit2/src/win32/reparse.h +4 -4
- data/vendor/libgit2/src/win32/thread.c +24 -15
- data/vendor/libgit2/src/win32/thread.h +1 -1
- data/vendor/libgit2/src/win32/w32_buffer.c +3 -3
- data/vendor/libgit2/src/win32/w32_common.h +18 -9
- data/vendor/libgit2/src/win32/{w32_crtdbg_stacktrace.c → w32_leakcheck.c} +269 -33
- data/vendor/libgit2/src/win32/w32_leakcheck.h +222 -0
- data/vendor/libgit2/src/win32/w32_util.h +6 -6
- data/vendor/libgit2/src/worktree.c +32 -14
- data/vendor/libgit2/src/zstream.c +1 -1
- metadata +32 -16
- data/vendor/libgit2/src/allocators/win32_crtdbg.c +0 -118
- data/vendor/libgit2/src/buf_text.c +0 -316
- data/vendor/libgit2/src/buf_text.h +0 -122
- data/vendor/libgit2/src/global.c +0 -363
- data/vendor/libgit2/src/global.h +0 -41
- data/vendor/libgit2/src/thread-utils.c +0 -58
- data/vendor/libgit2/src/thread-utils.h +0 -364
- data/vendor/libgit2/src/win32/w32_crtdbg_stacktrace.h +0 -127
- data/vendor/libgit2/src/win32/w32_stack.c +0 -188
- data/vendor/libgit2/src/win32/w32_stack.h +0 -140
data/vendor/libgit2/src/oid.c
CHANGED
@@ -9,7 +9,7 @@
|
|
9
9
|
|
10
10
|
#include "git2/oid.h"
|
11
11
|
#include "repository.h"
|
12
|
-
#include "
|
12
|
+
#include "threadstate.h"
|
13
13
|
#include <string.h>
|
14
14
|
#include <limits.h>
|
15
15
|
|
@@ -26,7 +26,8 @@ int git_oid_fromstrn(git_oid *out, const char *str, size_t length)
|
|
26
26
|
size_t p;
|
27
27
|
int v;
|
28
28
|
|
29
|
-
|
29
|
+
GIT_ASSERT_ARG(out);
|
30
|
+
GIT_ASSERT_ARG(str);
|
30
31
|
|
31
32
|
if (!length)
|
32
33
|
return oid_error_invalid("too short");
|
@@ -107,7 +108,7 @@ int git_oid_pathfmt(char *str, const git_oid *oid)
|
|
107
108
|
|
108
109
|
char *git_oid_tostr_s(const git_oid *oid)
|
109
110
|
{
|
110
|
-
char *str =
|
111
|
+
char *str = GIT_THREADSTATE->oid_fmt;
|
111
112
|
git_oid_nfmt(str, GIT_OID_HEXSZ + 1, oid);
|
112
113
|
return str;
|
113
114
|
}
|
@@ -316,7 +317,7 @@ git_oid_shorten *git_oid_shorten_new(size_t min_length)
|
|
316
317
|
{
|
317
318
|
git_oid_shorten *os;
|
318
319
|
|
319
|
-
|
320
|
+
GIT_ASSERT_ARG_WITH_RETVAL((size_t)((int)min_length) == min_length, NULL);
|
320
321
|
|
321
322
|
os = git__calloc(1, sizeof(git_oid_shorten));
|
322
323
|
if (os == NULL)
|
@@ -12,7 +12,7 @@
|
|
12
12
|
#include "iterator.h"
|
13
13
|
#include "netops.h"
|
14
14
|
#include "pack.h"
|
15
|
-
#include "thread
|
15
|
+
#include "thread.h"
|
16
16
|
#include "tree.h"
|
17
17
|
#include "util.h"
|
18
18
|
#include "revwalk.h"
|
@@ -48,18 +48,10 @@ struct walk_object {
|
|
48
48
|
};
|
49
49
|
|
50
50
|
#ifdef GIT_THREADS
|
51
|
-
|
52
|
-
#define GIT_PACKBUILDER__MUTEX_OP(pb, mtx, op) do { \
|
53
|
-
int result = git_mutex_##op(&(pb)->mtx); \
|
54
|
-
assert(!result); \
|
55
|
-
GIT_UNUSED(result); \
|
56
|
-
} while (0)
|
57
|
-
|
51
|
+
# define GIT_PACKBUILDER__MUTEX_OP(pb, mtx, op) git_mutex_##op(&(pb)->mtx)
|
58
52
|
#else
|
59
|
-
|
60
|
-
#
|
61
|
-
|
62
|
-
#endif /* GIT_THREADS */
|
53
|
+
# define GIT_PACKBUILDER__MUTEX_OP(pb, mtx, op) git__noop()
|
54
|
+
#endif
|
63
55
|
|
64
56
|
#define git_packbuilder__cache_lock(pb) GIT_PACKBUILDER__MUTEX_OP(pb, cache_mutex, lock)
|
65
57
|
#define git_packbuilder__cache_unlock(pb) GIT_PACKBUILDER__MUTEX_OP(pb, cache_mutex, unlock)
|
@@ -177,13 +169,13 @@ on_error:
|
|
177
169
|
|
178
170
|
unsigned int git_packbuilder_set_threads(git_packbuilder *pb, unsigned int n)
|
179
171
|
{
|
180
|
-
|
172
|
+
GIT_ASSERT_ARG(pb);
|
181
173
|
|
182
174
|
#ifdef GIT_THREADS
|
183
175
|
pb->nr_threads = n;
|
184
176
|
#else
|
185
177
|
GIT_UNUSED(n);
|
186
|
-
|
178
|
+
GIT_ASSERT(pb->nr_threads == 1);
|
187
179
|
#endif
|
188
180
|
|
189
181
|
return pb->nr_threads;
|
@@ -211,7 +203,8 @@ int git_packbuilder_insert(git_packbuilder *pb, const git_oid *oid,
|
|
211
203
|
size_t newsize;
|
212
204
|
int ret;
|
213
205
|
|
214
|
-
|
206
|
+
GIT_ASSERT_ARG(pb);
|
207
|
+
GIT_ASSERT_ARG(oid);
|
215
208
|
|
216
209
|
/* If the object already exists in the hash table, then we don't
|
217
210
|
* have any work to do */
|
@@ -258,7 +251,7 @@ int git_packbuilder_insert(git_packbuilder *pb, const git_oid *oid,
|
|
258
251
|
double current_time = git__timer();
|
259
252
|
double elapsed = current_time - pb->last_progress_report_time;
|
260
253
|
|
261
|
-
if (elapsed >= MIN_PROGRESS_UPDATE_INTERVAL) {
|
254
|
+
if (elapsed < 0 || elapsed >= MIN_PROGRESS_UPDATE_INTERVAL) {
|
262
255
|
pb->last_progress_report_time = current_time;
|
263
256
|
|
264
257
|
ret = pb->progress_cb(
|
@@ -347,10 +340,9 @@ static int write_object(
|
|
347
340
|
}
|
348
341
|
|
349
342
|
/* Write header */
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
(error = git_hash_update(&pb->ctx, hdr, hdr_len)) < 0)
|
343
|
+
if ((error = git_packfile__object_header(&hdr_len, hdr, data_len, type)) < 0 ||
|
344
|
+
(error = write_cb(hdr, hdr_len, cb_data)) < 0 ||
|
345
|
+
(error = git_hash_update(&pb->ctx, hdr, hdr_len)) < 0)
|
354
346
|
goto done;
|
355
347
|
|
356
348
|
if (type == GIT_OBJECT_REF_DELTA) {
|
@@ -525,13 +517,18 @@ static int cb_tag_foreach(const char *name, git_oid *oid, void *data)
|
|
525
517
|
return 0;
|
526
518
|
}
|
527
519
|
|
528
|
-
static
|
520
|
+
static int compute_write_order(git_pobject ***out, git_packbuilder *pb)
|
529
521
|
{
|
530
522
|
size_t i, wo_end, last_untagged;
|
531
523
|
git_pobject **wo;
|
532
524
|
|
525
|
+
*out = NULL;
|
526
|
+
|
527
|
+
if (!pb->nr_objects)
|
528
|
+
return 0;
|
529
|
+
|
533
530
|
if ((wo = git__mallocarray(pb->nr_objects, sizeof(*wo))) == NULL)
|
534
|
-
return
|
531
|
+
return -1;
|
535
532
|
|
536
533
|
for (i = 0; i < pb->nr_objects; i++) {
|
537
534
|
git_pobject *po = pb->object_list + i;
|
@@ -560,7 +557,7 @@ static git_pobject **compute_write_order(git_packbuilder *pb)
|
|
560
557
|
*/
|
561
558
|
if (git_tag_foreach(pb->repo, &cb_tag_foreach, pb) < 0) {
|
562
559
|
git__free(wo);
|
563
|
-
return
|
560
|
+
return -1;
|
564
561
|
}
|
565
562
|
|
566
563
|
/*
|
@@ -617,10 +614,11 @@ static git_pobject **compute_write_order(git_packbuilder *pb)
|
|
617
614
|
if (wo_end != pb->nr_objects) {
|
618
615
|
git__free(wo);
|
619
616
|
git_error_set(GIT_ERROR_INVALID, "invalid write order");
|
620
|
-
return
|
617
|
+
return -1;
|
621
618
|
}
|
622
619
|
|
623
|
-
|
620
|
+
*out = wo;
|
621
|
+
return 0;
|
624
622
|
}
|
625
623
|
|
626
624
|
static int write_pack(git_packbuilder *pb,
|
@@ -633,15 +631,15 @@ static int write_pack(git_packbuilder *pb,
|
|
633
631
|
struct git_pack_header ph;
|
634
632
|
git_oid entry_oid;
|
635
633
|
size_t i = 0;
|
636
|
-
int error
|
634
|
+
int error;
|
637
635
|
|
638
|
-
|
639
|
-
|
640
|
-
return -1;
|
636
|
+
if ((error = compute_write_order(&write_order, pb)) < 0)
|
637
|
+
return error;
|
641
638
|
|
642
639
|
if (!git__is_uint32(pb->nr_objects)) {
|
643
640
|
git_error_set(GIT_ERROR_INVALID, "too many objects");
|
644
|
-
|
641
|
+
error = -1;
|
642
|
+
goto done;
|
645
643
|
}
|
646
644
|
|
647
645
|
/* Write pack header */
|
@@ -852,10 +850,11 @@ static int try_delta(git_packbuilder *pb, struct unpacked *trg,
|
|
852
850
|
}
|
853
851
|
}
|
854
852
|
|
855
|
-
git_packbuilder__cache_lock(pb);
|
853
|
+
GIT_ASSERT(git_packbuilder__cache_lock(pb) == 0);
|
854
|
+
|
856
855
|
if (trg_object->delta_data) {
|
857
856
|
git__free(trg_object->delta_data);
|
858
|
-
|
857
|
+
GIT_ASSERT(pb->delta_cache_size >= trg_object->delta_size);
|
859
858
|
pb->delta_cache_size -= trg_object->delta_size;
|
860
859
|
trg_object->delta_data = NULL;
|
861
860
|
}
|
@@ -863,7 +862,7 @@ static int try_delta(git_packbuilder *pb, struct unpacked *trg,
|
|
863
862
|
bool overflow = git__add_sizet_overflow(
|
864
863
|
&pb->delta_cache_size, pb->delta_cache_size, delta_size);
|
865
864
|
|
866
|
-
git_packbuilder__cache_unlock(pb);
|
865
|
+
GIT_ASSERT(git_packbuilder__cache_unlock(pb) == 0);
|
867
866
|
|
868
867
|
if (overflow) {
|
869
868
|
git__free(delta_buf);
|
@@ -874,7 +873,7 @@ static int try_delta(git_packbuilder *pb, struct unpacked *trg,
|
|
874
873
|
GIT_ERROR_CHECK_ALLOC(trg_object->delta_data);
|
875
874
|
} else {
|
876
875
|
/* create delta when writing the pack */
|
877
|
-
git_packbuilder__cache_unlock(pb);
|
876
|
+
GIT_ASSERT(git_packbuilder__cache_unlock(pb) == 0);
|
878
877
|
git__free(delta_buf);
|
879
878
|
}
|
880
879
|
|
@@ -929,7 +928,7 @@ static int report_delta_progress(
|
|
929
928
|
double current_time = git__timer();
|
930
929
|
double elapsed = current_time - pb->last_progress_report_time;
|
931
930
|
|
932
|
-
if (force || elapsed >= MIN_PROGRESS_UPDATE_INTERVAL) {
|
931
|
+
if (force || elapsed < 0 || elapsed >= MIN_PROGRESS_UPDATE_INTERVAL) {
|
933
932
|
pb->last_progress_report_time = current_time;
|
934
933
|
|
935
934
|
ret = pb->progress_cb(
|
@@ -962,9 +961,9 @@ static int find_deltas(git_packbuilder *pb, git_pobject **list,
|
|
962
961
|
struct unpacked *n = array + idx;
|
963
962
|
size_t max_depth, j, best_base = SIZE_MAX;
|
964
963
|
|
965
|
-
git_packbuilder__progress_lock(pb);
|
964
|
+
GIT_ASSERT(git_packbuilder__progress_lock(pb) == 0);
|
966
965
|
if (!*list_size) {
|
967
|
-
git_packbuilder__progress_unlock(pb);
|
966
|
+
GIT_ASSERT(git_packbuilder__progress_unlock(pb) == 0);
|
968
967
|
break;
|
969
968
|
}
|
970
969
|
|
@@ -973,7 +972,7 @@ static int find_deltas(git_packbuilder *pb, git_pobject **list,
|
|
973
972
|
|
974
973
|
po = *list++;
|
975
974
|
(*list_size)--;
|
976
|
-
git_packbuilder__progress_unlock(pb);
|
975
|
+
GIT_ASSERT(git_packbuilder__progress_unlock(pb) == 0);
|
977
976
|
|
978
977
|
mem_usage -= free_unpacked(n);
|
979
978
|
n->object = po;
|
@@ -1048,10 +1047,10 @@ static int find_deltas(git_packbuilder *pb, git_pobject **list,
|
|
1048
1047
|
po->z_delta_size = zbuf.size;
|
1049
1048
|
git_buf_clear(&zbuf);
|
1050
1049
|
|
1051
|
-
git_packbuilder__cache_lock(pb);
|
1050
|
+
GIT_ASSERT(git_packbuilder__cache_lock(pb) == 0);
|
1052
1051
|
pb->delta_cache_size -= po->delta_size;
|
1053
1052
|
pb->delta_cache_size += po->z_delta_size;
|
1054
|
-
git_packbuilder__cache_unlock(pb);
|
1053
|
+
GIT_ASSERT(git_packbuilder__cache_unlock(pb) == 0);
|
1055
1054
|
}
|
1056
1055
|
|
1057
1056
|
/*
|
@@ -1129,10 +1128,10 @@ static void *threaded_find_deltas(void *arg)
|
|
1129
1128
|
; /* TODO */
|
1130
1129
|
}
|
1131
1130
|
|
1132
|
-
git_packbuilder__progress_lock(me->pb);
|
1131
|
+
GIT_ASSERT_WITH_RETVAL(git_packbuilder__progress_lock(me->pb) == 0, NULL);
|
1133
1132
|
me->working = 0;
|
1134
1133
|
git_cond_signal(&me->pb->progress_cond);
|
1135
|
-
git_packbuilder__progress_unlock(me->pb);
|
1134
|
+
GIT_ASSERT_WITH_RETVAL(git_packbuilder__progress_unlock(me->pb) == 0, NULL);
|
1136
1135
|
|
1137
1136
|
if (git_mutex_lock(&me->mutex)) {
|
1138
1137
|
git_error_set(GIT_ERROR_THREAD, "unable to lock packfile condition mutex");
|
@@ -1165,7 +1164,7 @@ static int ll_find_deltas(git_packbuilder *pb, git_pobject **list,
|
|
1165
1164
|
int ret, active_threads = 0;
|
1166
1165
|
|
1167
1166
|
if (!pb->nr_threads)
|
1168
|
-
pb->nr_threads =
|
1167
|
+
pb->nr_threads = git__online_cpus();
|
1169
1168
|
|
1170
1169
|
if (pb->nr_threads <= 1) {
|
1171
1170
|
find_deltas(pb, list, &list_size, window, depth);
|
@@ -1237,7 +1236,7 @@ static int ll_find_deltas(git_packbuilder *pb, git_pobject **list,
|
|
1237
1236
|
* 'working' flag from 1 -> 0. This indicates that it is
|
1238
1237
|
* ready to receive more work using our work-stealing
|
1239
1238
|
* algorithm. */
|
1240
|
-
git_packbuilder__progress_lock(pb);
|
1239
|
+
GIT_ASSERT(git_packbuilder__progress_lock(pb) == 0);
|
1241
1240
|
for (;;) {
|
1242
1241
|
for (i = 0; !target && i < pb->nr_threads; i++)
|
1243
1242
|
if (!p[i].working)
|
@@ -1280,7 +1279,7 @@ static int ll_find_deltas(git_packbuilder *pb, git_pobject **list,
|
|
1280
1279
|
target->list_size = sub_size;
|
1281
1280
|
target->remaining = sub_size;
|
1282
1281
|
target->working = 1;
|
1283
|
-
git_packbuilder__progress_unlock(pb);
|
1282
|
+
GIT_ASSERT(git_packbuilder__progress_unlock(pb) == 0);
|
1284
1283
|
|
1285
1284
|
if (git_mutex_lock(&target->mutex)) {
|
1286
1285
|
git_error_set(GIT_ERROR_THREAD, "unable to lock packfile condition mutex");
|
@@ -1363,8 +1362,13 @@ int git_packbuilder_foreach(git_packbuilder *pb, int (*cb)(void *buf, size_t siz
|
|
1363
1362
|
|
1364
1363
|
int git_packbuilder_write_buf(git_buf *buf, git_packbuilder *pb)
|
1365
1364
|
{
|
1365
|
+
int error;
|
1366
|
+
|
1367
|
+
if ((error = git_buf_sanitize(buf)) < 0)
|
1368
|
+
return error;
|
1369
|
+
|
1366
1370
|
PREPARE_PACK;
|
1367
|
-
|
1371
|
+
|
1368
1372
|
return write_pack(pb, &write_pack_buf, buf);
|
1369
1373
|
}
|
1370
1374
|
|
@@ -1486,7 +1490,8 @@ int git_packbuilder_insert_recur(git_packbuilder *pb, const git_oid *id, const c
|
|
1486
1490
|
git_object *obj;
|
1487
1491
|
int error;
|
1488
1492
|
|
1489
|
-
|
1493
|
+
GIT_ASSERT_ARG(pb);
|
1494
|
+
GIT_ASSERT_ARG(id);
|
1490
1495
|
|
1491
1496
|
if ((error = git_object_lookup(&obj, pb->repo, id, GIT_OBJECT_ANY)) < 0)
|
1492
1497
|
return error;
|
@@ -1727,7 +1732,8 @@ int git_packbuilder_insert_walk(git_packbuilder *pb, git_revwalk *walk)
|
|
1727
1732
|
git_oid id;
|
1728
1733
|
struct walk_object *obj;
|
1729
1734
|
|
1730
|
-
|
1735
|
+
GIT_ASSERT_ARG(pb);
|
1736
|
+
GIT_ASSERT_ARG(walk);
|
1731
1737
|
|
1732
1738
|
if ((error = mark_edges_uninteresting(pb, walk->user_input)) < 0)
|
1733
1739
|
return error;
|