rugged 0.17.0b2 → 0.17.0.b6
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +10 -11
- data/ext/rugged/extconf.rb +5 -13
- data/ext/rugged/rugged_commit.c +2 -5
- data/ext/rugged/rugged_reference.c +29 -28
- data/ext/rugged/rugged_remote.c +1 -1
- data/ext/rugged/rugged_repo.c +4 -1
- data/ext/rugged/rugged_tree.c +20 -19
- data/lib/rugged/commit.rb +5 -1
- data/lib/rugged/repository.rb +6 -4
- data/lib/rugged/version.rb +1 -1
- data/test/config_test.rb +1 -1
- data/test/index_test.rb +4 -2
- data/test/object_test.rb +3 -3
- data/test/reference_test.rb +66 -1
- data/test/repo_test.rb +4 -4
- data/test/tree_test.rb +1 -1
- data/test/walker_test.rb +1 -1
- data/vendor/libgit2/Makefile.embed +42 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/http-parser/http_parser.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/http-parser/http_parser.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/regex/config.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/regex/regcomp.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/regex/regex.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/regex/regex.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/regex/regex_internal.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/regex/regex_internal.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/regex/regexec.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/zlib/adler32.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/zlib/crc32.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/zlib/crc32.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/zlib/deflate.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/zlib/deflate.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/zlib/inffast.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/zlib/inffast.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/zlib/inffixed.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/zlib/inflate.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/zlib/inflate.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/zlib/inftrees.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/zlib/inftrees.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/zlib/trees.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/zlib/trees.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/zlib/zconf.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/zlib/zlib.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/zlib/zutil.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/zlib/zutil.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2.h +6 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/attr.h +35 -20
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/blob.h +1 -1
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/branch.h +62 -24
- data/vendor/libgit2/include/git2/checkout.h +66 -0
- data/vendor/libgit2/include/git2/clone.h +59 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/commit.h +22 -3
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/common.h +27 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/config.h +22 -4
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/diff.h +20 -1
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/errors.h +2 -37
- data/vendor/libgit2/include/git2/ignore.h +74 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/index.h +37 -5
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/indexer.h +2 -2
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/inttypes.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/merge.h +10 -0
- data/vendor/libgit2/include/git2/message.h +43 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/net.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/notes.h +24 -20
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/object.h +18 -1
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/odb.h +16 -1
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/odb_backend.h +8 -1
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/oid.h +26 -2
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/reflog.h +39 -9
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/refs.h +55 -3
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/refspec.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/remote.h +68 -2
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/repository.h +39 -1
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/reset.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/revparse.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/revwalk.h +2 -2
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/signature.h +3 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/status.h +5 -2
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/stdint.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/submodule.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/tag.h +3 -3
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/threads.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/tree.h +77 -20
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/types.h +14 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/version.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/windows.h +0 -0
- data/vendor/libgit2/src/amiga/map.c +51 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/attr.c +39 -6
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/attr.h +1 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/attr_file.c +2 -16
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/attr_file.h +4 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/blob.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/blob.h +0 -0
- data/vendor/libgit2/src/branch.c +294 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/bswap.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/buffer.c +40 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/buffer.h +22 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/cache.c +1 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/cache.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/cc-compat.h +0 -0
- data/vendor/libgit2/src/checkout.c +230 -0
- data/vendor/libgit2/src/clone.c +254 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/commit.c +42 -16
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/commit.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/common.h +3 -9
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/compat/fnmatch.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/compat/fnmatch.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/config.c +15 -5
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/config.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/config_cache.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/config_file.c +86 -19
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/config_file.h +16 -1
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/crlf.c +92 -4
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/date.c +20 -20
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/delta-apply.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/delta-apply.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/diff.c +45 -18
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/diff.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/diff_output.c +63 -46
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/errors.c +0 -0
- data/vendor/libgit2/src/fetch.c +380 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/fetch.h +1 -2
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/filebuf.c +7 -2
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/filebuf.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/fileops.c +16 -1
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/fileops.h +10 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/filter.c +38 -2
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/filter.h +15 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/global.c +5 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/global.h +2 -6
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/hash.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/hash.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/ignore.c +50 -1
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/ignore.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/index.c +95 -28
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/index.h +5 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/indexer.c +27 -25
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/iterator.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/iterator.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/khash.h +6 -4
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/map.h +4 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/message.c +27 -2
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/message.h +2 -1
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/mwindow.c +54 -10
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/mwindow.h +1 -1
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/netops.c +48 -38
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/netops.h +7 -4
- data/vendor/libgit2/src/notes.c +610 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/notes.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/object.c +73 -2
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/odb.c +20 -1
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/odb.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/odb_loose.c +89 -3
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/odb_pack.c +61 -3
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/oid.c +1 -6
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/oidmap.h +1 -6
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/pack.c +49 -4
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/pack.h +5 -1
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/path.c +144 -21
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/path.h +46 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/pkt.c +30 -8
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/pkt.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/pool.c +7 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/pool.h +7 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/posix.c +92 -1
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/posix.h +36 -1
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/ppc/sha1.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/ppc/sha1.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/pqueue.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/pqueue.h +0 -0
- data/vendor/libgit2/src/protocol.c +88 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/protocol.h +3 -9
- data/vendor/libgit2/src/reflog.c +489 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/reflog.h +3 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/refs.c +95 -52
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/refs.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/refspec.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/refspec.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/remote.c +130 -8
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/remote.h +6 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/repository.c +167 -42
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/repository.h +7 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/reset.c +1 -1
- data/vendor/libgit2/src/revparse.c +830 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/revwalk.c +83 -15
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/sha1.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/sha1.h +5 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/sha1_lookup.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/sha1_lookup.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/signature.c +19 -5
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/signature.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/status.c +24 -18
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/strmap.h +1 -1
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/submodule.c +3 -3
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/tag.c +2 -9
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/tag.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/thread-utils.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/thread-utils.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/transport.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/transport.h +13 -9
- data/vendor/libgit2/src/transports/git.c +245 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/transports/http.c +93 -336
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/transports/local.c +35 -32
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/tree-cache.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/tree-cache.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/tree.c +214 -124
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/tree.h +7 -3
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/tsort.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/unix/map.c +2 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/unix/posix.h +2 -1
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/util.c +30 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/util.h +13 -6
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/vector.c +1 -1
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/vector.h +5 -5
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/win32/dir.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/win32/dir.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/win32/map.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/win32/mingw-compat.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/win32/msvc-compat.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/win32/posix.h +1 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/win32/posix_w32.c +17 -1
- data/vendor/libgit2/src/win32/precompiled.c +1 -0
- data/vendor/libgit2/src/win32/precompiled.h +19 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/win32/pthread.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/win32/pthread.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/win32/utf-conv.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/win32/utf-conv.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/xdiff/xdiff.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/xdiff/xdiffi.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/xdiff/xdiffi.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/xdiff/xemit.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/xdiff/xemit.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/xdiff/xhistogram.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/xdiff/xinclude.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/xdiff/xmacros.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/xdiff/xmerge.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/xdiff/xpatience.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/xdiff/xprepare.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/xdiff/xprepare.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/xdiff/xtypes.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/xdiff/xutils.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/xdiff/xutils.h +0 -0
- metadata +265 -348
- data/ext/rugged/vendor/libgit2-dist.tar.gz +0 -0
- data/ext/rugged/vendor/libgit2-dist/examples/diff.c +0 -238
- data/ext/rugged/vendor/libgit2-dist/examples/general.c +0 -451
- data/ext/rugged/vendor/libgit2-dist/examples/network/common.h +0 -14
- data/ext/rugged/vendor/libgit2-dist/examples/network/fetch.c +0 -113
- data/ext/rugged/vendor/libgit2-dist/examples/network/git2.c +0 -62
- data/ext/rugged/vendor/libgit2-dist/examples/network/index-pack.c +0 -102
- data/ext/rugged/vendor/libgit2-dist/examples/network/ls-remote.c +0 -76
- data/ext/rugged/vendor/libgit2-dist/examples/showindex.c +0 -43
- data/ext/rugged/vendor/libgit2-dist/src/branch.c +0 -208
- data/ext/rugged/vendor/libgit2-dist/src/branch.h +0 -17
- data/ext/rugged/vendor/libgit2-dist/src/fetch.c +0 -200
- data/ext/rugged/vendor/libgit2-dist/src/notes.c +0 -548
- data/ext/rugged/vendor/libgit2-dist/src/protocol.c +0 -58
- data/ext/rugged/vendor/libgit2-dist/src/reflog.c +0 -340
- data/ext/rugged/vendor/libgit2-dist/src/revparse.c +0 -748
- data/ext/rugged/vendor/libgit2-dist/src/transports/git.c +0 -477
- data/ext/rugged/vendor/libgit2-dist/tests-clar/attr/attr_expect.h +0 -43
- data/ext/rugged/vendor/libgit2-dist/tests-clar/attr/file.c +0 -226
- data/ext/rugged/vendor/libgit2-dist/tests-clar/attr/flags.c +0 -108
- data/ext/rugged/vendor/libgit2-dist/tests-clar/attr/lookup.c +0 -262
- data/ext/rugged/vendor/libgit2-dist/tests-clar/attr/repo.c +0 -273
- data/ext/rugged/vendor/libgit2-dist/tests-clar/buf/basic.c +0 -29
- data/ext/rugged/vendor/libgit2-dist/tests-clar/clar_helpers.c +0 -181
- data/ext/rugged/vendor/libgit2-dist/tests-clar/clar_libgit2.h +0 -55
- data/ext/rugged/vendor/libgit2-dist/tests-clar/commit/commit.c +0 -44
- data/ext/rugged/vendor/libgit2-dist/tests-clar/commit/parse.c +0 -350
- data/ext/rugged/vendor/libgit2-dist/tests-clar/commit/signature.c +0 -65
- data/ext/rugged/vendor/libgit2-dist/tests-clar/commit/write.c +0 -140
- data/ext/rugged/vendor/libgit2-dist/tests-clar/config/add.c +0 -37
- data/ext/rugged/vendor/libgit2-dist/tests-clar/config/multivar.c +0 -151
- data/ext/rugged/vendor/libgit2-dist/tests-clar/config/new.c +0 -36
- data/ext/rugged/vendor/libgit2-dist/tests-clar/config/read.c +0 -221
- data/ext/rugged/vendor/libgit2-dist/tests-clar/config/stress.c +0 -61
- data/ext/rugged/vendor/libgit2-dist/tests-clar/config/write.c +0 -92
- data/ext/rugged/vendor/libgit2-dist/tests-clar/core/buffer.c +0 -613
- data/ext/rugged/vendor/libgit2-dist/tests-clar/core/dirent.c +0 -235
- data/ext/rugged/vendor/libgit2-dist/tests-clar/core/env.c +0 -115
- data/ext/rugged/vendor/libgit2-dist/tests-clar/core/errors.c +0 -60
- data/ext/rugged/vendor/libgit2-dist/tests-clar/core/filebuf.c +0 -92
- data/ext/rugged/vendor/libgit2-dist/tests-clar/core/hex.c +0 -22
- data/ext/rugged/vendor/libgit2-dist/tests-clar/core/oid.c +0 -18
- data/ext/rugged/vendor/libgit2-dist/tests-clar/core/path.c +0 -420
- data/ext/rugged/vendor/libgit2-dist/tests-clar/core/pool.c +0 -85
- data/ext/rugged/vendor/libgit2-dist/tests-clar/core/rmdir.c +0 -68
- data/ext/rugged/vendor/libgit2-dist/tests-clar/core/string.c +0 -28
- data/ext/rugged/vendor/libgit2-dist/tests-clar/core/strmap.c +0 -102
- data/ext/rugged/vendor/libgit2-dist/tests-clar/core/strtol.c +0 -37
- data/ext/rugged/vendor/libgit2-dist/tests-clar/core/vector.c +0 -191
- data/ext/rugged/vendor/libgit2-dist/tests-clar/date/date.c +0 -15
- data/ext/rugged/vendor/libgit2-dist/tests-clar/diff/blob.c +0 -254
- data/ext/rugged/vendor/libgit2-dist/tests-clar/diff/diff_helpers.c +0 -104
- data/ext/rugged/vendor/libgit2-dist/tests-clar/diff/diff_helpers.h +0 -47
- data/ext/rugged/vendor/libgit2-dist/tests-clar/diff/index.c +0 -92
- data/ext/rugged/vendor/libgit2-dist/tests-clar/diff/iterator.c +0 -572
- data/ext/rugged/vendor/libgit2-dist/tests-clar/diff/patch.c +0 -99
- data/ext/rugged/vendor/libgit2-dist/tests-clar/diff/tree.c +0 -210
- data/ext/rugged/vendor/libgit2-dist/tests-clar/diff/workdir.c +0 -543
- data/ext/rugged/vendor/libgit2-dist/tests-clar/index/read_tree.c +0 -46
- data/ext/rugged/vendor/libgit2-dist/tests-clar/index/rename.c +0 -50
- data/ext/rugged/vendor/libgit2-dist/tests-clar/index/tests.c +0 -246
- data/ext/rugged/vendor/libgit2-dist/tests-clar/network/createremotethenload.c +0 -33
- data/ext/rugged/vendor/libgit2-dist/tests-clar/network/remotelocal.c +0 -137
- data/ext/rugged/vendor/libgit2-dist/tests-clar/network/remotes.c +0 -183
- data/ext/rugged/vendor/libgit2-dist/tests-clar/notes/notes.c +0 -133
- data/ext/rugged/vendor/libgit2-dist/tests-clar/notes/notesref.c +0 -57
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/blob/filter.c +0 -125
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/blob/fromchunks.c +0 -87
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/blob/write.c +0 -69
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/commit/commitstagedfile.c +0 -126
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/lookup.c +0 -63
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/message.c +0 -171
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/raw/chars.c +0 -41
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/raw/compare.c +0 -124
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/raw/convert.c +0 -75
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/raw/data.h +0 -323
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/raw/fromstr.c +0 -30
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/raw/hash.c +0 -166
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/raw/short.c +0 -94
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/raw/size.c +0 -13
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/raw/type2string.c +0 -54
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/raw/write.c +0 -455
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/tag/peel.c +0 -56
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/tag/read.c +0 -130
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/tag/write.c +0 -192
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/tree/frompath.c +0 -81
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/tree/read.c +0 -75
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/tree/write.c +0 -84
- data/ext/rugged/vendor/libgit2-dist/tests-clar/odb/loose.c +0 -84
- data/ext/rugged/vendor/libgit2-dist/tests-clar/odb/loose_data.h +0 -522
- data/ext/rugged/vendor/libgit2-dist/tests-clar/odb/mixed.c +0 -24
- data/ext/rugged/vendor/libgit2-dist/tests-clar/odb/pack_data.h +0 -151
- data/ext/rugged/vendor/libgit2-dist/tests-clar/odb/packed.c +0 -78
- data/ext/rugged/vendor/libgit2-dist/tests-clar/odb/sorting.c +0 -71
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/branches/create.c +0 -113
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/branches/delete.c +0 -91
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/branches/listall.c +0 -78
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/branches/move.c +0 -72
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/crashes.c +0 -17
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/create.c +0 -149
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/delete.c +0 -85
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/list.c +0 -53
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/listall.c +0 -36
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/lookup.c +0 -42
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/normalize.c +0 -200
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/overwrite.c +0 -136
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/pack.c +0 -67
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/read.c +0 -194
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/reflog.c +0 -123
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/rename.c +0 -339
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/revparse.c +0 -174
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/unicode.c +0 -42
- data/ext/rugged/vendor/libgit2-dist/tests-clar/repo/discover.c +0 -142
- data/ext/rugged/vendor/libgit2-dist/tests-clar/repo/getters.c +0 -86
- data/ext/rugged/vendor/libgit2-dist/tests-clar/repo/init.c +0 -249
- data/ext/rugged/vendor/libgit2-dist/tests-clar/repo/open.c +0 -282
- data/ext/rugged/vendor/libgit2-dist/tests-clar/repo/setters.c +0 -80
- data/ext/rugged/vendor/libgit2-dist/tests-clar/reset/mixed.c +0 -47
- data/ext/rugged/vendor/libgit2-dist/tests-clar/reset/reset_helpers.c +0 -10
- data/ext/rugged/vendor/libgit2-dist/tests-clar/reset/reset_helpers.h +0 -6
- data/ext/rugged/vendor/libgit2-dist/tests-clar/reset/soft.c +0 -102
- data/ext/rugged/vendor/libgit2-dist/tests-clar/revwalk/basic.c +0 -181
- data/ext/rugged/vendor/libgit2-dist/tests-clar/revwalk/mergebase.c +0 -148
- data/ext/rugged/vendor/libgit2-dist/tests-clar/status/ignore.c +0 -147
- data/ext/rugged/vendor/libgit2-dist/tests-clar/status/single.c +0 -29
- data/ext/rugged/vendor/libgit2-dist/tests-clar/status/status_data.h +0 -202
- data/ext/rugged/vendor/libgit2-dist/tests-clar/status/status_helpers.c +0 -49
- data/ext/rugged/vendor/libgit2-dist/tests-clar/status/status_helpers.h +0 -33
- data/ext/rugged/vendor/libgit2-dist/tests-clar/status/submodules.c +0 -112
- data/ext/rugged/vendor/libgit2-dist/tests-clar/status/worktree.c +0 -649
- data/ext/rugged/vendor/libgit2-dist/tests-clar/threads/basic.c +0 -20
File without changes
|
@@ -81,7 +81,7 @@ int git_object_lookup_prefix(
|
|
81
81
|
git_object **object_out,
|
82
82
|
git_repository *repo,
|
83
83
|
const git_oid *id,
|
84
|
-
|
84
|
+
size_t len,
|
85
85
|
git_otype type)
|
86
86
|
{
|
87
87
|
git_object *object = NULL;
|
@@ -156,8 +156,10 @@ int git_object_lookup_prefix(
|
|
156
156
|
|
157
157
|
type = odb_obj->raw.type;
|
158
158
|
|
159
|
-
if (create_object(&object, type) < 0)
|
159
|
+
if (create_object(&object, type) < 0) {
|
160
|
+
git_odb_object_free(odb_obj);
|
160
161
|
return -1;
|
162
|
+
}
|
161
163
|
|
162
164
|
/* Initialize parent object */
|
163
165
|
git_oid_cpy(&object->cached.oid, &odb_obj->cached.oid);
|
@@ -331,3 +333,72 @@ int git_object__resolve_to_type(git_object **obj, git_otype type)
|
|
331
333
|
*obj = scan;
|
332
334
|
return error;
|
333
335
|
}
|
336
|
+
|
337
|
+
static int dereference_object(git_object **dereferenced, git_object *obj)
|
338
|
+
{
|
339
|
+
git_otype type = git_object_type(obj);
|
340
|
+
|
341
|
+
switch (type) {
|
342
|
+
case GIT_OBJ_COMMIT:
|
343
|
+
return git_commit_tree((git_tree **)dereferenced, (git_commit*)obj);
|
344
|
+
break;
|
345
|
+
|
346
|
+
case GIT_OBJ_TAG:
|
347
|
+
return git_tag_target(dereferenced, (git_tag*)obj);
|
348
|
+
break;
|
349
|
+
|
350
|
+
default:
|
351
|
+
return GIT_ENOTFOUND;
|
352
|
+
break;
|
353
|
+
}
|
354
|
+
}
|
355
|
+
|
356
|
+
static int peel_error(int error, const char* msg)
|
357
|
+
{
|
358
|
+
giterr_set(GITERR_INVALID, "The given object cannot be peeled - %s", msg);
|
359
|
+
return error;
|
360
|
+
}
|
361
|
+
|
362
|
+
int git_object_peel(
|
363
|
+
git_object **peeled,
|
364
|
+
git_object *object,
|
365
|
+
git_otype target_type)
|
366
|
+
{
|
367
|
+
git_object *source, *deref = NULL;
|
368
|
+
|
369
|
+
assert(object);
|
370
|
+
|
371
|
+
if (git_object_type(object) == target_type)
|
372
|
+
return git_object__dup(peeled, object);
|
373
|
+
|
374
|
+
if (target_type == GIT_OBJ_BLOB
|
375
|
+
|| target_type == GIT_OBJ_ANY)
|
376
|
+
return peel_error(GIT_EAMBIGUOUS, "Ambiguous target type");
|
377
|
+
|
378
|
+
if (git_object_type(object) == GIT_OBJ_BLOB)
|
379
|
+
return peel_error(GIT_ERROR, "A blob cannot be dereferenced");
|
380
|
+
|
381
|
+
source = object;
|
382
|
+
|
383
|
+
while (true) {
|
384
|
+
if (dereference_object(&deref, source) < 0)
|
385
|
+
goto cleanup;
|
386
|
+
|
387
|
+
if (source != object)
|
388
|
+
git_object_free(source);
|
389
|
+
|
390
|
+
if (git_object_type(deref) == target_type) {
|
391
|
+
*peeled = deref;
|
392
|
+
return 0;
|
393
|
+
}
|
394
|
+
|
395
|
+
source = deref;
|
396
|
+
deref = NULL;
|
397
|
+
}
|
398
|
+
|
399
|
+
cleanup:
|
400
|
+
if (source != object)
|
401
|
+
git_object_free(source);
|
402
|
+
git_object_free(deref);
|
403
|
+
return -1;
|
404
|
+
}
|
@@ -14,6 +14,7 @@
|
|
14
14
|
#include "delta-apply.h"
|
15
15
|
|
16
16
|
#include "git2/odb_backend.h"
|
17
|
+
#include "git2/oid.h"
|
17
18
|
|
18
19
|
#define GIT_ALTERNATES_FILE "info/alternates"
|
19
20
|
|
@@ -553,12 +554,13 @@ int git_odb_read(git_odb_object **out, git_odb *db, const git_oid *id)
|
|
553
554
|
}
|
554
555
|
|
555
556
|
int git_odb_read_prefix(
|
556
|
-
git_odb_object **out, git_odb *db, const git_oid *short_id,
|
557
|
+
git_odb_object **out, git_odb *db, const git_oid *short_id, size_t len)
|
557
558
|
{
|
558
559
|
unsigned int i;
|
559
560
|
int error = GIT_ENOTFOUND;
|
560
561
|
git_oid found_full_oid = {{0}};
|
561
562
|
git_rawobj raw;
|
563
|
+
void *data = NULL;
|
562
564
|
bool found = false;
|
563
565
|
|
564
566
|
assert(out && db);
|
@@ -588,6 +590,8 @@ int git_odb_read_prefix(
|
|
588
590
|
if (error)
|
589
591
|
return error;
|
590
592
|
|
593
|
+
git__free(data);
|
594
|
+
data = raw.data;
|
591
595
|
if (found && git_oid_cmp(&full_oid, &found_full_oid))
|
592
596
|
return git_odb__error_ambiguous("multiple matches for prefix");
|
593
597
|
found_full_oid = full_oid;
|
@@ -602,6 +606,21 @@ int git_odb_read_prefix(
|
|
602
606
|
return 0;
|
603
607
|
}
|
604
608
|
|
609
|
+
int git_odb_foreach(git_odb *db, int (*cb)(git_oid *oid, void *data), void *data)
|
610
|
+
{
|
611
|
+
unsigned int i;
|
612
|
+
backend_internal *internal;
|
613
|
+
|
614
|
+
git_vector_foreach(&db->backends, i, internal) {
|
615
|
+
git_odb_backend *b = internal->backend;
|
616
|
+
int error = b->foreach(b, cb, data);
|
617
|
+
if (error < 0)
|
618
|
+
return error;
|
619
|
+
}
|
620
|
+
|
621
|
+
return 0;
|
622
|
+
}
|
623
|
+
|
605
624
|
int git_odb_write(
|
606
625
|
git_oid *oid, git_odb *db, const void *data, size_t len, git_otype type)
|
607
626
|
{
|
File without changes
|
@@ -42,7 +42,7 @@ typedef struct loose_backend {
|
|
42
42
|
typedef struct {
|
43
43
|
size_t dir_len;
|
44
44
|
unsigned char short_oid[GIT_OID_HEXSZ]; /* hex formatted oid to match */
|
45
|
-
|
45
|
+
size_t short_oid_len;
|
46
46
|
int found; /* number of matching
|
47
47
|
* objects already found */
|
48
48
|
unsigned char res_oid[GIT_OID_HEXSZ]; /* hex formatted oid of
|
@@ -502,7 +502,7 @@ static int locate_object_short_oid(
|
|
502
502
|
git_oid *res_oid,
|
503
503
|
loose_backend *backend,
|
504
504
|
const git_oid *short_oid,
|
505
|
-
|
505
|
+
size_t len)
|
506
506
|
{
|
507
507
|
char *objects_dir = backend->objects_dir;
|
508
508
|
size_t dir_len = strlen(objects_dir);
|
@@ -629,7 +629,7 @@ static int loose_backend__read_prefix(
|
|
629
629
|
git_otype *type_p,
|
630
630
|
git_odb_backend *backend,
|
631
631
|
const git_oid *short_oid,
|
632
|
-
|
632
|
+
size_t len)
|
633
633
|
{
|
634
634
|
int error = 0;
|
635
635
|
|
@@ -676,6 +676,91 @@ static int loose_backend__exists(git_odb_backend *backend, const git_oid *oid)
|
|
676
676
|
return !error;
|
677
677
|
}
|
678
678
|
|
679
|
+
struct foreach_state {
|
680
|
+
size_t dir_len;
|
681
|
+
int (*cb)(git_oid *oid, void *data);
|
682
|
+
void *data;
|
683
|
+
int cb_error;
|
684
|
+
};
|
685
|
+
|
686
|
+
GIT_INLINE(int) filename_to_oid(git_oid *oid, const char *ptr)
|
687
|
+
{
|
688
|
+
int v, i = 0;
|
689
|
+
if (strlen(ptr) != 41)
|
690
|
+
return -1;
|
691
|
+
|
692
|
+
if (ptr[2] != '/') {
|
693
|
+
return -1;
|
694
|
+
}
|
695
|
+
|
696
|
+
v = (git__fromhex(ptr[i]) << 4) | git__fromhex(ptr[i+1]);
|
697
|
+
if (v < 0)
|
698
|
+
return -1;
|
699
|
+
|
700
|
+
oid->id[0] = (unsigned char) v;
|
701
|
+
|
702
|
+
ptr += 3;
|
703
|
+
for (i = 0; i < 38; i += 2) {
|
704
|
+
v = (git__fromhex(ptr[i]) << 4) | git__fromhex(ptr[i + 1]);
|
705
|
+
if (v < 0)
|
706
|
+
return -1;
|
707
|
+
|
708
|
+
oid->id[1 + i/2] = (unsigned char) v;
|
709
|
+
}
|
710
|
+
|
711
|
+
return 0;
|
712
|
+
}
|
713
|
+
|
714
|
+
static int foreach_object_dir_cb(void *_state, git_buf *path)
|
715
|
+
{
|
716
|
+
git_oid oid;
|
717
|
+
struct foreach_state *state = (struct foreach_state *) _state;
|
718
|
+
|
719
|
+
if (filename_to_oid(&oid, path->ptr + state->dir_len) < 0)
|
720
|
+
return 0;
|
721
|
+
|
722
|
+
if (state->cb(&oid, state->data)) {
|
723
|
+
state->cb_error = GIT_EUSER;
|
724
|
+
return -1;
|
725
|
+
}
|
726
|
+
|
727
|
+
return 0;
|
728
|
+
}
|
729
|
+
|
730
|
+
static int foreach_cb(void *_state, git_buf *path)
|
731
|
+
{
|
732
|
+
struct foreach_state *state = (struct foreach_state *) _state;
|
733
|
+
|
734
|
+
return git_path_direach(path, foreach_object_dir_cb, state);
|
735
|
+
}
|
736
|
+
|
737
|
+
static int loose_backend__foreach(git_odb_backend *_backend, int (*cb)(git_oid *oid, void *data), void *data)
|
738
|
+
{
|
739
|
+
char *objects_dir;
|
740
|
+
int error;
|
741
|
+
git_buf buf = GIT_BUF_INIT;
|
742
|
+
struct foreach_state state;
|
743
|
+
loose_backend *backend = (loose_backend *) _backend;
|
744
|
+
|
745
|
+
assert(backend && cb);
|
746
|
+
|
747
|
+
objects_dir = backend->objects_dir;
|
748
|
+
|
749
|
+
git_buf_sets(&buf, objects_dir);
|
750
|
+
git_path_to_dir(&buf);
|
751
|
+
|
752
|
+
memset(&state, 0, sizeof(state));
|
753
|
+
state.cb = cb;
|
754
|
+
state.data = data;
|
755
|
+
state.dir_len = git_buf_len(&buf);
|
756
|
+
|
757
|
+
error = git_path_direach(&buf, foreach_cb, &state);
|
758
|
+
|
759
|
+
git_buf_free(&buf);
|
760
|
+
|
761
|
+
return state.cb_error ? state.cb_error : error;
|
762
|
+
}
|
763
|
+
|
679
764
|
static int loose_backend__stream_fwrite(git_oid *oid, git_odb_stream *_stream)
|
680
765
|
{
|
681
766
|
loose_writestream *stream = (loose_writestream *)_stream;
|
@@ -845,6 +930,7 @@ int git_odb_backend_loose(
|
|
845
930
|
backend->parent.read_header = &loose_backend__read_header;
|
846
931
|
backend->parent.writestream = &loose_backend__stream;
|
847
932
|
backend->parent.exists = &loose_backend__exists;
|
933
|
+
backend->parent.foreach = &loose_backend__foreach;
|
848
934
|
backend->parent.free = &loose_backend__free;
|
849
935
|
|
850
936
|
*backend_out = (git_odb_backend *)backend;
|
@@ -149,7 +149,7 @@ static int pack_entry_find_prefix(
|
|
149
149
|
struct git_pack_entry *e,
|
150
150
|
struct pack_backend *backend,
|
151
151
|
const git_oid *short_oid,
|
152
|
-
|
152
|
+
size_t len);
|
153
153
|
|
154
154
|
|
155
155
|
|
@@ -295,7 +295,7 @@ static int pack_entry_find_prefix(
|
|
295
295
|
struct git_pack_entry *e,
|
296
296
|
struct pack_backend *backend,
|
297
297
|
const git_oid *short_oid,
|
298
|
-
|
298
|
+
size_t len)
|
299
299
|
{
|
300
300
|
int error;
|
301
301
|
unsigned int i;
|
@@ -384,7 +384,7 @@ static int pack_backend__read_prefix(
|
|
384
384
|
git_otype *type_p,
|
385
385
|
git_odb_backend *backend,
|
386
386
|
const git_oid *short_oid,
|
387
|
-
|
387
|
+
size_t len)
|
388
388
|
{
|
389
389
|
int error = 0;
|
390
390
|
|
@@ -420,6 +420,28 @@ static int pack_backend__exists(git_odb_backend *backend, const git_oid *oid)
|
|
420
420
|
return pack_entry_find(&e, (struct pack_backend *)backend, oid) == 0;
|
421
421
|
}
|
422
422
|
|
423
|
+
static int pack_backend__foreach(git_odb_backend *_backend, int (*cb)(git_oid *oid, void *data), void *data)
|
424
|
+
{
|
425
|
+
int error;
|
426
|
+
struct git_pack_file *p;
|
427
|
+
struct pack_backend *backend;
|
428
|
+
unsigned int i;
|
429
|
+
|
430
|
+
assert(_backend && cb);
|
431
|
+
backend = (struct pack_backend *)_backend;
|
432
|
+
|
433
|
+
/* Make sure we know about the packfiles */
|
434
|
+
if ((error = packfile_refresh_all(backend)) < 0)
|
435
|
+
return error;
|
436
|
+
|
437
|
+
git_vector_foreach(&backend->packs, i, p) {
|
438
|
+
if ((error = git_pack_foreach_entry(p, cb, &data)) < 0)
|
439
|
+
return error;
|
440
|
+
}
|
441
|
+
|
442
|
+
return 0;
|
443
|
+
}
|
444
|
+
|
423
445
|
static void pack_backend__free(git_odb_backend *_backend)
|
424
446
|
{
|
425
447
|
struct pack_backend *backend;
|
@@ -439,6 +461,41 @@ static void pack_backend__free(git_odb_backend *_backend)
|
|
439
461
|
git__free(backend);
|
440
462
|
}
|
441
463
|
|
464
|
+
int git_odb_backend_one_pack(git_odb_backend **backend_out, const char *idx)
|
465
|
+
{
|
466
|
+
struct pack_backend *backend = NULL;
|
467
|
+
struct git_pack_file *packfile = NULL;
|
468
|
+
|
469
|
+
if (git_packfile_check(&packfile, idx) < 0)
|
470
|
+
return -1;
|
471
|
+
|
472
|
+
backend = git__calloc(1, sizeof(struct pack_backend));
|
473
|
+
GITERR_CHECK_ALLOC(backend);
|
474
|
+
|
475
|
+
if (git_vector_init(&backend->packs, 1, NULL) < 0)
|
476
|
+
goto on_error;
|
477
|
+
|
478
|
+
if (git_vector_insert(&backend->packs, packfile) < 0)
|
479
|
+
goto on_error;
|
480
|
+
|
481
|
+
backend->parent.read = &pack_backend__read;
|
482
|
+
backend->parent.read_prefix = &pack_backend__read_prefix;
|
483
|
+
backend->parent.read_header = NULL;
|
484
|
+
backend->parent.exists = &pack_backend__exists;
|
485
|
+
backend->parent.foreach = &pack_backend__foreach;
|
486
|
+
backend->parent.free = &pack_backend__free;
|
487
|
+
|
488
|
+
*backend_out = (git_odb_backend *)backend;
|
489
|
+
|
490
|
+
return 0;
|
491
|
+
|
492
|
+
on_error:
|
493
|
+
git_vector_free(&backend->packs);
|
494
|
+
git__free(backend);
|
495
|
+
git__free(packfile);
|
496
|
+
return -1;
|
497
|
+
}
|
498
|
+
|
442
499
|
int git_odb_backend_pack(git_odb_backend **backend_out, const char *objects_dir)
|
443
500
|
{
|
444
501
|
struct pack_backend *backend = NULL;
|
@@ -463,6 +520,7 @@ int git_odb_backend_pack(git_odb_backend **backend_out, const char *objects_dir)
|
|
463
520
|
backend->parent.read_prefix = &pack_backend__read_prefix;
|
464
521
|
backend->parent.read_header = NULL;
|
465
522
|
backend->parent.exists = &pack_backend__exists;
|
523
|
+
backend->parent.foreach = &pack_backend__foreach;
|
466
524
|
backend->parent.free = &pack_backend__free;
|
467
525
|
|
468
526
|
*backend_out = (git_odb_backend *)backend;
|
@@ -161,12 +161,7 @@ void git_oid_cpy(git_oid *out, const git_oid *src)
|
|
161
161
|
memcpy(out->id, src->id, sizeof(out->id));
|
162
162
|
}
|
163
163
|
|
164
|
-
int
|
165
|
-
{
|
166
|
-
return memcmp(a->id, b->id, sizeof(a->id));
|
167
|
-
}
|
168
|
-
|
169
|
-
int git_oid_ncmp(const git_oid *oid_a, const git_oid *oid_b, unsigned int len)
|
164
|
+
int git_oid_ncmp(const git_oid *oid_a, const git_oid *oid_b, size_t len)
|
170
165
|
{
|
171
166
|
const unsigned char *a = oid_a->id;
|
172
167
|
const unsigned char *b = oid_b->id;
|
@@ -28,13 +28,8 @@ GIT_INLINE(khint_t) hash_git_oid(const git_oid *oid)
|
|
28
28
|
return h;
|
29
29
|
}
|
30
30
|
|
31
|
-
GIT_INLINE(int) hash_git_oid_equal(const git_oid *a, const git_oid *b)
|
32
|
-
{
|
33
|
-
return (memcmp(a->id, b->id, sizeof(a->id)) == 0);
|
34
|
-
}
|
35
|
-
|
36
31
|
#define GIT__USE_OIDMAP \
|
37
|
-
__KHASH_IMPL(oid, static
|
32
|
+
__KHASH_IMPL(oid, static kh_inline, const git_oid *, void *, 1, hash_git_oid, git_oid_equal)
|
38
33
|
|
39
34
|
#define git_oidmap_alloc() kh_init(oid)
|
40
35
|
#define git_oidmap_free(h) kh_destroy(oid,h), h = NULL
|
@@ -38,7 +38,7 @@ static int pack_entry_find_offset(
|
|
38
38
|
git_oid *found_oid,
|
39
39
|
struct git_pack_file *p,
|
40
40
|
const git_oid *short_oid,
|
41
|
-
|
41
|
+
size_t len);
|
42
42
|
|
43
43
|
static int packfile_error(const char *message)
|
44
44
|
{
|
@@ -262,7 +262,7 @@ int git_packfile_unpack_header(
|
|
262
262
|
if (base == NULL)
|
263
263
|
return GIT_EBUFS;
|
264
264
|
|
265
|
-
|
265
|
+
ret = packfile_unpack_header1(&used, size_p, type_p, base, left);
|
266
266
|
git_mwindow_close(w_curs);
|
267
267
|
if (ret == GIT_EBUFS)
|
268
268
|
return ret;
|
@@ -535,6 +535,7 @@ void packfile_free(struct git_pack_file *p)
|
|
535
535
|
|
536
536
|
/* clear_delta_base_cache(); */
|
537
537
|
git_mwindow_free_all(&p->mwf);
|
538
|
+
git_mwindow_file_deregister(&p->mwf);
|
538
539
|
|
539
540
|
if (p->mwf.fd != -1)
|
540
541
|
p_close(p->mwf.fd);
|
@@ -685,12 +686,56 @@ static git_off_t nth_packed_object_offset(const struct git_pack_file *p, uint32_
|
|
685
686
|
}
|
686
687
|
}
|
687
688
|
|
689
|
+
int git_pack_foreach_entry(
|
690
|
+
struct git_pack_file *p,
|
691
|
+
int (*cb)(git_oid *oid, void *data),
|
692
|
+
void *data)
|
693
|
+
{
|
694
|
+
const unsigned char *index = p->index_map.data, *current;
|
695
|
+
unsigned stride;
|
696
|
+
uint32_t i;
|
697
|
+
|
698
|
+
if (index == NULL) {
|
699
|
+
int error;
|
700
|
+
|
701
|
+
if ((error = pack_index_open(p)) < 0)
|
702
|
+
return error;
|
703
|
+
|
704
|
+
assert(p->index_map.data);
|
705
|
+
|
706
|
+
index = p->index_map.data;
|
707
|
+
}
|
708
|
+
|
709
|
+
if (p->index_version > 1) {
|
710
|
+
index += 8;
|
711
|
+
}
|
712
|
+
|
713
|
+
index += 4 * 256;
|
714
|
+
|
715
|
+
if (p->index_version > 1) {
|
716
|
+
stride = 20;
|
717
|
+
} else {
|
718
|
+
stride = 24;
|
719
|
+
index += 4;
|
720
|
+
}
|
721
|
+
|
722
|
+
current = index;
|
723
|
+
for (i = 0; i < p->num_objects; i++) {
|
724
|
+
if (cb((git_oid *)current, data))
|
725
|
+
return GIT_EUSER;
|
726
|
+
|
727
|
+
current += stride;
|
728
|
+
}
|
729
|
+
|
730
|
+
return 0;
|
731
|
+
}
|
732
|
+
|
688
733
|
static int pack_entry_find_offset(
|
689
734
|
git_off_t *offset_out,
|
690
735
|
git_oid *found_oid,
|
691
736
|
struct git_pack_file *p,
|
692
737
|
const git_oid *short_oid,
|
693
|
-
|
738
|
+
size_t len)
|
694
739
|
{
|
695
740
|
const uint32_t *level1_ofs = p->index_map.data;
|
696
741
|
const unsigned char *index = p->index_map.data;
|
@@ -783,7 +828,7 @@ int git_pack_entry_find(
|
|
783
828
|
struct git_pack_entry *e,
|
784
829
|
struct git_pack_file *p,
|
785
830
|
const git_oid *short_oid,
|
786
|
-
|
831
|
+
size_t len)
|
787
832
|
{
|
788
833
|
git_off_t offset;
|
789
834
|
git_oid found_oid;
|