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
|
@@ -0,0 +1,380 @@
|
|
1
|
+
/*
|
2
|
+
* Copyright (C) 2009-2012 the libgit2 contributors
|
3
|
+
*
|
4
|
+
* This file is part of libgit2, distributed under the GNU GPL v2 with
|
5
|
+
* a Linking Exception. For full terms see the included COPYING file.
|
6
|
+
*/
|
7
|
+
|
8
|
+
#include "git2/oid.h"
|
9
|
+
#include "git2/refs.h"
|
10
|
+
#include "git2/revwalk.h"
|
11
|
+
#include "git2/indexer.h"
|
12
|
+
|
13
|
+
#include "common.h"
|
14
|
+
#include "transport.h"
|
15
|
+
#include "remote.h"
|
16
|
+
#include "refspec.h"
|
17
|
+
#include "pack.h"
|
18
|
+
#include "fetch.h"
|
19
|
+
#include "netops.h"
|
20
|
+
#include "pkt.h"
|
21
|
+
|
22
|
+
struct filter_payload {
|
23
|
+
git_remote *remote;
|
24
|
+
const git_refspec *spec;
|
25
|
+
git_odb *odb;
|
26
|
+
int found_head;
|
27
|
+
};
|
28
|
+
|
29
|
+
static int filter_ref__cb(git_remote_head *head, void *payload)
|
30
|
+
{
|
31
|
+
struct filter_payload *p = payload;
|
32
|
+
|
33
|
+
if (!p->found_head && strcmp(head->name, GIT_HEAD_FILE) == 0) {
|
34
|
+
p->found_head = 1;
|
35
|
+
} else {
|
36
|
+
/* If it doesn't match the refpec, we don't want it */
|
37
|
+
if (!git_refspec_src_matches(p->spec, head->name))
|
38
|
+
return 0;
|
39
|
+
|
40
|
+
/* Don't even try to ask for the annotation target */
|
41
|
+
if (!git__suffixcmp(head->name, "^{}"))
|
42
|
+
return 0;
|
43
|
+
}
|
44
|
+
|
45
|
+
/* If we have the object, mark it so we don't ask for it */
|
46
|
+
if (git_odb_exists(p->odb, &head->oid))
|
47
|
+
head->local = 1;
|
48
|
+
else
|
49
|
+
p->remote->need_pack = 1;
|
50
|
+
|
51
|
+
return git_vector_insert(&p->remote->refs, head);
|
52
|
+
}
|
53
|
+
|
54
|
+
static int filter_wants(git_remote *remote)
|
55
|
+
{
|
56
|
+
struct filter_payload p;
|
57
|
+
|
58
|
+
git_vector_clear(&remote->refs);
|
59
|
+
|
60
|
+
/*
|
61
|
+
* The fetch refspec can be NULL, and what this means is that the
|
62
|
+
* user didn't specify one. This is fine, as it means that we're
|
63
|
+
* not interested in any particular branch but just the remote's
|
64
|
+
* HEAD, which will be stored in FETCH_HEAD after the fetch.
|
65
|
+
*/
|
66
|
+
p.spec = git_remote_fetchspec(remote);
|
67
|
+
p.found_head = 0;
|
68
|
+
p.remote = remote;
|
69
|
+
|
70
|
+
if (git_repository_odb__weakptr(&p.odb, remote->repo) < 0)
|
71
|
+
return -1;
|
72
|
+
|
73
|
+
return git_remote_ls(remote, filter_ref__cb, &p);
|
74
|
+
}
|
75
|
+
|
76
|
+
/* Wait until we get an ack from the */
|
77
|
+
static int recv_pkt(git_pkt **out, gitno_buffer *buf)
|
78
|
+
{
|
79
|
+
const char *ptr = buf->data, *line_end = ptr;
|
80
|
+
git_pkt *pkt;
|
81
|
+
int pkt_type, error = 0, ret;
|
82
|
+
|
83
|
+
do {
|
84
|
+
if (buf->offset > 0)
|
85
|
+
error = git_pkt_parse_line(&pkt, ptr, &line_end, buf->offset);
|
86
|
+
else
|
87
|
+
error = GIT_EBUFS;
|
88
|
+
|
89
|
+
if (error == 0)
|
90
|
+
break; /* return the pkt */
|
91
|
+
|
92
|
+
if (error < 0 && error != GIT_EBUFS)
|
93
|
+
return -1;
|
94
|
+
|
95
|
+
if ((ret = gitno_recv(buf)) < 0)
|
96
|
+
return -1;
|
97
|
+
} while (error);
|
98
|
+
|
99
|
+
gitno_consume(buf, line_end);
|
100
|
+
pkt_type = pkt->type;
|
101
|
+
if (out != NULL)
|
102
|
+
*out = pkt;
|
103
|
+
else
|
104
|
+
git__free(pkt);
|
105
|
+
|
106
|
+
return pkt_type;
|
107
|
+
}
|
108
|
+
|
109
|
+
static int store_common(git_transport *t)
|
110
|
+
{
|
111
|
+
git_pkt *pkt = NULL;
|
112
|
+
gitno_buffer *buf = &t->buffer;
|
113
|
+
|
114
|
+
do {
|
115
|
+
if (recv_pkt(&pkt, buf) < 0)
|
116
|
+
return -1;
|
117
|
+
|
118
|
+
if (pkt->type == GIT_PKT_ACK) {
|
119
|
+
if (git_vector_insert(&t->common, pkt) < 0)
|
120
|
+
return -1;
|
121
|
+
} else {
|
122
|
+
git__free(pkt);
|
123
|
+
return 0;
|
124
|
+
}
|
125
|
+
|
126
|
+
} while (1);
|
127
|
+
|
128
|
+
return 0;
|
129
|
+
}
|
130
|
+
|
131
|
+
/*
|
132
|
+
* In this first version, we push all our refs in and start sending
|
133
|
+
* them out. When we get an ACK we hide that commit and continue
|
134
|
+
* traversing until we're done
|
135
|
+
*/
|
136
|
+
int git_fetch_negotiate(git_remote *remote)
|
137
|
+
{
|
138
|
+
git_transport *t = remote->transport;
|
139
|
+
gitno_buffer *buf = &t->buffer;
|
140
|
+
git_buf data = GIT_BUF_INIT;
|
141
|
+
git_revwalk *walk = NULL;
|
142
|
+
int error, pkt_type;
|
143
|
+
unsigned int i;
|
144
|
+
git_oid oid;
|
145
|
+
|
146
|
+
if (filter_wants(remote) < 0) {
|
147
|
+
giterr_set(GITERR_NET, "Failed to filter the reference list for wants");
|
148
|
+
return -1;
|
149
|
+
}
|
150
|
+
|
151
|
+
/* Don't try to negotiate when we don't want anything */
|
152
|
+
if (remote->refs.length == 0 || !remote->need_pack)
|
153
|
+
return 0;
|
154
|
+
|
155
|
+
/*
|
156
|
+
* Now we have everything set up so we can start tell the
|
157
|
+
* server what we want and what we have. Call the function if
|
158
|
+
* the transport has its own logic. This is transitional and
|
159
|
+
* will be removed once this function can support git and http.
|
160
|
+
*/
|
161
|
+
if (t->own_logic)
|
162
|
+
return t->negotiate_fetch(t, remote->repo, &remote->refs);
|
163
|
+
|
164
|
+
/* No own logic, do our thing */
|
165
|
+
if (git_pkt_buffer_wants(&remote->refs, &t->caps, &data) < 0)
|
166
|
+
return -1;
|
167
|
+
|
168
|
+
if (git_fetch_setup_walk(&walk, remote->repo) < 0)
|
169
|
+
goto on_error;
|
170
|
+
/*
|
171
|
+
* We don't support any kind of ACK extensions, so the negotiation
|
172
|
+
* boils down to sending what we have and listening for an ACK
|
173
|
+
* every once in a while.
|
174
|
+
*/
|
175
|
+
i = 0;
|
176
|
+
while ((error = git_revwalk_next(&oid, walk)) == 0) {
|
177
|
+
git_pkt_buffer_have(&oid, &data);
|
178
|
+
i++;
|
179
|
+
if (i % 20 == 0) {
|
180
|
+
git_pkt_buffer_flush(&data);
|
181
|
+
if (git_buf_oom(&data))
|
182
|
+
goto on_error;
|
183
|
+
|
184
|
+
if (t->negotiation_step(t, data.ptr, data.size) < 0)
|
185
|
+
goto on_error;
|
186
|
+
|
187
|
+
git_buf_clear(&data);
|
188
|
+
if (t->caps.multi_ack) {
|
189
|
+
if (store_common(t) < 0)
|
190
|
+
goto on_error;
|
191
|
+
} else {
|
192
|
+
pkt_type = recv_pkt(NULL, buf);
|
193
|
+
|
194
|
+
if (pkt_type == GIT_PKT_ACK) {
|
195
|
+
break;
|
196
|
+
} else if (pkt_type == GIT_PKT_NAK) {
|
197
|
+
continue;
|
198
|
+
} else {
|
199
|
+
giterr_set(GITERR_NET, "Unexpected pkt type");
|
200
|
+
goto on_error;
|
201
|
+
}
|
202
|
+
}
|
203
|
+
}
|
204
|
+
|
205
|
+
if (t->common.length > 0)
|
206
|
+
break;
|
207
|
+
|
208
|
+
if (i % 20 == 0 && t->rpc) {
|
209
|
+
git_pkt_ack *pkt;
|
210
|
+
unsigned int i;
|
211
|
+
|
212
|
+
if (git_pkt_buffer_wants(&remote->refs, &t->caps, &data) < 0)
|
213
|
+
goto on_error;
|
214
|
+
|
215
|
+
git_vector_foreach(&t->common, i, pkt) {
|
216
|
+
git_pkt_buffer_have(&pkt->oid, &data);
|
217
|
+
}
|
218
|
+
|
219
|
+
if (git_buf_oom(&data))
|
220
|
+
goto on_error;
|
221
|
+
}
|
222
|
+
}
|
223
|
+
|
224
|
+
if (error < 0 && error != GIT_REVWALKOVER)
|
225
|
+
goto on_error;
|
226
|
+
|
227
|
+
/* Tell the other end that we're done negotiating */
|
228
|
+
if (t->rpc && t->common.length > 0) {
|
229
|
+
git_pkt_ack *pkt;
|
230
|
+
unsigned int i;
|
231
|
+
|
232
|
+
if (git_pkt_buffer_wants(&remote->refs, &t->caps, &data) < 0)
|
233
|
+
goto on_error;
|
234
|
+
|
235
|
+
git_vector_foreach(&t->common, i, pkt) {
|
236
|
+
git_pkt_buffer_have(&pkt->oid, &data);
|
237
|
+
}
|
238
|
+
|
239
|
+
if (git_buf_oom(&data))
|
240
|
+
goto on_error;
|
241
|
+
}
|
242
|
+
|
243
|
+
git_pkt_buffer_done(&data);
|
244
|
+
if (t->negotiation_step(t, data.ptr, data.size) < 0)
|
245
|
+
goto on_error;
|
246
|
+
|
247
|
+
git_buf_free(&data);
|
248
|
+
git_revwalk_free(walk);
|
249
|
+
|
250
|
+
/* Now let's eat up whatever the server gives us */
|
251
|
+
if (!t->caps.multi_ack) {
|
252
|
+
pkt_type = recv_pkt(NULL, buf);
|
253
|
+
if (pkt_type != GIT_PKT_ACK && pkt_type != GIT_PKT_NAK) {
|
254
|
+
giterr_set(GITERR_NET, "Unexpected pkt type");
|
255
|
+
return -1;
|
256
|
+
}
|
257
|
+
} else {
|
258
|
+
git_pkt_ack *pkt;
|
259
|
+
do {
|
260
|
+
if (recv_pkt((git_pkt **)&pkt, buf) < 0)
|
261
|
+
return -1;
|
262
|
+
|
263
|
+
if (pkt->type == GIT_PKT_NAK ||
|
264
|
+
(pkt->type == GIT_PKT_ACK && pkt->status != GIT_ACK_CONTINUE)) {
|
265
|
+
git__free(pkt);
|
266
|
+
break;
|
267
|
+
}
|
268
|
+
|
269
|
+
git__free(pkt);
|
270
|
+
} while (1);
|
271
|
+
}
|
272
|
+
|
273
|
+
return 0;
|
274
|
+
|
275
|
+
on_error:
|
276
|
+
git_revwalk_free(walk);
|
277
|
+
git_buf_free(&data);
|
278
|
+
return -1;
|
279
|
+
}
|
280
|
+
|
281
|
+
int git_fetch_download_pack(git_remote *remote, git_off_t *bytes, git_indexer_stats *stats)
|
282
|
+
{
|
283
|
+
git_transport *t = remote->transport;
|
284
|
+
|
285
|
+
if(!remote->need_pack)
|
286
|
+
return 0;
|
287
|
+
|
288
|
+
if (t->own_logic)
|
289
|
+
return t->download_pack(t, remote->repo, bytes, stats);
|
290
|
+
|
291
|
+
return git_fetch__download_pack(t, remote->repo, bytes, stats);
|
292
|
+
|
293
|
+
}
|
294
|
+
|
295
|
+
/* Receiving data from a socket and storing it is pretty much the same for git and HTTP */
|
296
|
+
int git_fetch__download_pack(
|
297
|
+
git_transport *t,
|
298
|
+
git_repository *repo,
|
299
|
+
git_off_t *bytes,
|
300
|
+
git_indexer_stats *stats)
|
301
|
+
{
|
302
|
+
int recvd;
|
303
|
+
git_buf path = GIT_BUF_INIT;
|
304
|
+
gitno_buffer *buf = &t->buffer;
|
305
|
+
git_indexer_stream *idx = NULL;
|
306
|
+
|
307
|
+
if (git_buf_joinpath(&path, git_repository_path(repo), "objects/pack") < 0)
|
308
|
+
return -1;
|
309
|
+
|
310
|
+
if (git_indexer_stream_new(&idx, git_buf_cstr(&path)) < 0)
|
311
|
+
goto on_error;
|
312
|
+
|
313
|
+
git_buf_free(&path);
|
314
|
+
memset(stats, 0, sizeof(git_indexer_stats));
|
315
|
+
*bytes = 0;
|
316
|
+
|
317
|
+
do {
|
318
|
+
if (git_indexer_stream_add(idx, buf->data, buf->offset, stats) < 0)
|
319
|
+
goto on_error;
|
320
|
+
|
321
|
+
gitno_consume_n(buf, buf->offset);
|
322
|
+
|
323
|
+
if ((recvd = gitno_recv(buf)) < 0)
|
324
|
+
goto on_error;
|
325
|
+
|
326
|
+
*bytes += recvd;
|
327
|
+
} while(recvd > 0);
|
328
|
+
|
329
|
+
if (git_indexer_stream_finalize(idx, stats))
|
330
|
+
goto on_error;
|
331
|
+
|
332
|
+
git_indexer_stream_free(idx);
|
333
|
+
return 0;
|
334
|
+
|
335
|
+
on_error:
|
336
|
+
git_buf_free(&path);
|
337
|
+
git_indexer_stream_free(idx);
|
338
|
+
return -1;
|
339
|
+
}
|
340
|
+
|
341
|
+
int git_fetch_setup_walk(git_revwalk **out, git_repository *repo)
|
342
|
+
{
|
343
|
+
git_revwalk *walk;
|
344
|
+
git_strarray refs;
|
345
|
+
unsigned int i;
|
346
|
+
git_reference *ref;
|
347
|
+
|
348
|
+
if (git_reference_list(&refs, repo, GIT_REF_LISTALL) < 0)
|
349
|
+
return -1;
|
350
|
+
|
351
|
+
if (git_revwalk_new(&walk, repo) < 0)
|
352
|
+
return -1;
|
353
|
+
|
354
|
+
git_revwalk_sorting(walk, GIT_SORT_TIME);
|
355
|
+
|
356
|
+
for (i = 0; i < refs.count; ++i) {
|
357
|
+
/* No tags */
|
358
|
+
if (!git__prefixcmp(refs.strings[i], GIT_REFS_TAGS_DIR))
|
359
|
+
continue;
|
360
|
+
|
361
|
+
if (git_reference_lookup(&ref, repo, refs.strings[i]) < 0)
|
362
|
+
goto on_error;
|
363
|
+
|
364
|
+
if (git_reference_type(ref) == GIT_REF_SYMBOLIC)
|
365
|
+
continue;
|
366
|
+
if (git_revwalk_push(walk, git_reference_oid(ref)) < 0)
|
367
|
+
goto on_error;
|
368
|
+
|
369
|
+
git_reference_free(ref);
|
370
|
+
}
|
371
|
+
|
372
|
+
git_strarray_free(&refs);
|
373
|
+
*out = walk;
|
374
|
+
return 0;
|
375
|
+
|
376
|
+
on_error:
|
377
|
+
git_reference_free(ref);
|
378
|
+
git_strarray_free(&refs);
|
379
|
+
return -1;
|
380
|
+
}
|
@@ -12,8 +12,7 @@
|
|
12
12
|
int git_fetch_negotiate(git_remote *remote);
|
13
13
|
int git_fetch_download_pack(git_remote *remote, git_off_t *bytes, git_indexer_stats *stats);
|
14
14
|
|
15
|
-
int git_fetch__download_pack(
|
16
|
-
git_repository *repo, git_off_t *bytes, git_indexer_stats *stats);
|
15
|
+
int git_fetch__download_pack(git_transport *t, git_repository *repo, git_off_t *bytes, git_indexer_stats *stats);
|
17
16
|
int git_fetch_setup_walk(git_revwalk **out, git_repository *repo);
|
18
17
|
|
19
18
|
#endif
|
@@ -319,10 +319,15 @@ int git_filebuf_commit(git_filebuf *file, mode_t mode)
|
|
319
319
|
if (verify_last_error(file) < 0)
|
320
320
|
goto on_error;
|
321
321
|
|
322
|
-
p_close(file->fd);
|
323
|
-
file->fd = -1;
|
324
322
|
file->fd_is_open = false;
|
325
323
|
|
324
|
+
if (p_close(file->fd) < 0) {
|
325
|
+
giterr_set(GITERR_OS, "Failed to close file at '%s'", file->path_lock);
|
326
|
+
goto on_error;
|
327
|
+
}
|
328
|
+
|
329
|
+
file->fd = -1;
|
330
|
+
|
326
331
|
if (p_chmod(file->path_lock, mode)) {
|
327
332
|
giterr_set(GITERR_OS, "Failed to set attributes for file at '%s'", file->path_lock);
|
328
333
|
goto on_error;
|
File without changes
|
@@ -94,7 +94,7 @@ int git_futils_open_ro(const char *path)
|
|
94
94
|
{
|
95
95
|
int fd = p_open(path, O_RDONLY);
|
96
96
|
if (fd < 0) {
|
97
|
-
if (errno == ENOENT)
|
97
|
+
if (errno == ENOENT || errno == ENOTDIR)
|
98
98
|
fd = GIT_ENOTFOUND;
|
99
99
|
giterr_set(GITERR_OS, "Failed to open '%s'", path);
|
100
100
|
}
|
@@ -424,6 +424,7 @@ int git_futils_find_system_file(git_buf *path, const char *filename)
|
|
424
424
|
}
|
425
425
|
|
426
426
|
if (win32_find_file(path, &root, filename) < 0) {
|
427
|
+
giterr_set(GITERR_OS, "The system file '%s' doesn't exist", filename);
|
427
428
|
git_buf_clear(path);
|
428
429
|
return GIT_ENOTFOUND;
|
429
430
|
}
|
@@ -438,6 +439,7 @@ int git_futils_find_system_file(git_buf *path, const char *filename)
|
|
438
439
|
return 0;
|
439
440
|
|
440
441
|
git_buf_clear(path);
|
442
|
+
giterr_set(GITERR_OS, "The system file '%s' doesn't exist", filename);
|
441
443
|
return GIT_ENOTFOUND;
|
442
444
|
#endif
|
443
445
|
}
|
@@ -455,6 +457,7 @@ int git_futils_find_global_file(git_buf *path, const char *filename)
|
|
455
457
|
}
|
456
458
|
|
457
459
|
if (win32_find_file(path, &root, filename) < 0) {
|
460
|
+
giterr_set(GITERR_OS, "The global file '%s' doesn't exist", filename);
|
458
461
|
git_buf_clear(path);
|
459
462
|
return GIT_ENOTFOUND;
|
460
463
|
}
|
@@ -473,6 +476,7 @@ int git_futils_find_global_file(git_buf *path, const char *filename)
|
|
473
476
|
return -1;
|
474
477
|
|
475
478
|
if (git_path_exists(path->ptr) == false) {
|
479
|
+
giterr_set(GITERR_OS, "The global file '%s' doesn't exist", filename);
|
476
480
|
git_buf_clear(path);
|
477
481
|
return GIT_ENOTFOUND;
|
478
482
|
}
|
@@ -480,3 +484,14 @@ int git_futils_find_global_file(git_buf *path, const char *filename)
|
|
480
484
|
return 0;
|
481
485
|
#endif
|
482
486
|
}
|
487
|
+
|
488
|
+
int git_futils_fake_symlink(const char *old, const char *new)
|
489
|
+
{
|
490
|
+
int retcode = GIT_ERROR;
|
491
|
+
int fd = git_futils_creat_withpath(new, 0755, 0644);
|
492
|
+
if (fd >= 0) {
|
493
|
+
retcode = p_write(fd, old, strlen(old));
|
494
|
+
p_close(fd);
|
495
|
+
}
|
496
|
+
return retcode;
|
497
|
+
}
|