rugged 1.0.1 → 1.3.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_commit.c +1 -1
- data/ext/rugged/rugged_object.c +1 -1
- data/ext/rugged/rugged_repo.c +3 -3
- data/lib/rugged/commit.rb +16 -2
- data/lib/rugged/repository.rb +2 -2
- data/lib/rugged/version.rb +1 -1
- data/vendor/libgit2/CMakeLists.txt +41 -74
- data/vendor/libgit2/COPYING +109 -1
- data/vendor/libgit2/cmake/{Modules/AddCFlagIfSupported.cmake → AddCFlagIfSupported.cmake} +0 -0
- data/vendor/libgit2/cmake/{Modules/EnableWarnings.cmake → EnableWarnings.cmake} +0 -0
- data/vendor/libgit2/cmake/{Modules/FindCoreFoundation.cmake → FindCoreFoundation.cmake} +0 -0
- data/vendor/libgit2/cmake/{Modules/FindGSSAPI.cmake → FindGSSAPI.cmake} +0 -0
- data/vendor/libgit2/cmake/{Modules/FindGSSFramework.cmake → FindGSSFramework.cmake} +0 -0
- data/vendor/libgit2/cmake/{Modules/FindHTTP_Parser.cmake → FindHTTP_Parser.cmake} +0 -0
- data/vendor/libgit2/cmake/{Modules/FindIconv.cmake → FindIconv.cmake} +0 -0
- data/vendor/libgit2/cmake/FindLibSSH2.cmake +13 -0
- data/vendor/libgit2/cmake/{Modules/FindPCRE.cmake → FindPCRE.cmake} +0 -0
- data/vendor/libgit2/cmake/{Modules/FindPCRE2.cmake → FindPCRE2.cmake} +0 -0
- data/vendor/libgit2/cmake/{Modules/FindPkgLibraries.cmake → FindPkgLibraries.cmake} +0 -0
- data/vendor/libgit2/cmake/{Modules/FindSecurity.cmake → FindSecurity.cmake} +0 -0
- data/vendor/libgit2/cmake/{Modules/FindStatNsec.cmake → FindStatNsec.cmake} +0 -0
- data/vendor/libgit2/cmake/Findfutimens.cmake +14 -0
- data/vendor/libgit2/cmake/{Modules/FindmbedTLS.cmake → FindmbedTLS.cmake} +0 -0
- data/vendor/libgit2/cmake/{Modules/IdeSplitSources.cmake → IdeSplitSources.cmake} +0 -0
- data/vendor/libgit2/cmake/{Modules/PkgBuildConfig.cmake → PkgBuildConfig.cmake} +0 -0
- data/vendor/libgit2/cmake/{Modules/SanitizeBool.cmake → SanitizeBool.cmake} +0 -0
- data/vendor/libgit2/cmake/{Modules/SelectGSSAPI.cmake → SelectGSSAPI.cmake} +18 -26
- data/vendor/libgit2/cmake/{Modules/SelectHTTPSBackend.cmake → SelectHTTPSBackend.cmake} +29 -32
- data/vendor/libgit2/cmake/{Modules/SelectHashes.cmake → SelectHashes.cmake} +21 -28
- data/vendor/libgit2/deps/chromium-zlib/CMakeLists.txt +101 -0
- data/vendor/libgit2/deps/http-parser/CMakeLists.txt +4 -3
- data/vendor/libgit2/deps/ntlmclient/CMakeLists.txt +24 -10
- data/vendor/libgit2/deps/ntlmclient/compat.h +0 -27
- 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 +164 -135
- 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/deps/pcre/LICENCE +93 -0
- data/vendor/libgit2/deps/pcre/pcre.h +2 -2
- data/vendor/libgit2/deps/pcre/pcre_compile.c +29 -17
- data/vendor/libgit2/deps/pcre/pcre_jit_compile.c +4 -4
- data/vendor/libgit2/deps/pcre/pcreposix.c +2 -3
- data/vendor/libgit2/deps/zlib/CMakeLists.txt +6 -5
- data/vendor/libgit2/deps/zlib/deflate.c +1 -0
- data/vendor/libgit2/include/git2/annotated_commit.h +1 -1
- data/vendor/libgit2/include/git2/apply.h +2 -0
- data/vendor/libgit2/include/git2/attr.h +95 -0
- data/vendor/libgit2/include/git2/blame.h +95 -42
- data/vendor/libgit2/include/git2/blob.h +37 -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/clone.h +1 -1
- data/vendor/libgit2/include/git2/commit.h +35 -19
- data/vendor/libgit2/include/git2/common.h +51 -6
- data/vendor/libgit2/include/git2/config.h +1 -1
- data/vendor/libgit2/include/git2/deprecated.h +368 -8
- data/vendor/libgit2/include/git2/diff.h +34 -113
- data/vendor/libgit2/include/git2/email.h +127 -0
- data/vendor/libgit2/include/git2/errors.h +8 -7
- data/vendor/libgit2/include/git2/filter.h +63 -17
- data/vendor/libgit2/include/git2/graph.h +20 -2
- data/vendor/libgit2/include/git2/index.h +4 -5
- data/vendor/libgit2/include/git2/indexer.h +2 -1
- data/vendor/libgit2/include/git2/notes.h +2 -2
- data/vendor/libgit2/include/git2/odb.h +44 -20
- data/vendor/libgit2/include/git2/oidarray.h +5 -8
- data/vendor/libgit2/include/git2/pack.h +1 -1
- 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 +62 -9
- data/vendor/libgit2/include/git2/repository.h +107 -62
- data/vendor/libgit2/include/git2/revparse.h +5 -5
- data/vendor/libgit2/include/git2/stash.h +1 -1
- data/vendor/libgit2/include/git2/status.h +115 -59
- data/vendor/libgit2/include/git2/stdint.h +3 -3
- data/vendor/libgit2/include/git2/strarray.h +6 -10
- 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/email.h +45 -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 +4 -4
- data/vendor/libgit2/include/git2/worktree.h +1 -0
- data/vendor/libgit2/include/git2.h +1 -0
- data/vendor/libgit2/src/CMakeLists.txt +84 -44
- 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 +21 -8
- data/vendor/libgit2/src/array.h +11 -11
- data/vendor/libgit2/src/assert_safe.h +58 -0
- data/vendor/libgit2/src/attr.c +192 -70
- data/vendor/libgit2/src/attr_file.c +99 -41
- data/vendor/libgit2/src/attr_file.h +32 -11
- data/vendor/libgit2/src/attrcache.c +44 -40
- data/vendor/libgit2/src/attrcache.h +4 -5
- data/vendor/libgit2/src/blame.c +32 -19
- data/vendor/libgit2/src/blame_git.c +7 -4
- data/vendor/libgit2/src/blob.c +60 -32
- data/vendor/libgit2/src/branch.c +87 -37
- data/vendor/libgit2/src/buffer.c +349 -29
- data/vendor/libgit2/src/buffer.h +154 -2
- data/vendor/libgit2/src/cache.c +3 -24
- data/vendor/libgit2/src/cache.h +7 -7
- data/vendor/libgit2/src/cc-compat.h +10 -8
- data/vendor/libgit2/src/checkout.c +103 -105
- data/vendor/libgit2/src/cherrypick.c +8 -2
- data/vendor/libgit2/src/clone.c +105 -30
- 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 +26 -2
- data/vendor/libgit2/src/config.c +41 -23
- data/vendor/libgit2/src/config_cache.c +9 -4
- data/vendor/libgit2/src/config_entries.c +35 -27
- data/vendor/libgit2/src/config_file.c +17 -9
- data/vendor/libgit2/src/config_parse.c +6 -8
- data/vendor/libgit2/src/config_snapshot.c +2 -1
- 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 +12 -5
- data/vendor/libgit2/src/diff.c +55 -183
- data/vendor/libgit2/src/diff_driver.c +21 -17
- data/vendor/libgit2/src/diff_file.c +5 -7
- data/vendor/libgit2/src/diff_generate.c +56 -28
- data/vendor/libgit2/src/diff_parse.c +2 -3
- data/vendor/libgit2/src/diff_print.c +81 -65
- data/vendor/libgit2/src/diff_stats.c +19 -16
- data/vendor/libgit2/src/diff_tform.c +13 -13
- data/vendor/libgit2/src/diff_xdiff.c +4 -2
- data/vendor/libgit2/src/diff_xdiff.h +1 -1
- data/vendor/libgit2/src/email.c +299 -0
- data/vendor/libgit2/src/email.h +25 -0
- data/vendor/libgit2/src/errors.c +26 -19
- data/vendor/libgit2/src/features.h.in +5 -1
- data/vendor/libgit2/src/fetch.c +7 -2
- data/vendor/libgit2/src/fetchhead.c +8 -4
- data/vendor/libgit2/src/filebuf.c +9 -7
- data/vendor/libgit2/src/filter.c +215 -113
- data/vendor/libgit2/src/filter.h +24 -5
- data/vendor/libgit2/src/futils.c +8 -8
- data/vendor/libgit2/src/futils.h +4 -4
- 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 +8 -10
- 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/idxmap.c +0 -22
- data/vendor/libgit2/src/ignore.c +33 -17
- data/vendor/libgit2/src/index.c +124 -82
- data/vendor/libgit2/src/index.h +1 -1
- data/vendor/libgit2/src/indexer.c +95 -37
- data/vendor/libgit2/src/integer.h +79 -2
- data/vendor/libgit2/src/iterator.c +40 -28
- data/vendor/libgit2/src/iterator.h +1 -1
- data/vendor/libgit2/src/khash.h +2 -11
- data/vendor/libgit2/src/{settings.c → libgit2.c} +148 -49
- 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 +95 -43
- data/vendor/libgit2/src/merge.h +2 -1
- data/vendor/libgit2/src/merge_driver.c +19 -13
- data/vendor/libgit2/src/merge_file.c +15 -9
- data/vendor/libgit2/src/message.c +3 -1
- data/vendor/libgit2/src/midx.c +879 -0
- data/vendor/libgit2/src/midx.h +110 -0
- data/vendor/libgit2/src/mwindow.c +214 -95
- data/vendor/libgit2/src/mwindow.h +3 -3
- data/vendor/libgit2/src/net.c +133 -4
- 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 +40 -40
- data/vendor/libgit2/src/object.c +24 -15
- data/vendor/libgit2/src/odb.c +298 -57
- data/vendor/libgit2/src/odb.h +16 -2
- data/vendor/libgit2/src/odb_loose.c +31 -21
- data/vendor/libgit2/src/odb_mempack.c +3 -1
- data/vendor/libgit2/src/odb_pack.c +391 -114
- data/vendor/libgit2/src/oid.c +7 -4
- data/vendor/libgit2/src/oidarray.c +10 -1
- data/vendor/libgit2/src/pack-objects.c +83 -69
- data/vendor/libgit2/src/pack.c +383 -150
- data/vendor/libgit2/src/pack.h +44 -9
- data/vendor/libgit2/src/patch.c +14 -7
- data/vendor/libgit2/src/patch_generate.c +3 -5
- data/vendor/libgit2/src/patch_parse.c +6 -3
- data/vendor/libgit2/src/path.c +103 -58
- data/vendor/libgit2/src/path.h +80 -7
- data/vendor/libgit2/src/pathspec.c +12 -11
- data/vendor/libgit2/src/pool.c +34 -22
- data/vendor/libgit2/src/pool.h +9 -1
- data/vendor/libgit2/src/posix.c +43 -12
- data/vendor/libgit2/src/posix.h +9 -0
- data/vendor/libgit2/src/proxy.c +2 -0
- data/vendor/libgit2/src/push.c +2 -0
- data/vendor/libgit2/src/reader.c +10 -6
- data/vendor/libgit2/src/rebase.c +95 -49
- data/vendor/libgit2/src/refdb.c +165 -13
- data/vendor/libgit2/src/refdb.h +69 -0
- data/vendor/libgit2/src/refdb_fs.c +145 -153
- data/vendor/libgit2/src/reflog.c +21 -20
- data/vendor/libgit2/src/refs.c +153 -233
- data/vendor/libgit2/src/refs.h +2 -20
- data/vendor/libgit2/src/refspec.c +81 -45
- data/vendor/libgit2/src/regexp.c +2 -2
- data/vendor/libgit2/src/remote.c +320 -122
- data/vendor/libgit2/src/remote.h +2 -1
- data/vendor/libgit2/src/repository.c +476 -203
- data/vendor/libgit2/src/repository.h +27 -29
- data/vendor/libgit2/src/reset.c +8 -7
- data/vendor/libgit2/src/revert.c +8 -2
- data/vendor/libgit2/src/revparse.c +23 -17
- data/vendor/libgit2/src/revwalk.c +35 -20
- data/vendor/libgit2/src/runtime.c +162 -0
- data/vendor/libgit2/src/runtime.h +62 -0
- data/vendor/libgit2/src/{refdb_fs.h → settings.h} +3 -11
- data/vendor/libgit2/src/signature.c +6 -5
- data/vendor/libgit2/src/sortedcache.c +2 -3
- data/vendor/libgit2/src/sortedcache.h +10 -8
- data/vendor/libgit2/src/stash.c +6 -2
- data/vendor/libgit2/src/status.c +9 -4
- data/vendor/libgit2/src/strarray.c +64 -0
- 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 +113 -207
- 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 +10 -9
- 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 +134 -66
- data/vendor/libgit2/src/submodule.h +9 -9
- data/vendor/libgit2/src/sysdir.c +8 -26
- data/vendor/libgit2/src/sysdir.h +0 -11
- data/vendor/libgit2/src/tag.c +49 -11
- data/vendor/libgit2/src/thread.c +140 -0
- data/vendor/libgit2/src/thread.h +479 -0
- data/vendor/libgit2/src/threadstate.c +84 -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/trailer.c +1 -1
- data/vendor/libgit2/src/transaction.c +21 -9
- 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 +17 -7
- data/vendor/libgit2/src/transports/credential_helpers.c +2 -0
- 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 +68 -38
- data/vendor/libgit2/src/transports/httpclient.h +1 -1
- data/vendor/libgit2/src/transports/local.c +5 -5
- data/vendor/libgit2/src/transports/smart.c +14 -9
- 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 +55 -21
- data/vendor/libgit2/src/transports/winhttp.c +157 -89
- 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 +16 -1
- 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 +75 -184
- data/vendor/libgit2/src/util.h +34 -40
- data/vendor/libgit2/src/vector.c +23 -19
- data/vendor/libgit2/src/vector.h +4 -2
- data/vendor/libgit2/src/win32/findfile.c +5 -3
- data/vendor/libgit2/src/win32/git2.rc +18 -3
- 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 +23 -25
- data/vendor/libgit2/src/win32/path_w32.h +0 -1
- data/vendor/libgit2/src/win32/posix.h +6 -6
- data/vendor/libgit2/src/win32/posix_w32.c +86 -7
- 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 +36 -14
- data/vendor/libgit2/src/zstream.c +1 -1
- metadata +65 -42
- data/vendor/libgit2/cmake/Modules/CheckPrototypeDefinition.c.in +0 -29
- data/vendor/libgit2/cmake/Modules/CheckPrototypeDefinition.cmake +0 -96
- 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 -361
- 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 -246
- 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
@@ -5,29 +5,95 @@
|
|
5
5
|
* a Linking Exception. For full terms see the included COPYING file.
|
6
6
|
*/
|
7
7
|
|
8
|
-
#include "
|
9
|
-
|
10
|
-
#ifdef GIT_OPENSSL
|
11
|
-
# include <openssl/err.h>
|
12
|
-
#endif
|
13
|
-
|
14
|
-
#ifdef GIT_MBEDTLS
|
15
|
-
# include <mbedtls/error.h>
|
16
|
-
#endif
|
8
|
+
#include "libgit2.h"
|
17
9
|
|
18
10
|
#include <git2.h>
|
19
11
|
#include "alloc.h"
|
20
|
-
#include "sysdir.h"
|
21
12
|
#include "cache.h"
|
22
|
-
#include "
|
13
|
+
#include "common.h"
|
14
|
+
#include "filter.h"
|
15
|
+
#include "hash.h"
|
16
|
+
#include "index.h"
|
17
|
+
#include "merge_driver.h"
|
18
|
+
#include "pool.h"
|
19
|
+
#include "mwindow.h"
|
23
20
|
#include "object.h"
|
24
21
|
#include "odb.h"
|
25
22
|
#include "refs.h"
|
26
|
-
#include "
|
23
|
+
#include "runtime.h"
|
24
|
+
#include "sysdir.h"
|
25
|
+
#include "thread.h"
|
26
|
+
#include "threadstate.h"
|
27
|
+
#include "git2/global.h"
|
28
|
+
#include "streams/registry.h"
|
29
|
+
#include "streams/mbedtls.h"
|
30
|
+
#include "streams/openssl.h"
|
27
31
|
#include "transports/smart.h"
|
28
32
|
#include "transports/http.h"
|
29
|
-
#include "
|
30
|
-
|
33
|
+
#include "transports/ssh.h"
|
34
|
+
|
35
|
+
#ifdef GIT_WIN32
|
36
|
+
# include "win32/w32_leakcheck.h"
|
37
|
+
#endif
|
38
|
+
|
39
|
+
/* Declarations for tuneable settings */
|
40
|
+
extern size_t git_mwindow__window_size;
|
41
|
+
extern size_t git_mwindow__mapped_limit;
|
42
|
+
extern size_t git_mwindow__file_limit;
|
43
|
+
extern size_t git_indexer__max_objects;
|
44
|
+
extern bool git_disable_pack_keep_file_checks;
|
45
|
+
extern int git_odb__packed_priority;
|
46
|
+
extern int git_odb__loose_priority;
|
47
|
+
|
48
|
+
char *git__user_agent;
|
49
|
+
char *git__ssl_ciphers;
|
50
|
+
|
51
|
+
static void libgit2_settings_global_shutdown(void)
|
52
|
+
{
|
53
|
+
git__free(git__user_agent);
|
54
|
+
git__free(git__ssl_ciphers);
|
55
|
+
git_repository__free_extensions();
|
56
|
+
}
|
57
|
+
|
58
|
+
static int git_libgit2_settings_global_init(void)
|
59
|
+
{
|
60
|
+
return git_runtime_shutdown_register(libgit2_settings_global_shutdown);
|
61
|
+
}
|
62
|
+
|
63
|
+
int git_libgit2_init(void)
|
64
|
+
{
|
65
|
+
static git_runtime_init_fn init_fns[] = {
|
66
|
+
#ifdef GIT_WIN32
|
67
|
+
git_win32_leakcheck_global_init,
|
68
|
+
#endif
|
69
|
+
git_allocator_global_init,
|
70
|
+
git_threadstate_global_init,
|
71
|
+
git_threads_global_init,
|
72
|
+
git_hash_global_init,
|
73
|
+
git_sysdir_global_init,
|
74
|
+
git_filter_global_init,
|
75
|
+
git_merge_driver_global_init,
|
76
|
+
git_transport_ssh_global_init,
|
77
|
+
git_stream_registry_global_init,
|
78
|
+
git_openssl_stream_global_init,
|
79
|
+
git_mbedtls_stream_global_init,
|
80
|
+
git_mwindow_global_init,
|
81
|
+
git_pool_global_init,
|
82
|
+
git_libgit2_settings_global_init
|
83
|
+
};
|
84
|
+
|
85
|
+
return git_runtime_init(init_fns, ARRAY_SIZE(init_fns));
|
86
|
+
}
|
87
|
+
|
88
|
+
int git_libgit2_init_count(void)
|
89
|
+
{
|
90
|
+
return git_runtime_init_count();
|
91
|
+
}
|
92
|
+
|
93
|
+
int git_libgit2_shutdown(void)
|
94
|
+
{
|
95
|
+
return git_runtime_shutdown();
|
96
|
+
}
|
31
97
|
|
32
98
|
int git_libgit2_version(int *major, int *minor, int *rev)
|
33
99
|
{
|
@@ -56,40 +122,30 @@ int git_libgit2_features(void)
|
|
56
122
|
;
|
57
123
|
}
|
58
124
|
|
59
|
-
|
60
|
-
extern size_t git_mwindow__window_size;
|
61
|
-
extern size_t git_mwindow__mapped_limit;
|
62
|
-
extern size_t git_indexer__max_objects;
|
63
|
-
extern bool git_disable_pack_keep_file_checks;
|
64
|
-
|
65
|
-
static int config_level_to_sysdir(int config_level)
|
125
|
+
static int config_level_to_sysdir(int *out, int config_level)
|
66
126
|
{
|
67
|
-
int val = -1;
|
68
|
-
|
69
127
|
switch (config_level) {
|
70
128
|
case GIT_CONFIG_LEVEL_SYSTEM:
|
71
|
-
|
72
|
-
|
129
|
+
*out = GIT_SYSDIR_SYSTEM;
|
130
|
+
return 0;
|
73
131
|
case GIT_CONFIG_LEVEL_XDG:
|
74
|
-
|
75
|
-
|
132
|
+
*out = GIT_SYSDIR_XDG;
|
133
|
+
return 0;
|
76
134
|
case GIT_CONFIG_LEVEL_GLOBAL:
|
77
|
-
|
78
|
-
|
135
|
+
*out = GIT_SYSDIR_GLOBAL;
|
136
|
+
return 0;
|
79
137
|
case GIT_CONFIG_LEVEL_PROGRAMDATA:
|
80
|
-
|
81
|
-
|
138
|
+
*out = GIT_SYSDIR_PROGRAMDATA;
|
139
|
+
return 0;
|
82
140
|
default:
|
83
|
-
|
84
|
-
GIT_ERROR_INVALID, "invalid config path selector %d", config_level);
|
141
|
+
break;
|
85
142
|
}
|
86
143
|
|
87
|
-
|
144
|
+
git_error_set(
|
145
|
+
GIT_ERROR_INVALID, "invalid config path selector %d", config_level);
|
146
|
+
return -1;
|
88
147
|
}
|
89
148
|
|
90
|
-
extern char *git__user_agent;
|
91
|
-
extern char *git__ssl_ciphers;
|
92
|
-
|
93
149
|
const char *git_libgit2__user_agent(void)
|
94
150
|
{
|
95
151
|
return git__user_agent;
|
@@ -124,13 +180,24 @@ int git_libgit2_opts(int key, ...)
|
|
124
180
|
*(va_arg(ap, size_t *)) = git_mwindow__mapped_limit;
|
125
181
|
break;
|
126
182
|
|
183
|
+
case GIT_OPT_SET_MWINDOW_FILE_LIMIT:
|
184
|
+
git_mwindow__file_limit = va_arg(ap, size_t);
|
185
|
+
break;
|
186
|
+
|
187
|
+
case GIT_OPT_GET_MWINDOW_FILE_LIMIT:
|
188
|
+
*(va_arg(ap, size_t *)) = git_mwindow__file_limit;
|
189
|
+
break;
|
190
|
+
|
127
191
|
case GIT_OPT_GET_SEARCH_PATH:
|
128
|
-
|
192
|
+
{
|
193
|
+
int sysdir = va_arg(ap, int);
|
129
194
|
git_buf *out = va_arg(ap, git_buf *);
|
130
195
|
const git_buf *tmp;
|
196
|
+
int level;
|
131
197
|
|
132
|
-
|
133
|
-
|
198
|
+
if ((error = config_level_to_sysdir(&level, sysdir)) < 0 ||
|
199
|
+
(error = git_buf_sanitize(out)) < 0 ||
|
200
|
+
(error = git_sysdir_get(&tmp, level)) < 0)
|
134
201
|
break;
|
135
202
|
|
136
203
|
error = git_buf_sets(out, tmp->ptr);
|
@@ -138,8 +205,12 @@ int git_libgit2_opts(int key, ...)
|
|
138
205
|
break;
|
139
206
|
|
140
207
|
case GIT_OPT_SET_SEARCH_PATH:
|
141
|
-
|
142
|
-
|
208
|
+
{
|
209
|
+
int level;
|
210
|
+
|
211
|
+
if ((error = config_level_to_sysdir(&level, va_arg(ap, int))) >= 0)
|
212
|
+
error = git_sysdir_set(level, va_arg(ap, const char *));
|
213
|
+
}
|
143
214
|
break;
|
144
215
|
|
145
216
|
case GIT_OPT_SET_CACHE_OBJECT_LIMIT:
|
@@ -168,8 +239,8 @@ int git_libgit2_opts(int key, ...)
|
|
168
239
|
git_buf *out = va_arg(ap, git_buf *);
|
169
240
|
const git_buf *tmp;
|
170
241
|
|
171
|
-
git_buf_sanitize(out)
|
172
|
-
|
242
|
+
if ((error = git_buf_sanitize(out)) < 0 ||
|
243
|
+
(error = git_sysdir_get(&tmp, GIT_SYSDIR_TEMPLATE)) < 0)
|
173
244
|
break;
|
174
245
|
|
175
246
|
error = git_buf_sets(out, tmp->ptr);
|
@@ -191,10 +262,7 @@ int git_libgit2_opts(int key, ...)
|
|
191
262
|
{
|
192
263
|
const char *file = va_arg(ap, const char *);
|
193
264
|
const char *path = va_arg(ap, const char *);
|
194
|
-
|
195
|
-
error = git_mbedtls__set_cert_location(file, 0);
|
196
|
-
if (error && path)
|
197
|
-
error = git_mbedtls__set_cert_location(path, 1);
|
265
|
+
error = git_mbedtls__set_cert_location(file, path);
|
198
266
|
}
|
199
267
|
#else
|
200
268
|
git_error_set(GIT_ERROR_SSL, "TLS backend doesn't support certificate locations");
|
@@ -238,7 +306,8 @@ int git_libgit2_opts(int key, ...)
|
|
238
306
|
case GIT_OPT_GET_USER_AGENT:
|
239
307
|
{
|
240
308
|
git_buf *out = va_arg(ap, git_buf *);
|
241
|
-
git_buf_sanitize(out)
|
309
|
+
if ((error = git_buf_sanitize(out)) < 0)
|
310
|
+
break;
|
242
311
|
error = git_buf_sets(out, git__user_agent);
|
243
312
|
}
|
244
313
|
break;
|
@@ -291,6 +360,36 @@ int git_libgit2_opts(int key, ...)
|
|
291
360
|
git_http__expect_continue = (va_arg(ap, int) != 0);
|
292
361
|
break;
|
293
362
|
|
363
|
+
case GIT_OPT_SET_ODB_PACKED_PRIORITY:
|
364
|
+
git_odb__packed_priority = va_arg(ap, int);
|
365
|
+
break;
|
366
|
+
|
367
|
+
case GIT_OPT_SET_ODB_LOOSE_PRIORITY:
|
368
|
+
git_odb__loose_priority = va_arg(ap, int);
|
369
|
+
break;
|
370
|
+
|
371
|
+
case GIT_OPT_SET_EXTENSIONS:
|
372
|
+
{
|
373
|
+
const char **extensions = va_arg(ap, const char **);
|
374
|
+
size_t len = va_arg(ap, size_t);
|
375
|
+
error = git_repository__set_extensions(extensions, len);
|
376
|
+
}
|
377
|
+
break;
|
378
|
+
|
379
|
+
case GIT_OPT_GET_EXTENSIONS:
|
380
|
+
{
|
381
|
+
git_strarray *out = va_arg(ap, git_strarray *);
|
382
|
+
char **extensions;
|
383
|
+
size_t len;
|
384
|
+
|
385
|
+
if ((error = git_repository__extensions(&extensions, &len)) < 0)
|
386
|
+
break;
|
387
|
+
|
388
|
+
out->strings = extensions;
|
389
|
+
out->count = len;
|
390
|
+
}
|
391
|
+
break;
|
392
|
+
|
294
393
|
default:
|
295
394
|
git_error_set(GIT_ERROR_INVALID, "invalid option key");
|
296
395
|
error = -1;
|
@@ -0,0 +1,15 @@
|
|
1
|
+
/*
|
2
|
+
* Copyright (C) the libgit2 contributors. All rights reserved.
|
3
|
+
*
|
4
|
+
* This file is part of libgit2, distributed under the GNU GPL v2 with
|
5
|
+
* a Linking Exception. For full terms see the included COPYING file.
|
6
|
+
*/
|
7
|
+
#ifndef INCLUDE_libgit2_h__
|
8
|
+
#define INCLUDE_libgit2_h__
|
9
|
+
|
10
|
+
extern int git_libgit2_init_count(void);
|
11
|
+
|
12
|
+
extern const char *git_libgit2__user_agent(void);
|
13
|
+
extern const char *git_libgit2__ssl_ciphers(void);
|
14
|
+
|
15
|
+
#endif
|
@@ -43,7 +43,8 @@ static int mailmap_entry_cmp(const void *a_raw, const void *b_raw)
|
|
43
43
|
const git_mailmap_entry *b = (const git_mailmap_entry *)b_raw;
|
44
44
|
int cmp;
|
45
45
|
|
46
|
-
|
46
|
+
GIT_ASSERT_ARG(a && a->replace_email);
|
47
|
+
GIT_ASSERT_ARG(b && b->replace_email);
|
47
48
|
|
48
49
|
cmp = git__strcmp(a->replace_email, b->replace_email);
|
49
50
|
if (cmp)
|
@@ -185,7 +186,8 @@ static int mailmap_add_entry_unterminated(
|
|
185
186
|
git_mailmap_entry *entry = git__calloc(1, sizeof(git_mailmap_entry));
|
186
187
|
GIT_ERROR_CHECK_ALLOC(entry);
|
187
188
|
|
188
|
-
|
189
|
+
GIT_ASSERT_ARG(mm);
|
190
|
+
GIT_ASSERT_ARG(replace_email && *replace_email);
|
189
191
|
|
190
192
|
if (real_name_size > 0) {
|
191
193
|
entry->real_name = git__substrdup(real_name, real_name_size);
|
@@ -290,7 +292,8 @@ static int mailmap_add_blob(
|
|
290
292
|
git_buf content = GIT_BUF_INIT;
|
291
293
|
int error;
|
292
294
|
|
293
|
-
|
295
|
+
GIT_ASSERT_ARG(mm);
|
296
|
+
GIT_ASSERT_ARG(repo);
|
294
297
|
|
295
298
|
error = git_revparse_single(&object, repo, rev);
|
296
299
|
if (error < 0)
|
@@ -327,6 +330,10 @@ static int mailmap_add_file_ondisk(
|
|
327
330
|
if (error < 0)
|
328
331
|
goto cleanup;
|
329
332
|
|
333
|
+
error = git_path_validate_workdir_buf(repo, &fullpath);
|
334
|
+
if (error < 0)
|
335
|
+
goto cleanup;
|
336
|
+
|
330
337
|
error = git_futils_readbuffer(&content, fullpath.ptr);
|
331
338
|
if (error < 0)
|
332
339
|
goto cleanup;
|
@@ -350,8 +357,6 @@ static void mailmap_add_from_repository(git_mailmap *mm, git_repository *repo)
|
|
350
357
|
const char *rev = NULL;
|
351
358
|
const char *path = NULL;
|
352
359
|
|
353
|
-
assert(mm && repo);
|
354
|
-
|
355
360
|
/* If we're in a bare repo, default blob to 'HEAD:.mailmap' */
|
356
361
|
if (repo->is_bare)
|
357
362
|
rev = MM_BLOB_DEFAULT;
|
@@ -389,9 +394,14 @@ static void mailmap_add_from_repository(git_mailmap *mm, git_repository *repo)
|
|
389
394
|
|
390
395
|
int git_mailmap_from_repository(git_mailmap **out, git_repository *repo)
|
391
396
|
{
|
392
|
-
int error
|
393
|
-
|
397
|
+
int error;
|
398
|
+
|
399
|
+
GIT_ASSERT_ARG(out);
|
400
|
+
GIT_ASSERT_ARG(repo);
|
401
|
+
|
402
|
+
if ((error = git_mailmap_new(out)) < 0)
|
394
403
|
return error;
|
404
|
+
|
395
405
|
mailmap_add_from_repository(*out, repo);
|
396
406
|
return 0;
|
397
407
|
}
|
@@ -408,7 +418,7 @@ const git_mailmap_entry *git_mailmap_entry_lookup(
|
|
408
418
|
git_mailmap_entry needle = { NULL };
|
409
419
|
needle.replace_email = (char *)email;
|
410
420
|
|
411
|
-
|
421
|
+
GIT_ASSERT_ARG_WITH_RETVAL(email, NULL);
|
412
422
|
|
413
423
|
if (!mm)
|
414
424
|
return NULL;
|
@@ -431,7 +441,8 @@ const git_mailmap_entry *git_mailmap_entry_lookup(
|
|
431
441
|
if (git__strcmp(entry->replace_email, email))
|
432
442
|
break; /* it's a different email, so we're done looking */
|
433
443
|
|
434
|
-
|
444
|
+
/* should be specific */
|
445
|
+
GIT_ASSERT_WITH_RETVAL(entry->replace_name, NULL);
|
435
446
|
if (!name || !git__strcmp(entry->replace_name, name))
|
436
447
|
return entry;
|
437
448
|
}
|
@@ -447,7 +458,9 @@ int git_mailmap_resolve(
|
|
447
458
|
const char *name, const char *email)
|
448
459
|
{
|
449
460
|
const git_mailmap_entry *entry = NULL;
|
450
|
-
|
461
|
+
|
462
|
+
GIT_ASSERT(name);
|
463
|
+
GIT_ASSERT(email);
|
451
464
|
|
452
465
|
*real_name = name;
|
453
466
|
*real_email = email;
|
data/vendor/libgit2/src/map.h
CHANGED
@@ -36,9 +36,9 @@ typedef struct { /* memory mapped buffer */
|
|
36
36
|
} git_map;
|
37
37
|
|
38
38
|
#define GIT_MMAP_VALIDATE(out, len, prot, flags) do { \
|
39
|
-
|
40
|
-
|
41
|
-
|
39
|
+
GIT_ASSERT(out != NULL && len > 0); \
|
40
|
+
GIT_ASSERT((prot & GIT_PROT_WRITE) || (prot & GIT_PROT_READ)); \
|
41
|
+
GIT_ASSERT((flags & GIT_MAP_FIXED) == 0); } while (0)
|
42
42
|
|
43
43
|
extern int p_mmap(git_map *out, size_t len, int prot, int flags, int fd, off64_t offset);
|
44
44
|
extern int p_munmap(git_map *map);
|