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/blame.c
CHANGED
@@ -76,6 +76,14 @@ static git_blame_hunk* new_hunk(
|
|
76
76
|
return hunk;
|
77
77
|
}
|
78
78
|
|
79
|
+
static void free_hunk(git_blame_hunk *hunk)
|
80
|
+
{
|
81
|
+
git__free((void*)hunk->orig_path);
|
82
|
+
git_signature_free(hunk->final_signature);
|
83
|
+
git_signature_free(hunk->orig_signature);
|
84
|
+
git__free(hunk);
|
85
|
+
}
|
86
|
+
|
79
87
|
static git_blame_hunk* dup_hunk(git_blame_hunk *hunk)
|
80
88
|
{
|
81
89
|
git_blame_hunk *newhunk = new_hunk(
|
@@ -90,17 +98,14 @@ static git_blame_hunk* dup_hunk(git_blame_hunk *hunk)
|
|
90
98
|
git_oid_cpy(&newhunk->orig_commit_id, &hunk->orig_commit_id);
|
91
99
|
git_oid_cpy(&newhunk->final_commit_id, &hunk->final_commit_id);
|
92
100
|
newhunk->boundary = hunk->boundary;
|
93
|
-
git_signature_dup(&newhunk->final_signature, hunk->final_signature);
|
94
|
-
git_signature_dup(&newhunk->orig_signature, hunk->orig_signature);
|
95
|
-
return newhunk;
|
96
|
-
}
|
97
101
|
|
98
|
-
|
99
|
-
{
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
102
|
+
if (git_signature_dup(&newhunk->final_signature, hunk->final_signature) < 0 ||
|
103
|
+
git_signature_dup(&newhunk->orig_signature, hunk->orig_signature) < 0) {
|
104
|
+
free_hunk(newhunk);
|
105
|
+
return NULL;
|
106
|
+
}
|
107
|
+
|
108
|
+
return newhunk;
|
104
109
|
}
|
105
110
|
|
106
111
|
/* Starting with the hunk that includes start_line, shift all following hunks'
|
@@ -171,20 +176,21 @@ void git_blame_free(git_blame *blame)
|
|
171
176
|
|
172
177
|
uint32_t git_blame_get_hunk_count(git_blame *blame)
|
173
178
|
{
|
174
|
-
|
179
|
+
GIT_ASSERT_ARG(blame);
|
175
180
|
return (uint32_t)blame->hunks.length;
|
176
181
|
}
|
177
182
|
|
178
183
|
const git_blame_hunk *git_blame_get_hunk_byindex(git_blame *blame, uint32_t index)
|
179
184
|
{
|
180
|
-
|
185
|
+
GIT_ASSERT_ARG_WITH_RETVAL(blame, NULL);
|
181
186
|
return (git_blame_hunk*)git_vector_get(&blame->hunks, index);
|
182
187
|
}
|
183
188
|
|
184
189
|
const git_blame_hunk *git_blame_get_hunk_byline(git_blame *blame, size_t lineno)
|
185
190
|
{
|
186
191
|
size_t i, new_lineno = lineno;
|
187
|
-
|
192
|
+
|
193
|
+
GIT_ASSERT_ARG_WITH_RETVAL(blame, NULL);
|
188
194
|
|
189
195
|
if (!git_vector_bsearch2(&i, &blame->hunks, hunk_byfinalline_search_cmp, &new_lineno)) {
|
190
196
|
return git_blame_get_hunk_byindex(blame, (uint32_t)i);
|
@@ -388,7 +394,10 @@ int git_blame_file(
|
|
388
394
|
git_blame_options normOptions = GIT_BLAME_OPTIONS_INIT;
|
389
395
|
git_blame *blame = NULL;
|
390
396
|
|
391
|
-
|
397
|
+
GIT_ASSERT_ARG(out);
|
398
|
+
GIT_ASSERT_ARG(repo);
|
399
|
+
GIT_ASSERT_ARG(path);
|
400
|
+
|
392
401
|
if ((error = normalize_options(&normOptions, options, repo)) < 0)
|
393
402
|
goto on_error;
|
394
403
|
|
@@ -509,7 +518,9 @@ int git_blame_buffer(
|
|
509
518
|
|
510
519
|
diffopts.context_lines = 0;
|
511
520
|
|
512
|
-
|
521
|
+
GIT_ASSERT_ARG(out);
|
522
|
+
GIT_ASSERT_ARG(reference);
|
523
|
+
GIT_ASSERT_ARG(buffer && buffer_len);
|
513
524
|
|
514
525
|
blame = git_blame__alloc(reference->repository, reference->options, reference->path);
|
515
526
|
GIT_ERROR_CHECK_ALLOC(blame);
|
data/vendor/libgit2/src/blob.c
CHANGED
@@ -14,11 +14,11 @@
|
|
14
14
|
|
15
15
|
#include "filebuf.h"
|
16
16
|
#include "filter.h"
|
17
|
-
#include "buf_text.h"
|
18
17
|
|
19
18
|
const void *git_blob_rawcontent(const git_blob *blob)
|
20
19
|
{
|
21
|
-
|
20
|
+
GIT_ASSERT_ARG_WITH_RETVAL(blob, NULL);
|
21
|
+
|
22
22
|
if (blob->raw)
|
23
23
|
return blob->data.raw.data;
|
24
24
|
else
|
@@ -27,7 +27,8 @@ const void *git_blob_rawcontent(const git_blob *blob)
|
|
27
27
|
|
28
28
|
git_object_size_t git_blob_rawsize(const git_blob *blob)
|
29
29
|
{
|
30
|
-
|
30
|
+
GIT_ASSERT_ARG(blob);
|
31
|
+
|
31
32
|
if (blob->raw)
|
32
33
|
return blob->data.raw.size;
|
33
34
|
else
|
@@ -53,7 +54,9 @@ void git_blob__free(void *_blob)
|
|
53
54
|
int git_blob__parse_raw(void *_blob, const char *data, size_t size)
|
54
55
|
{
|
55
56
|
git_blob *blob = (git_blob *) _blob;
|
56
|
-
|
57
|
+
|
58
|
+
GIT_ASSERT_ARG(blob);
|
59
|
+
|
57
60
|
blob->raw = 1;
|
58
61
|
blob->data.raw.data = data;
|
59
62
|
blob->data.raw.size = size;
|
@@ -63,7 +66,9 @@ int git_blob__parse_raw(void *_blob, const char *data, size_t size)
|
|
63
66
|
int git_blob__parse(void *_blob, git_odb_object *odb_obj)
|
64
67
|
{
|
65
68
|
git_blob *blob = (git_blob *) _blob;
|
66
|
-
|
69
|
+
|
70
|
+
GIT_ASSERT_ARG(blob);
|
71
|
+
|
67
72
|
git_cached_obj_incref((git_cached_obj *)odb_obj);
|
68
73
|
blob->raw = 0;
|
69
74
|
blob->data.odb = odb_obj;
|
@@ -77,7 +82,8 @@ int git_blob_create_from_buffer(
|
|
77
82
|
git_odb *odb;
|
78
83
|
git_odb_stream *stream;
|
79
84
|
|
80
|
-
|
85
|
+
GIT_ASSERT_ARG(id);
|
86
|
+
GIT_ASSERT_ARG(repo);
|
81
87
|
|
82
88
|
if ((error = git_repository_odb__weakptr(&odb, repo)) < 0 ||
|
83
89
|
(error = git_odb_open_wstream(&stream, odb, len, GIT_OBJECT_BLOB)) < 0)
|
@@ -188,14 +194,10 @@ int git_blob__create_from_paths(
|
|
188
194
|
mode_t mode;
|
189
195
|
git_buf path = GIT_BUF_INIT;
|
190
196
|
|
191
|
-
|
197
|
+
GIT_ASSERT_ARG(hint_path || !try_load_filters);
|
192
198
|
|
193
199
|
if (!content_path) {
|
194
|
-
if (
|
195
|
-
return GIT_EBAREREPO;
|
196
|
-
|
197
|
-
if (git_buf_joinpath(
|
198
|
-
&path, git_repository_workdir(repo), hint_path) < 0)
|
200
|
+
if (git_repository_workdir_path(&path, repo, hint_path) < 0)
|
199
201
|
return -1;
|
200
202
|
|
201
203
|
content_path = path.ptr;
|
@@ -331,7 +333,8 @@ int git_blob_create_from_stream(git_writestream **out, git_repository *repo, con
|
|
331
333
|
git_buf path = GIT_BUF_INIT;
|
332
334
|
blob_writestream *stream;
|
333
335
|
|
334
|
-
|
336
|
+
GIT_ASSERT_ARG(out);
|
337
|
+
GIT_ASSERT_ARG(repo);
|
335
338
|
|
336
339
|
stream = git__calloc(1, sizeof(blob_writestream));
|
337
340
|
GIT_ERROR_CHECK_ALLOC(stream);
|
@@ -391,13 +394,22 @@ int git_blob_is_binary(const git_blob *blob)
|
|
391
394
|
git_buf content = GIT_BUF_INIT;
|
392
395
|
git_object_size_t size;
|
393
396
|
|
394
|
-
|
397
|
+
GIT_ASSERT_ARG(blob);
|
395
398
|
|
396
399
|
size = git_blob_rawsize(blob);
|
397
400
|
|
398
401
|
git_buf_attach_notowned(&content, git_blob_rawcontent(blob),
|
399
402
|
(size_t)min(size, GIT_FILTER_BYTES_TO_CHECK_NUL));
|
400
|
-
return
|
403
|
+
return git_buf_is_binary(&content);
|
404
|
+
}
|
405
|
+
|
406
|
+
int git_blob_filter_options_init(
|
407
|
+
git_blob_filter_options *opts,
|
408
|
+
unsigned int version)
|
409
|
+
{
|
410
|
+
GIT_INIT_STRUCTURE_FROM_TEMPLATE(opts, version,
|
411
|
+
git_blob_filter_options, GIT_BLOB_FILTER_OPTIONS_INIT);
|
412
|
+
return 0;
|
401
413
|
}
|
402
414
|
|
403
415
|
int git_blob_filter(
|
@@ -409,15 +421,18 @@ int git_blob_filter(
|
|
409
421
|
int error = 0;
|
410
422
|
git_filter_list *fl = NULL;
|
411
423
|
git_blob_filter_options opts = GIT_BLOB_FILTER_OPTIONS_INIT;
|
412
|
-
|
413
|
-
|
414
|
-
assert(blob && path && out);
|
424
|
+
git_filter_options filter_opts = GIT_FILTER_OPTIONS_INIT;
|
415
425
|
|
416
|
-
|
426
|
+
GIT_ASSERT_ARG(blob);
|
427
|
+
GIT_ASSERT_ARG(path);
|
428
|
+
GIT_ASSERT_ARG(out);
|
417
429
|
|
418
430
|
GIT_ERROR_CHECK_VERSION(
|
419
431
|
given_opts, GIT_BLOB_FILTER_OPTIONS_VERSION, "git_blob_filter_options");
|
420
432
|
|
433
|
+
if (git_buf_sanitize(out) < 0)
|
434
|
+
return -1;
|
435
|
+
|
421
436
|
if (given_opts != NULL)
|
422
437
|
memcpy(&opts, given_opts, sizeof(git_blob_filter_options));
|
423
438
|
|
@@ -426,14 +441,19 @@ int git_blob_filter(
|
|
426
441
|
return 0;
|
427
442
|
|
428
443
|
if ((opts.flags & GIT_BLOB_FILTER_NO_SYSTEM_ATTRIBUTES) != 0)
|
429
|
-
flags |= GIT_FILTER_NO_SYSTEM_ATTRIBUTES;
|
444
|
+
filter_opts.flags |= GIT_FILTER_NO_SYSTEM_ATTRIBUTES;
|
430
445
|
|
431
|
-
if ((opts.flags &
|
432
|
-
flags |= GIT_FILTER_ATTRIBUTES_FROM_HEAD;
|
446
|
+
if ((opts.flags & GIT_BLOB_FILTER_ATTRIBUTES_FROM_HEAD) != 0)
|
447
|
+
filter_opts.flags |= GIT_FILTER_ATTRIBUTES_FROM_HEAD;
|
448
|
+
|
449
|
+
if ((opts.flags & GIT_BLOB_FILTER_ATTRIBUTES_FROM_COMMIT) != 0) {
|
450
|
+
filter_opts.flags |= GIT_FILTER_ATTRIBUTES_FROM_COMMIT;
|
451
|
+
filter_opts.commit_id = opts.commit_id;
|
452
|
+
}
|
433
453
|
|
434
|
-
if (!(error =
|
454
|
+
if (!(error = git_filter_list_load_ext(
|
435
455
|
&fl, git_blob_owner(blob), blob, path,
|
436
|
-
GIT_FILTER_TO_WORKTREE,
|
456
|
+
GIT_FILTER_TO_WORKTREE, &filter_opts))) {
|
437
457
|
|
438
458
|
error = git_filter_list_apply_to_blob(out, fl, blob);
|
439
459
|
|
data/vendor/libgit2/src/branch.c
CHANGED
@@ -67,8 +67,10 @@ static int create_branch(
|
|
67
67
|
int error = -1;
|
68
68
|
int bare = git_repository_is_bare(repository);
|
69
69
|
|
70
|
-
|
71
|
-
|
70
|
+
GIT_ASSERT_ARG(branch_name);
|
71
|
+
GIT_ASSERT_ARG(commit);
|
72
|
+
GIT_ASSERT_ARG(ref_out);
|
73
|
+
GIT_ASSERT_ARG(git_commit_owner(commit) == repository);
|
72
74
|
|
73
75
|
if (!git__strcmp(branch_name, "HEAD")) {
|
74
76
|
git_error_set(GIT_ERROR_REFERENCE, "'HEAD' is not a valid branch name");
|
@@ -161,6 +163,8 @@ out:
|
|
161
163
|
|
162
164
|
int git_branch_is_checked_out(const git_reference *branch)
|
163
165
|
{
|
166
|
+
GIT_ASSERT_ARG(branch);
|
167
|
+
|
164
168
|
if (!git_reference_is_branch(branch))
|
165
169
|
return 0;
|
166
170
|
return git_repository_foreach_worktree(git_reference_owner(branch),
|
@@ -173,7 +177,7 @@ int git_branch_delete(git_reference *branch)
|
|
173
177
|
git_buf config_section = GIT_BUF_INIT;
|
174
178
|
int error = -1;
|
175
179
|
|
176
|
-
|
180
|
+
GIT_ASSERT_ARG(branch);
|
177
181
|
|
178
182
|
if (!git_reference_is_branch(branch) && !git_reference_is_remote(branch)) {
|
179
183
|
git_error_set(GIT_ERROR_INVALID, "reference '%s' is not a valid branch.",
|
@@ -288,7 +292,8 @@ int git_branch_move(
|
|
288
292
|
log_message = GIT_BUF_INIT;
|
289
293
|
int error;
|
290
294
|
|
291
|
-
|
295
|
+
GIT_ASSERT_ARG(branch);
|
296
|
+
GIT_ASSERT_ARG(new_branch_name);
|
292
297
|
|
293
298
|
if (!git_reference_is_branch(branch))
|
294
299
|
return not_a_local_branch(git_reference_name(branch));
|
@@ -333,7 +338,10 @@ int git_branch_lookup(
|
|
333
338
|
git_branch_t branch_type)
|
334
339
|
{
|
335
340
|
int error = -1;
|
336
|
-
|
341
|
+
|
342
|
+
GIT_ASSERT_ARG(ref_out);
|
343
|
+
GIT_ASSERT_ARG(repo);
|
344
|
+
GIT_ASSERT_ARG(branch_name);
|
337
345
|
|
338
346
|
switch (branch_type) {
|
339
347
|
case GIT_BRANCH_LOCAL:
|
@@ -346,7 +354,7 @@ int git_branch_lookup(
|
|
346
354
|
error = retrieve_branch_reference(ref_out, repo, branch_name, true);
|
347
355
|
break;
|
348
356
|
default:
|
349
|
-
|
357
|
+
GIT_ASSERT(false);
|
350
358
|
}
|
351
359
|
return error;
|
352
360
|
}
|
@@ -357,7 +365,8 @@ int git_branch_name(
|
|
357
365
|
{
|
358
366
|
const char *branch_name;
|
359
367
|
|
360
|
-
|
368
|
+
GIT_ASSERT_ARG(out);
|
369
|
+
GIT_ASSERT_ARG(ref);
|
361
370
|
|
362
371
|
branch_name = ref->name;
|
363
372
|
|
@@ -405,9 +414,11 @@ int git_branch_upstream_name(
|
|
405
414
|
const git_refspec *refspec;
|
406
415
|
git_config *config;
|
407
416
|
|
408
|
-
|
417
|
+
GIT_ASSERT_ARG(out);
|
418
|
+
GIT_ASSERT_ARG(refname);
|
409
419
|
|
410
|
-
git_buf_sanitize(out)
|
420
|
+
if ((error = git_buf_sanitize(out)) < 0)
|
421
|
+
return error;
|
411
422
|
|
412
423
|
if (!git_reference__is_branch(refname))
|
413
424
|
return not_a_local_branch(refname);
|
@@ -457,7 +468,7 @@ cleanup:
|
|
457
468
|
return error;
|
458
469
|
}
|
459
470
|
|
460
|
-
int
|
471
|
+
static int git_branch_upstream_with_format(git_buf *buf, git_repository *repo, const char *refname, const char *format, const char *format_name)
|
461
472
|
{
|
462
473
|
int error;
|
463
474
|
git_config *cfg;
|
@@ -468,13 +479,12 @@ int git_branch_upstream_remote(git_buf *buf, git_repository *repo, const char *r
|
|
468
479
|
if ((error = git_repository_config__weakptr(&cfg, repo)) < 0)
|
469
480
|
return error;
|
470
481
|
|
471
|
-
git_buf_sanitize(buf)
|
472
|
-
|
473
|
-
if ((error = retrieve_upstream_configuration(buf, cfg, refname, "branch.%s.remote")) < 0)
|
482
|
+
if ((error = git_buf_sanitize(buf)) < 0 ||
|
483
|
+
(error = retrieve_upstream_configuration(buf, cfg, refname, format)) < 0)
|
474
484
|
return error;
|
475
485
|
|
476
486
|
if (git_buf_len(buf) == 0) {
|
477
|
-
git_error_set(GIT_ERROR_REFERENCE, "branch '%s' does not have an upstream
|
487
|
+
git_error_set(GIT_ERROR_REFERENCE, "branch '%s' does not have an upstream %s", refname, format_name);
|
478
488
|
error = GIT_ENOTFOUND;
|
479
489
|
git_buf_clear(buf);
|
480
490
|
}
|
@@ -482,6 +492,16 @@ int git_branch_upstream_remote(git_buf *buf, git_repository *repo, const char *r
|
|
482
492
|
return error;
|
483
493
|
}
|
484
494
|
|
495
|
+
int git_branch_upstream_remote(git_buf *buf, git_repository *repo, const char *refname)
|
496
|
+
{
|
497
|
+
return git_branch_upstream_with_format(buf, repo, refname, "branch.%s.remote", "remote");
|
498
|
+
}
|
499
|
+
|
500
|
+
int git_branch_upstream_merge(git_buf *buf, git_repository *repo, const char *refname)
|
501
|
+
{
|
502
|
+
return git_branch_upstream_with_format(buf, repo, refname, "branch.%s.merge", "merge");
|
503
|
+
}
|
504
|
+
|
485
505
|
int git_branch_remote_name(git_buf *buf, git_repository *repo, const char *refname)
|
486
506
|
{
|
487
507
|
git_strarray remote_list = {0};
|
@@ -491,9 +511,12 @@ int git_branch_remote_name(git_buf *buf, git_repository *repo, const char *refna
|
|
491
511
|
int error = 0;
|
492
512
|
char *remote_name = NULL;
|
493
513
|
|
494
|
-
|
514
|
+
GIT_ASSERT_ARG(buf);
|
515
|
+
GIT_ASSERT_ARG(repo);
|
516
|
+
GIT_ASSERT_ARG(refname);
|
495
517
|
|
496
|
-
git_buf_sanitize(buf)
|
518
|
+
if ((error = git_buf_sanitize(buf)) < 0)
|
519
|
+
return error;
|
497
520
|
|
498
521
|
/* Verify that this is a remote branch */
|
499
522
|
if (!git_reference__is_remote(refname)) {
|
@@ -702,7 +725,7 @@ int git_branch_is_head(
|
|
702
725
|
bool is_same = false;
|
703
726
|
int error;
|
704
727
|
|
705
|
-
|
728
|
+
GIT_ASSERT_ARG(branch);
|
706
729
|
|
707
730
|
if (!git_reference_is_branch(branch))
|
708
731
|
return false;
|
@@ -723,3 +746,32 @@ int git_branch_is_head(
|
|
723
746
|
|
724
747
|
return is_same;
|
725
748
|
}
|
749
|
+
|
750
|
+
int git_branch_name_is_valid(int *valid, const char *name)
|
751
|
+
{
|
752
|
+
git_buf ref_name = GIT_BUF_INIT;
|
753
|
+
int error = 0;
|
754
|
+
|
755
|
+
GIT_ASSERT(valid);
|
756
|
+
|
757
|
+
*valid = 0;
|
758
|
+
|
759
|
+
/*
|
760
|
+
* Discourage branch name starting with dash,
|
761
|
+
* https://github.com/git/git/commit/6348624010888b
|
762
|
+
* and discourage HEAD as branch name,
|
763
|
+
* https://github.com/git/git/commit/a625b092cc5994
|
764
|
+
*/
|
765
|
+
if (!name || name[0] == '-' || !git__strcmp(name, "HEAD"))
|
766
|
+
goto done;
|
767
|
+
|
768
|
+
if ((error = git_buf_puts(&ref_name, GIT_REFS_HEADS_DIR)) < 0 ||
|
769
|
+
(error = git_buf_puts(&ref_name, name)) < 0)
|
770
|
+
goto done;
|
771
|
+
|
772
|
+
error = git_reference_name_is_valid(valid, ref_name.ptr);
|
773
|
+
|
774
|
+
done:
|
775
|
+
git_buf_dispose(&ref_name);
|
776
|
+
return error;
|
777
|
+
}
|