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,76 @@
|
|
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_git_indexer_h__
|
8
|
+
#define _INCLUDE_git_indexer_h__
|
9
|
+
|
10
|
+
#include "common.h"
|
11
|
+
#include "oid.h"
|
12
|
+
|
13
|
+
GIT_BEGIN_DECL
|
14
|
+
|
15
|
+
/**
|
16
|
+
* This is passed as the first argument to the callback to allow the
|
17
|
+
* user to see the progress.
|
18
|
+
*/
|
19
|
+
typedef struct git_indexer_stats {
|
20
|
+
unsigned int total;
|
21
|
+
unsigned int processed;
|
22
|
+
} git_indexer_stats;
|
23
|
+
|
24
|
+
|
25
|
+
typedef struct git_indexer git_indexer;
|
26
|
+
|
27
|
+
/**
|
28
|
+
* Create a new indexer instance
|
29
|
+
*
|
30
|
+
* @param out where to store the indexer instance
|
31
|
+
* @param packname the absolute filename of the packfile to index
|
32
|
+
*/
|
33
|
+
GIT_EXTERN(int) git_indexer_new(git_indexer **out, const char *packname);
|
34
|
+
|
35
|
+
/**
|
36
|
+
* Iterate over the objects in the packfile and extract the information
|
37
|
+
*
|
38
|
+
* Indexing a packfile can be very expensive so this function is
|
39
|
+
* expected to be run in a worker thread and the stats used to provide
|
40
|
+
* feedback the user.
|
41
|
+
*
|
42
|
+
* @param idx the indexer instance
|
43
|
+
* @param stats storage for the running state
|
44
|
+
*/
|
45
|
+
GIT_EXTERN(int) git_indexer_run(git_indexer *idx, git_indexer_stats *stats);
|
46
|
+
|
47
|
+
/**
|
48
|
+
* Write the index file to disk.
|
49
|
+
*
|
50
|
+
* The file will be stored as pack-$hash.idx in the same directory as
|
51
|
+
* the packfile.
|
52
|
+
*
|
53
|
+
* @param idx the indexer instance
|
54
|
+
*/
|
55
|
+
GIT_EXTERN(int) git_indexer_write(git_indexer *idx);
|
56
|
+
|
57
|
+
/**
|
58
|
+
* Get the packfile's hash
|
59
|
+
*
|
60
|
+
* A packfile's name is derived from the sorted hashing of all object
|
61
|
+
* names. This is only correct after the index has been written to disk.
|
62
|
+
*
|
63
|
+
* @param idx the indexer instance
|
64
|
+
*/
|
65
|
+
GIT_EXTERN(const git_oid *) git_indexer_hash(git_indexer *idx);
|
66
|
+
|
67
|
+
/**
|
68
|
+
* Free the indexer and its resources
|
69
|
+
*
|
70
|
+
* @param idx the indexer to free
|
71
|
+
*/
|
72
|
+
GIT_EXTERN(void) git_indexer_free(git_indexer *idx);
|
73
|
+
|
74
|
+
GIT_END_DECL
|
75
|
+
|
76
|
+
#endif
|
@@ -0,0 +1,305 @@
|
|
1
|
+
// ISO C9x compliant inttypes.h for Microsoft Visual Studio
|
2
|
+
// Based on ISO/IEC 9899:TC2 Committee draft (May 6, 2005) WG14/N1124
|
3
|
+
//
|
4
|
+
// Copyright (c) 2006 Alexander Chemeris
|
5
|
+
//
|
6
|
+
// Redistribution and use in source and binary forms, with or without
|
7
|
+
// modification, are permitted provided that the following conditions are met:
|
8
|
+
//
|
9
|
+
// 1. Redistributions of source code must retain the above copyright notice,
|
10
|
+
// this list of conditions and the following disclaimer.
|
11
|
+
//
|
12
|
+
// 2. Redistributions in binary form must reproduce the above copyright
|
13
|
+
// notice, this list of conditions and the following disclaimer in the
|
14
|
+
// documentation and/or other materials provided with the distribution.
|
15
|
+
//
|
16
|
+
// 3. The name of the author may be used to endorse or promote products
|
17
|
+
// derived from this software without specific prior written permission.
|
18
|
+
//
|
19
|
+
// THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
|
20
|
+
// WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
21
|
+
// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
|
22
|
+
// EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
23
|
+
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
24
|
+
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
|
25
|
+
// OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
26
|
+
// WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
27
|
+
// OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
28
|
+
// ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
29
|
+
//
|
30
|
+
///////////////////////////////////////////////////////////////////////////////
|
31
|
+
|
32
|
+
#ifndef _MSC_VER // [
|
33
|
+
#error "Use this header only with Microsoft Visual C++ compilers!"
|
34
|
+
#endif // _MSC_VER ]
|
35
|
+
|
36
|
+
#ifndef _MSC_INTTYPES_H_ // [
|
37
|
+
#define _MSC_INTTYPES_H_
|
38
|
+
|
39
|
+
#if _MSC_VER > 1000
|
40
|
+
#pragma once
|
41
|
+
#endif
|
42
|
+
|
43
|
+
#include "stdint.h"
|
44
|
+
|
45
|
+
// 7.8 Format conversion of integer types
|
46
|
+
|
47
|
+
typedef struct {
|
48
|
+
intmax_t quot;
|
49
|
+
intmax_t rem;
|
50
|
+
} imaxdiv_t;
|
51
|
+
|
52
|
+
// 7.8.1 Macros for format specifiers
|
53
|
+
|
54
|
+
#if !defined(__cplusplus) || defined(__STDC_FORMAT_MACROS) // [ See footnote 185 at page 198
|
55
|
+
|
56
|
+
// The fprintf macros for signed integers are:
|
57
|
+
#define PRId8 "d"
|
58
|
+
#define PRIi8 "i"
|
59
|
+
#define PRIdLEAST8 "d"
|
60
|
+
#define PRIiLEAST8 "i"
|
61
|
+
#define PRIdFAST8 "d"
|
62
|
+
#define PRIiFAST8 "i"
|
63
|
+
|
64
|
+
#define PRId16 "hd"
|
65
|
+
#define PRIi16 "hi"
|
66
|
+
#define PRIdLEAST16 "hd"
|
67
|
+
#define PRIiLEAST16 "hi"
|
68
|
+
#define PRIdFAST16 "hd"
|
69
|
+
#define PRIiFAST16 "hi"
|
70
|
+
|
71
|
+
#define PRId32 "I32d"
|
72
|
+
#define PRIi32 "I32i"
|
73
|
+
#define PRIdLEAST32 "I32d"
|
74
|
+
#define PRIiLEAST32 "I32i"
|
75
|
+
#define PRIdFAST32 "I32d"
|
76
|
+
#define PRIiFAST32 "I32i"
|
77
|
+
|
78
|
+
#define PRId64 "I64d"
|
79
|
+
#define PRIi64 "I64i"
|
80
|
+
#define PRIdLEAST64 "I64d"
|
81
|
+
#define PRIiLEAST64 "I64i"
|
82
|
+
#define PRIdFAST64 "I64d"
|
83
|
+
#define PRIiFAST64 "I64i"
|
84
|
+
|
85
|
+
#define PRIdMAX "I64d"
|
86
|
+
#define PRIiMAX "I64i"
|
87
|
+
|
88
|
+
#define PRIdPTR "Id"
|
89
|
+
#define PRIiPTR "Ii"
|
90
|
+
|
91
|
+
// The fprintf macros for unsigned integers are:
|
92
|
+
#define PRIo8 "o"
|
93
|
+
#define PRIu8 "u"
|
94
|
+
#define PRIx8 "x"
|
95
|
+
#define PRIX8 "X"
|
96
|
+
#define PRIoLEAST8 "o"
|
97
|
+
#define PRIuLEAST8 "u"
|
98
|
+
#define PRIxLEAST8 "x"
|
99
|
+
#define PRIXLEAST8 "X"
|
100
|
+
#define PRIoFAST8 "o"
|
101
|
+
#define PRIuFAST8 "u"
|
102
|
+
#define PRIxFAST8 "x"
|
103
|
+
#define PRIXFAST8 "X"
|
104
|
+
|
105
|
+
#define PRIo16 "ho"
|
106
|
+
#define PRIu16 "hu"
|
107
|
+
#define PRIx16 "hx"
|
108
|
+
#define PRIX16 "hX"
|
109
|
+
#define PRIoLEAST16 "ho"
|
110
|
+
#define PRIuLEAST16 "hu"
|
111
|
+
#define PRIxLEAST16 "hx"
|
112
|
+
#define PRIXLEAST16 "hX"
|
113
|
+
#define PRIoFAST16 "ho"
|
114
|
+
#define PRIuFAST16 "hu"
|
115
|
+
#define PRIxFAST16 "hx"
|
116
|
+
#define PRIXFAST16 "hX"
|
117
|
+
|
118
|
+
#define PRIo32 "I32o"
|
119
|
+
#define PRIu32 "I32u"
|
120
|
+
#define PRIx32 "I32x"
|
121
|
+
#define PRIX32 "I32X"
|
122
|
+
#define PRIoLEAST32 "I32o"
|
123
|
+
#define PRIuLEAST32 "I32u"
|
124
|
+
#define PRIxLEAST32 "I32x"
|
125
|
+
#define PRIXLEAST32 "I32X"
|
126
|
+
#define PRIoFAST32 "I32o"
|
127
|
+
#define PRIuFAST32 "I32u"
|
128
|
+
#define PRIxFAST32 "I32x"
|
129
|
+
#define PRIXFAST32 "I32X"
|
130
|
+
|
131
|
+
#define PRIo64 "I64o"
|
132
|
+
#define PRIu64 "I64u"
|
133
|
+
#define PRIx64 "I64x"
|
134
|
+
#define PRIX64 "I64X"
|
135
|
+
#define PRIoLEAST64 "I64o"
|
136
|
+
#define PRIuLEAST64 "I64u"
|
137
|
+
#define PRIxLEAST64 "I64x"
|
138
|
+
#define PRIXLEAST64 "I64X"
|
139
|
+
#define PRIoFAST64 "I64o"
|
140
|
+
#define PRIuFAST64 "I64u"
|
141
|
+
#define PRIxFAST64 "I64x"
|
142
|
+
#define PRIXFAST64 "I64X"
|
143
|
+
|
144
|
+
#define PRIoMAX "I64o"
|
145
|
+
#define PRIuMAX "I64u"
|
146
|
+
#define PRIxMAX "I64x"
|
147
|
+
#define PRIXMAX "I64X"
|
148
|
+
|
149
|
+
#define PRIoPTR "Io"
|
150
|
+
#define PRIuPTR "Iu"
|
151
|
+
#define PRIxPTR "Ix"
|
152
|
+
#define PRIXPTR "IX"
|
153
|
+
|
154
|
+
// The fscanf macros for signed integers are:
|
155
|
+
#define SCNd8 "d"
|
156
|
+
#define SCNi8 "i"
|
157
|
+
#define SCNdLEAST8 "d"
|
158
|
+
#define SCNiLEAST8 "i"
|
159
|
+
#define SCNdFAST8 "d"
|
160
|
+
#define SCNiFAST8 "i"
|
161
|
+
|
162
|
+
#define SCNd16 "hd"
|
163
|
+
#define SCNi16 "hi"
|
164
|
+
#define SCNdLEAST16 "hd"
|
165
|
+
#define SCNiLEAST16 "hi"
|
166
|
+
#define SCNdFAST16 "hd"
|
167
|
+
#define SCNiFAST16 "hi"
|
168
|
+
|
169
|
+
#define SCNd32 "ld"
|
170
|
+
#define SCNi32 "li"
|
171
|
+
#define SCNdLEAST32 "ld"
|
172
|
+
#define SCNiLEAST32 "li"
|
173
|
+
#define SCNdFAST32 "ld"
|
174
|
+
#define SCNiFAST32 "li"
|
175
|
+
|
176
|
+
#define SCNd64 "I64d"
|
177
|
+
#define SCNi64 "I64i"
|
178
|
+
#define SCNdLEAST64 "I64d"
|
179
|
+
#define SCNiLEAST64 "I64i"
|
180
|
+
#define SCNdFAST64 "I64d"
|
181
|
+
#define SCNiFAST64 "I64i"
|
182
|
+
|
183
|
+
#define SCNdMAX "I64d"
|
184
|
+
#define SCNiMAX "I64i"
|
185
|
+
|
186
|
+
#ifdef _WIN64 // [
|
187
|
+
# define SCNdPTR "I64d"
|
188
|
+
# define SCNiPTR "I64i"
|
189
|
+
#else // _WIN64 ][
|
190
|
+
# define SCNdPTR "ld"
|
191
|
+
# define SCNiPTR "li"
|
192
|
+
#endif // _WIN64 ]
|
193
|
+
|
194
|
+
// The fscanf macros for unsigned integers are:
|
195
|
+
#define SCNo8 "o"
|
196
|
+
#define SCNu8 "u"
|
197
|
+
#define SCNx8 "x"
|
198
|
+
#define SCNX8 "X"
|
199
|
+
#define SCNoLEAST8 "o"
|
200
|
+
#define SCNuLEAST8 "u"
|
201
|
+
#define SCNxLEAST8 "x"
|
202
|
+
#define SCNXLEAST8 "X"
|
203
|
+
#define SCNoFAST8 "o"
|
204
|
+
#define SCNuFAST8 "u"
|
205
|
+
#define SCNxFAST8 "x"
|
206
|
+
#define SCNXFAST8 "X"
|
207
|
+
|
208
|
+
#define SCNo16 "ho"
|
209
|
+
#define SCNu16 "hu"
|
210
|
+
#define SCNx16 "hx"
|
211
|
+
#define SCNX16 "hX"
|
212
|
+
#define SCNoLEAST16 "ho"
|
213
|
+
#define SCNuLEAST16 "hu"
|
214
|
+
#define SCNxLEAST16 "hx"
|
215
|
+
#define SCNXLEAST16 "hX"
|
216
|
+
#define SCNoFAST16 "ho"
|
217
|
+
#define SCNuFAST16 "hu"
|
218
|
+
#define SCNxFAST16 "hx"
|
219
|
+
#define SCNXFAST16 "hX"
|
220
|
+
|
221
|
+
#define SCNo32 "lo"
|
222
|
+
#define SCNu32 "lu"
|
223
|
+
#define SCNx32 "lx"
|
224
|
+
#define SCNX32 "lX"
|
225
|
+
#define SCNoLEAST32 "lo"
|
226
|
+
#define SCNuLEAST32 "lu"
|
227
|
+
#define SCNxLEAST32 "lx"
|
228
|
+
#define SCNXLEAST32 "lX"
|
229
|
+
#define SCNoFAST32 "lo"
|
230
|
+
#define SCNuFAST32 "lu"
|
231
|
+
#define SCNxFAST32 "lx"
|
232
|
+
#define SCNXFAST32 "lX"
|
233
|
+
|
234
|
+
#define SCNo64 "I64o"
|
235
|
+
#define SCNu64 "I64u"
|
236
|
+
#define SCNx64 "I64x"
|
237
|
+
#define SCNX64 "I64X"
|
238
|
+
#define SCNoLEAST64 "I64o"
|
239
|
+
#define SCNuLEAST64 "I64u"
|
240
|
+
#define SCNxLEAST64 "I64x"
|
241
|
+
#define SCNXLEAST64 "I64X"
|
242
|
+
#define SCNoFAST64 "I64o"
|
243
|
+
#define SCNuFAST64 "I64u"
|
244
|
+
#define SCNxFAST64 "I64x"
|
245
|
+
#define SCNXFAST64 "I64X"
|
246
|
+
|
247
|
+
#define SCNoMAX "I64o"
|
248
|
+
#define SCNuMAX "I64u"
|
249
|
+
#define SCNxMAX "I64x"
|
250
|
+
#define SCNXMAX "I64X"
|
251
|
+
|
252
|
+
#ifdef _WIN64 // [
|
253
|
+
# define SCNoPTR "I64o"
|
254
|
+
# define SCNuPTR "I64u"
|
255
|
+
# define SCNxPTR "I64x"
|
256
|
+
# define SCNXPTR "I64X"
|
257
|
+
#else // _WIN64 ][
|
258
|
+
# define SCNoPTR "lo"
|
259
|
+
# define SCNuPTR "lu"
|
260
|
+
# define SCNxPTR "lx"
|
261
|
+
# define SCNXPTR "lX"
|
262
|
+
#endif // _WIN64 ]
|
263
|
+
|
264
|
+
#endif // __STDC_FORMAT_MACROS ]
|
265
|
+
|
266
|
+
// 7.8.2 Functions for greatest-width integer types
|
267
|
+
|
268
|
+
// 7.8.2.1 The imaxabs function
|
269
|
+
#define imaxabs _abs64
|
270
|
+
|
271
|
+
// 7.8.2.2 The imaxdiv function
|
272
|
+
|
273
|
+
// This is modified version of div() function from Microsoft's div.c found
|
274
|
+
// in %MSVC.NET%\crt\src\div.c
|
275
|
+
#ifdef STATIC_IMAXDIV // [
|
276
|
+
static
|
277
|
+
#else // STATIC_IMAXDIV ][
|
278
|
+
_inline
|
279
|
+
#endif // STATIC_IMAXDIV ]
|
280
|
+
imaxdiv_t __cdecl imaxdiv(intmax_t numer, intmax_t denom)
|
281
|
+
{
|
282
|
+
imaxdiv_t result;
|
283
|
+
|
284
|
+
result.quot = numer / denom;
|
285
|
+
result.rem = numer % denom;
|
286
|
+
|
287
|
+
if (numer < 0 && result.rem > 0) {
|
288
|
+
// did division wrong; must fix up
|
289
|
+
++result.quot;
|
290
|
+
result.rem -= denom;
|
291
|
+
}
|
292
|
+
|
293
|
+
return result;
|
294
|
+
}
|
295
|
+
|
296
|
+
// 7.8.2.3 The strtoimax and strtoumax functions
|
297
|
+
#define strtoimax _strtoi64
|
298
|
+
#define strtoumax _strtoui64
|
299
|
+
|
300
|
+
// 7.8.2.4 The wcstoimax and wcstoumax functions
|
301
|
+
#define wcstoimax _wcstoi64
|
302
|
+
#define wcstoumax _wcstoui64
|
303
|
+
|
304
|
+
|
305
|
+
#endif // _MSC_INTTYPES_H_ ]
|
@@ -0,0 +1,51 @@
|
|
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_net_h__
|
8
|
+
#define INCLUDE_net_h__
|
9
|
+
|
10
|
+
#include "common.h"
|
11
|
+
#include "oid.h"
|
12
|
+
#include "types.h"
|
13
|
+
|
14
|
+
/**
|
15
|
+
* @file git2/net.h
|
16
|
+
* @brief Git networking declarations
|
17
|
+
* @ingroup Git
|
18
|
+
* @{
|
19
|
+
*/
|
20
|
+
GIT_BEGIN_DECL
|
21
|
+
|
22
|
+
#define GIT_DEFAULT_PORT "9418"
|
23
|
+
|
24
|
+
/*
|
25
|
+
* We need this because we need to know whether we should call
|
26
|
+
* git-upload-pack or git-receive-pack on the remote end when get_refs
|
27
|
+
* gets called.
|
28
|
+
*/
|
29
|
+
|
30
|
+
#define GIT_DIR_FETCH 0
|
31
|
+
#define GIT_DIR_PUSH 1
|
32
|
+
|
33
|
+
|
34
|
+
/**
|
35
|
+
* Remote head description, given out on `ls` calls.
|
36
|
+
*/
|
37
|
+
struct git_remote_head {
|
38
|
+
int local:1; /* available locally */
|
39
|
+
git_oid oid;
|
40
|
+
git_oid loid;
|
41
|
+
char *name;
|
42
|
+
};
|
43
|
+
|
44
|
+
/**
|
45
|
+
* Callback for listing the remote heads
|
46
|
+
*/
|
47
|
+
typedef int (*git_headlist_cb)(git_remote_head *, void *);
|
48
|
+
|
49
|
+
/** @} */
|
50
|
+
GIT_END_DECL
|
51
|
+
#endif
|
@@ -0,0 +1,173 @@
|
|
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_git_object_h__
|
8
|
+
#define INCLUDE_git_object_h__
|
9
|
+
|
10
|
+
#include "common.h"
|
11
|
+
#include "types.h"
|
12
|
+
#include "oid.h"
|
13
|
+
|
14
|
+
/**
|
15
|
+
* @file git2/object.h
|
16
|
+
* @brief Git revision object management routines
|
17
|
+
* @defgroup git_object Git revision object management routines
|
18
|
+
* @ingroup Git
|
19
|
+
* @{
|
20
|
+
*/
|
21
|
+
GIT_BEGIN_DECL
|
22
|
+
|
23
|
+
/**
|
24
|
+
* Lookup a reference to one of the objects in a repostory.
|
25
|
+
*
|
26
|
+
* The generated reference is owned by the repository and
|
27
|
+
* should be closed with the `git_object_free` method
|
28
|
+
* instead of free'd manually.
|
29
|
+
*
|
30
|
+
* The 'type' parameter must match the type of the object
|
31
|
+
* in the odb; the method will fail otherwise.
|
32
|
+
* The special value 'GIT_OBJ_ANY' may be passed to let
|
33
|
+
* the method guess the object's type.
|
34
|
+
*
|
35
|
+
* @param object pointer to the looked-up object
|
36
|
+
* @param repo the repository to look up the object
|
37
|
+
* @param id the unique identifier for the object
|
38
|
+
* @param type the type of the object
|
39
|
+
* @return a reference to the object
|
40
|
+
*/
|
41
|
+
GIT_EXTERN(int) git_object_lookup(
|
42
|
+
git_object **object,
|
43
|
+
git_repository *repo,
|
44
|
+
const git_oid *id,
|
45
|
+
git_otype type);
|
46
|
+
|
47
|
+
/**
|
48
|
+
* Lookup a reference to one of the objects in a repostory,
|
49
|
+
* given a prefix of its identifier (short id).
|
50
|
+
*
|
51
|
+
* The object obtained will be so that its identifier
|
52
|
+
* matches the first 'len' hexadecimal characters
|
53
|
+
* (packets of 4 bits) of the given 'id'.
|
54
|
+
* 'len' must be at least GIT_OID_MINPREFIXLEN, and
|
55
|
+
* long enough to identify a unique object matching
|
56
|
+
* the prefix; otherwise the method will fail.
|
57
|
+
*
|
58
|
+
* The generated reference is owned by the repository and
|
59
|
+
* should be closed with the `git_object_free` method
|
60
|
+
* instead of free'd manually.
|
61
|
+
*
|
62
|
+
* The 'type' parameter must match the type of the object
|
63
|
+
* in the odb; the method will fail otherwise.
|
64
|
+
* The special value 'GIT_OBJ_ANY' may be passed to let
|
65
|
+
* the method guess the object's type.
|
66
|
+
*
|
67
|
+
* @param object_out pointer where to store the looked-up object
|
68
|
+
* @param repo the repository to look up the object
|
69
|
+
* @param id a short identifier for the object
|
70
|
+
* @param len the length of the short identifier
|
71
|
+
* @param type the type of the object
|
72
|
+
* @return GIT_SUCCESS or an error code
|
73
|
+
*/
|
74
|
+
GIT_EXTERN(int) git_object_lookup_prefix(
|
75
|
+
git_object **object_out,
|
76
|
+
git_repository *repo,
|
77
|
+
const git_oid *id,
|
78
|
+
unsigned int len,
|
79
|
+
git_otype type);
|
80
|
+
|
81
|
+
/**
|
82
|
+
* Get the id (SHA1) of a repository object
|
83
|
+
*
|
84
|
+
* @param obj the repository object
|
85
|
+
* @return the SHA1 id
|
86
|
+
*/
|
87
|
+
GIT_EXTERN(const git_oid *) git_object_id(const git_object *obj);
|
88
|
+
|
89
|
+
/**
|
90
|
+
* Get the object type of an object
|
91
|
+
*
|
92
|
+
* @param obj the repository object
|
93
|
+
* @return the object's type
|
94
|
+
*/
|
95
|
+
GIT_EXTERN(git_otype) git_object_type(const git_object *obj);
|
96
|
+
|
97
|
+
/**
|
98
|
+
* Get the repository that owns this object
|
99
|
+
*
|
100
|
+
* Freeing or calling `git_repository_close` on the
|
101
|
+
* returned pointer will invalidate the actual object.
|
102
|
+
*
|
103
|
+
* Any other operation may be run on the repository without
|
104
|
+
* affecting the object.
|
105
|
+
*
|
106
|
+
* @param obj the object
|
107
|
+
* @return the repository who owns this object
|
108
|
+
*/
|
109
|
+
GIT_EXTERN(git_repository *) git_object_owner(const git_object *obj);
|
110
|
+
|
111
|
+
/**
|
112
|
+
* Close an open object
|
113
|
+
*
|
114
|
+
* This method instructs the library to close an existing
|
115
|
+
* object; note that git_objects are owned and cached by the repository
|
116
|
+
* so the object may or may not be freed after this library call,
|
117
|
+
* depending on how agressive is the caching mechanism used
|
118
|
+
* by the repository.
|
119
|
+
*
|
120
|
+
* IMPORTANT:
|
121
|
+
* It *is* necessary to call this method when you stop using
|
122
|
+
* an object. Failure to do so will cause a memory leak.
|
123
|
+
*
|
124
|
+
* @param object the object to close
|
125
|
+
*/
|
126
|
+
GIT_EXTERN(void) git_object_free(git_object *object);
|
127
|
+
|
128
|
+
/**
|
129
|
+
* Convert an object type to it's string representation.
|
130
|
+
*
|
131
|
+
* The result is a pointer to a string in static memory and
|
132
|
+
* should not be free()'ed.
|
133
|
+
*
|
134
|
+
* @param type object type to convert.
|
135
|
+
* @return the corresponding string representation.
|
136
|
+
*/
|
137
|
+
GIT_EXTERN(const char *) git_object_type2string(git_otype type);
|
138
|
+
|
139
|
+
/**
|
140
|
+
* Convert a string object type representation to it's git_otype.
|
141
|
+
*
|
142
|
+
* @param str the string to convert.
|
143
|
+
* @return the corresponding git_otype.
|
144
|
+
*/
|
145
|
+
GIT_EXTERN(git_otype) git_object_string2type(const char *str);
|
146
|
+
|
147
|
+
/**
|
148
|
+
* Determine if the given git_otype is a valid loose object type.
|
149
|
+
*
|
150
|
+
* @param type object type to test.
|
151
|
+
* @return true if the type represents a valid loose object type,
|
152
|
+
* false otherwise.
|
153
|
+
*/
|
154
|
+
GIT_EXTERN(int) git_object_typeisloose(git_otype type);
|
155
|
+
|
156
|
+
/**
|
157
|
+
* Get the size in bytes for the structure which
|
158
|
+
* acts as an in-memory representation of any given
|
159
|
+
* object type.
|
160
|
+
*
|
161
|
+
* For all the core types, this would the equivalent
|
162
|
+
* of calling `sizeof(git_commit)` if the core types
|
163
|
+
* were not opaque on the external API.
|
164
|
+
*
|
165
|
+
* @param type object type to get its size
|
166
|
+
* @return size in bytes of the object
|
167
|
+
*/
|
168
|
+
GIT_EXTERN(size_t) git_object__size(git_otype type);
|
169
|
+
|
170
|
+
/** @} */
|
171
|
+
GIT_END_DECL
|
172
|
+
|
173
|
+
#endif
|