rugged 0.1.2 → 0.16.0b1
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +25 -36
- data/Rakefile +20 -98
- data/ext/rugged/extconf.rb +44 -4
- data/ext/rugged/remote.c +215 -0
- data/ext/rugged/rugged.c +171 -0
- data/ext/rugged/rugged.h +126 -0
- data/ext/rugged/rugged_blob.c +99 -0
- data/ext/rugged/rugged_commit.c +224 -0
- data/ext/rugged/rugged_config.c +238 -0
- data/ext/rugged/rugged_index.c +440 -0
- data/ext/rugged/rugged_object.c +203 -0
- data/ext/rugged/rugged_reference.c +401 -0
- data/ext/rugged/rugged_repo.c +482 -0
- data/ext/rugged/rugged_revwalk.c +138 -0
- data/ext/rugged/rugged_signature.c +80 -0
- data/ext/rugged/rugged_tag.c +216 -0
- data/ext/rugged/rugged_tree.c +322 -0
- data/ext/rugged/vendor/libgit2-dist.tar.gz +0 -0
- data/ext/rugged/vendor/libgit2-dist/deps/http-parser/http_parser.c +1778 -0
- data/ext/rugged/vendor/libgit2-dist/deps/http-parser/http_parser.h +267 -0
- data/ext/rugged/vendor/libgit2-dist/deps/zlib/adler32.c +169 -0
- data/ext/rugged/vendor/libgit2-dist/deps/zlib/crc32.c +442 -0
- data/ext/rugged/vendor/libgit2-dist/deps/zlib/crc32.h +441 -0
- data/ext/rugged/vendor/libgit2-dist/deps/zlib/deflate.c +1834 -0
- data/ext/rugged/vendor/libgit2-dist/deps/zlib/deflate.h +342 -0
- data/ext/rugged/vendor/libgit2-dist/deps/zlib/inffast.c +340 -0
- data/ext/rugged/vendor/libgit2-dist/deps/zlib/inffast.h +11 -0
- data/ext/rugged/vendor/libgit2-dist/deps/zlib/inffixed.h +94 -0
- data/ext/rugged/vendor/libgit2-dist/deps/zlib/inflate.c +1480 -0
- data/ext/rugged/vendor/libgit2-dist/deps/zlib/inflate.h +122 -0
- data/ext/rugged/vendor/libgit2-dist/deps/zlib/inftrees.c +330 -0
- data/ext/rugged/vendor/libgit2-dist/deps/zlib/inftrees.h +62 -0
- data/ext/rugged/vendor/libgit2-dist/deps/zlib/trees.c +1244 -0
- data/ext/rugged/vendor/libgit2-dist/deps/zlib/trees.h +128 -0
- data/ext/rugged/vendor/libgit2-dist/deps/zlib/zconf.h +54 -0
- data/ext/rugged/vendor/libgit2-dist/deps/zlib/zlib.h +1613 -0
- data/ext/rugged/vendor/libgit2-dist/deps/zlib/zutil.c +318 -0
- data/ext/rugged/vendor/libgit2-dist/deps/zlib/zutil.h +274 -0
- data/ext/rugged/vendor/libgit2-dist/examples/general.c +451 -0
- data/ext/rugged/vendor/libgit2-dist/examples/network/common.h +14 -0
- data/ext/rugged/vendor/libgit2-dist/examples/network/fetch.c +97 -0
- data/ext/rugged/vendor/libgit2-dist/examples/network/git2.c +58 -0
- data/ext/rugged/vendor/libgit2-dist/examples/network/index-pack.c +47 -0
- data/ext/rugged/vendor/libgit2-dist/examples/network/ls-remote.c +76 -0
- data/ext/rugged/vendor/libgit2-dist/examples/showindex.c +43 -0
- data/ext/rugged/vendor/libgit2-dist/include/git2.h +44 -0
- data/ext/rugged/vendor/libgit2-dist/include/git2/blob.h +120 -0
- data/ext/rugged/vendor/libgit2-dist/include/git2/branch.h +15 -0
- data/ext/rugged/vendor/libgit2-dist/include/git2/commit.h +263 -0
- data/ext/rugged/vendor/libgit2-dist/include/git2/common.h +103 -0
- data/ext/rugged/vendor/libgit2-dist/include/git2/config.h +278 -0
- data/ext/rugged/vendor/libgit2-dist/include/git2/errors.h +144 -0
- data/ext/rugged/vendor/libgit2-dist/include/git2/index.h +306 -0
- data/ext/rugged/vendor/libgit2-dist/include/git2/indexer.h +76 -0
- data/ext/rugged/vendor/libgit2-dist/include/git2/inttypes.h +305 -0
- data/ext/rugged/vendor/libgit2-dist/include/git2/net.h +51 -0
- data/ext/rugged/vendor/libgit2-dist/include/git2/object.h +173 -0
- data/ext/rugged/vendor/libgit2-dist/include/git2/odb.h +331 -0
- data/ext/rugged/vendor/libgit2-dist/include/git2/odb_backend.h +100 -0
- data/ext/rugged/vendor/libgit2-dist/include/git2/oid.h +218 -0
- data/ext/rugged/vendor/libgit2-dist/include/git2/reflog.h +128 -0
- data/ext/rugged/vendor/libgit2-dist/include/git2/refs.h +309 -0
- data/ext/rugged/vendor/libgit2-dist/include/git2/refspec.h +60 -0
- data/ext/rugged/vendor/libgit2-dist/include/git2/remote.h +176 -0
- data/ext/rugged/vendor/libgit2-dist/include/git2/repository.h +290 -0
- data/ext/rugged/vendor/libgit2-dist/include/git2/revwalk.h +169 -0
- data/ext/rugged/vendor/libgit2-dist/include/git2/signature.h +65 -0
- data/ext/rugged/vendor/libgit2-dist/include/git2/status.h +63 -0
- data/ext/rugged/vendor/libgit2-dist/include/git2/stdint.h +247 -0
- data/ext/rugged/vendor/libgit2-dist/include/git2/tag.h +279 -0
- data/ext/rugged/vendor/libgit2-dist/include/git2/threads.h +48 -0
- data/ext/rugged/vendor/libgit2-dist/include/git2/tree.h +318 -0
- data/ext/rugged/vendor/libgit2-dist/include/git2/types.h +169 -0
- data/ext/rugged/vendor/libgit2-dist/include/git2/version.h +15 -0
- data/ext/rugged/vendor/libgit2-dist/include/git2/windows.h +59 -0
- data/ext/rugged/vendor/libgit2-dist/include/git2/zlib.h +40 -0
- data/ext/rugged/vendor/libgit2-dist/src/blob.c +135 -0
- data/ext/rugged/vendor/libgit2-dist/src/blob.h +23 -0
- data/ext/rugged/vendor/libgit2-dist/src/bswap.h +97 -0
- data/ext/rugged/vendor/libgit2-dist/src/buffer.c +113 -0
- data/ext/rugged/vendor/libgit2-dist/src/buffer.h +32 -0
- data/ext/rugged/vendor/libgit2-dist/src/cache.c +111 -0
- data/ext/rugged/vendor/libgit2-dist/src/cache.h +64 -0
- data/ext/rugged/vendor/libgit2-dist/src/cc-compat.h +67 -0
- data/ext/rugged/vendor/libgit2-dist/src/commit.c +299 -0
- data/ext/rugged/vendor/libgit2-dist/src/commit.h +34 -0
- data/ext/rugged/vendor/libgit2-dist/src/common.h +64 -0
- data/ext/rugged/vendor/libgit2-dist/src/config.c +418 -0
- data/ext/rugged/vendor/libgit2-dist/src/config.h +24 -0
- data/ext/rugged/vendor/libgit2-dist/src/config_file.c +1210 -0
- data/ext/rugged/vendor/libgit2-dist/src/delta-apply.c +115 -0
- data/ext/rugged/vendor/libgit2-dist/src/delta-apply.h +33 -0
- data/ext/rugged/vendor/libgit2-dist/src/dir.h +47 -0
- data/ext/rugged/vendor/libgit2-dist/src/errors.c +104 -0
- data/ext/rugged/vendor/libgit2-dist/src/fetch.c +172 -0
- data/ext/rugged/vendor/libgit2-dist/src/fetch.h +18 -0
- data/ext/rugged/vendor/libgit2-dist/src/filebuf.c +400 -0
- data/ext/rugged/vendor/libgit2-dist/src/filebuf.h +72 -0
- data/ext/rugged/vendor/libgit2-dist/src/fileops.c +358 -0
- data/ext/rugged/vendor/libgit2-dist/src/fileops.h +151 -0
- data/ext/rugged/vendor/libgit2-dist/src/global.c +134 -0
- data/ext/rugged/vendor/libgit2-dist/src/global.h +24 -0
- data/ext/rugged/vendor/libgit2-dist/src/hash.c +74 -0
- data/ext/rugged/vendor/libgit2-dist/src/hash.h +29 -0
- data/ext/rugged/vendor/libgit2-dist/src/hashtable.c +243 -0
- data/ext/rugged/vendor/libgit2-dist/src/hashtable.h +80 -0
- data/ext/rugged/vendor/libgit2-dist/src/index.c +918 -0
- data/ext/rugged/vendor/libgit2-dist/src/index.h +34 -0
- data/ext/rugged/vendor/libgit2-dist/src/indexer.c +401 -0
- data/ext/rugged/vendor/libgit2-dist/src/map.h +37 -0
- data/ext/rugged/vendor/libgit2-dist/src/mwindow.c +272 -0
- data/ext/rugged/vendor/libgit2-dist/src/mwindow.h +45 -0
- data/ext/rugged/vendor/libgit2-dist/src/netops.c +198 -0
- data/ext/rugged/vendor/libgit2-dist/src/netops.h +36 -0
- data/ext/rugged/vendor/libgit2-dist/src/object.c +295 -0
- data/ext/rugged/vendor/libgit2-dist/src/odb.c +672 -0
- data/ext/rugged/vendor/libgit2-dist/src/odb.h +43 -0
- data/ext/rugged/vendor/libgit2-dist/src/odb_loose.c +855 -0
- data/ext/rugged/vendor/libgit2-dist/src/odb_pack.c +485 -0
- data/ext/rugged/vendor/libgit2-dist/src/oid.c +388 -0
- data/ext/rugged/vendor/libgit2-dist/src/pack.c +788 -0
- data/ext/rugged/vendor/libgit2-dist/src/pack.h +99 -0
- data/ext/rugged/vendor/libgit2-dist/src/path.c +270 -0
- data/ext/rugged/vendor/libgit2-dist/src/path.h +84 -0
- data/ext/rugged/vendor/libgit2-dist/src/pkt.c +426 -0
- data/ext/rugged/vendor/libgit2-dist/src/pkt.h +77 -0
- data/ext/rugged/vendor/libgit2-dist/src/posix.c +94 -0
- data/ext/rugged/vendor/libgit2-dist/src/posix.h +69 -0
- data/ext/rugged/vendor/libgit2-dist/src/ppc/sha1.c +70 -0
- data/ext/rugged/vendor/libgit2-dist/src/ppc/sha1.h +26 -0
- data/ext/rugged/vendor/libgit2-dist/src/pqueue.c +141 -0
- data/ext/rugged/vendor/libgit2-dist/src/pqueue.h +81 -0
- data/ext/rugged/vendor/libgit2-dist/src/protocol.c +50 -0
- data/ext/rugged/vendor/libgit2-dist/src/protocol.h +23 -0
- data/ext/rugged/vendor/libgit2-dist/src/reflog.c +318 -0
- data/ext/rugged/vendor/libgit2-dist/src/reflog.h +34 -0
- data/ext/rugged/vendor/libgit2-dist/src/refs.c +1693 -0
- data/ext/rugged/vendor/libgit2-dist/src/refs.h +58 -0
- data/ext/rugged/vendor/libgit2-dist/src/refspec.c +95 -0
- data/ext/rugged/vendor/libgit2-dist/src/refspec.h +23 -0
- data/ext/rugged/vendor/libgit2-dist/src/remote.c +339 -0
- data/ext/rugged/vendor/libgit2-dist/src/remote.h +25 -0
- data/ext/rugged/vendor/libgit2-dist/src/repository.c +849 -0
- data/ext/rugged/vendor/libgit2-dist/src/repository.h +60 -0
- data/ext/rugged/vendor/libgit2-dist/src/revwalk.c +569 -0
- data/ext/rugged/vendor/libgit2-dist/src/sha1.c +280 -0
- data/ext/rugged/vendor/libgit2-dist/src/sha1.h +21 -0
- data/ext/rugged/vendor/libgit2-dist/src/sha1_lookup.c +177 -0
- data/ext/rugged/vendor/libgit2-dist/src/sha1_lookup.h +18 -0
- data/ext/rugged/vendor/libgit2-dist/src/signature.c +335 -0
- data/ext/rugged/vendor/libgit2-dist/src/signature.h +18 -0
- data/ext/rugged/vendor/libgit2-dist/src/status.c +696 -0
- data/ext/rugged/vendor/libgit2-dist/src/tag.c +446 -0
- data/ext/rugged/vendor/libgit2-dist/src/tag.h +28 -0
- data/ext/rugged/vendor/libgit2-dist/src/thread-utils.c +55 -0
- data/ext/rugged/vendor/libgit2-dist/src/thread-utils.h +108 -0
- data/ext/rugged/vendor/libgit2-dist/src/transport.c +85 -0
- data/ext/rugged/vendor/libgit2-dist/src/transport.h +110 -0
- data/ext/rugged/vendor/libgit2-dist/src/transports/git.c +502 -0
- data/ext/rugged/vendor/libgit2-dist/src/transports/http.c +756 -0
- data/ext/rugged/vendor/libgit2-dist/src/transports/local.c +235 -0
- data/ext/rugged/vendor/libgit2-dist/src/tree-cache.c +201 -0
- data/ext/rugged/vendor/libgit2-dist/src/tree-cache.h +31 -0
- data/ext/rugged/vendor/libgit2-dist/src/tree.c +758 -0
- data/ext/rugged/vendor/libgit2-dist/src/tree.h +37 -0
- data/ext/rugged/vendor/libgit2-dist/src/tsort.c +365 -0
- data/ext/rugged/vendor/libgit2-dist/src/unix/map.c +70 -0
- data/ext/rugged/vendor/libgit2-dist/src/unix/posix.h +25 -0
- data/ext/rugged/vendor/libgit2-dist/src/util.c +381 -0
- data/ext/rugged/vendor/libgit2-dist/src/util.h +137 -0
- data/ext/rugged/vendor/libgit2-dist/src/vector.c +174 -0
- data/ext/rugged/vendor/libgit2-dist/src/vector.h +45 -0
- data/ext/rugged/vendor/libgit2-dist/src/win32/dir.c +115 -0
- data/ext/rugged/vendor/libgit2-dist/src/win32/fnmatch.c +180 -0
- data/ext/rugged/vendor/libgit2-dist/src/win32/fnmatch.h +27 -0
- data/ext/rugged/vendor/libgit2-dist/src/win32/map.c +131 -0
- data/ext/rugged/vendor/libgit2-dist/src/win32/mingw-compat.h +24 -0
- data/ext/rugged/vendor/libgit2-dist/src/win32/msvc-compat.h +38 -0
- data/ext/rugged/vendor/libgit2-dist/src/win32/posix.h +53 -0
- data/ext/rugged/vendor/libgit2-dist/src/win32/posix_w32.c +404 -0
- data/ext/rugged/vendor/libgit2-dist/src/win32/pthread.c +65 -0
- data/ext/rugged/vendor/libgit2-dist/src/win32/pthread.h +40 -0
- data/ext/rugged/vendor/libgit2-dist/src/win32/utf-conv.c +88 -0
- data/ext/rugged/vendor/libgit2-dist/src/win32/utf-conv.h +17 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/buf/basic.c +29 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/clay.h +187 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/clay_libgit2.h +28 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/clay_main.c +1073 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/config/add.c +37 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/config/new.c +36 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/config/read.c +209 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/config/stress.c +39 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/config/write.c +77 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/core/dirent.c +222 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/core/filebuf.c +106 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/core/oid.c +18 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/core/path.c +139 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/core/rmdir.c +50 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/core/string.c +28 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/core/strtol.c +37 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/core/vector.c +66 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/index/rename.c +60 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/network/remotes.c +50 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/object/raw/chars.c +52 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/object/raw/compare.c +124 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/object/raw/convert.c +75 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/object/raw/data.h +323 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/object/raw/fromstr.c +30 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/object/raw/hash.c +162 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/object/raw/short.c +94 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/object/raw/size.c +13 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/object/raw/type2string.c +54 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/object/tree/frompath.c +75 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/odb/loose.c +84 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/odb/loose_data.h +522 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/odb/pack_data.h +151 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/odb/packed.c +78 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/odb/sorting.c +71 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/repo/getters.c +68 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/repo/init.c +104 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/repo/open.c +54 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/status/single.c +38 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/status/status_data.h +48 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/status/worktree.c +124 -0
- data/ext/rugged/vendor/libgit2-dist/tests/t00-core.c +628 -0
- data/ext/rugged/vendor/libgit2-dist/tests/t01-data.h +322 -0
- data/ext/rugged/vendor/libgit2-dist/tests/t01-rawobj.c +638 -0
- data/ext/rugged/vendor/libgit2-dist/tests/t03-data.h +344 -0
- data/ext/rugged/vendor/libgit2-dist/tests/t03-objwrite.c +255 -0
- data/ext/rugged/vendor/libgit2-dist/tests/t04-commit.c +788 -0
- data/ext/rugged/vendor/libgit2-dist/tests/t05-revwalk.c +140 -0
- data/ext/rugged/vendor/libgit2-dist/tests/t06-index.c +219 -0
- data/ext/rugged/vendor/libgit2-dist/tests/t07-hashtable.c +192 -0
- data/ext/rugged/vendor/libgit2-dist/tests/t08-tag.c +357 -0
- data/ext/rugged/vendor/libgit2-dist/tests/t09-tree.c +221 -0
- data/ext/rugged/vendor/libgit2-dist/tests/t10-refs.c +1294 -0
- data/ext/rugged/vendor/libgit2-dist/tests/t12-repo.c +174 -0
- data/ext/rugged/vendor/libgit2-dist/tests/t13-threads.c +41 -0
- data/ext/rugged/vendor/libgit2-dist/tests/t17-bufs.c +61 -0
- data/ext/rugged/vendor/libgit2-dist/tests/t18-status.c +448 -0
- data/ext/rugged/vendor/libgit2-dist/tests/test_helpers.c +310 -0
- data/ext/rugged/vendor/libgit2-dist/tests/test_helpers.h +83 -0
- data/ext/rugged/vendor/libgit2-dist/tests/test_lib.c +198 -0
- data/ext/rugged/vendor/libgit2-dist/tests/test_lib.h +54 -0
- data/ext/rugged/vendor/libgit2-dist/tests/test_main.c +89 -0
- data/lib/rugged.rb +4 -3
- data/lib/rugged/index.rb +0 -8
- data/lib/rugged/objects.rb +45 -0
- data/lib/rugged/repository.rb +29 -0
- data/lib/rugged/tree.rb +16 -6
- data/lib/rugged/version.rb +1 -1
- data/lib/rugged/walker.rb +5 -0
- data/test/blob_test.rb +18 -14
- data/test/commit_test.rb +28 -26
- data/test/coverage/HEAD.json +1 -0
- data/test/coverage/cover.rb +106 -0
- data/test/fixtures/testrepo.git/refs/heads/new_name +1 -0
- data/test/index_test.rb +101 -78
- data/test/lib_test.rb +4 -4
- data/test/object_test.rb +3 -3
- data/test/reference_test.rb +75 -0
- data/test/remote_test.rb +19 -0
- data/test/repo_pack_test.rb +4 -4
- data/test/repo_test.rb +44 -15
- data/test/tag_test.rb +7 -17
- data/test/test_helper.rb +24 -5
- data/test/tree_test.rb +30 -12
- data/test/walker_test.rb +40 -31
- metadata +273 -50
- data/lib/rugged/person.rb +0 -20
- data/lib/rugged/tree_entry.rb +0 -9
- data/test/fixtures/testrepo.git/objects/1d/83f106355e4309a293e42ad2a2c4b8bdbe77ae +0 -0
- data/test/fixtures/testrepo.git/objects/2f/3321418db5b2a841375b8b70880a8ab5a4148f +0 -0
- data/test/fixtures/testrepo.git/objects/36/9b00a7700cca3a506d79e301d6ad8bf735d9ee +0 -3
- data/test/fixtures/testrepo.git/objects/3d/b1b5ceace59ff65279757003763046fd4cbbe6 +0 -0
- data/test/fixtures/testrepo.git/objects/4c/d1604907792e2c43e03dcec1216f99d63e68c4 +0 -3
- data/test/fixtures/testrepo.git/objects/e0/f46d77041c149296549b01ed4a18b02c4b7400 +0 -0
@@ -0,0 +1,37 @@
|
|
1
|
+
/*
|
2
|
+
* Copyright (C) 2009-2011 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
|
+
#ifndef INCLUDE_tree_h__
|
8
|
+
#define INCLUDE_tree_h__
|
9
|
+
|
10
|
+
#include "git2/tree.h"
|
11
|
+
#include "repository.h"
|
12
|
+
#include "odb.h"
|
13
|
+
#include "vector.h"
|
14
|
+
|
15
|
+
struct git_tree_entry {
|
16
|
+
unsigned int attr;
|
17
|
+
char *filename;
|
18
|
+
git_oid oid;
|
19
|
+
size_t filename_len;
|
20
|
+
int removed;
|
21
|
+
};
|
22
|
+
|
23
|
+
struct git_tree {
|
24
|
+
git_object object;
|
25
|
+
git_vector entries;
|
26
|
+
};
|
27
|
+
|
28
|
+
struct git_treebuilder {
|
29
|
+
git_vector entries;
|
30
|
+
size_t entry_count;
|
31
|
+
};
|
32
|
+
|
33
|
+
|
34
|
+
void git_tree__free(git_tree *tree);
|
35
|
+
int git_tree__parse(git_tree *tree, git_odb_object *obj);
|
36
|
+
|
37
|
+
#endif
|
@@ -0,0 +1,365 @@
|
|
1
|
+
/*
|
2
|
+
* Copyright (C) 2009-2011 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 "common.h"
|
9
|
+
|
10
|
+
/**
|
11
|
+
* An array-of-pointers implementation of Python's Timsort
|
12
|
+
* Based on code by Christopher Swenson under the MIT license
|
13
|
+
*
|
14
|
+
* Copyright (c) 2010 Christopher Swenson
|
15
|
+
* Copyright (c) 2011 Vicent Marti
|
16
|
+
*/
|
17
|
+
|
18
|
+
#ifndef MAX
|
19
|
+
# define MAX(x,y) (((x) > (y) ? (x) : (y)))
|
20
|
+
#endif
|
21
|
+
|
22
|
+
#ifndef MIN
|
23
|
+
# define MIN(x,y) (((x) < (y) ? (x) : (y)))
|
24
|
+
#endif
|
25
|
+
|
26
|
+
typedef int (*cmp_ptr_t)(const void *, const void *);
|
27
|
+
|
28
|
+
static int binsearch(void **dst, const void *x, size_t size, cmp_ptr_t cmp)
|
29
|
+
{
|
30
|
+
int l, c, r;
|
31
|
+
void *lx, *cx;
|
32
|
+
|
33
|
+
l = 0;
|
34
|
+
r = size - 1;
|
35
|
+
c = r >> 1;
|
36
|
+
lx = dst[l];
|
37
|
+
|
38
|
+
/* check for beginning conditions */
|
39
|
+
if (cmp(x, lx) < 0)
|
40
|
+
return 0;
|
41
|
+
|
42
|
+
else if (cmp(x, lx) == 0) {
|
43
|
+
int i = 1;
|
44
|
+
while (cmp(x, dst[i]) == 0)
|
45
|
+
i++;
|
46
|
+
return i;
|
47
|
+
}
|
48
|
+
|
49
|
+
/* guaranteed not to be >= rx */
|
50
|
+
cx = dst[c];
|
51
|
+
while (1) {
|
52
|
+
const int val = cmp(x, cx);
|
53
|
+
if (val < 0) {
|
54
|
+
if (c - l <= 1) return c;
|
55
|
+
r = c;
|
56
|
+
} else if (val > 0) {
|
57
|
+
if (r - c <= 1) return c + 1;
|
58
|
+
l = c;
|
59
|
+
lx = cx;
|
60
|
+
} else {
|
61
|
+
do {
|
62
|
+
cx = dst[++c];
|
63
|
+
} while (cmp(x, cx) == 0);
|
64
|
+
return c;
|
65
|
+
}
|
66
|
+
c = l + ((r - l) >> 1);
|
67
|
+
cx = dst[c];
|
68
|
+
}
|
69
|
+
}
|
70
|
+
|
71
|
+
/* Binary insertion sort, but knowing that the first "start" entries are sorted. Used in timsort. */
|
72
|
+
static void bisort(void **dst, size_t start, size_t size, cmp_ptr_t cmp)
|
73
|
+
{
|
74
|
+
size_t i;
|
75
|
+
void *x;
|
76
|
+
int location;
|
77
|
+
|
78
|
+
for (i = start; i < size; i++) {
|
79
|
+
int j;
|
80
|
+
/* If this entry is already correct, just move along */
|
81
|
+
if (cmp(dst[i - 1], dst[i]) <= 0)
|
82
|
+
continue;
|
83
|
+
|
84
|
+
/* Else we need to find the right place, shift everything over, and squeeze in */
|
85
|
+
x = dst[i];
|
86
|
+
location = binsearch(dst, x, i, cmp);
|
87
|
+
for (j = i - 1; j >= location; j--) {
|
88
|
+
dst[j + 1] = dst[j];
|
89
|
+
}
|
90
|
+
dst[location] = x;
|
91
|
+
}
|
92
|
+
}
|
93
|
+
|
94
|
+
|
95
|
+
/* timsort implementation, based on timsort.txt */
|
96
|
+
struct tsort_run {
|
97
|
+
ssize_t start;
|
98
|
+
ssize_t length;
|
99
|
+
};
|
100
|
+
|
101
|
+
struct tsort_store {
|
102
|
+
size_t alloc;
|
103
|
+
cmp_ptr_t cmp;
|
104
|
+
void **storage;
|
105
|
+
};
|
106
|
+
|
107
|
+
static void reverse_elements(void **dst, int start, int end)
|
108
|
+
{
|
109
|
+
while (start < end) {
|
110
|
+
void *tmp = dst[start];
|
111
|
+
dst[start] = dst[end];
|
112
|
+
dst[end] = tmp;
|
113
|
+
|
114
|
+
start++;
|
115
|
+
end--;
|
116
|
+
}
|
117
|
+
}
|
118
|
+
|
119
|
+
static int count_run(void **dst, ssize_t start, ssize_t size, struct tsort_store *store)
|
120
|
+
{
|
121
|
+
ssize_t curr = start + 2;
|
122
|
+
|
123
|
+
if (size - start == 1)
|
124
|
+
return 1;
|
125
|
+
|
126
|
+
if (start >= size - 2) {
|
127
|
+
if (store->cmp(dst[size - 2], dst[size - 1]) > 0) {
|
128
|
+
void *tmp = dst[size - 1];
|
129
|
+
dst[size - 1] = dst[size - 2];
|
130
|
+
dst[size - 2] = tmp;
|
131
|
+
}
|
132
|
+
|
133
|
+
return 2;
|
134
|
+
}
|
135
|
+
|
136
|
+
if (store->cmp(dst[start], dst[start + 1]) <= 0) {
|
137
|
+
while (curr < size - 1 && store->cmp(dst[curr - 1], dst[curr]) <= 0)
|
138
|
+
curr++;
|
139
|
+
|
140
|
+
return curr - start;
|
141
|
+
} else {
|
142
|
+
while (curr < size - 1 && store->cmp(dst[curr - 1], dst[curr]) > 0)
|
143
|
+
curr++;
|
144
|
+
|
145
|
+
/* reverse in-place */
|
146
|
+
reverse_elements(dst, start, curr - 1);
|
147
|
+
return curr - start;
|
148
|
+
}
|
149
|
+
}
|
150
|
+
|
151
|
+
static int compute_minrun(size_t n)
|
152
|
+
{
|
153
|
+
int r = 0;
|
154
|
+
while (n >= 64) {
|
155
|
+
r |= n & 1;
|
156
|
+
n >>= 1;
|
157
|
+
}
|
158
|
+
return n + r;
|
159
|
+
}
|
160
|
+
|
161
|
+
static int check_invariant(struct tsort_run *stack, int stack_curr)
|
162
|
+
{
|
163
|
+
if (stack_curr < 2)
|
164
|
+
return 1;
|
165
|
+
|
166
|
+
else if (stack_curr == 2) {
|
167
|
+
const int A = stack[stack_curr - 2].length;
|
168
|
+
const int B = stack[stack_curr - 1].length;
|
169
|
+
return (A > B);
|
170
|
+
} else {
|
171
|
+
const int A = stack[stack_curr - 3].length;
|
172
|
+
const int B = stack[stack_curr - 2].length;
|
173
|
+
const int C = stack[stack_curr - 1].length;
|
174
|
+
return !((A <= B + C) || (B <= C));
|
175
|
+
}
|
176
|
+
}
|
177
|
+
|
178
|
+
static int resize(struct tsort_store *store, size_t new_size)
|
179
|
+
{
|
180
|
+
if (store->alloc < new_size) {
|
181
|
+
void **tempstore = git__realloc(store->storage, new_size * sizeof(void *));
|
182
|
+
|
183
|
+
/**
|
184
|
+
* Do not propagate on OOM; this will abort the sort and
|
185
|
+
* leave the array unsorted, but no error code will be
|
186
|
+
* raised
|
187
|
+
*/
|
188
|
+
if (tempstore == NULL)
|
189
|
+
return -1;
|
190
|
+
|
191
|
+
store->storage = tempstore;
|
192
|
+
store->alloc = new_size;
|
193
|
+
}
|
194
|
+
|
195
|
+
return 0;
|
196
|
+
}
|
197
|
+
|
198
|
+
static void merge(void **dst, const struct tsort_run *stack, int stack_curr, struct tsort_store *store)
|
199
|
+
{
|
200
|
+
const ssize_t A = stack[stack_curr - 2].length;
|
201
|
+
const ssize_t B = stack[stack_curr - 1].length;
|
202
|
+
const ssize_t curr = stack[stack_curr - 2].start;
|
203
|
+
|
204
|
+
void **storage;
|
205
|
+
ssize_t i, j, k;
|
206
|
+
|
207
|
+
if (resize(store, MIN(A, B)) < 0)
|
208
|
+
return;
|
209
|
+
|
210
|
+
storage = store->storage;
|
211
|
+
|
212
|
+
/* left merge */
|
213
|
+
if (A < B) {
|
214
|
+
memcpy(storage, &dst[curr], A * sizeof(void *));
|
215
|
+
i = 0;
|
216
|
+
j = curr + A;
|
217
|
+
|
218
|
+
for (k = curr; k < curr + A + B; k++) {
|
219
|
+
if ((i < A) && (j < curr + A + B)) {
|
220
|
+
if (store->cmp(storage[i], dst[j]) <= 0)
|
221
|
+
dst[k] = storage[i++];
|
222
|
+
else
|
223
|
+
dst[k] = dst[j++];
|
224
|
+
} else if (i < A) {
|
225
|
+
dst[k] = storage[i++];
|
226
|
+
} else
|
227
|
+
dst[k] = dst[j++];
|
228
|
+
}
|
229
|
+
} else {
|
230
|
+
memcpy(storage, &dst[curr + A], B * sizeof(void *));
|
231
|
+
i = B - 1;
|
232
|
+
j = curr + A - 1;
|
233
|
+
|
234
|
+
for (k = curr + A + B - 1; k >= curr; k--) {
|
235
|
+
if ((i >= 0) && (j >= curr)) {
|
236
|
+
if (store->cmp(dst[j], storage[i]) > 0)
|
237
|
+
dst[k] = dst[j--];
|
238
|
+
else
|
239
|
+
dst[k] = storage[i--];
|
240
|
+
} else if (i >= 0)
|
241
|
+
dst[k] = storage[i--];
|
242
|
+
else
|
243
|
+
dst[k] = dst[j--];
|
244
|
+
}
|
245
|
+
}
|
246
|
+
}
|
247
|
+
|
248
|
+
static ssize_t collapse(void **dst, struct tsort_run *stack, ssize_t stack_curr, struct tsort_store *store, ssize_t size)
|
249
|
+
{
|
250
|
+
ssize_t A, B, C;
|
251
|
+
|
252
|
+
while (1) {
|
253
|
+
/* if the stack only has one thing on it, we are done with the collapse */
|
254
|
+
if (stack_curr <= 1)
|
255
|
+
break;
|
256
|
+
|
257
|
+
/* if this is the last merge, just do it */
|
258
|
+
if ((stack_curr == 2) && (stack[0].length + stack[1].length == size)) {
|
259
|
+
merge(dst, stack, stack_curr, store);
|
260
|
+
stack[0].length += stack[1].length;
|
261
|
+
stack_curr--;
|
262
|
+
break;
|
263
|
+
}
|
264
|
+
|
265
|
+
/* check if the invariant is off for a stack of 2 elements */
|
266
|
+
else if ((stack_curr == 2) && (stack[0].length <= stack[1].length)) {
|
267
|
+
merge(dst, stack, stack_curr, store);
|
268
|
+
stack[0].length += stack[1].length;
|
269
|
+
stack_curr--;
|
270
|
+
break;
|
271
|
+
}
|
272
|
+
else if (stack_curr == 2)
|
273
|
+
break;
|
274
|
+
|
275
|
+
A = stack[stack_curr - 3].length;
|
276
|
+
B = stack[stack_curr - 2].length;
|
277
|
+
C = stack[stack_curr - 1].length;
|
278
|
+
|
279
|
+
/* check first invariant */
|
280
|
+
if (A <= B + C) {
|
281
|
+
if (A < C) {
|
282
|
+
merge(dst, stack, stack_curr - 1, store);
|
283
|
+
stack[stack_curr - 3].length += stack[stack_curr - 2].length;
|
284
|
+
stack[stack_curr - 2] = stack[stack_curr - 1];
|
285
|
+
stack_curr--;
|
286
|
+
} else {
|
287
|
+
merge(dst, stack, stack_curr, store);
|
288
|
+
stack[stack_curr - 2].length += stack[stack_curr - 1].length;
|
289
|
+
stack_curr--;
|
290
|
+
}
|
291
|
+
} else if (B <= C) {
|
292
|
+
merge(dst, stack, stack_curr, store);
|
293
|
+
stack[stack_curr - 2].length += stack[stack_curr - 1].length;
|
294
|
+
stack_curr--;
|
295
|
+
} else
|
296
|
+
break;
|
297
|
+
}
|
298
|
+
|
299
|
+
return stack_curr;
|
300
|
+
}
|
301
|
+
|
302
|
+
#define PUSH_NEXT() do {\
|
303
|
+
len = count_run(dst, curr, size, store);\
|
304
|
+
run = minrun;\
|
305
|
+
if (run < minrun) run = minrun;\
|
306
|
+
if (run > (ssize_t)size - curr) run = size - curr;\
|
307
|
+
if (run > len) {\
|
308
|
+
bisort(&dst[curr], len, run, cmp);\
|
309
|
+
len = run;\
|
310
|
+
}\
|
311
|
+
run_stack[stack_curr].start = curr;\
|
312
|
+
run_stack[stack_curr++].length = len;\
|
313
|
+
curr += len;\
|
314
|
+
if (curr == (ssize_t)size) {\
|
315
|
+
/* finish up */ \
|
316
|
+
while (stack_curr > 1) { \
|
317
|
+
merge(dst, run_stack, stack_curr, store); \
|
318
|
+
run_stack[stack_curr - 2].length += run_stack[stack_curr - 1].length; \
|
319
|
+
stack_curr--; \
|
320
|
+
} \
|
321
|
+
if (store->storage != NULL) {\
|
322
|
+
git__free(store->storage);\
|
323
|
+
store->storage = NULL;\
|
324
|
+
}\
|
325
|
+
return;\
|
326
|
+
}\
|
327
|
+
}\
|
328
|
+
while (0)
|
329
|
+
|
330
|
+
void git__tsort(void **dst, size_t size, cmp_ptr_t cmp)
|
331
|
+
{
|
332
|
+
struct tsort_store _store, *store = &_store;
|
333
|
+
struct tsort_run run_stack[128];
|
334
|
+
|
335
|
+
ssize_t stack_curr = 0;
|
336
|
+
ssize_t len, run;
|
337
|
+
ssize_t curr = 0;
|
338
|
+
ssize_t minrun;
|
339
|
+
|
340
|
+
if (size < 64) {
|
341
|
+
bisort(dst, 1, size, cmp);
|
342
|
+
return;
|
343
|
+
}
|
344
|
+
|
345
|
+
/* compute the minimum run length */
|
346
|
+
minrun = compute_minrun(size);
|
347
|
+
|
348
|
+
/* temporary storage for merges */
|
349
|
+
store->alloc = 0;
|
350
|
+
store->storage = NULL;
|
351
|
+
store->cmp = cmp;
|
352
|
+
|
353
|
+
PUSH_NEXT();
|
354
|
+
PUSH_NEXT();
|
355
|
+
PUSH_NEXT();
|
356
|
+
|
357
|
+
while (1) {
|
358
|
+
if (!check_invariant(run_stack, stack_curr)) {
|
359
|
+
stack_curr = collapse(dst, run_stack, stack_curr, store, size);
|
360
|
+
continue;
|
361
|
+
}
|
362
|
+
|
363
|
+
PUSH_NEXT();
|
364
|
+
}
|
365
|
+
}
|
@@ -0,0 +1,70 @@
|
|
1
|
+
/*
|
2
|
+
* Copyright (C) 2009-2011 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
|
+
#include <git2/common.h>
|
8
|
+
|
9
|
+
#ifndef GIT_WIN32
|
10
|
+
|
11
|
+
#include "map.h"
|
12
|
+
#include <sys/mman.h>
|
13
|
+
#include <errno.h>
|
14
|
+
|
15
|
+
int p_mmap(git_map *out, size_t len, int prot, int flags, int fd, git_off_t offset)
|
16
|
+
{
|
17
|
+
int mprot = 0;
|
18
|
+
int mflag = 0;
|
19
|
+
|
20
|
+
assert((out != NULL) && (len > 0));
|
21
|
+
|
22
|
+
if ((out == NULL) || (len == 0)) {
|
23
|
+
errno = EINVAL;
|
24
|
+
return git__throw(GIT_ERROR, "Failed to mmap. No map or zero length");
|
25
|
+
}
|
26
|
+
|
27
|
+
out->data = NULL;
|
28
|
+
out->len = 0;
|
29
|
+
|
30
|
+
if (prot & GIT_PROT_WRITE)
|
31
|
+
mprot = PROT_WRITE;
|
32
|
+
else if (prot & GIT_PROT_READ)
|
33
|
+
mprot = PROT_READ;
|
34
|
+
else {
|
35
|
+
errno = EINVAL;
|
36
|
+
return git__throw(GIT_ERROR, "Failed to mmap. Invalid protection parameters");
|
37
|
+
}
|
38
|
+
|
39
|
+
if ((flags & GIT_MAP_TYPE) == GIT_MAP_SHARED)
|
40
|
+
mflag = MAP_SHARED;
|
41
|
+
else if ((flags & GIT_MAP_TYPE) == GIT_MAP_PRIVATE)
|
42
|
+
mflag = MAP_PRIVATE;
|
43
|
+
|
44
|
+
if (flags & GIT_MAP_FIXED) {
|
45
|
+
errno = EINVAL;
|
46
|
+
return git__throw(GIT_ERROR, "Failed to mmap. FIXED not set");
|
47
|
+
}
|
48
|
+
|
49
|
+
out->data = mmap(NULL, len, mprot, mflag, fd, offset);
|
50
|
+
if (!out->data || out->data == MAP_FAILED)
|
51
|
+
return git__throw(GIT_EOSERR, "Failed to mmap. Could not write data");
|
52
|
+
out->len = len;
|
53
|
+
|
54
|
+
return GIT_SUCCESS;
|
55
|
+
}
|
56
|
+
|
57
|
+
int p_munmap(git_map *map)
|
58
|
+
{
|
59
|
+
assert(map != NULL);
|
60
|
+
|
61
|
+
if (!map)
|
62
|
+
return git__throw(GIT_ERROR, "Failed to munmap. Map does not exist");
|
63
|
+
|
64
|
+
munmap(map->data, map->len);
|
65
|
+
|
66
|
+
return GIT_SUCCESS;
|
67
|
+
}
|
68
|
+
|
69
|
+
#endif
|
70
|
+
|