rugged 0.19.0 → 0.28.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/LICENSE +1 -1
- data/README.md +184 -33
- data/ext/rugged/extconf.rb +111 -28
- data/ext/rugged/rugged.c +327 -89
- data/ext/rugged/rugged.h +64 -28
- data/ext/rugged/rugged_allocator.c +89 -0
- data/ext/rugged/rugged_backend.c +17 -0
- data/ext/rugged/rugged_blame.c +278 -0
- data/ext/rugged/rugged_blob.c +301 -75
- data/ext/rugged/rugged_branch.c +92 -242
- data/ext/rugged/rugged_branch_collection.c +388 -0
- data/ext/rugged/rugged_commit.c +575 -79
- data/ext/rugged/rugged_config.c +129 -36
- data/ext/rugged/rugged_cred.c +131 -0
- data/ext/rugged/rugged_diff.c +291 -122
- data/ext/rugged/rugged_diff_delta.c +16 -22
- data/ext/rugged/rugged_diff_hunk.c +35 -51
- data/ext/rugged/rugged_diff_line.c +23 -36
- data/ext/rugged/rugged_index.c +289 -152
- data/ext/rugged/rugged_note.c +50 -60
- data/ext/rugged/rugged_object.c +13 -30
- data/ext/rugged/rugged_patch.c +400 -0
- data/ext/rugged/rugged_rebase.c +397 -0
- data/ext/rugged/rugged_reference.c +76 -346
- data/ext/rugged/rugged_reference_collection.c +423 -0
- data/ext/rugged/rugged_remote.c +438 -461
- data/ext/rugged/rugged_remote_collection.c +435 -0
- data/ext/rugged/rugged_repo.c +1548 -365
- data/ext/rugged/rugged_revwalk.c +378 -99
- data/ext/rugged/rugged_settings.c +86 -23
- data/ext/rugged/rugged_signature.c +47 -37
- data/ext/rugged/rugged_submodule.c +835 -0
- data/ext/rugged/rugged_submodule_collection.c +366 -0
- data/ext/rugged/rugged_tag.c +88 -210
- data/ext/rugged/rugged_tag_collection.c +326 -0
- data/ext/rugged/rugged_tree.c +460 -217
- data/lib/rugged/attributes.rb +46 -0
- data/lib/rugged/blob.rb +33 -0
- data/lib/rugged/branch.rb +12 -16
- data/lib/rugged/commit.rb +9 -0
- data/lib/rugged/console.rb +5 -0
- data/lib/rugged/credentials.rb +48 -0
- data/lib/rugged/diff/delta.rb +6 -2
- data/lib/rugged/diff/hunk.rb +9 -9
- data/lib/rugged/diff/line.rb +28 -5
- data/lib/rugged/diff.rb +7 -1
- data/lib/rugged/index.rb +120 -0
- data/lib/rugged/object.rb +5 -0
- data/lib/rugged/patch.rb +41 -0
- data/lib/rugged/reference.rb +6 -3
- data/lib/rugged/remote.rb +5 -9
- data/lib/rugged/repository.rb +126 -14
- data/lib/rugged/submodule_collection.rb +53 -0
- data/lib/rugged/tag.rb +45 -16
- data/lib/rugged/tree.rb +163 -1
- data/lib/rugged/version.rb +6 -1
- data/lib/rugged/walker.rb +5 -0
- data/lib/rugged.rb +16 -1
- data/vendor/libgit2/AUTHORS +77 -0
- data/vendor/libgit2/CMakeLists.txt +317 -0
- data/vendor/libgit2/COPYING +993 -0
- data/vendor/libgit2/cmake/Modules/AddCFlagIfSupported.cmake +30 -0
- data/vendor/libgit2/cmake/Modules/CheckPrototypeDefinition.c.in +29 -0
- data/vendor/libgit2/cmake/Modules/CheckPrototypeDefinition.cmake +96 -0
- data/vendor/libgit2/cmake/Modules/EnableWarnings.cmake +11 -0
- data/vendor/libgit2/cmake/Modules/FindCoreFoundation.cmake +26 -0
- data/vendor/libgit2/cmake/Modules/FindGSSAPI.cmake +324 -0
- data/vendor/libgit2/cmake/Modules/FindHTTP_Parser.cmake +39 -0
- data/vendor/libgit2/cmake/Modules/FindIconv.cmake +45 -0
- data/vendor/libgit2/cmake/Modules/FindPkgLibraries.cmake +28 -0
- data/vendor/libgit2/cmake/Modules/FindSecurity.cmake +28 -0
- data/vendor/libgit2/cmake/Modules/FindStatNsec.cmake +20 -0
- data/vendor/libgit2/cmake/Modules/FindmbedTLS.cmake +93 -0
- data/vendor/libgit2/cmake/Modules/IdeSplitSources.cmake +22 -0
- data/vendor/libgit2/deps/http-parser/CMakeLists.txt +5 -0
- data/vendor/libgit2/deps/http-parser/COPYING +23 -0
- data/vendor/libgit2/deps/http-parser/http_parser.c +5 -2
- data/vendor/libgit2/deps/http-parser/http_parser.h +2 -0
- data/vendor/libgit2/deps/regex/CMakeLists.txt +2 -0
- data/vendor/libgit2/deps/regex/COPYING +502 -0
- data/vendor/libgit2/deps/regex/regex.c +10 -3
- data/vendor/libgit2/deps/winhttp/CMakeLists.txt +26 -0
- data/vendor/libgit2/deps/winhttp/COPYING.GPL +993 -0
- data/vendor/libgit2/deps/winhttp/COPYING.LGPL +502 -0
- data/vendor/libgit2/deps/winhttp/urlmon.h +45 -0
- data/vendor/libgit2/deps/winhttp/winhttp.def +29 -0
- data/vendor/libgit2/deps/winhttp/winhttp.h +594 -0
- data/vendor/libgit2/deps/winhttp/winhttp64.def +29 -0
- data/vendor/libgit2/deps/zlib/CMakeLists.txt +5 -0
- data/vendor/libgit2/deps/zlib/COPYING +27 -0
- data/vendor/libgit2/deps/zlib/adler32.c +51 -34
- data/vendor/libgit2/deps/zlib/crc32.c +61 -61
- data/vendor/libgit2/deps/zlib/crc32.h +1 -1
- data/vendor/libgit2/deps/zlib/deflate.c +681 -352
- data/vendor/libgit2/deps/zlib/deflate.h +25 -18
- data/vendor/libgit2/deps/zlib/gzguts.h +218 -0
- data/vendor/libgit2/deps/zlib/infback.c +640 -0
- data/vendor/libgit2/deps/zlib/inffast.c +36 -53
- data/vendor/libgit2/deps/zlib/inffixed.h +3 -3
- data/vendor/libgit2/deps/zlib/inflate.c +167 -86
- data/vendor/libgit2/deps/zlib/inflate.h +7 -4
- data/vendor/libgit2/deps/zlib/inftrees.c +24 -50
- data/vendor/libgit2/deps/zlib/trees.c +55 -96
- data/vendor/libgit2/deps/zlib/zconf.h +499 -19
- data/vendor/libgit2/deps/zlib/zlib.h +526 -227
- data/vendor/libgit2/deps/zlib/zutil.c +39 -32
- data/vendor/libgit2/deps/zlib/zutil.h +75 -78
- data/vendor/libgit2/include/git2/annotated_commit.h +125 -0
- data/vendor/libgit2/include/git2/apply.h +129 -0
- data/vendor/libgit2/include/git2/attr.h +36 -21
- data/vendor/libgit2/include/git2/blame.h +229 -0
- data/vendor/libgit2/include/git2/blob.h +81 -44
- data/vendor/libgit2/include/git2/branch.h +81 -42
- data/vendor/libgit2/include/git2/buffer.h +128 -0
- data/vendor/libgit2/include/git2/checkout.h +141 -67
- data/vendor/libgit2/include/git2/cherrypick.h +92 -0
- data/vendor/libgit2/include/git2/clone.h +157 -58
- data/vendor/libgit2/include/git2/commit.h +231 -12
- data/vendor/libgit2/include/git2/common.h +216 -30
- data/vendor/libgit2/include/git2/config.h +274 -48
- data/vendor/libgit2/include/git2/cred_helpers.h +4 -4
- data/vendor/libgit2/include/git2/deprecated.h +253 -0
- data/vendor/libgit2/include/git2/describe.h +189 -0
- data/vendor/libgit2/include/git2/diff.h +985 -575
- data/vendor/libgit2/include/git2/errors.h +93 -52
- data/vendor/libgit2/include/git2/filter.h +217 -0
- data/vendor/libgit2/include/git2/global.h +44 -0
- data/vendor/libgit2/include/git2/graph.h +17 -0
- data/vendor/libgit2/include/git2/ignore.h +2 -2
- data/vendor/libgit2/include/git2/index.h +269 -94
- data/vendor/libgit2/include/git2/indexer.h +44 -12
- data/vendor/libgit2/include/git2/mailmap.h +115 -0
- data/vendor/libgit2/include/git2/merge.h +501 -64
- data/vendor/libgit2/include/git2/message.h +52 -17
- data/vendor/libgit2/include/git2/net.h +11 -5
- data/vendor/libgit2/include/git2/notes.h +120 -16
- data/vendor/libgit2/include/git2/object.h +62 -23
- data/vendor/libgit2/include/git2/odb.h +140 -24
- data/vendor/libgit2/include/git2/odb_backend.h +56 -12
- data/vendor/libgit2/include/git2/oid.h +17 -18
- data/vendor/libgit2/include/git2/oidarray.h +40 -0
- data/vendor/libgit2/include/git2/pack.h +86 -7
- data/vendor/libgit2/include/git2/patch.h +274 -0
- data/vendor/libgit2/include/git2/pathspec.h +280 -0
- data/vendor/libgit2/include/git2/proxy.h +96 -0
- data/vendor/libgit2/include/git2/rebase.h +323 -0
- data/vendor/libgit2/include/git2/reflog.h +12 -9
- data/vendor/libgit2/include/git2/refs.h +241 -46
- data/vendor/libgit2/include/git2/refspec.h +20 -4
- data/vendor/libgit2/include/git2/remote.h +636 -209
- data/vendor/libgit2/include/git2/repository.h +267 -57
- data/vendor/libgit2/include/git2/reset.h +36 -6
- data/vendor/libgit2/include/git2/revert.h +91 -0
- data/vendor/libgit2/include/git2/revparse.h +27 -16
- data/vendor/libgit2/include/git2/revwalk.h +78 -35
- data/vendor/libgit2/include/git2/signature.h +32 -5
- data/vendor/libgit2/include/git2/stash.h +160 -21
- data/vendor/libgit2/include/git2/status.h +92 -30
- data/vendor/libgit2/include/git2/submodule.h +226 -133
- data/vendor/libgit2/include/git2/sys/alloc.h +101 -0
- data/vendor/libgit2/include/git2/sys/commit.h +38 -4
- data/vendor/libgit2/include/git2/sys/config.h +68 -9
- data/vendor/libgit2/include/git2/sys/diff.h +94 -0
- data/vendor/libgit2/include/git2/sys/filter.h +332 -0
- data/vendor/libgit2/include/git2/sys/hashsig.h +106 -0
- data/vendor/libgit2/include/git2/sys/index.h +6 -5
- data/vendor/libgit2/include/git2/sys/mempack.h +86 -0
- data/vendor/libgit2/include/git2/sys/merge.h +182 -0
- data/vendor/libgit2/include/git2/sys/odb_backend.h +66 -28
- data/vendor/libgit2/include/git2/sys/openssl.h +38 -0
- data/vendor/libgit2/include/git2/sys/path.h +64 -0
- data/vendor/libgit2/include/git2/sys/refdb_backend.h +79 -19
- data/vendor/libgit2/include/git2/sys/reflog.h +21 -0
- data/vendor/libgit2/include/git2/sys/refs.h +13 -2
- data/vendor/libgit2/include/git2/sys/repository.h +64 -1
- data/vendor/libgit2/include/git2/sys/stream.h +138 -0
- data/vendor/libgit2/include/git2/sys/time.h +31 -0
- data/vendor/libgit2/include/git2/sys/transport.h +439 -0
- data/vendor/libgit2/include/git2/tag.h +11 -2
- data/vendor/libgit2/include/git2/trace.h +1 -1
- data/vendor/libgit2/include/git2/transaction.h +121 -0
- data/vendor/libgit2/include/git2/transport.h +261 -292
- data/vendor/libgit2/include/git2/tree.h +111 -21
- data/vendor/libgit2/include/git2/types.h +244 -32
- data/vendor/libgit2/include/git2/version.h +5 -2
- data/vendor/libgit2/include/git2/worktree.h +255 -0
- data/vendor/libgit2/include/git2.h +50 -40
- data/vendor/libgit2/libgit2.pc.in +13 -0
- data/vendor/libgit2/src/CMakeLists.txt +525 -0
- data/vendor/libgit2/src/alloc.c +55 -0
- data/vendor/libgit2/src/alloc.h +40 -0
- data/vendor/libgit2/src/annotated_commit.c +228 -0
- data/vendor/libgit2/src/annotated_commit.h +52 -0
- data/vendor/libgit2/src/apply.c +855 -0
- data/vendor/libgit2/src/apply.h +25 -0
- data/vendor/libgit2/src/array.h +74 -16
- data/vendor/libgit2/src/attr.c +239 -408
- data/vendor/libgit2/src/attr.h +3 -33
- data/vendor/libgit2/src/attr_file.c +424 -156
- data/vendor/libgit2/src/attr_file.h +95 -23
- data/vendor/libgit2/src/attrcache.c +469 -0
- data/vendor/libgit2/src/attrcache.h +37 -5
- data/vendor/libgit2/src/bitvec.h +75 -0
- data/vendor/libgit2/src/blame.c +532 -0
- data/vendor/libgit2/src/blame.h +95 -0
- data/vendor/libgit2/src/blame_git.c +668 -0
- data/vendor/libgit2/src/blame_git.h +22 -0
- data/vendor/libgit2/src/blob.c +233 -129
- data/vendor/libgit2/src/blob.h +29 -1
- data/vendor/libgit2/src/branch.c +295 -197
- data/vendor/libgit2/src/branch.h +2 -0
- data/vendor/libgit2/src/buf_text.c +52 -27
- data/vendor/libgit2/src/buf_text.h +7 -7
- data/vendor/libgit2/src/buffer.c +609 -52
- data/vendor/libgit2/src/buffer.h +68 -23
- data/vendor/libgit2/src/cache.c +48 -51
- data/vendor/libgit2/src/cache.h +6 -4
- data/vendor/libgit2/src/cc-compat.h +35 -7
- data/vendor/libgit2/src/checkout.c +1827 -483
- data/vendor/libgit2/src/checkout.h +4 -1
- data/vendor/libgit2/src/cherrypick.c +230 -0
- data/vendor/libgit2/src/clone.c +338 -258
- data/vendor/libgit2/src/{compress.h → clone.h} +5 -5
- data/vendor/libgit2/src/commit.c +711 -124
- data/vendor/libgit2/src/commit.h +10 -3
- data/vendor/libgit2/src/commit_list.c +21 -14
- data/vendor/libgit2/src/commit_list.h +9 -3
- data/vendor/libgit2/src/common.h +153 -13
- data/vendor/libgit2/src/config.c +871 -242
- data/vendor/libgit2/src/config.h +58 -14
- data/vendor/libgit2/src/config_backend.h +84 -0
- data/vendor/libgit2/src/config_cache.c +44 -18
- data/vendor/libgit2/src/config_entries.c +259 -0
- data/vendor/libgit2/src/config_entries.h +23 -0
- data/vendor/libgit2/src/config_file.c +837 -1113
- data/vendor/libgit2/src/config_mem.c +224 -0
- data/vendor/libgit2/src/config_parse.c +558 -0
- data/vendor/libgit2/src/config_parse.h +64 -0
- data/vendor/libgit2/src/crlf.c +290 -195
- data/vendor/libgit2/src/date.c +35 -7
- data/vendor/libgit2/src/delta.c +275 -71
- data/vendor/libgit2/src/delta.h +80 -58
- data/vendor/libgit2/src/describe.c +893 -0
- data/vendor/libgit2/src/diff.c +330 -1128
- data/vendor/libgit2/src/diff.h +25 -67
- data/vendor/libgit2/src/diff_driver.c +225 -109
- data/vendor/libgit2/src/diff_driver.h +5 -2
- data/vendor/libgit2/src/diff_file.c +128 -103
- data/vendor/libgit2/src/diff_file.h +17 -12
- data/vendor/libgit2/src/diff_generate.c +1622 -0
- data/vendor/libgit2/src/diff_generate.h +128 -0
- data/vendor/libgit2/src/diff_parse.c +108 -0
- data/vendor/libgit2/src/diff_parse.h +20 -0
- data/vendor/libgit2/src/diff_print.c +578 -218
- data/vendor/libgit2/src/diff_stats.c +362 -0
- data/vendor/libgit2/src/diff_tform.c +429 -257
- data/vendor/libgit2/src/diff_tform.h +25 -0
- data/vendor/libgit2/src/diff_xdiff.c +143 -46
- data/vendor/libgit2/src/diff_xdiff.h +12 -5
- data/vendor/libgit2/src/errors.c +150 -34
- data/vendor/libgit2/src/features.h.in +37 -0
- data/vendor/libgit2/src/fetch.c +69 -46
- data/vendor/libgit2/src/fetch.h +6 -12
- data/vendor/libgit2/src/fetchhead.c +40 -33
- data/vendor/libgit2/src/fetchhead.h +5 -4
- data/vendor/libgit2/src/filebuf.c +163 -61
- data/vendor/libgit2/src/filebuf.h +13 -7
- data/vendor/libgit2/src/fileops.c +549 -407
- data/vendor/libgit2/src/fileops.h +97 -106
- data/vendor/libgit2/src/filter.c +989 -46
- data/vendor/libgit2/src/filter.h +21 -70
- data/vendor/libgit2/src/fnmatch.c +67 -11
- data/vendor/libgit2/src/fnmatch.h +27 -7
- data/vendor/libgit2/src/global.c +257 -63
- data/vendor/libgit2/src/global.h +19 -0
- data/vendor/libgit2/src/graph.c +39 -23
- data/vendor/libgit2/src/hash/hash_collisiondetect.h +51 -0
- data/vendor/libgit2/src/hash/hash_common_crypto.h +61 -0
- data/vendor/libgit2/src/hash/hash_generic.c +3 -3
- data/vendor/libgit2/src/hash/hash_generic.h +10 -5
- data/vendor/libgit2/src/hash/hash_mbedtls.c +38 -0
- data/vendor/libgit2/src/hash/hash_mbedtls.h +24 -0
- data/vendor/libgit2/src/hash/hash_openssl.h +26 -8
- data/vendor/libgit2/src/hash/hash_win32.c +71 -43
- data/vendor/libgit2/src/hash/hash_win32.h +4 -3
- data/vendor/libgit2/src/hash/sha1dc/sha1.c +1900 -0
- data/vendor/libgit2/src/hash/sha1dc/sha1.h +110 -0
- data/vendor/libgit2/src/hash/sha1dc/ubc_check.c +372 -0
- data/vendor/libgit2/src/hash/sha1dc/ubc_check.h +52 -0
- data/vendor/libgit2/src/hash.c +0 -1
- data/vendor/libgit2/src/hash.h +13 -6
- data/vendor/libgit2/src/hashsig.c +121 -126
- data/vendor/libgit2/src/ident.c +129 -0
- data/vendor/libgit2/src/idxmap.c +153 -0
- data/vendor/libgit2/src/idxmap.h +41 -0
- data/vendor/libgit2/src/ignore.c +362 -123
- data/vendor/libgit2/src/ignore.h +16 -4
- data/vendor/libgit2/src/index.c +2131 -692
- data/vendor/libgit2/src/index.h +138 -6
- data/vendor/libgit2/src/indexer.c +866 -266
- data/vendor/libgit2/src/indexer.h +16 -0
- data/vendor/libgit2/src/integer.h +106 -0
- data/vendor/libgit2/src/iterator.c +1888 -967
- data/vendor/libgit2/src/iterator.h +130 -67
- data/vendor/libgit2/src/khash.h +43 -29
- data/vendor/libgit2/src/mailmap.c +485 -0
- data/vendor/libgit2/src/mailmap.h +35 -0
- data/vendor/libgit2/src/map.h +1 -1
- data/vendor/libgit2/src/merge.c +1679 -479
- data/vendor/libgit2/src/merge.h +89 -22
- data/vendor/libgit2/src/merge_driver.c +426 -0
- data/vendor/libgit2/src/merge_driver.h +62 -0
- data/vendor/libgit2/src/merge_file.c +238 -101
- data/vendor/libgit2/src/message.c +4 -28
- data/vendor/libgit2/src/message.h +3 -1
- data/vendor/libgit2/src/mwindow.c +123 -15
- data/vendor/libgit2/src/mwindow.h +10 -1
- data/vendor/libgit2/src/netops.c +178 -499
- data/vendor/libgit2/src/netops.h +51 -27
- data/vendor/libgit2/src/notes.c +251 -94
- data/vendor/libgit2/src/notes.h +5 -2
- data/vendor/libgit2/src/object.c +253 -67
- data/vendor/libgit2/src/object.h +40 -2
- data/vendor/libgit2/src/object_api.c +30 -11
- data/vendor/libgit2/src/odb.c +765 -201
- data/vendor/libgit2/src/odb.h +40 -8
- data/vendor/libgit2/src/odb_loose.c +560 -346
- data/vendor/libgit2/src/odb_mempack.c +185 -0
- data/vendor/libgit2/src/odb_pack.c +117 -73
- data/vendor/libgit2/src/offmap.c +113 -0
- data/vendor/libgit2/src/offmap.h +32 -42
- data/vendor/libgit2/src/oid.c +45 -25
- data/vendor/libgit2/src/oid.h +26 -8
- data/vendor/libgit2/src/oidarray.c +34 -0
- data/vendor/libgit2/src/oidarray.h +20 -0
- data/vendor/libgit2/src/oidmap.c +125 -0
- data/vendor/libgit2/src/oidmap.h +30 -17
- data/vendor/libgit2/src/pack-objects.c +688 -265
- data/vendor/libgit2/src/pack-objects.h +27 -13
- data/vendor/libgit2/src/pack.c +418 -202
- data/vendor/libgit2/src/pack.h +25 -16
- data/vendor/libgit2/src/parse.c +124 -0
- data/vendor/libgit2/src/parse.h +61 -0
- data/vendor/libgit2/src/patch.c +223 -0
- data/vendor/libgit2/src/patch.h +68 -0
- data/vendor/libgit2/src/patch_generate.c +901 -0
- data/vendor/libgit2/src/patch_generate.h +69 -0
- data/vendor/libgit2/src/patch_parse.c +1136 -0
- data/vendor/libgit2/src/patch_parse.h +51 -0
- data/vendor/libgit2/src/path.c +1247 -241
- data/vendor/libgit2/src/path.h +353 -57
- data/vendor/libgit2/src/pathspec.c +586 -58
- data/vendor/libgit2/src/pathspec.h +37 -15
- data/vendor/libgit2/src/pool.c +134 -221
- data/vendor/libgit2/src/pool.h +38 -50
- data/vendor/libgit2/src/posix.c +76 -10
- data/vendor/libgit2/src/posix.h +74 -32
- data/vendor/libgit2/src/pqueue.c +79 -117
- data/vendor/libgit2/src/pqueue.h +38 -82
- data/vendor/libgit2/src/proxy.c +39 -0
- data/vendor/libgit2/src/proxy.h +17 -0
- data/vendor/libgit2/src/push.c +178 -279
- data/vendor/libgit2/src/push.h +93 -4
- data/vendor/libgit2/src/reader.c +265 -0
- data/vendor/libgit2/src/reader.h +107 -0
- data/vendor/libgit2/src/rebase.c +1364 -0
- data/vendor/libgit2/src/refdb.c +74 -19
- data/vendor/libgit2/src/refdb.h +16 -3
- data/vendor/libgit2/src/refdb_fs.c +1472 -603
- data/vendor/libgit2/src/refdb_fs.h +4 -0
- data/vendor/libgit2/src/reflog.c +40 -330
- data/vendor/libgit2/src/reflog.h +8 -2
- data/vendor/libgit2/src/refs.c +641 -225
- data/vendor/libgit2/src/refs.h +53 -6
- data/vendor/libgit2/src/refspec.c +175 -62
- data/vendor/libgit2/src/refspec.h +10 -25
- data/vendor/libgit2/src/remote.c +1741 -723
- data/vendor/libgit2/src/remote.h +17 -5
- data/vendor/libgit2/src/repository.c +1505 -421
- data/vendor/libgit2/src/repository.h +95 -15
- data/vendor/libgit2/src/reset.c +63 -26
- data/vendor/libgit2/src/revert.c +232 -0
- data/vendor/libgit2/src/revparse.c +94 -80
- data/vendor/libgit2/src/revwalk.c +427 -194
- data/vendor/libgit2/src/revwalk.h +14 -5
- data/vendor/libgit2/src/settings.c +290 -0
- data/vendor/libgit2/src/sha1_lookup.c +16 -159
- data/vendor/libgit2/src/sha1_lookup.h +5 -4
- data/vendor/libgit2/src/signature.c +138 -26
- data/vendor/libgit2/src/signature.h +5 -0
- data/vendor/libgit2/src/sortedcache.c +395 -0
- data/vendor/libgit2/src/sortedcache.h +180 -0
- data/vendor/libgit2/src/stash.c +629 -168
- data/vendor/libgit2/src/status.c +125 -75
- data/vendor/libgit2/src/status.h +4 -2
- data/vendor/libgit2/src/stdalloc.c +120 -0
- data/vendor/libgit2/src/stdalloc.h +17 -0
- data/vendor/libgit2/src/stream.h +86 -0
- data/vendor/libgit2/src/streams/mbedtls.c +483 -0
- data/vendor/libgit2/src/streams/mbedtls.h +23 -0
- data/vendor/libgit2/src/streams/openssl.c +789 -0
- data/vendor/libgit2/src/streams/openssl.h +23 -0
- data/vendor/libgit2/src/streams/registry.c +118 -0
- data/vendor/libgit2/src/streams/registry.h +19 -0
- data/vendor/libgit2/src/streams/socket.c +235 -0
- data/vendor/libgit2/src/streams/socket.h +23 -0
- data/vendor/libgit2/src/streams/stransport.c +323 -0
- data/vendor/libgit2/src/streams/stransport.h +21 -0
- data/vendor/libgit2/src/streams/tls.c +73 -0
- data/vendor/libgit2/src/streams/tls.h +31 -0
- data/vendor/libgit2/src/strmap.c +147 -0
- data/vendor/libgit2/src/strmap.h +46 -51
- data/vendor/libgit2/src/strnlen.h +24 -0
- data/vendor/libgit2/src/submodule.c +1633 -877
- data/vendor/libgit2/src/submodule.h +83 -21
- data/vendor/libgit2/src/sysdir.c +355 -0
- data/vendor/libgit2/src/sysdir.h +119 -0
- data/vendor/libgit2/src/tag.c +87 -62
- data/vendor/libgit2/src/tag.h +4 -1
- data/vendor/libgit2/src/thread-utils.c +3 -0
- data/vendor/libgit2/src/thread-utils.h +71 -35
- data/vendor/libgit2/src/trace.c +4 -4
- data/vendor/libgit2/src/trace.h +11 -3
- data/vendor/libgit2/src/trailer.c +416 -0
- data/vendor/libgit2/src/transaction.c +382 -0
- data/vendor/libgit2/src/transaction.h +14 -0
- data/vendor/libgit2/src/transport.c +133 -67
- data/vendor/libgit2/src/transports/auth.c +75 -0
- data/vendor/libgit2/src/transports/auth.h +64 -0
- data/vendor/libgit2/src/transports/auth_negotiate.c +277 -0
- data/vendor/libgit2/src/transports/auth_negotiate.h +27 -0
- data/vendor/libgit2/src/transports/cred.c +296 -68
- data/vendor/libgit2/src/transports/cred.h +16 -0
- data/vendor/libgit2/src/transports/cred_helpers.c +4 -0
- data/vendor/libgit2/src/transports/git.c +108 -90
- data/vendor/libgit2/src/transports/http.c +803 -258
- data/vendor/libgit2/src/transports/http.h +25 -0
- data/vendor/libgit2/src/transports/local.c +265 -169
- data/vendor/libgit2/src/transports/smart.c +255 -45
- data/vendor/libgit2/src/transports/smart.h +42 -22
- data/vendor/libgit2/src/transports/smart_pkt.c +250 -159
- data/vendor/libgit2/src/transports/smart_protocol.c +414 -196
- data/vendor/libgit2/src/transports/ssh.c +645 -236
- data/vendor/libgit2/src/transports/ssh.h +14 -0
- data/vendor/libgit2/src/transports/winhttp.c +809 -353
- data/vendor/libgit2/src/tree-cache.c +138 -52
- data/vendor/libgit2/src/tree-cache.h +14 -7
- data/vendor/libgit2/src/tree.c +620 -259
- data/vendor/libgit2/src/tree.h +12 -19
- data/vendor/libgit2/src/tsort.c +3 -2
- data/vendor/libgit2/src/unix/map.c +25 -7
- data/vendor/libgit2/src/unix/posix.h +77 -12
- data/vendor/libgit2/src/unix/pthread.h +56 -0
- data/vendor/libgit2/src/unix/realpath.c +12 -8
- data/vendor/libgit2/src/userdiff.h +208 -0
- data/vendor/libgit2/src/util.c +349 -165
- data/vendor/libgit2/src/util.h +167 -85
- data/vendor/libgit2/src/varint.c +43 -0
- data/vendor/libgit2/src/varint.h +17 -0
- data/vendor/libgit2/src/vector.c +156 -33
- data/vendor/libgit2/src/vector.h +41 -5
- data/vendor/libgit2/src/win32/dir.c +22 -42
- data/vendor/libgit2/src/win32/dir.h +7 -5
- data/vendor/libgit2/src/win32/error.c +6 -32
- data/vendor/libgit2/src/win32/error.h +4 -2
- data/vendor/libgit2/src/win32/findfile.c +62 -69
- data/vendor/libgit2/src/win32/findfile.h +5 -13
- data/vendor/libgit2/src/win32/git2.rc +44 -0
- data/vendor/libgit2/src/win32/map.c +39 -11
- data/vendor/libgit2/src/win32/mingw-compat.h +10 -11
- data/vendor/libgit2/src/win32/msvc-compat.h +10 -33
- data/vendor/libgit2/src/win32/path_w32.c +476 -0
- data/vendor/libgit2/src/win32/path_w32.h +104 -0
- data/vendor/libgit2/src/win32/posix.h +35 -30
- data/vendor/libgit2/src/win32/posix_w32.c +659 -327
- data/vendor/libgit2/src/win32/precompiled.h +7 -2
- data/vendor/libgit2/src/win32/reparse.h +57 -0
- data/vendor/libgit2/src/win32/thread.c +258 -0
- data/vendor/libgit2/src/win32/thread.h +64 -0
- data/vendor/libgit2/src/win32/utf-conv.c +127 -62
- data/vendor/libgit2/src/win32/utf-conv.h +47 -6
- data/vendor/libgit2/src/win32/version.h +21 -4
- data/vendor/libgit2/src/win32/w32_buffer.c +54 -0
- data/vendor/libgit2/src/win32/w32_buffer.h +20 -0
- data/vendor/libgit2/src/win32/w32_crtdbg_stacktrace.c +438 -0
- data/vendor/libgit2/src/win32/w32_crtdbg_stacktrace.h +129 -0
- data/vendor/libgit2/src/win32/w32_stack.c +193 -0
- data/vendor/libgit2/src/win32/w32_stack.h +140 -0
- data/vendor/libgit2/src/win32/w32_util.c +95 -0
- data/vendor/libgit2/src/win32/w32_util.h +170 -0
- data/vendor/libgit2/src/win32/win32-compat.h +52 -0
- data/vendor/libgit2/src/worktree.c +578 -0
- data/vendor/libgit2/src/worktree.h +39 -0
- data/vendor/libgit2/src/xdiff/xdiff.h +33 -18
- data/vendor/libgit2/src/xdiff/xdiffi.c +578 -88
- data/vendor/libgit2/src/xdiff/xdiffi.h +3 -2
- data/vendor/libgit2/src/xdiff/xemit.c +106 -45
- data/vendor/libgit2/src/xdiff/xemit.h +3 -3
- data/vendor/libgit2/src/xdiff/xhistogram.c +5 -4
- data/vendor/libgit2/src/xdiff/xinclude.h +3 -2
- data/vendor/libgit2/src/xdiff/xmacros.h +2 -2
- data/vendor/libgit2/src/xdiff/xmerge.c +167 -48
- data/vendor/libgit2/src/xdiff/xpatience.c +42 -10
- data/vendor/libgit2/src/xdiff/xprepare.c +14 -14
- data/vendor/libgit2/src/xdiff/xprepare.h +2 -2
- data/vendor/libgit2/src/xdiff/xtypes.h +2 -2
- data/vendor/libgit2/src/xdiff/xutils.c +60 -56
- data/vendor/libgit2/src/xdiff/xutils.h +3 -5
- data/vendor/libgit2/src/zstream.c +205 -0
- data/vendor/libgit2/src/zstream.h +53 -0
- metadata +281 -233
- data/Rakefile +0 -61
- data/ext/rugged/rugged_diff_patch.c +0 -169
- data/lib/rugged/diff/patch.rb +0 -28
- data/test/blob_test.rb +0 -341
- data/test/branch_test.rb +0 -199
- data/test/commit_test.rb +0 -104
- data/test/config_test.rb +0 -45
- data/test/coverage/cover.rb +0 -133
- data/test/diff_test.rb +0 -777
- data/test/errors_test.rb +0 -34
- data/test/fixtures/alternate/objects/14/6ae76773c91e3b1d00cf7a338ec55ae58297e2 +0 -0
- data/test/fixtures/alternate/objects/14/9c32d47e99d0a3572ff1e70a2e0051bbf347a9 +0 -0
- data/test/fixtures/alternate/objects/14/fb3108588f9421bf764041e5e3ac305eb6277f +0 -0
- data/test/fixtures/archive.tar.gz +0 -0
- data/test/fixtures/attr/attr0 +0 -1
- data/test/fixtures/attr/attr1 +0 -29
- data/test/fixtures/attr/attr2 +0 -21
- data/test/fixtures/attr/attr3 +0 -4
- data/test/fixtures/attr/binfile +0 -1
- data/test/fixtures/attr/dir/file +0 -0
- data/test/fixtures/attr/file +0 -1
- data/test/fixtures/attr/gitattributes +0 -29
- data/test/fixtures/attr/gitignore +0 -2
- data/test/fixtures/attr/ign +0 -1
- data/test/fixtures/attr/macro_bad +0 -1
- data/test/fixtures/attr/macro_test +0 -1
- data/test/fixtures/attr/root_test1 +0 -1
- data/test/fixtures/attr/root_test2 +0 -6
- data/test/fixtures/attr/root_test3 +0 -19
- data/test/fixtures/attr/root_test4.txt +0 -14
- data/test/fixtures/attr/sub/abc +0 -37
- data/test/fixtures/attr/sub/dir/file +0 -0
- data/test/fixtures/attr/sub/file +0 -1
- data/test/fixtures/attr/sub/ign/file +0 -1
- data/test/fixtures/attr/sub/ign/sub/file +0 -1
- data/test/fixtures/attr/sub/sub/dir +0 -0
- data/test/fixtures/attr/sub/sub/file +0 -1
- data/test/fixtures/attr/sub/sub/subsub.txt +0 -1
- data/test/fixtures/attr/sub/subdir_test1 +0 -2
- data/test/fixtures/attr/sub/subdir_test2.txt +0 -1
- data/test/fixtures/diff/another.txt +0 -38
- data/test/fixtures/diff/readme.txt +0 -36
- data/test/fixtures/mergedrepo/conflicts-one.txt +0 -5
- data/test/fixtures/mergedrepo/conflicts-two.txt +0 -5
- data/test/fixtures/mergedrepo/one.txt +0 -10
- data/test/fixtures/mergedrepo/two.txt +0 -12
- data/test/fixtures/status/current_file +0 -1
- data/test/fixtures/status/ignored_file +0 -1
- data/test/fixtures/status/modified_file +0 -2
- data/test/fixtures/status/new_file +0 -1
- data/test/fixtures/status/staged_changes +0 -2
- data/test/fixtures/status/staged_changes_modified_file +0 -3
- data/test/fixtures/status/staged_delete_modified_file +0 -1
- data/test/fixtures/status/staged_new_file +0 -1
- data/test/fixtures/status/staged_new_file_modified_file +0 -2
- data/test/fixtures/status/subdir/current_file +0 -1
- data/test/fixtures/status/subdir/modified_file +0 -2
- data/test/fixtures/status/subdir/new_file +0 -1
- data/test/fixtures/status/subdir.txt +0 -2
- data/test/fixtures/status//350/277/231 +0 -1
- data/test/fixtures/testrepo.git/HEAD +0 -1
- data/test/fixtures/testrepo.git/config +0 -13
- data/test/fixtures/testrepo.git/description +0 -1
- data/test/fixtures/testrepo.git/index +0 -0
- data/test/fixtures/testrepo.git/info/exclude +0 -6
- data/test/fixtures/testrepo.git/logs/HEAD +0 -3
- data/test/fixtures/testrepo.git/logs/refs/heads/master +0 -3
- data/test/fixtures/testrepo.git/logs/refs/notes/commits +0 -1
- data/test/fixtures/testrepo.git/objects/0c/37a5391bbff43c37f0d0371823a5509eed5b1d +0 -0
- data/test/fixtures/testrepo.git/objects/13/85f264afb75a56a5bec74243be9b367ba4ca08 +0 -0
- data/test/fixtures/testrepo.git/objects/18/1037049a54a1eb5fab404658a3a250b44335d7 +0 -0
- data/test/fixtures/testrepo.git/objects/18/10dff58d8a660512d4832e740f692884338ccd +0 -0
- data/test/fixtures/testrepo.git/objects/2d/2eff63372b08adf0a9eb84109ccf7d19e2f3a2 +0 -0
- data/test/fixtures/testrepo.git/objects/36/060c58702ed4c2a40832c51758d5344201d89a +0 -2
- data/test/fixtures/testrepo.git/objects/44/1034f860c1d5d90e4188d11ae0d325176869a8 +0 -1
- data/test/fixtures/testrepo.git/objects/45/b983be36b73c0788dc9cbcb76cbb80fc7bb057 +0 -0
- data/test/fixtures/testrepo.git/objects/4a/202b346bb0fb0db7eff3cffeb3c70babbd2045 +0 -2
- data/test/fixtures/testrepo.git/objects/5b/5b025afb0b4c913b4c338a42934a3863bf3644 +0 -2
- data/test/fixtures/testrepo.git/objects/60/d415052a33de2150bf68757f6461df4f563ae4 +0 -0
- data/test/fixtures/testrepo.git/objects/61/9f9935957e010c419cb9d15621916ddfcc0b96 +0 -0
- data/test/fixtures/testrepo.git/objects/68/8a8f4ef7496901d15322972f96e212a9e466cc +0 -1
- data/test/fixtures/testrepo.git/objects/75/057dd4114e74cca1d750d0aee1647c903cb60a +0 -0
- data/test/fixtures/testrepo.git/objects/77/71329dfa3002caf8c61a0ceb62a31d09023f37 +0 -0
- data/test/fixtures/testrepo.git/objects/81/4889a078c031f61ed08ab5fa863aea9314344d +0 -0
- data/test/fixtures/testrepo.git/objects/84/96071c1b46c854b31185ea97743be6a8774479 +0 -0
- data/test/fixtures/testrepo.git/objects/94/eca2de348d5f672faf56b0decafa5937e3235e +0 -0
- data/test/fixtures/testrepo.git/objects/9b/7384fe1676186192842f5d3e129457b62db9e3 +0 -0
- data/test/fixtures/testrepo.git/objects/9f/d738e8f7967c078dceed8190330fc8648ee56a +0 -3
- data/test/fixtures/testrepo.git/objects/a4/a7dce85cf63874e984719f4fdd239f5145052f +0 -2
- data/test/fixtures/testrepo.git/objects/a7/1586c1dfe8a71c6cbf6c129f404c5642ff31bd +0 -0
- data/test/fixtures/testrepo.git/objects/a8/233120f6ad708f843d861ce2b7228ec4e3dec6 +0 -0
- data/test/fixtures/testrepo.git/objects/b7/4713326bc972cc15751ed504dca6f6f3b91f7a +0 -3
- data/test/fixtures/testrepo.git/objects/be/3563ae3f795b2b4353bcce3a527ad0a4f7f644 +0 -3
- data/test/fixtures/testrepo.git/objects/c4/7800c7266a2be04c571c04d5a6614691ea99bd +0 -3
- data/test/fixtures/testrepo.git/objects/c4/dc1555e4d4fa0e0c9c3fc46734c7c35b3ce90b +0 -0
- data/test/fixtures/testrepo.git/objects/e6/9de29bb2d1d6434b8b29ae775ad8c2e48c5391 +0 -0
- data/test/fixtures/testrepo.git/objects/f6/0079018b664e4e79329a7ef9559c8d9e0378d1 +0 -0
- data/test/fixtures/testrepo.git/objects/fa/49b077972391ad58037050f2a75f74e3671e92 +0 -0
- data/test/fixtures/testrepo.git/objects/fd/093bff70906175335656e6ce6ae05783708765 +0 -0
- data/test/fixtures/testrepo.git/objects/pack/pack-d7c6adf9f61318f041845b01440d09aa7a91e1b5.idx +0 -0
- data/test/fixtures/testrepo.git/objects/pack/pack-d7c6adf9f61318f041845b01440d09aa7a91e1b5.pack +0 -0
- data/test/fixtures/testrepo.git/packed-refs +0 -2
- data/test/fixtures/testrepo.git/refs/heads/master +0 -1
- data/test/fixtures/testrepo.git/refs/notes/commits +0 -1
- data/test/fixtures/testrepo.git/refs/tags/v0.9 +0 -1
- data/test/fixtures/testrepo.git/refs/tags/v1.0 +0 -1
- data/test/fixtures/text_file.md +0 -464
- data/test/fixtures/unsymlinked.git/HEAD +0 -1
- data/test/fixtures/unsymlinked.git/config +0 -6
- data/test/fixtures/unsymlinked.git/description +0 -1
- data/test/fixtures/unsymlinked.git/info/exclude +0 -2
- data/test/fixtures/unsymlinked.git/objects/08/8b64704e0d6b8bd061dea879418cb5442a3fbf +0 -0
- data/test/fixtures/unsymlinked.git/objects/13/a5e939bca25940c069fd2169d993dba328e30b +0 -0
- data/test/fixtures/unsymlinked.git/objects/19/bf568e59e3a0b363cafb4106226e62d4a4c41c +0 -0
- data/test/fixtures/unsymlinked.git/objects/58/1fadd35b4cf320d102a152f918729011604773 +0 -0
- data/test/fixtures/unsymlinked.git/objects/5c/87b6791e8b13da658a14d1ef7e09b5dc3bac8c +0 -0
- data/test/fixtures/unsymlinked.git/objects/6f/e5f5398af85fb3de8a6aba0339b6d3bfa26a27 +0 -0
- data/test/fixtures/unsymlinked.git/objects/7f/ccd75616ec188b8f1b23d67506a334cc34a49d +0 -0
- data/test/fixtures/unsymlinked.git/objects/80/6999882bf91d24241e4077906b9017605eb1f3 +0 -0
- data/test/fixtures/unsymlinked.git/objects/83/7d176303c5005505ec1e4a30231c40930c0230 +0 -0
- data/test/fixtures/unsymlinked.git/objects/a8/595ccca04f40818ae0155c8f9c77a230e597b6 +0 -2
- data/test/fixtures/unsymlinked.git/objects/cf/8f1cf5cce859c438d6cc067284cb5e161206e7 +0 -0
- data/test/fixtures/unsymlinked.git/objects/d5/278d05c8607ec420bfee4cf219fbc0eeebfd6a +0 -0
- data/test/fixtures/unsymlinked.git/objects/f4/e16fb76536591a41454194058d048d8e4dd2e9 +0 -0
- data/test/fixtures/unsymlinked.git/objects/f9/e65619d93fdf2673882e0a261c5e93b1a84006 +0 -0
- data/test/fixtures/unsymlinked.git/refs/heads/exe-file +0 -1
- data/test/fixtures/unsymlinked.git/refs/heads/master +0 -1
- data/test/fixtures/unsymlinked.git/refs/heads/reg-file +0 -1
- data/test/index_test.rb +0 -333
- data/test/lib_test.rb +0 -127
- data/test/note_test.rb +0 -158
- data/test/object_test.rb +0 -43
- data/test/reference_test.rb +0 -207
- data/test/remote_test.rb +0 -324
- data/test/repo_pack_test.rb +0 -24
- data/test/repo_reset_test.rb +0 -82
- data/test/repo_test.rb +0 -402
- data/test/tag_test.rb +0 -68
- data/test/test_helper.rb +0 -92
- data/test/tree_test.rb +0 -91
- data/test/walker_test.rb +0 -88
- data/vendor/libgit2/Makefile.embed +0 -42
- data/vendor/libgit2/include/git2/push.h +0 -131
- data/vendor/libgit2/include/git2/threads.h +0 -50
- data/vendor/libgit2/src/amiga/map.c +0 -48
- data/vendor/libgit2/src/bswap.h +0 -97
- data/vendor/libgit2/src/compress.c +0 -53
- data/vendor/libgit2/src/config_file.h +0 -60
- data/vendor/libgit2/src/delta-apply.c +0 -134
- data/vendor/libgit2/src/delta-apply.h +0 -50
- data/vendor/libgit2/src/diff_patch.c +0 -995
- data/vendor/libgit2/src/diff_patch.h +0 -46
- data/vendor/libgit2/src/hashsig.h +0 -72
- data/vendor/libgit2/src/merge_file.h +0 -71
- data/vendor/libgit2/src/win32/pthread.c +0 -144
- data/vendor/libgit2/src/win32/pthread.h +0 -50
data/vendor/libgit2/src/odb.c
CHANGED
@@ -5,28 +5,35 @@
|
|
5
5
|
* a Linking Exception. For full terms see the included COPYING file.
|
6
6
|
*/
|
7
7
|
|
8
|
-
#include "
|
8
|
+
#include "odb.h"
|
9
|
+
|
9
10
|
#include <zlib.h>
|
10
11
|
#include "git2/object.h"
|
11
12
|
#include "git2/sys/odb_backend.h"
|
12
13
|
#include "fileops.h"
|
13
14
|
#include "hash.h"
|
14
|
-
#include "
|
15
|
-
#include "delta-apply.h"
|
15
|
+
#include "delta.h"
|
16
16
|
#include "filter.h"
|
17
17
|
#include "repository.h"
|
18
|
+
#include "blob.h"
|
18
19
|
|
19
20
|
#include "git2/odb_backend.h"
|
20
21
|
#include "git2/oid.h"
|
22
|
+
#include "git2/oidarray.h"
|
21
23
|
|
22
24
|
#define GIT_ALTERNATES_FILE "info/alternates"
|
23
25
|
|
24
|
-
/*
|
25
|
-
|
26
|
-
|
26
|
+
/*
|
27
|
+
* We work under the assumption that most objects for long-running
|
28
|
+
* operations will be packed
|
29
|
+
*/
|
30
|
+
#define GIT_LOOSE_PRIORITY 1
|
31
|
+
#define GIT_PACKED_PRIORITY 2
|
27
32
|
|
28
33
|
#define GIT_ALTERNATES_MAX_DEPTH 5
|
29
34
|
|
35
|
+
bool git_odb__strict_hash_verification = true;
|
36
|
+
|
30
37
|
typedef struct
|
31
38
|
{
|
32
39
|
git_odb_backend *backend;
|
@@ -45,40 +52,90 @@ static git_cache *odb_cache(git_odb *odb)
|
|
45
52
|
return &odb->own_cache;
|
46
53
|
}
|
47
54
|
|
55
|
+
static int odb_otype_fast(git_object_t *type_p, git_odb *db, const git_oid *id);
|
48
56
|
static int load_alternates(git_odb *odb, const char *objects_dir, int alternate_depth);
|
57
|
+
static int error_null_oid(int error, const char *message);
|
58
|
+
|
59
|
+
static git_object_t odb_hardcoded_type(const git_oid *id)
|
60
|
+
{
|
61
|
+
static git_oid empty_tree = {{ 0x4b, 0x82, 0x5d, 0xc6, 0x42, 0xcb, 0x6e, 0xb9, 0xa0, 0x60,
|
62
|
+
0xe5, 0x4b, 0xf8, 0xd6, 0x92, 0x88, 0xfb, 0xee, 0x49, 0x04 }};
|
63
|
+
|
64
|
+
if (!git_oid_cmp(id, &empty_tree))
|
65
|
+
return GIT_OBJECT_TREE;
|
66
|
+
|
67
|
+
return GIT_OBJECT_INVALID;
|
68
|
+
}
|
69
|
+
|
70
|
+
static int odb_read_hardcoded(bool *found, git_rawobj *raw, const git_oid *id)
|
71
|
+
{
|
72
|
+
git_object_t type;
|
49
73
|
|
50
|
-
|
74
|
+
*found = false;
|
75
|
+
|
76
|
+
if ((type = odb_hardcoded_type(id)) == GIT_OBJECT_INVALID)
|
77
|
+
return 0;
|
78
|
+
|
79
|
+
raw->type = type;
|
80
|
+
raw->len = 0;
|
81
|
+
raw->data = git__calloc(1, sizeof(uint8_t));
|
82
|
+
GIT_ERROR_CHECK_ALLOC(raw->data);
|
83
|
+
|
84
|
+
*found = true;
|
85
|
+
return 0;
|
86
|
+
}
|
87
|
+
|
88
|
+
int git_odb__format_object_header(
|
89
|
+
size_t *written,
|
90
|
+
char *hdr,
|
91
|
+
size_t hdr_size,
|
92
|
+
git_off_t obj_len,
|
93
|
+
git_object_t obj_type)
|
51
94
|
{
|
52
95
|
const char *type_str = git_object_type2string(obj_type);
|
53
|
-
int
|
54
|
-
|
55
|
-
|
96
|
+
int hdr_max = (hdr_size > INT_MAX-2) ? (INT_MAX-2) : (int)hdr_size;
|
97
|
+
int len;
|
98
|
+
|
99
|
+
len = p_snprintf(hdr, hdr_max, "%s %"PRId64, type_str, (int64_t)obj_len);
|
100
|
+
|
101
|
+
if (len < 0 || len >= hdr_max) {
|
102
|
+
git_error_set(GIT_ERROR_OS, "object header creation failed");
|
103
|
+
return -1;
|
104
|
+
}
|
105
|
+
|
106
|
+
*written = (size_t)(len + 1);
|
107
|
+
return 0;
|
56
108
|
}
|
57
109
|
|
58
110
|
int git_odb__hashobj(git_oid *id, git_rawobj *obj)
|
59
111
|
{
|
60
112
|
git_buf_vec vec[2];
|
61
113
|
char header[64];
|
62
|
-
|
114
|
+
size_t hdrlen;
|
115
|
+
int error;
|
63
116
|
|
64
117
|
assert(id && obj);
|
65
118
|
|
66
|
-
if (!git_object_typeisloose(obj->type))
|
119
|
+
if (!git_object_typeisloose(obj->type)) {
|
120
|
+
git_error_set(GIT_ERROR_INVALID, "invalid object type");
|
67
121
|
return -1;
|
122
|
+
}
|
68
123
|
|
69
|
-
if (!obj->data && obj->len != 0)
|
124
|
+
if (!obj->data && obj->len != 0) {
|
125
|
+
git_error_set(GIT_ERROR_INVALID, "invalid object");
|
70
126
|
return -1;
|
127
|
+
}
|
71
128
|
|
72
|
-
|
129
|
+
if ((error = git_odb__format_object_header(&hdrlen,
|
130
|
+
header, sizeof(header), obj->len, obj->type)) < 0)
|
131
|
+
return error;
|
73
132
|
|
74
133
|
vec[0].data = header;
|
75
134
|
vec[0].len = hdrlen;
|
76
135
|
vec[1].data = obj->data;
|
77
136
|
vec[1].len = obj->len;
|
78
137
|
|
79
|
-
git_hash_vec(id, vec, 2);
|
80
|
-
|
81
|
-
return 0;
|
138
|
+
return git_hash_vec(id, vec, 2);
|
82
139
|
}
|
83
140
|
|
84
141
|
|
@@ -119,11 +176,18 @@ size_t git_odb_object_size(git_odb_object *object)
|
|
119
176
|
return object->cached.size;
|
120
177
|
}
|
121
178
|
|
122
|
-
|
179
|
+
git_object_t git_odb_object_type(git_odb_object *object)
|
123
180
|
{
|
124
181
|
return object->cached.type;
|
125
182
|
}
|
126
183
|
|
184
|
+
int git_odb_object_dup(git_odb_object **dest, git_odb_object *source)
|
185
|
+
{
|
186
|
+
git_cached_obj_incref(source);
|
187
|
+
*dest = source;
|
188
|
+
return 0;
|
189
|
+
}
|
190
|
+
|
127
191
|
void git_odb_object_free(git_odb_object *object)
|
128
192
|
{
|
129
193
|
if (object == NULL)
|
@@ -132,23 +196,25 @@ void git_odb_object_free(git_odb_object *object)
|
|
132
196
|
git_cached_obj_decref(object);
|
133
197
|
}
|
134
198
|
|
135
|
-
int git_odb__hashfd(git_oid *out, git_file fd, size_t size,
|
199
|
+
int git_odb__hashfd(git_oid *out, git_file fd, size_t size, git_object_t type)
|
136
200
|
{
|
137
|
-
|
138
|
-
char hdr[64], buffer[
|
201
|
+
size_t hdr_len;
|
202
|
+
char hdr[64], buffer[FILEIO_BUFSIZE];
|
139
203
|
git_hash_ctx ctx;
|
140
204
|
ssize_t read_len = 0;
|
141
205
|
int error = 0;
|
142
206
|
|
143
207
|
if (!git_object_typeisloose(type)) {
|
144
|
-
|
208
|
+
git_error_set(GIT_ERROR_INVALID, "invalid object type for hash");
|
145
209
|
return -1;
|
146
210
|
}
|
147
211
|
|
148
212
|
if ((error = git_hash_ctx_init(&ctx)) < 0)
|
149
|
-
return
|
213
|
+
return error;
|
150
214
|
|
151
|
-
|
215
|
+
if ((error = git_odb__format_object_header(&hdr_len, hdr,
|
216
|
+
sizeof(hdr), size, type)) < 0)
|
217
|
+
goto done;
|
152
218
|
|
153
219
|
if ((error = git_hash_update(&ctx, hdr, hdr_len)) < 0)
|
154
220
|
goto done;
|
@@ -164,11 +230,10 @@ int git_odb__hashfd(git_oid *out, git_file fd, size_t size, git_otype type)
|
|
164
230
|
* If size is not zero, the file was truncated after we originally
|
165
231
|
* stat'd it, so we consider this a read failure too */
|
166
232
|
if (read_len < 0 || size > 0) {
|
167
|
-
|
233
|
+
git_error_set(GIT_ERROR_OS, "error reading file for hashing");
|
168
234
|
error = -1;
|
169
235
|
|
170
236
|
goto done;
|
171
|
-
return -1;
|
172
237
|
}
|
173
238
|
|
174
239
|
error = git_hash_final(out, &ctx);
|
@@ -179,28 +244,30 @@ done:
|
|
179
244
|
}
|
180
245
|
|
181
246
|
int git_odb__hashfd_filtered(
|
182
|
-
git_oid *out, git_file fd, size_t size,
|
247
|
+
git_oid *out, git_file fd, size_t size, git_object_t type, git_filter_list *fl)
|
183
248
|
{
|
184
249
|
int error;
|
185
250
|
git_buf raw = GIT_BUF_INIT;
|
186
|
-
git_buf filtered = GIT_BUF_INIT;
|
187
251
|
|
188
|
-
if (!
|
252
|
+
if (!fl)
|
189
253
|
return git_odb__hashfd(out, fd, size, type);
|
190
254
|
|
191
255
|
/* size of data is used in header, so we have to read the whole file
|
192
256
|
* into memory to apply filters before beginning to calculate the hash
|
193
257
|
*/
|
194
258
|
|
195
|
-
if (!(error = git_futils_readbuffer_fd(&raw, fd, size)))
|
196
|
-
|
259
|
+
if (!(error = git_futils_readbuffer_fd(&raw, fd, size))) {
|
260
|
+
git_buf post = GIT_BUF_INIT;
|
197
261
|
|
198
|
-
|
262
|
+
error = git_filter_list_apply_to_data(&post, fl, &raw);
|
199
263
|
|
200
|
-
|
201
|
-
|
264
|
+
git_buf_dispose(&raw);
|
265
|
+
|
266
|
+
if (!error)
|
267
|
+
error = git_odb_hash(out, post.ptr, post.size, type);
|
202
268
|
|
203
|
-
|
269
|
+
git_buf_dispose(&post);
|
270
|
+
}
|
204
271
|
|
205
272
|
return error;
|
206
273
|
}
|
@@ -208,47 +275,50 @@ int git_odb__hashfd_filtered(
|
|
208
275
|
int git_odb__hashlink(git_oid *out, const char *path)
|
209
276
|
{
|
210
277
|
struct stat st;
|
211
|
-
|
278
|
+
int size;
|
212
279
|
int result;
|
213
280
|
|
214
281
|
if (git_path_lstat(path, &st) < 0)
|
215
282
|
return -1;
|
216
283
|
|
217
|
-
|
218
|
-
|
219
|
-
if (!git__is_sizet(size)) {
|
220
|
-
giterr_set(GITERR_OS, "File size overflow for 32-bit systems");
|
284
|
+
if (!git__is_int(st.st_size) || (int)st.st_size < 0) {
|
285
|
+
git_error_set(GIT_ERROR_FILESYSTEM, "file size overflow for 32-bit systems");
|
221
286
|
return -1;
|
222
287
|
}
|
223
288
|
|
289
|
+
size = (int)st.st_size;
|
290
|
+
|
224
291
|
if (S_ISLNK(st.st_mode)) {
|
225
292
|
char *link_data;
|
226
|
-
|
293
|
+
int read_len;
|
294
|
+
size_t alloc_size;
|
227
295
|
|
228
|
-
|
229
|
-
|
296
|
+
GIT_ERROR_CHECK_ALLOC_ADD(&alloc_size, size, 1);
|
297
|
+
link_data = git__malloc(alloc_size);
|
298
|
+
GIT_ERROR_CHECK_ALLOC(link_data);
|
230
299
|
|
231
|
-
read_len = p_readlink(path, link_data,
|
300
|
+
read_len = p_readlink(path, link_data, size);
|
232
301
|
link_data[size] = '\0';
|
233
|
-
if (read_len !=
|
234
|
-
|
302
|
+
if (read_len != size) {
|
303
|
+
git_error_set(GIT_ERROR_OS, "failed to read symlink data for '%s'", path);
|
304
|
+
git__free(link_data);
|
235
305
|
return -1;
|
236
306
|
}
|
237
307
|
|
238
|
-
result = git_odb_hash(out, link_data,
|
308
|
+
result = git_odb_hash(out, link_data, size, GIT_OBJECT_BLOB);
|
239
309
|
git__free(link_data);
|
240
310
|
} else {
|
241
311
|
int fd = git_futils_open_ro(path);
|
242
312
|
if (fd < 0)
|
243
313
|
return -1;
|
244
|
-
result = git_odb__hashfd(out, fd,
|
314
|
+
result = git_odb__hashfd(out, fd, size, GIT_OBJECT_BLOB);
|
245
315
|
p_close(fd);
|
246
316
|
}
|
247
317
|
|
248
318
|
return result;
|
249
319
|
}
|
250
320
|
|
251
|
-
int git_odb_hashfile(git_oid *out, const char *path,
|
321
|
+
int git_odb_hashfile(git_oid *out, const char *path, git_object_t type)
|
252
322
|
{
|
253
323
|
git_off_t size;
|
254
324
|
int result, fd = git_futils_open_ro(path);
|
@@ -256,7 +326,7 @@ int git_odb_hashfile(git_oid *out, const char *path, git_otype type)
|
|
256
326
|
return fd;
|
257
327
|
|
258
328
|
if ((size = git_futils_filesize(fd)) < 0 || !git__is_sizet(size)) {
|
259
|
-
|
329
|
+
git_error_set(GIT_ERROR_OS, "file size overflow for 32-bit systems");
|
260
330
|
p_close(fd);
|
261
331
|
return -1;
|
262
332
|
}
|
@@ -266,7 +336,7 @@ int git_odb_hashfile(git_oid *out, const char *path, git_otype type)
|
|
266
336
|
return result;
|
267
337
|
}
|
268
338
|
|
269
|
-
int git_odb_hash(git_oid *id, const void *data, size_t len,
|
339
|
+
int git_odb_hash(git_oid *id, const void *data, size_t len, git_object_t type)
|
270
340
|
{
|
271
341
|
git_rawobj raw;
|
272
342
|
|
@@ -287,21 +357,20 @@ typedef struct {
|
|
287
357
|
git_odb_stream stream;
|
288
358
|
char *buffer;
|
289
359
|
size_t size, written;
|
290
|
-
|
360
|
+
git_object_t type;
|
291
361
|
} fake_wstream;
|
292
362
|
|
293
|
-
static int fake_wstream__fwrite(
|
363
|
+
static int fake_wstream__fwrite(git_odb_stream *_stream, const git_oid *oid)
|
294
364
|
{
|
295
365
|
fake_wstream *stream = (fake_wstream *)_stream;
|
296
|
-
return _stream->backend->write(
|
366
|
+
return _stream->backend->write(_stream->backend, oid, stream->buffer, stream->size, stream->type);
|
297
367
|
}
|
298
368
|
|
299
369
|
static int fake_wstream__write(git_odb_stream *_stream, const char *data, size_t len)
|
300
370
|
{
|
301
371
|
fake_wstream *stream = (fake_wstream *)_stream;
|
302
372
|
|
303
|
-
|
304
|
-
return -1;
|
373
|
+
assert(stream->written + len <= stream->size);
|
305
374
|
|
306
375
|
memcpy(stream->buffer + stream->written, data, len);
|
307
376
|
stream->written += len;
|
@@ -316,16 +385,20 @@ static void fake_wstream__free(git_odb_stream *_stream)
|
|
316
385
|
git__free(stream);
|
317
386
|
}
|
318
387
|
|
319
|
-
static int init_fake_wstream(git_odb_stream **stream_p, git_odb_backend *backend,
|
388
|
+
static int init_fake_wstream(git_odb_stream **stream_p, git_odb_backend *backend, git_off_t size, git_object_t type)
|
320
389
|
{
|
321
390
|
fake_wstream *stream;
|
391
|
+
size_t blobsize;
|
392
|
+
|
393
|
+
GIT_ERROR_CHECK_BLOBSIZE(size);
|
394
|
+
blobsize = (size_t)size;
|
322
395
|
|
323
396
|
stream = git__calloc(1, sizeof(fake_wstream));
|
324
|
-
|
397
|
+
GIT_ERROR_CHECK_ALLOC(stream);
|
325
398
|
|
326
|
-
stream->size =
|
399
|
+
stream->size = blobsize;
|
327
400
|
stream->type = type;
|
328
|
-
stream->buffer = git__malloc(
|
401
|
+
stream->buffer = git__malloc(blobsize);
|
329
402
|
if (stream->buffer == NULL) {
|
330
403
|
git__free(stream);
|
331
404
|
return -1;
|
@@ -355,16 +428,20 @@ static int backend_sort_cmp(const void *a, const void *b)
|
|
355
428
|
const backend_internal *backend_a = (const backend_internal *)(a);
|
356
429
|
const backend_internal *backend_b = (const backend_internal *)(b);
|
357
430
|
|
358
|
-
if (
|
359
|
-
|
360
|
-
|
361
|
-
|
431
|
+
if (backend_b->priority == backend_a->priority) {
|
432
|
+
if (backend_a->is_alternate)
|
433
|
+
return -1;
|
434
|
+
if (backend_b->is_alternate)
|
435
|
+
return 1;
|
436
|
+
return 0;
|
437
|
+
}
|
438
|
+
return (backend_b->priority - backend_a->priority);
|
362
439
|
}
|
363
440
|
|
364
441
|
int git_odb_new(git_odb **out)
|
365
442
|
{
|
366
443
|
git_odb *db = git__calloc(1, sizeof(*db));
|
367
|
-
|
444
|
+
GIT_ERROR_CHECK_ALLOC(db);
|
368
445
|
|
369
446
|
if (git_cache_init(&db->own_cache) < 0 ||
|
370
447
|
git_vector_init(&db->backends, 4, backend_sort_cmp) < 0) {
|
@@ -385,13 +462,13 @@ static int add_backend_internal(
|
|
385
462
|
|
386
463
|
assert(odb && backend);
|
387
464
|
|
388
|
-
|
465
|
+
GIT_ERROR_CHECK_VERSION(backend, GIT_ODB_BACKEND_VERSION, "git_odb_backend");
|
389
466
|
|
390
467
|
/* Check if the backend is already owned by another ODB */
|
391
468
|
assert(!backend->odb || backend->odb == odb);
|
392
469
|
|
393
470
|
internal = git__malloc(sizeof(backend_internal));
|
394
|
-
|
471
|
+
GIT_ERROR_CHECK_ALLOC(internal);
|
395
472
|
|
396
473
|
internal->backend = backend;
|
397
474
|
internal->priority = priority;
|
@@ -426,8 +503,8 @@ size_t git_odb_num_backends(git_odb *odb)
|
|
426
503
|
|
427
504
|
static int git_odb__error_unsupported_in_backend(const char *action)
|
428
505
|
{
|
429
|
-
|
430
|
-
"
|
506
|
+
git_error_set(GIT_ERROR_ODB,
|
507
|
+
"cannot %s - unsupported in the loaded odb backends", action);
|
431
508
|
return -1;
|
432
509
|
}
|
433
510
|
|
@@ -436,7 +513,7 @@ int git_odb_get_backend(git_odb_backend **out, git_odb *odb, size_t pos)
|
|
436
513
|
{
|
437
514
|
backend_internal *internal;
|
438
515
|
|
439
|
-
assert(
|
516
|
+
assert(out && odb);
|
440
517
|
internal = git_vector_get(&odb->backends, pos);
|
441
518
|
|
442
519
|
if (internal && internal->backend) {
|
@@ -444,11 +521,11 @@ int git_odb_get_backend(git_odb_backend **out, git_odb *odb, size_t pos)
|
|
444
521
|
return 0;
|
445
522
|
}
|
446
523
|
|
447
|
-
|
524
|
+
git_error_set(GIT_ERROR_ODB, "no ODB backend loaded at index %" PRIuZ, pos);
|
448
525
|
return GIT_ENOTFOUND;
|
449
526
|
}
|
450
527
|
|
451
|
-
|
528
|
+
int git_odb__add_default_backends(
|
452
529
|
git_odb *db, const char *objects_dir,
|
453
530
|
bool as_alternates, int alternate_depth)
|
454
531
|
{
|
@@ -469,7 +546,7 @@ static int add_default_backends(
|
|
469
546
|
if (as_alternates)
|
470
547
|
return 0;
|
471
548
|
|
472
|
-
|
549
|
+
git_error_set(GIT_ERROR_ODB, "failed to load object database in '%s'", objects_dir);
|
473
550
|
return -1;
|
474
551
|
}
|
475
552
|
|
@@ -483,7 +560,7 @@ static int add_default_backends(
|
|
483
560
|
#endif
|
484
561
|
|
485
562
|
/* add the loose object backend */
|
486
|
-
if (git_odb_backend_loose(&loose, objects_dir, -1, 0) < 0 ||
|
563
|
+
if (git_odb_backend_loose(&loose, objects_dir, -1, db->do_fsync, 0, 0) < 0 ||
|
487
564
|
add_backend_internal(db, loose, GIT_LOOSE_PRIORITY, as_alternates, inode) < 0)
|
488
565
|
return -1;
|
489
566
|
|
@@ -511,12 +588,12 @@ static int load_alternates(git_odb *odb, const char *objects_dir, int alternate_
|
|
511
588
|
return -1;
|
512
589
|
|
513
590
|
if (git_path_exists(alternates_path.ptr) == false) {
|
514
|
-
|
591
|
+
git_buf_dispose(&alternates_path);
|
515
592
|
return 0;
|
516
593
|
}
|
517
594
|
|
518
595
|
if (git_futils_readbuffer(&alternates_buf, alternates_path.ptr) < 0) {
|
519
|
-
|
596
|
+
git_buf_dispose(&alternates_path);
|
520
597
|
return -1;
|
521
598
|
}
|
522
599
|
|
@@ -538,19 +615,19 @@ static int load_alternates(git_odb *odb, const char *objects_dir, int alternate_
|
|
538
615
|
alternate = git_buf_cstr(&alternates_path);
|
539
616
|
}
|
540
617
|
|
541
|
-
if ((result =
|
618
|
+
if ((result = git_odb__add_default_backends(odb, alternate, true, alternate_depth + 1)) < 0)
|
542
619
|
break;
|
543
620
|
}
|
544
621
|
|
545
|
-
|
546
|
-
|
622
|
+
git_buf_dispose(&alternates_path);
|
623
|
+
git_buf_dispose(&alternates_buf);
|
547
624
|
|
548
625
|
return result;
|
549
626
|
}
|
550
627
|
|
551
628
|
int git_odb_add_disk_alternate(git_odb *odb, const char *path)
|
552
629
|
{
|
553
|
-
return
|
630
|
+
return git_odb__add_default_backends(odb, path, true, 0);
|
554
631
|
}
|
555
632
|
|
556
633
|
int git_odb_open(git_odb **out, const char *objects_dir)
|
@@ -564,7 +641,7 @@ int git_odb_open(git_odb **out, const char *objects_dir)
|
|
564
641
|
if (git_odb_new(&db) < 0)
|
565
642
|
return -1;
|
566
643
|
|
567
|
-
if (
|
644
|
+
if (git_odb__add_default_backends(db, objects_dir, 0, 0) < 0) {
|
568
645
|
git_odb_free(db);
|
569
646
|
return -1;
|
570
647
|
}
|
@@ -573,6 +650,24 @@ int git_odb_open(git_odb **out, const char *objects_dir)
|
|
573
650
|
return 0;
|
574
651
|
}
|
575
652
|
|
653
|
+
int git_odb__set_caps(git_odb *odb, int caps)
|
654
|
+
{
|
655
|
+
if (caps == GIT_ODB_CAP_FROM_OWNER) {
|
656
|
+
git_repository *repo = odb->rc.owner;
|
657
|
+
int val;
|
658
|
+
|
659
|
+
if (!repo) {
|
660
|
+
git_error_set(GIT_ERROR_ODB, "cannot access repository to set odb caps");
|
661
|
+
return -1;
|
662
|
+
}
|
663
|
+
|
664
|
+
if (!git_repository__cvar(&val, repo, GIT_CVAR_FSYNCOBJECTFILES))
|
665
|
+
odb->do_fsync = !!val;
|
666
|
+
}
|
667
|
+
|
668
|
+
return 0;
|
669
|
+
}
|
670
|
+
|
576
671
|
static void odb_free(git_odb *db)
|
577
672
|
{
|
578
673
|
size_t i;
|
@@ -581,8 +676,7 @@ static void odb_free(git_odb *db)
|
|
581
676
|
backend_internal *internal = git_vector_get(&db->backends, i);
|
582
677
|
git_odb_backend *backend = internal->backend;
|
583
678
|
|
584
|
-
|
585
|
-
else git__free(backend);
|
679
|
+
backend->free(backend);
|
586
680
|
|
587
681
|
git__free(internal);
|
588
682
|
}
|
@@ -602,43 +696,234 @@ void git_odb_free(git_odb *db)
|
|
602
696
|
GIT_REFCOUNT_DEC(db, odb_free);
|
603
697
|
}
|
604
698
|
|
605
|
-
int
|
699
|
+
static int odb_exists_1(
|
700
|
+
git_odb *db,
|
701
|
+
const git_oid *id,
|
702
|
+
bool only_refreshed)
|
606
703
|
{
|
607
|
-
git_odb_object *object;
|
608
704
|
size_t i;
|
609
705
|
bool found = false;
|
610
|
-
|
706
|
+
|
707
|
+
for (i = 0; i < db->backends.length && !found; ++i) {
|
708
|
+
backend_internal *internal = git_vector_get(&db->backends, i);
|
709
|
+
git_odb_backend *b = internal->backend;
|
710
|
+
|
711
|
+
if (only_refreshed && !b->refresh)
|
712
|
+
continue;
|
713
|
+
|
714
|
+
if (b->exists != NULL)
|
715
|
+
found = (bool)b->exists(b, id);
|
716
|
+
}
|
717
|
+
|
718
|
+
return (int)found;
|
719
|
+
}
|
720
|
+
|
721
|
+
static int odb_freshen_1(
|
722
|
+
git_odb *db,
|
723
|
+
const git_oid *id,
|
724
|
+
bool only_refreshed)
|
725
|
+
{
|
726
|
+
size_t i;
|
727
|
+
bool found = false;
|
728
|
+
|
729
|
+
for (i = 0; i < db->backends.length && !found; ++i) {
|
730
|
+
backend_internal *internal = git_vector_get(&db->backends, i);
|
731
|
+
git_odb_backend *b = internal->backend;
|
732
|
+
|
733
|
+
if (only_refreshed && !b->refresh)
|
734
|
+
continue;
|
735
|
+
|
736
|
+
if (b->freshen != NULL)
|
737
|
+
found = !b->freshen(b, id);
|
738
|
+
else if (b->exists != NULL)
|
739
|
+
found = b->exists(b, id);
|
740
|
+
}
|
741
|
+
|
742
|
+
return (int)found;
|
743
|
+
}
|
744
|
+
|
745
|
+
int git_odb__freshen(git_odb *db, const git_oid *id)
|
746
|
+
{
|
747
|
+
assert(db && id);
|
748
|
+
|
749
|
+
if (odb_freshen_1(db, id, false))
|
750
|
+
return 1;
|
751
|
+
|
752
|
+
if (!git_odb_refresh(db))
|
753
|
+
return odb_freshen_1(db, id, true);
|
754
|
+
|
755
|
+
/* Failed to refresh, hence not found */
|
756
|
+
return 0;
|
757
|
+
}
|
758
|
+
|
759
|
+
int git_odb_exists(git_odb *db, const git_oid *id)
|
760
|
+
{
|
761
|
+
git_odb_object *object;
|
611
762
|
|
612
763
|
assert(db && id);
|
613
764
|
|
765
|
+
if (git_oid_iszero(id))
|
766
|
+
return 0;
|
767
|
+
|
614
768
|
if ((object = git_cache_get_raw(odb_cache(db), id)) != NULL) {
|
615
769
|
git_odb_object_free(object);
|
616
|
-
return
|
770
|
+
return 1;
|
617
771
|
}
|
618
772
|
|
619
|
-
|
620
|
-
|
773
|
+
if (odb_exists_1(db, id, false))
|
774
|
+
return 1;
|
775
|
+
|
776
|
+
if (!git_odb_refresh(db))
|
777
|
+
return odb_exists_1(db, id, true);
|
778
|
+
|
779
|
+
/* Failed to refresh, hence not found */
|
780
|
+
return 0;
|
781
|
+
}
|
782
|
+
|
783
|
+
static int odb_exists_prefix_1(git_oid *out, git_odb *db,
|
784
|
+
const git_oid *key, size_t len, bool only_refreshed)
|
785
|
+
{
|
786
|
+
size_t i;
|
787
|
+
int error = GIT_ENOTFOUND, num_found = 0;
|
788
|
+
git_oid last_found = {{0}}, found;
|
789
|
+
|
790
|
+
for (i = 0; i < db->backends.length; ++i) {
|
621
791
|
backend_internal *internal = git_vector_get(&db->backends, i);
|
622
792
|
git_odb_backend *b = internal->backend;
|
623
793
|
|
624
|
-
if (b->
|
625
|
-
|
794
|
+
if (only_refreshed && !b->refresh)
|
795
|
+
continue;
|
796
|
+
|
797
|
+
if (!b->exists_prefix)
|
798
|
+
continue;
|
799
|
+
|
800
|
+
error = b->exists_prefix(&found, b, key, len);
|
801
|
+
if (error == GIT_ENOTFOUND || error == GIT_PASSTHROUGH)
|
802
|
+
continue;
|
803
|
+
if (error)
|
804
|
+
return error;
|
805
|
+
|
806
|
+
/* make sure found item doesn't introduce ambiguity */
|
807
|
+
if (num_found) {
|
808
|
+
if (git_oid__cmp(&last_found, &found))
|
809
|
+
return git_odb__error_ambiguous("multiple matches for prefix");
|
810
|
+
} else {
|
811
|
+
git_oid_cpy(&last_found, &found);
|
812
|
+
num_found++;
|
813
|
+
}
|
626
814
|
}
|
627
815
|
|
628
|
-
if (!
|
629
|
-
|
630
|
-
|
631
|
-
|
816
|
+
if (!num_found)
|
817
|
+
return GIT_ENOTFOUND;
|
818
|
+
|
819
|
+
if (out)
|
820
|
+
git_oid_cpy(out, &last_found);
|
821
|
+
|
822
|
+
return 0;
|
823
|
+
}
|
824
|
+
|
825
|
+
int git_odb_exists_prefix(
|
826
|
+
git_oid *out, git_odb *db, const git_oid *short_id, size_t len)
|
827
|
+
{
|
828
|
+
int error;
|
829
|
+
git_oid key = {{0}};
|
830
|
+
|
831
|
+
assert(db && short_id);
|
832
|
+
|
833
|
+
if (len < GIT_OID_MINPREFIXLEN)
|
834
|
+
return git_odb__error_ambiguous("prefix length too short");
|
835
|
+
|
836
|
+
if (len >= GIT_OID_HEXSZ) {
|
837
|
+
if (git_odb_exists(db, short_id)) {
|
838
|
+
if (out)
|
839
|
+
git_oid_cpy(out, short_id);
|
840
|
+
return 0;
|
841
|
+
} else {
|
842
|
+
return git_odb__error_notfound(
|
843
|
+
"no match for id prefix", short_id, len);
|
844
|
+
}
|
845
|
+
}
|
846
|
+
|
847
|
+
git_oid__cpy_prefix(&key, short_id, len);
|
848
|
+
|
849
|
+
error = odb_exists_prefix_1(out, db, &key, len, false);
|
850
|
+
|
851
|
+
if (error == GIT_ENOTFOUND && !git_odb_refresh(db))
|
852
|
+
error = odb_exists_prefix_1(out, db, &key, len, true);
|
853
|
+
|
854
|
+
if (error == GIT_ENOTFOUND)
|
855
|
+
return git_odb__error_notfound("no match for id prefix", &key, len);
|
856
|
+
|
857
|
+
return error;
|
858
|
+
}
|
859
|
+
|
860
|
+
int git_odb_expand_ids(
|
861
|
+
git_odb *db,
|
862
|
+
git_odb_expand_id *ids,
|
863
|
+
size_t count)
|
864
|
+
{
|
865
|
+
size_t i;
|
866
|
+
|
867
|
+
assert(db && ids);
|
868
|
+
|
869
|
+
for (i = 0; i < count; i++) {
|
870
|
+
git_odb_expand_id *query = &ids[i];
|
871
|
+
int error = GIT_EAMBIGUOUS;
|
872
|
+
|
873
|
+
if (!query->type)
|
874
|
+
query->type = GIT_OBJECT_ANY;
|
875
|
+
|
876
|
+
/* if we have a short OID, expand it first */
|
877
|
+
if (query->length >= GIT_OID_MINPREFIXLEN && query->length < GIT_OID_HEXSZ) {
|
878
|
+
git_oid actual_id;
|
879
|
+
|
880
|
+
error = odb_exists_prefix_1(&actual_id, db, &query->id, query->length, false);
|
881
|
+
if (!error) {
|
882
|
+
git_oid_cpy(&query->id, &actual_id);
|
883
|
+
query->length = GIT_OID_HEXSZ;
|
884
|
+
}
|
632
885
|
}
|
633
886
|
|
634
|
-
|
635
|
-
|
887
|
+
/*
|
888
|
+
* now we ought to have a 40-char OID, either because we've expanded it
|
889
|
+
* or because the user passed a full OID. Ensure its type is right.
|
890
|
+
*/
|
891
|
+
if (query->length >= GIT_OID_HEXSZ) {
|
892
|
+
git_object_t actual_type;
|
893
|
+
|
894
|
+
error = odb_otype_fast(&actual_type, db, &query->id);
|
895
|
+
if (!error) {
|
896
|
+
if (query->type != GIT_OBJECT_ANY && query->type != actual_type)
|
897
|
+
error = GIT_ENOTFOUND;
|
898
|
+
else
|
899
|
+
query->type = actual_type;
|
900
|
+
}
|
901
|
+
}
|
902
|
+
|
903
|
+
switch (error) {
|
904
|
+
/* no errors, so we've successfully expanded the OID */
|
905
|
+
case 0:
|
906
|
+
continue;
|
907
|
+
|
908
|
+
/* the object is missing or ambiguous */
|
909
|
+
case GIT_ENOTFOUND:
|
910
|
+
case GIT_EAMBIGUOUS:
|
911
|
+
memset(&query->id, 0, sizeof(git_oid));
|
912
|
+
query->length = 0;
|
913
|
+
query->type = 0;
|
914
|
+
break;
|
915
|
+
|
916
|
+
/* something went very wrong with the ODB; bail hard */
|
917
|
+
default:
|
918
|
+
return error;
|
919
|
+
}
|
636
920
|
}
|
637
921
|
|
638
|
-
|
922
|
+
git_error_clear();
|
923
|
+
return 0;
|
639
924
|
}
|
640
925
|
|
641
|
-
int git_odb_read_header(size_t *len_p,
|
926
|
+
int git_odb_read_header(size_t *len_p, git_object_t *type_p, git_odb *db, const git_oid *id)
|
642
927
|
{
|
643
928
|
int error;
|
644
929
|
git_odb_object *object;
|
@@ -651,16 +936,63 @@ int git_odb_read_header(size_t *len_p, git_otype *type_p, git_odb *db, const git
|
|
651
936
|
return error;
|
652
937
|
}
|
653
938
|
|
939
|
+
static int odb_read_header_1(
|
940
|
+
size_t *len_p, git_object_t *type_p, git_odb *db,
|
941
|
+
const git_oid *id, bool only_refreshed)
|
942
|
+
{
|
943
|
+
size_t i;
|
944
|
+
git_object_t ht;
|
945
|
+
bool passthrough = false;
|
946
|
+
int error;
|
947
|
+
|
948
|
+
if (!only_refreshed && (ht = odb_hardcoded_type(id)) != GIT_OBJECT_INVALID) {
|
949
|
+
*type_p = ht;
|
950
|
+
*len_p = 0;
|
951
|
+
return 0;
|
952
|
+
}
|
953
|
+
|
954
|
+
for (i = 0; i < db->backends.length; ++i) {
|
955
|
+
backend_internal *internal = git_vector_get(&db->backends, i);
|
956
|
+
git_odb_backend *b = internal->backend;
|
957
|
+
|
958
|
+
if (only_refreshed && !b->refresh)
|
959
|
+
continue;
|
960
|
+
|
961
|
+
if (!b->read_header) {
|
962
|
+
passthrough = true;
|
963
|
+
continue;
|
964
|
+
}
|
965
|
+
|
966
|
+
error = b->read_header(len_p, type_p, b, id);
|
967
|
+
|
968
|
+
switch (error) {
|
969
|
+
case GIT_PASSTHROUGH:
|
970
|
+
passthrough = true;
|
971
|
+
break;
|
972
|
+
case GIT_ENOTFOUND:
|
973
|
+
break;
|
974
|
+
default:
|
975
|
+
return error;
|
976
|
+
}
|
977
|
+
}
|
978
|
+
|
979
|
+
return passthrough ? GIT_PASSTHROUGH : GIT_ENOTFOUND;
|
980
|
+
}
|
981
|
+
|
654
982
|
int git_odb__read_header_or_object(
|
655
|
-
git_odb_object **out, size_t *len_p,
|
983
|
+
git_odb_object **out, size_t *len_p, git_object_t *type_p,
|
656
984
|
git_odb *db, const git_oid *id)
|
657
985
|
{
|
658
|
-
size_t i;
|
659
986
|
int error = GIT_ENOTFOUND;
|
660
987
|
git_odb_object *object;
|
661
988
|
|
662
989
|
assert(db && id && out && len_p && type_p);
|
663
990
|
|
991
|
+
*out = NULL;
|
992
|
+
|
993
|
+
if (git_oid_iszero(id))
|
994
|
+
return error_null_oid(GIT_ENOTFOUND, "cannot read object");
|
995
|
+
|
664
996
|
if ((object = git_cache_get_raw(odb_cache(db), id)) != NULL) {
|
665
997
|
*len_p = object->cached.size;
|
666
998
|
*type_p = object->cached.type;
|
@@ -668,147 +1000,256 @@ int git_odb__read_header_or_object(
|
|
668
1000
|
return 0;
|
669
1001
|
}
|
670
1002
|
|
671
|
-
|
1003
|
+
error = odb_read_header_1(len_p, type_p, db, id, false);
|
672
1004
|
|
673
|
-
|
674
|
-
|
675
|
-
git_odb_backend *b = internal->backend;
|
1005
|
+
if (error == GIT_ENOTFOUND && !git_odb_refresh(db))
|
1006
|
+
error = odb_read_header_1(len_p, type_p, db, id, true);
|
676
1007
|
|
677
|
-
|
678
|
-
|
679
|
-
}
|
1008
|
+
if (error == GIT_ENOTFOUND)
|
1009
|
+
return git_odb__error_notfound("cannot read header for", id, GIT_OID_HEXSZ);
|
680
1010
|
|
681
|
-
|
1011
|
+
/* we found the header; return early */
|
1012
|
+
if (!error)
|
682
1013
|
return 0;
|
683
1014
|
|
684
|
-
|
685
|
-
|
686
|
-
|
687
|
-
|
688
|
-
|
689
|
-
|
690
|
-
|
691
|
-
|
692
|
-
|
693
|
-
|
1015
|
+
if (error == GIT_PASSTHROUGH) {
|
1016
|
+
/*
|
1017
|
+
* no backend has header-reading functionality
|
1018
|
+
* so try using `git_odb_read` instead
|
1019
|
+
*/
|
1020
|
+
error = git_odb_read(&object, db, id);
|
1021
|
+
if (!error) {
|
1022
|
+
*len_p = object->cached.size;
|
1023
|
+
*type_p = object->cached.type;
|
1024
|
+
*out = object;
|
1025
|
+
}
|
1026
|
+
}
|
694
1027
|
|
695
|
-
return
|
1028
|
+
return error;
|
696
1029
|
}
|
697
1030
|
|
698
|
-
int
|
1031
|
+
static int odb_read_1(git_odb_object **out, git_odb *db, const git_oid *id,
|
1032
|
+
bool only_refreshed)
|
699
1033
|
{
|
700
|
-
size_t i
|
701
|
-
int error;
|
702
|
-
bool refreshed = false;
|
1034
|
+
size_t i;
|
703
1035
|
git_rawobj raw;
|
704
1036
|
git_odb_object *object;
|
1037
|
+
git_oid hashed;
|
1038
|
+
bool found = false;
|
1039
|
+
int error = 0;
|
705
1040
|
|
706
|
-
|
707
|
-
|
708
|
-
|
709
|
-
|
710
|
-
return 0;
|
711
|
-
|
712
|
-
attempt_lookup:
|
713
|
-
error = GIT_ENOTFOUND;
|
1041
|
+
if (!only_refreshed) {
|
1042
|
+
if ((error = odb_read_hardcoded(&found, &raw, id)) < 0)
|
1043
|
+
return error;
|
1044
|
+
}
|
714
1045
|
|
715
|
-
for (i = 0; i < db->backends.length &&
|
1046
|
+
for (i = 0; i < db->backends.length && !found; ++i) {
|
716
1047
|
backend_internal *internal = git_vector_get(&db->backends, i);
|
717
1048
|
git_odb_backend *b = internal->backend;
|
718
1049
|
|
1050
|
+
if (only_refreshed && !b->refresh)
|
1051
|
+
continue;
|
1052
|
+
|
719
1053
|
if (b->read != NULL) {
|
720
|
-
++reads;
|
721
1054
|
error = b->read(&raw.data, &raw.len, &raw.type, b, id);
|
1055
|
+
if (error == GIT_PASSTHROUGH || error == GIT_ENOTFOUND)
|
1056
|
+
continue;
|
1057
|
+
|
1058
|
+
if (error < 0)
|
1059
|
+
return error;
|
1060
|
+
|
1061
|
+
found = true;
|
722
1062
|
}
|
723
1063
|
}
|
724
1064
|
|
725
|
-
if (
|
726
|
-
|
727
|
-
return error;
|
1065
|
+
if (!found)
|
1066
|
+
return GIT_ENOTFOUND;
|
728
1067
|
|
729
|
-
|
730
|
-
|
731
|
-
|
1068
|
+
if (git_odb__strict_hash_verification) {
|
1069
|
+
if ((error = git_odb_hash(&hashed, raw.data, raw.len, raw.type)) < 0)
|
1070
|
+
goto out;
|
732
1071
|
|
733
|
-
|
734
|
-
|
735
|
-
|
736
|
-
|
1072
|
+
if (!git_oid_equal(id, &hashed)) {
|
1073
|
+
error = git_odb__error_mismatch(id, &hashed);
|
1074
|
+
goto out;
|
1075
|
+
}
|
737
1076
|
}
|
738
1077
|
|
739
|
-
|
740
|
-
|
1078
|
+
git_error_clear();
|
1079
|
+
if ((object = odb_object__alloc(id, &raw)) == NULL) {
|
1080
|
+
error = -1;
|
1081
|
+
goto out;
|
1082
|
+
}
|
741
1083
|
|
742
1084
|
*out = git_cache_store_raw(odb_cache(db), object);
|
743
|
-
|
1085
|
+
|
1086
|
+
out:
|
1087
|
+
if (error)
|
1088
|
+
git__free(raw.data);
|
1089
|
+
return error;
|
744
1090
|
}
|
745
1091
|
|
746
|
-
int
|
747
|
-
|
1092
|
+
int git_odb_read(git_odb_object **out, git_odb *db, const git_oid *id)
|
1093
|
+
{
|
1094
|
+
int error;
|
1095
|
+
|
1096
|
+
assert(out && db && id);
|
1097
|
+
|
1098
|
+
if (git_oid_iszero(id))
|
1099
|
+
return error_null_oid(GIT_ENOTFOUND, "cannot read object");
|
1100
|
+
|
1101
|
+
*out = git_cache_get_raw(odb_cache(db), id);
|
1102
|
+
if (*out != NULL)
|
1103
|
+
return 0;
|
1104
|
+
|
1105
|
+
error = odb_read_1(out, db, id, false);
|
1106
|
+
|
1107
|
+
if (error == GIT_ENOTFOUND && !git_odb_refresh(db))
|
1108
|
+
error = odb_read_1(out, db, id, true);
|
1109
|
+
|
1110
|
+
if (error == GIT_ENOTFOUND)
|
1111
|
+
return git_odb__error_notfound("no match for id", id, GIT_OID_HEXSZ);
|
1112
|
+
|
1113
|
+
return error;
|
1114
|
+
}
|
1115
|
+
|
1116
|
+
static int odb_otype_fast(git_object_t *type_p, git_odb *db, const git_oid *id)
|
748
1117
|
{
|
749
|
-
size_t i;
|
750
|
-
int error = GIT_ENOTFOUND;
|
751
|
-
git_oid found_full_oid = {{0}};
|
752
|
-
git_rawobj raw;
|
753
|
-
void *data = NULL;
|
754
|
-
bool found = false, refreshed = false;
|
755
1118
|
git_odb_object *object;
|
1119
|
+
size_t _unused;
|
1120
|
+
int error;
|
756
1121
|
|
757
|
-
|
1122
|
+
if (git_oid_iszero(id))
|
1123
|
+
return error_null_oid(GIT_ENOTFOUND, "cannot get object type");
|
758
1124
|
|
759
|
-
if (
|
760
|
-
|
1125
|
+
if ((object = git_cache_get_raw(odb_cache(db), id)) != NULL) {
|
1126
|
+
*type_p = object->cached.type;
|
1127
|
+
return 0;
|
1128
|
+
}
|
761
1129
|
|
762
|
-
|
763
|
-
len = GIT_OID_HEXSZ;
|
1130
|
+
error = odb_read_header_1(&_unused, type_p, db, id, false);
|
764
1131
|
|
765
|
-
if (
|
766
|
-
|
767
|
-
if (
|
768
|
-
|
1132
|
+
if (error == GIT_PASSTHROUGH) {
|
1133
|
+
error = odb_read_1(&object, db, id, false);
|
1134
|
+
if (!error)
|
1135
|
+
*type_p = object->cached.type;
|
1136
|
+
git_odb_object_free(object);
|
769
1137
|
}
|
770
1138
|
|
771
|
-
|
1139
|
+
return error;
|
1140
|
+
}
|
1141
|
+
|
1142
|
+
static int read_prefix_1(git_odb_object **out, git_odb *db,
|
1143
|
+
const git_oid *key, size_t len, bool only_refreshed)
|
1144
|
+
{
|
1145
|
+
size_t i;
|
1146
|
+
int error = 0;
|
1147
|
+
git_oid found_full_oid = {{0}};
|
1148
|
+
git_rawobj raw = {0};
|
1149
|
+
void *data = NULL;
|
1150
|
+
bool found = false;
|
1151
|
+
git_odb_object *object;
|
1152
|
+
|
772
1153
|
for (i = 0; i < db->backends.length; ++i) {
|
773
1154
|
backend_internal *internal = git_vector_get(&db->backends, i);
|
774
1155
|
git_odb_backend *b = internal->backend;
|
775
1156
|
|
1157
|
+
if (only_refreshed && !b->refresh)
|
1158
|
+
continue;
|
1159
|
+
|
776
1160
|
if (b->read_prefix != NULL) {
|
777
1161
|
git_oid full_oid;
|
778
|
-
error = b->read_prefix(&full_oid, &raw.data, &raw.len, &raw.type, b,
|
779
|
-
|
1162
|
+
error = b->read_prefix(&full_oid, &raw.data, &raw.len, &raw.type, b, key, len);
|
1163
|
+
|
1164
|
+
if (error == GIT_ENOTFOUND || error == GIT_PASSTHROUGH) {
|
1165
|
+
error = 0;
|
780
1166
|
continue;
|
1167
|
+
}
|
781
1168
|
|
782
1169
|
if (error)
|
783
|
-
|
1170
|
+
goto out;
|
784
1171
|
|
785
1172
|
git__free(data);
|
786
1173
|
data = raw.data;
|
787
1174
|
|
788
|
-
if (found && git_oid__cmp(&full_oid, &found_full_oid))
|
789
|
-
|
1175
|
+
if (found && git_oid__cmp(&full_oid, &found_full_oid)) {
|
1176
|
+
git_buf buf = GIT_BUF_INIT;
|
1177
|
+
|
1178
|
+
git_buf_printf(&buf, "multiple matches for prefix: %s",
|
1179
|
+
git_oid_tostr_s(&full_oid));
|
1180
|
+
git_buf_printf(&buf, " %s",
|
1181
|
+
git_oid_tostr_s(&found_full_oid));
|
1182
|
+
|
1183
|
+
error = git_odb__error_ambiguous(buf.ptr);
|
1184
|
+
git_buf_dispose(&buf);
|
1185
|
+
goto out;
|
1186
|
+
}
|
790
1187
|
|
791
1188
|
found_full_oid = full_oid;
|
792
1189
|
found = true;
|
793
1190
|
}
|
794
1191
|
}
|
795
1192
|
|
796
|
-
if (!found
|
797
|
-
|
798
|
-
return error;
|
1193
|
+
if (!found)
|
1194
|
+
return GIT_ENOTFOUND;
|
799
1195
|
|
800
|
-
|
801
|
-
|
802
|
-
}
|
1196
|
+
if (git_odb__strict_hash_verification) {
|
1197
|
+
git_oid hash;
|
803
1198
|
|
804
|
-
|
805
|
-
|
1199
|
+
if ((error = git_odb_hash(&hash, raw.data, raw.len, raw.type)) < 0)
|
1200
|
+
goto out;
|
806
1201
|
|
807
|
-
|
808
|
-
|
1202
|
+
if (!git_oid_equal(&found_full_oid, &hash)) {
|
1203
|
+
error = git_odb__error_mismatch(&found_full_oid, &hash);
|
1204
|
+
goto out;
|
1205
|
+
}
|
1206
|
+
}
|
1207
|
+
|
1208
|
+
if ((object = odb_object__alloc(&found_full_oid, &raw)) == NULL) {
|
1209
|
+
error = -1;
|
1210
|
+
goto out;
|
1211
|
+
}
|
809
1212
|
|
810
1213
|
*out = git_cache_store_raw(odb_cache(db), object);
|
811
|
-
|
1214
|
+
|
1215
|
+
out:
|
1216
|
+
if (error)
|
1217
|
+
git__free(raw.data);
|
1218
|
+
|
1219
|
+
return error;
|
1220
|
+
}
|
1221
|
+
|
1222
|
+
int git_odb_read_prefix(
|
1223
|
+
git_odb_object **out, git_odb *db, const git_oid *short_id, size_t len)
|
1224
|
+
{
|
1225
|
+
git_oid key = {{0}};
|
1226
|
+
int error;
|
1227
|
+
|
1228
|
+
assert(out && db);
|
1229
|
+
|
1230
|
+
if (len < GIT_OID_MINPREFIXLEN)
|
1231
|
+
return git_odb__error_ambiguous("prefix length too short");
|
1232
|
+
|
1233
|
+
if (len > GIT_OID_HEXSZ)
|
1234
|
+
len = GIT_OID_HEXSZ;
|
1235
|
+
|
1236
|
+
if (len == GIT_OID_HEXSZ) {
|
1237
|
+
*out = git_cache_get_raw(odb_cache(db), short_id);
|
1238
|
+
if (*out != NULL)
|
1239
|
+
return 0;
|
1240
|
+
}
|
1241
|
+
|
1242
|
+
git_oid__cpy_prefix(&key, short_id, len);
|
1243
|
+
|
1244
|
+
error = read_prefix_1(out, db, &key, len, false);
|
1245
|
+
|
1246
|
+
if (error == GIT_ENOTFOUND && !git_odb_refresh(db))
|
1247
|
+
error = read_prefix_1(out, db, &key, len, true);
|
1248
|
+
|
1249
|
+
if (error == GIT_ENOTFOUND)
|
1250
|
+
return git_odb__error_notfound("no match for prefix", &key, len);
|
1251
|
+
|
1252
|
+
return error;
|
812
1253
|
}
|
813
1254
|
|
814
1255
|
int git_odb_foreach(git_odb *db, git_odb_foreach_cb cb, void *payload)
|
@@ -819,7 +1260,7 @@ int git_odb_foreach(git_odb *db, git_odb_foreach_cb cb, void *payload)
|
|
819
1260
|
git_vector_foreach(&db->backends, i, internal) {
|
820
1261
|
git_odb_backend *b = internal->backend;
|
821
1262
|
int error = b->foreach(b, cb, payload);
|
822
|
-
if (error
|
1263
|
+
if (error != 0)
|
823
1264
|
return error;
|
824
1265
|
}
|
825
1266
|
|
@@ -827,7 +1268,7 @@ int git_odb_foreach(git_odb *db, git_odb_foreach_cb cb, void *payload)
|
|
827
1268
|
}
|
828
1269
|
|
829
1270
|
int git_odb_write(
|
830
|
-
git_oid *oid, git_odb *db, const void *data, size_t len,
|
1271
|
+
git_oid *oid, git_odb *db, const void *data, size_t len, git_object_t type)
|
831
1272
|
{
|
832
1273
|
size_t i;
|
833
1274
|
int error = GIT_ERROR;
|
@@ -836,7 +1277,11 @@ int git_odb_write(
|
|
836
1277
|
assert(oid && db);
|
837
1278
|
|
838
1279
|
git_odb_hash(oid, data, len, type);
|
839
|
-
|
1280
|
+
|
1281
|
+
if (git_oid_iszero(oid))
|
1282
|
+
return error_null_oid(GIT_EINVALID, "cannot write object");
|
1283
|
+
|
1284
|
+
if (git_odb__freshen(db, oid))
|
840
1285
|
return 0;
|
841
1286
|
|
842
1287
|
for (i = 0; i < db->backends.length && error < 0; ++i) {
|
@@ -848,7 +1293,7 @@ int git_odb_write(
|
|
848
1293
|
continue;
|
849
1294
|
|
850
1295
|
if (b->write != NULL)
|
851
|
-
error = b->write(
|
1296
|
+
error = b->write(b, oid, data, len, type);
|
852
1297
|
}
|
853
1298
|
|
854
1299
|
if (!error || error == GIT_PASSTHROUGH)
|
@@ -862,17 +1307,31 @@ int git_odb_write(
|
|
862
1307
|
return error;
|
863
1308
|
|
864
1309
|
stream->write(stream, data, len);
|
865
|
-
error = stream->finalize_write(
|
866
|
-
|
1310
|
+
error = stream->finalize_write(stream, oid);
|
1311
|
+
git_odb_stream_free(stream);
|
867
1312
|
|
868
1313
|
return error;
|
869
1314
|
}
|
870
1315
|
|
1316
|
+
static int hash_header(git_hash_ctx *ctx, git_off_t size, git_object_t type)
|
1317
|
+
{
|
1318
|
+
char header[64];
|
1319
|
+
size_t hdrlen;
|
1320
|
+
int error;
|
1321
|
+
|
1322
|
+
if ((error = git_odb__format_object_header(&hdrlen,
|
1323
|
+
header, sizeof(header), size, type)) < 0)
|
1324
|
+
return error;
|
1325
|
+
|
1326
|
+
return git_hash_update(ctx, header, hdrlen);
|
1327
|
+
}
|
1328
|
+
|
871
1329
|
int git_odb_open_wstream(
|
872
|
-
git_odb_stream **stream, git_odb *db,
|
1330
|
+
git_odb_stream **stream, git_odb *db, git_off_t size, git_object_t type)
|
873
1331
|
{
|
874
1332
|
size_t i, writes = 0;
|
875
1333
|
int error = GIT_ERROR;
|
1334
|
+
git_hash_ctx *ctx = NULL;
|
876
1335
|
|
877
1336
|
assert(stream && db);
|
878
1337
|
|
@@ -893,15 +1352,93 @@ int git_odb_open_wstream(
|
|
893
1352
|
}
|
894
1353
|
}
|
895
1354
|
|
896
|
-
if (error
|
897
|
-
error
|
898
|
-
|
899
|
-
|
1355
|
+
if (error < 0) {
|
1356
|
+
if (error == GIT_PASSTHROUGH)
|
1357
|
+
error = 0;
|
1358
|
+
else if (!writes)
|
1359
|
+
error = git_odb__error_unsupported_in_backend("write object");
|
1360
|
+
|
1361
|
+
goto done;
|
1362
|
+
}
|
1363
|
+
|
1364
|
+
ctx = git__malloc(sizeof(git_hash_ctx));
|
1365
|
+
GIT_ERROR_CHECK_ALLOC(ctx);
|
900
1366
|
|
1367
|
+
if ((error = git_hash_ctx_init(ctx)) < 0 ||
|
1368
|
+
(error = hash_header(ctx, size, type)) < 0)
|
1369
|
+
goto done;
|
1370
|
+
|
1371
|
+
(*stream)->hash_ctx = ctx;
|
1372
|
+
(*stream)->declared_size = size;
|
1373
|
+
(*stream)->received_bytes = 0;
|
1374
|
+
|
1375
|
+
done:
|
1376
|
+
if (error)
|
1377
|
+
git__free(ctx);
|
901
1378
|
return error;
|
902
1379
|
}
|
903
1380
|
|
904
|
-
int
|
1381
|
+
static int git_odb_stream__invalid_length(
|
1382
|
+
const git_odb_stream *stream,
|
1383
|
+
const char *action)
|
1384
|
+
{
|
1385
|
+
git_error_set(GIT_ERROR_ODB,
|
1386
|
+
"cannot %s - "
|
1387
|
+
"Invalid length. %"PRId64" was expected. The "
|
1388
|
+
"total size of the received chunks amounts to %"PRId64".",
|
1389
|
+
action, stream->declared_size, stream->received_bytes);
|
1390
|
+
|
1391
|
+
return -1;
|
1392
|
+
}
|
1393
|
+
|
1394
|
+
int git_odb_stream_write(git_odb_stream *stream, const char *buffer, size_t len)
|
1395
|
+
{
|
1396
|
+
git_hash_update(stream->hash_ctx, buffer, len);
|
1397
|
+
|
1398
|
+
stream->received_bytes += len;
|
1399
|
+
|
1400
|
+
if (stream->received_bytes > stream->declared_size)
|
1401
|
+
return git_odb_stream__invalid_length(stream,
|
1402
|
+
"stream_write()");
|
1403
|
+
|
1404
|
+
return stream->write(stream, buffer, len);
|
1405
|
+
}
|
1406
|
+
|
1407
|
+
int git_odb_stream_finalize_write(git_oid *out, git_odb_stream *stream)
|
1408
|
+
{
|
1409
|
+
if (stream->received_bytes != stream->declared_size)
|
1410
|
+
return git_odb_stream__invalid_length(stream,
|
1411
|
+
"stream_finalize_write()");
|
1412
|
+
|
1413
|
+
git_hash_final(out, stream->hash_ctx);
|
1414
|
+
|
1415
|
+
if (git_odb__freshen(stream->backend->odb, out))
|
1416
|
+
return 0;
|
1417
|
+
|
1418
|
+
return stream->finalize_write(stream, out);
|
1419
|
+
}
|
1420
|
+
|
1421
|
+
int git_odb_stream_read(git_odb_stream *stream, char *buffer, size_t len)
|
1422
|
+
{
|
1423
|
+
return stream->read(stream, buffer, len);
|
1424
|
+
}
|
1425
|
+
|
1426
|
+
void git_odb_stream_free(git_odb_stream *stream)
|
1427
|
+
{
|
1428
|
+
if (stream == NULL)
|
1429
|
+
return;
|
1430
|
+
|
1431
|
+
git_hash_ctx_cleanup(stream->hash_ctx);
|
1432
|
+
git__free(stream->hash_ctx);
|
1433
|
+
stream->free(stream);
|
1434
|
+
}
|
1435
|
+
|
1436
|
+
int git_odb_open_rstream(
|
1437
|
+
git_odb_stream **stream,
|
1438
|
+
size_t *len,
|
1439
|
+
git_object_t *type,
|
1440
|
+
git_odb *db,
|
1441
|
+
const git_oid *oid)
|
905
1442
|
{
|
906
1443
|
size_t i, reads = 0;
|
907
1444
|
int error = GIT_ERROR;
|
@@ -914,7 +1451,7 @@ int git_odb_open_rstream(git_odb_stream **stream, git_odb *db, const git_oid *oi
|
|
914
1451
|
|
915
1452
|
if (b->readstream != NULL) {
|
916
1453
|
++reads;
|
917
|
-
error = b->readstream(stream, b, oid);
|
1454
|
+
error = b->readstream(stream, len, type, b, oid);
|
918
1455
|
}
|
919
1456
|
}
|
920
1457
|
|
@@ -926,7 +1463,7 @@ int git_odb_open_rstream(git_odb_stream **stream, git_odb *db, const git_oid *oi
|
|
926
1463
|
return error;
|
927
1464
|
}
|
928
1465
|
|
929
|
-
int git_odb_write_pack(struct git_odb_writepack **out, git_odb *db,
|
1466
|
+
int git_odb_write_pack(struct git_odb_writepack **out, git_odb *db, git_transfer_progress_cb progress_cb, void *progress_payload)
|
930
1467
|
{
|
931
1468
|
size_t i, writes = 0;
|
932
1469
|
int error = GIT_ERROR;
|
@@ -943,7 +1480,7 @@ int git_odb_write_pack(struct git_odb_writepack **out, git_odb *db, git_transfer
|
|
943
1480
|
|
944
1481
|
if (b->writepack != NULL) {
|
945
1482
|
++writes;
|
946
|
-
error = b->writepack(out, b, progress_cb, progress_payload);
|
1483
|
+
error = b->writepack(out, b, db, progress_cb, progress_payload);
|
947
1484
|
}
|
948
1485
|
}
|
949
1486
|
|
@@ -980,21 +1517,48 @@ int git_odb_refresh(struct git_odb *db)
|
|
980
1517
|
return 0;
|
981
1518
|
}
|
982
1519
|
|
983
|
-
int
|
1520
|
+
int git_odb__error_mismatch(const git_oid *expected, const git_oid *actual)
|
1521
|
+
{
|
1522
|
+
char expected_oid[GIT_OID_HEXSZ + 1], actual_oid[GIT_OID_HEXSZ + 1];
|
1523
|
+
|
1524
|
+
git_oid_tostr(expected_oid, sizeof(expected_oid), expected);
|
1525
|
+
git_oid_tostr(actual_oid, sizeof(actual_oid), actual);
|
1526
|
+
|
1527
|
+
git_error_set(GIT_ERROR_ODB, "object hash mismatch - expected %s but got %s",
|
1528
|
+
expected_oid, actual_oid);
|
1529
|
+
|
1530
|
+
return GIT_EMISMATCH;
|
1531
|
+
}
|
1532
|
+
|
1533
|
+
int git_odb__error_notfound(
|
1534
|
+
const char *message, const git_oid *oid, size_t oid_len)
|
984
1535
|
{
|
985
1536
|
if (oid != NULL) {
|
986
1537
|
char oid_str[GIT_OID_HEXSZ + 1];
|
987
|
-
git_oid_tostr(oid_str,
|
988
|
-
|
1538
|
+
git_oid_tostr(oid_str, oid_len+1, oid);
|
1539
|
+
git_error_set(GIT_ERROR_ODB, "object not found - %s (%.*s)",
|
1540
|
+
message, (int) oid_len, oid_str);
|
989
1541
|
} else
|
990
|
-
|
1542
|
+
git_error_set(GIT_ERROR_ODB, "object not found - %s", message);
|
991
1543
|
|
992
1544
|
return GIT_ENOTFOUND;
|
993
1545
|
}
|
994
1546
|
|
1547
|
+
static int error_null_oid(int error, const char *message)
|
1548
|
+
{
|
1549
|
+
git_error_set(GIT_ERROR_ODB, "odb: %s: null OID cannot exist", message);
|
1550
|
+
return error;
|
1551
|
+
}
|
1552
|
+
|
995
1553
|
int git_odb__error_ambiguous(const char *message)
|
996
1554
|
{
|
997
|
-
|
1555
|
+
git_error_set(GIT_ERROR_ODB, "ambiguous SHA1 prefix - %s", message);
|
998
1556
|
return GIT_EAMBIGUOUS;
|
999
1557
|
}
|
1000
1558
|
|
1559
|
+
int git_odb_init_backend(git_odb_backend *backend, unsigned int version)
|
1560
|
+
{
|
1561
|
+
GIT_INIT_STRUCTURE_FROM_TEMPLATE(
|
1562
|
+
backend, version, git_odb_backend, GIT_ODB_BACKEND_INIT);
|
1563
|
+
return 0;
|
1564
|
+
}
|