rugged 1.0.0 → 1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (338) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE +1 -0
  3. data/README.md +3 -3
  4. data/ext/rugged/rugged.c +7 -4
  5. data/ext/rugged/rugged_commit.c +1 -1
  6. data/ext/rugged/rugged_config.c +1 -1
  7. data/ext/rugged/rugged_object.c +1 -1
  8. data/ext/rugged/rugged_remote.c +32 -2
  9. data/ext/rugged/rugged_repo.c +13 -3
  10. data/lib/rugged/commit.rb +17 -4
  11. data/lib/rugged/repository.rb +7 -8
  12. data/lib/rugged/submodule_collection.rb +4 -4
  13. data/lib/rugged/version.rb +1 -1
  14. data/vendor/libgit2/CMakeLists.txt +41 -74
  15. data/vendor/libgit2/COPYING +109 -1
  16. data/vendor/libgit2/cmake/{Modules/AddCFlagIfSupported.cmake → AddCFlagIfSupported.cmake} +0 -0
  17. data/vendor/libgit2/cmake/{Modules/EnableWarnings.cmake → EnableWarnings.cmake} +0 -0
  18. data/vendor/libgit2/cmake/{Modules/FindCoreFoundation.cmake → FindCoreFoundation.cmake} +0 -0
  19. data/vendor/libgit2/cmake/{Modules/FindGSSAPI.cmake → FindGSSAPI.cmake} +0 -0
  20. data/vendor/libgit2/cmake/{Modules/FindGSSFramework.cmake → FindGSSFramework.cmake} +0 -0
  21. data/vendor/libgit2/cmake/{Modules/FindHTTP_Parser.cmake → FindHTTP_Parser.cmake} +0 -0
  22. data/vendor/libgit2/cmake/{Modules/FindIconv.cmake → FindIconv.cmake} +0 -0
  23. data/vendor/libgit2/cmake/{Modules/FindPCRE.cmake → FindPCRE.cmake} +0 -0
  24. data/vendor/libgit2/cmake/{Modules/FindPCRE2.cmake → FindPCRE2.cmake} +0 -0
  25. data/vendor/libgit2/cmake/{Modules/FindPkgLibraries.cmake → FindPkgLibraries.cmake} +0 -0
  26. data/vendor/libgit2/cmake/{Modules/FindSecurity.cmake → FindSecurity.cmake} +0 -0
  27. data/vendor/libgit2/cmake/{Modules/FindStatNsec.cmake → FindStatNsec.cmake} +0 -0
  28. data/vendor/libgit2/cmake/Findfutimens.cmake +14 -0
  29. data/vendor/libgit2/cmake/{Modules/FindmbedTLS.cmake → FindmbedTLS.cmake} +0 -0
  30. data/vendor/libgit2/cmake/{Modules/IdeSplitSources.cmake → IdeSplitSources.cmake} +0 -0
  31. data/vendor/libgit2/cmake/{Modules/PkgBuildConfig.cmake → PkgBuildConfig.cmake} +0 -0
  32. data/vendor/libgit2/cmake/{Modules/SanitizeBool.cmake → SanitizeBool.cmake} +0 -0
  33. data/vendor/libgit2/cmake/{Modules/SelectGSSAPI.cmake → SelectGSSAPI.cmake} +18 -26
  34. data/vendor/libgit2/cmake/{Modules/SelectHTTPSBackend.cmake → SelectHTTPSBackend.cmake} +29 -32
  35. data/vendor/libgit2/cmake/{Modules/SelectHashes.cmake → SelectHashes.cmake} +21 -28
  36. data/vendor/libgit2/deps/chromium-zlib/CMakeLists.txt +101 -0
  37. data/vendor/libgit2/deps/http-parser/CMakeLists.txt +4 -3
  38. data/vendor/libgit2/deps/ntlmclient/CMakeLists.txt +24 -10
  39. data/vendor/libgit2/deps/ntlmclient/compat.h +0 -27
  40. data/vendor/libgit2/deps/ntlmclient/crypt.h +14 -9
  41. data/vendor/libgit2/deps/ntlmclient/crypt_commoncrypto.c +20 -20
  42. data/vendor/libgit2/deps/ntlmclient/crypt_commoncrypto.h +3 -3
  43. data/vendor/libgit2/deps/ntlmclient/crypt_mbedtls.c +37 -36
  44. data/vendor/libgit2/deps/ntlmclient/crypt_mbedtls.h +4 -3
  45. data/vendor/libgit2/deps/ntlmclient/crypt_openssl.c +178 -51
  46. data/vendor/libgit2/deps/ntlmclient/crypt_openssl.h +74 -5
  47. data/vendor/libgit2/deps/ntlmclient/ntlm.c +164 -135
  48. data/vendor/libgit2/deps/ntlmclient/ntlm.h +13 -9
  49. data/vendor/libgit2/deps/ntlmclient/ntlmclient.h +16 -3
  50. data/vendor/libgit2/deps/ntlmclient/unicode.h +10 -4
  51. data/vendor/libgit2/deps/ntlmclient/unicode_builtin.c +16 -27
  52. data/vendor/libgit2/deps/ntlmclient/unicode_builtin.h +20 -0
  53. data/vendor/libgit2/deps/ntlmclient/unicode_iconv.c +28 -52
  54. data/vendor/libgit2/deps/ntlmclient/unicode_iconv.h +22 -0
  55. data/vendor/libgit2/deps/ntlmclient/util.c +15 -1
  56. data/vendor/libgit2/deps/ntlmclient/util.h +2 -1
  57. data/vendor/libgit2/deps/pcre/LICENCE +93 -0
  58. data/vendor/libgit2/deps/pcre/pcre.h +2 -2
  59. data/vendor/libgit2/deps/pcre/pcre_compile.c +29 -17
  60. data/vendor/libgit2/deps/pcre/pcre_jit_compile.c +4 -4
  61. data/vendor/libgit2/deps/pcre/pcreposix.c +2 -3
  62. data/vendor/libgit2/deps/zlib/CMakeLists.txt +6 -5
  63. data/vendor/libgit2/deps/zlib/deflate.c +1 -0
  64. data/vendor/libgit2/include/git2/annotated_commit.h +1 -1
  65. data/vendor/libgit2/include/git2/apply.h +2 -0
  66. data/vendor/libgit2/include/git2/attr.h +89 -0
  67. data/vendor/libgit2/include/git2/blame.h +95 -42
  68. data/vendor/libgit2/include/git2/blob.h +31 -3
  69. data/vendor/libgit2/include/git2/branch.h +25 -0
  70. data/vendor/libgit2/include/git2/cert.h +42 -5
  71. data/vendor/libgit2/include/git2/checkout.h +28 -12
  72. data/vendor/libgit2/include/git2/commit.h +35 -19
  73. data/vendor/libgit2/include/git2/common.h +33 -6
  74. data/vendor/libgit2/include/git2/config.h +1 -1
  75. data/vendor/libgit2/include/git2/deprecated.h +248 -8
  76. data/vendor/libgit2/include/git2/diff.h +35 -20
  77. data/vendor/libgit2/include/git2/errors.h +8 -7
  78. data/vendor/libgit2/include/git2/filter.h +57 -17
  79. data/vendor/libgit2/include/git2/graph.h +20 -2
  80. data/vendor/libgit2/include/git2/index.h +4 -5
  81. data/vendor/libgit2/include/git2/indexer.h +2 -1
  82. data/vendor/libgit2/include/git2/odb.h +44 -20
  83. data/vendor/libgit2/include/git2/pack.h +1 -1
  84. data/vendor/libgit2/include/git2/patch.h +8 -0
  85. data/vendor/libgit2/include/git2/rebase.h +25 -1
  86. data/vendor/libgit2/include/git2/refs.h +9 -5
  87. data/vendor/libgit2/include/git2/remote.h +59 -6
  88. data/vendor/libgit2/include/git2/repository.h +95 -52
  89. data/vendor/libgit2/include/git2/revparse.h +5 -5
  90. data/vendor/libgit2/include/git2/status.h +115 -59
  91. data/vendor/libgit2/include/git2/strarray.h +6 -10
  92. data/vendor/libgit2/include/git2/submodule.h +9 -0
  93. data/vendor/libgit2/include/git2/sys/commit_graph.h +174 -0
  94. data/vendor/libgit2/include/git2/sys/filter.h +49 -28
  95. data/vendor/libgit2/include/git2/sys/midx.h +74 -0
  96. data/vendor/libgit2/include/git2/sys/odb_backend.h +7 -0
  97. data/vendor/libgit2/include/git2/sys/transport.h +1 -0
  98. data/vendor/libgit2/include/git2/tag.h +12 -0
  99. data/vendor/libgit2/include/git2/transport.h +1 -1
  100. data/vendor/libgit2/include/git2/tree.h +2 -14
  101. data/vendor/libgit2/include/git2/types.h +9 -0
  102. data/vendor/libgit2/include/git2/version.h +3 -3
  103. data/vendor/libgit2/include/git2/worktree.h +1 -0
  104. data/vendor/libgit2/src/CMakeLists.txt +77 -44
  105. data/vendor/libgit2/src/alloc.c +21 -8
  106. data/vendor/libgit2/src/allocators/failalloc.c +92 -0
  107. data/vendor/libgit2/src/allocators/failalloc.h +23 -0
  108. data/vendor/libgit2/src/allocators/stdalloc.c +41 -10
  109. data/vendor/libgit2/src/allocators/win32_leakcheck.c +118 -0
  110. data/vendor/libgit2/src/allocators/{win32_crtdbg.h → win32_leakcheck.h} +3 -3
  111. data/vendor/libgit2/src/annotated_commit.c +21 -9
  112. data/vendor/libgit2/src/apply.c +21 -8
  113. data/vendor/libgit2/src/array.h +11 -11
  114. data/vendor/libgit2/src/assert_safe.h +58 -0
  115. data/vendor/libgit2/src/attr.c +181 -74
  116. data/vendor/libgit2/src/attr_file.c +92 -42
  117. data/vendor/libgit2/src/attr_file.h +32 -11
  118. data/vendor/libgit2/src/attrcache.c +44 -40
  119. data/vendor/libgit2/src/attrcache.h +4 -5
  120. data/vendor/libgit2/src/blame.c +28 -15
  121. data/vendor/libgit2/src/blame_git.c +6 -3
  122. data/vendor/libgit2/src/blob.c +46 -24
  123. data/vendor/libgit2/src/branch.c +87 -37
  124. data/vendor/libgit2/src/buffer.c +339 -27
  125. data/vendor/libgit2/src/buffer.h +153 -2
  126. data/vendor/libgit2/src/cache.c +3 -24
  127. data/vendor/libgit2/src/cache.h +7 -7
  128. data/vendor/libgit2/src/cc-compat.h +10 -2
  129. data/vendor/libgit2/src/checkout.c +97 -98
  130. data/vendor/libgit2/src/cherrypick.c +8 -2
  131. data/vendor/libgit2/src/clone.c +104 -29
  132. data/vendor/libgit2/src/commit.c +41 -28
  133. data/vendor/libgit2/src/commit_graph.c +1209 -0
  134. data/vendor/libgit2/src/commit_graph.h +162 -0
  135. data/vendor/libgit2/src/commit_list.c +46 -0
  136. data/vendor/libgit2/src/commit_list.h +2 -0
  137. data/vendor/libgit2/src/common.h +26 -2
  138. data/vendor/libgit2/src/config.c +40 -22
  139. data/vendor/libgit2/src/config_cache.c +9 -4
  140. data/vendor/libgit2/src/config_entries.c +35 -27
  141. data/vendor/libgit2/src/config_file.c +25 -8
  142. data/vendor/libgit2/src/config_parse.c +5 -7
  143. data/vendor/libgit2/src/config_snapshot.c +2 -1
  144. data/vendor/libgit2/src/crlf.c +16 -6
  145. data/vendor/libgit2/src/date.c +4 -3
  146. data/vendor/libgit2/src/delta.c +1 -1
  147. data/vendor/libgit2/src/describe.c +11 -4
  148. data/vendor/libgit2/src/diff.c +23 -19
  149. data/vendor/libgit2/src/diff_driver.c +21 -17
  150. data/vendor/libgit2/src/diff_file.c +5 -7
  151. data/vendor/libgit2/src/diff_generate.c +56 -28
  152. data/vendor/libgit2/src/diff_parse.c +2 -3
  153. data/vendor/libgit2/src/diff_print.c +81 -65
  154. data/vendor/libgit2/src/diff_stats.c +19 -16
  155. data/vendor/libgit2/src/diff_tform.c +13 -13
  156. data/vendor/libgit2/src/diff_xdiff.c +4 -2
  157. data/vendor/libgit2/src/diff_xdiff.h +1 -1
  158. data/vendor/libgit2/src/errors.c +26 -19
  159. data/vendor/libgit2/src/features.h.in +5 -1
  160. data/vendor/libgit2/src/fetch.c +7 -2
  161. data/vendor/libgit2/src/fetchhead.c +8 -4
  162. data/vendor/libgit2/src/filebuf.c +9 -7
  163. data/vendor/libgit2/src/filter.c +209 -113
  164. data/vendor/libgit2/src/filter.h +24 -5
  165. data/vendor/libgit2/src/futils.c +8 -8
  166. data/vendor/libgit2/src/futils.h +4 -4
  167. data/vendor/libgit2/src/graph.c +64 -9
  168. data/vendor/libgit2/src/hash/sha1/collisiondetect.c +3 -3
  169. data/vendor/libgit2/src/hash/sha1/common_crypto.c +3 -3
  170. data/vendor/libgit2/src/hash/sha1/generic.h +1 -1
  171. data/vendor/libgit2/src/hash/sha1/mbedtls.c +12 -12
  172. data/vendor/libgit2/src/hash/sha1/openssl.c +3 -3
  173. data/vendor/libgit2/src/hash/sha1/sha1dc/sha1.c +0 -2
  174. data/vendor/libgit2/src/hash/sha1/win32.c +15 -11
  175. data/vendor/libgit2/src/hash.c +16 -13
  176. data/vendor/libgit2/src/hash.h +1 -1
  177. data/vendor/libgit2/src/hashsig.c +23 -10
  178. data/vendor/libgit2/src/ident.c +13 -3
  179. data/vendor/libgit2/src/idxmap.c +0 -22
  180. data/vendor/libgit2/src/ignore.c +35 -19
  181. data/vendor/libgit2/src/index.c +126 -84
  182. data/vendor/libgit2/src/index.h +1 -1
  183. data/vendor/libgit2/src/indexer.c +60 -36
  184. data/vendor/libgit2/src/integer.h +79 -2
  185. data/vendor/libgit2/src/iterator.c +40 -28
  186. data/vendor/libgit2/src/iterator.h +1 -1
  187. data/vendor/libgit2/src/khash.h +2 -11
  188. data/vendor/libgit2/src/{settings.c → libgit2.c} +125 -49
  189. data/vendor/libgit2/src/libgit2.h +15 -0
  190. data/vendor/libgit2/src/mailmap.c +23 -10
  191. data/vendor/libgit2/src/map.h +3 -3
  192. data/vendor/libgit2/src/merge.c +108 -46
  193. data/vendor/libgit2/src/merge.h +2 -1
  194. data/vendor/libgit2/src/merge_driver.c +19 -13
  195. data/vendor/libgit2/src/merge_file.c +15 -9
  196. data/vendor/libgit2/src/message.c +3 -1
  197. data/vendor/libgit2/src/midx.c +879 -0
  198. data/vendor/libgit2/src/midx.h +110 -0
  199. data/vendor/libgit2/src/mwindow.c +214 -95
  200. data/vendor/libgit2/src/mwindow.h +3 -3
  201. data/vendor/libgit2/src/net.c +133 -4
  202. data/vendor/libgit2/src/net.h +16 -2
  203. data/vendor/libgit2/src/netops.c +6 -4
  204. data/vendor/libgit2/src/netops.h +2 -2
  205. data/vendor/libgit2/src/notes.c +10 -10
  206. data/vendor/libgit2/src/object.c +24 -15
  207. data/vendor/libgit2/src/odb.c +298 -57
  208. data/vendor/libgit2/src/odb.h +16 -2
  209. data/vendor/libgit2/src/odb_loose.c +31 -21
  210. data/vendor/libgit2/src/odb_mempack.c +3 -1
  211. data/vendor/libgit2/src/odb_pack.c +391 -114
  212. data/vendor/libgit2/src/oid.c +7 -4
  213. data/vendor/libgit2/src/pack-objects.c +83 -69
  214. data/vendor/libgit2/src/pack.c +383 -150
  215. data/vendor/libgit2/src/pack.h +44 -9
  216. data/vendor/libgit2/src/patch.c +14 -7
  217. data/vendor/libgit2/src/patch_generate.c +3 -5
  218. data/vendor/libgit2/src/patch_parse.c +6 -3
  219. data/vendor/libgit2/src/path.c +102 -57
  220. data/vendor/libgit2/src/path.h +79 -6
  221. data/vendor/libgit2/src/pathspec.c +12 -11
  222. data/vendor/libgit2/src/pool.c +34 -22
  223. data/vendor/libgit2/src/pool.h +9 -1
  224. data/vendor/libgit2/src/posix.c +43 -12
  225. data/vendor/libgit2/src/posix.h +9 -0
  226. data/vendor/libgit2/src/proxy.c +2 -0
  227. data/vendor/libgit2/src/push.c +2 -0
  228. data/vendor/libgit2/src/reader.c +10 -6
  229. data/vendor/libgit2/src/rebase.c +95 -49
  230. data/vendor/libgit2/src/refdb.c +165 -13
  231. data/vendor/libgit2/src/refdb.h +69 -0
  232. data/vendor/libgit2/src/refdb_fs.c +144 -152
  233. data/vendor/libgit2/src/reflog.c +21 -20
  234. data/vendor/libgit2/src/refs.c +151 -231
  235. data/vendor/libgit2/src/refs.h +2 -20
  236. data/vendor/libgit2/src/refspec.c +80 -44
  237. data/vendor/libgit2/src/regexp.c +2 -2
  238. data/vendor/libgit2/src/remote.c +312 -121
  239. data/vendor/libgit2/src/remote.h +2 -1
  240. data/vendor/libgit2/src/repository.c +351 -189
  241. data/vendor/libgit2/src/repository.h +23 -29
  242. data/vendor/libgit2/src/reset.c +7 -6
  243. data/vendor/libgit2/src/revert.c +8 -2
  244. data/vendor/libgit2/src/revparse.c +19 -13
  245. data/vendor/libgit2/src/revwalk.c +35 -20
  246. data/vendor/libgit2/src/runtime.c +162 -0
  247. data/vendor/libgit2/src/runtime.h +62 -0
  248. data/vendor/libgit2/src/{refdb_fs.h → settings.h} +3 -11
  249. data/vendor/libgit2/src/signature.c +6 -5
  250. data/vendor/libgit2/src/sortedcache.c +2 -3
  251. data/vendor/libgit2/src/sortedcache.h +10 -8
  252. data/vendor/libgit2/src/stash.c +7 -3
  253. data/vendor/libgit2/src/status.c +9 -4
  254. data/vendor/libgit2/src/strarray.c +64 -0
  255. data/vendor/libgit2/src/streams/mbedtls.c +14 -17
  256. data/vendor/libgit2/src/streams/mbedtls.h +1 -1
  257. data/vendor/libgit2/src/streams/openssl.c +113 -207
  258. data/vendor/libgit2/src/streams/openssl.h +9 -1
  259. data/vendor/libgit2/src/streams/openssl_dynamic.c +309 -0
  260. data/vendor/libgit2/src/streams/openssl_dynamic.h +348 -0
  261. data/vendor/libgit2/src/streams/openssl_legacy.c +203 -0
  262. data/vendor/libgit2/src/streams/openssl_legacy.h +63 -0
  263. data/vendor/libgit2/src/streams/registry.c +10 -9
  264. data/vendor/libgit2/src/streams/socket.c +6 -2
  265. data/vendor/libgit2/src/streams/stransport.c +6 -3
  266. data/vendor/libgit2/src/streams/tls.c +5 -3
  267. data/vendor/libgit2/src/submodule.c +134 -66
  268. data/vendor/libgit2/src/submodule.h +9 -9
  269. data/vendor/libgit2/src/sysdir.c +8 -26
  270. data/vendor/libgit2/src/sysdir.h +0 -11
  271. data/vendor/libgit2/src/tag.c +49 -11
  272. data/vendor/libgit2/src/thread.c +140 -0
  273. data/vendor/libgit2/src/thread.h +479 -0
  274. data/vendor/libgit2/src/threadstate.c +83 -0
  275. data/vendor/libgit2/src/threadstate.h +24 -0
  276. data/vendor/libgit2/src/trace.c +2 -2
  277. data/vendor/libgit2/src/trace.h +17 -13
  278. data/vendor/libgit2/src/transaction.c +21 -9
  279. data/vendor/libgit2/src/transport.c +3 -3
  280. data/vendor/libgit2/src/transports/auth.c +1 -1
  281. data/vendor/libgit2/src/transports/auth_negotiate.c +11 -4
  282. data/vendor/libgit2/src/transports/auth_ntlm.c +10 -6
  283. data/vendor/libgit2/src/transports/credential.c +17 -7
  284. data/vendor/libgit2/src/transports/credential_helpers.c +2 -0
  285. data/vendor/libgit2/src/transports/git.c +1 -3
  286. data/vendor/libgit2/src/transports/http.c +19 -17
  287. data/vendor/libgit2/src/transports/http.h +1 -0
  288. data/vendor/libgit2/src/transports/httpclient.c +84 -42
  289. data/vendor/libgit2/src/transports/httpclient.h +1 -1
  290. data/vendor/libgit2/src/transports/local.c +5 -5
  291. data/vendor/libgit2/src/transports/smart.c +14 -9
  292. data/vendor/libgit2/src/transports/smart.h +1 -1
  293. data/vendor/libgit2/src/transports/smart_protocol.c +11 -5
  294. data/vendor/libgit2/src/transports/ssh.c +51 -17
  295. data/vendor/libgit2/src/transports/winhttp.c +156 -88
  296. data/vendor/libgit2/src/tree.c +100 -77
  297. data/vendor/libgit2/src/tree.h +1 -0
  298. data/vendor/libgit2/src/tsort.c +0 -2
  299. data/vendor/libgit2/src/unix/map.c +3 -1
  300. data/vendor/libgit2/src/unix/posix.h +16 -1
  301. data/vendor/libgit2/src/unix/pthread.h +2 -1
  302. data/vendor/libgit2/src/utf8.c +150 -0
  303. data/vendor/libgit2/src/utf8.h +52 -0
  304. data/vendor/libgit2/src/util.c +74 -183
  305. data/vendor/libgit2/src/util.h +33 -39
  306. data/vendor/libgit2/src/vector.c +23 -19
  307. data/vendor/libgit2/src/vector.h +4 -2
  308. data/vendor/libgit2/src/win32/findfile.c +4 -2
  309. data/vendor/libgit2/src/win32/git2.rc +18 -3
  310. data/vendor/libgit2/src/win32/map.c +1 -1
  311. data/vendor/libgit2/src/win32/msvc-compat.h +9 -1
  312. data/vendor/libgit2/src/win32/path_w32.c +23 -25
  313. data/vendor/libgit2/src/win32/path_w32.h +0 -1
  314. data/vendor/libgit2/src/win32/posix_w32.c +77 -1
  315. data/vendor/libgit2/src/win32/precompiled.h +0 -1
  316. data/vendor/libgit2/src/win32/reparse.h +4 -4
  317. data/vendor/libgit2/src/win32/thread.c +24 -15
  318. data/vendor/libgit2/src/win32/thread.h +1 -1
  319. data/vendor/libgit2/src/win32/w32_buffer.c +3 -3
  320. data/vendor/libgit2/src/win32/w32_common.h +18 -9
  321. data/vendor/libgit2/src/win32/{w32_crtdbg_stacktrace.c → w32_leakcheck.c} +269 -33
  322. data/vendor/libgit2/src/win32/w32_leakcheck.h +222 -0
  323. data/vendor/libgit2/src/win32/w32_util.h +6 -6
  324. data/vendor/libgit2/src/worktree.c +37 -15
  325. data/vendor/libgit2/src/zstream.c +1 -1
  326. metadata +56 -38
  327. data/vendor/libgit2/cmake/Modules/CheckPrototypeDefinition.c.in +0 -29
  328. data/vendor/libgit2/cmake/Modules/CheckPrototypeDefinition.cmake +0 -96
  329. data/vendor/libgit2/src/allocators/win32_crtdbg.c +0 -118
  330. data/vendor/libgit2/src/buf_text.c +0 -316
  331. data/vendor/libgit2/src/buf_text.h +0 -122
  332. data/vendor/libgit2/src/global.c +0 -361
  333. data/vendor/libgit2/src/global.h +0 -41
  334. data/vendor/libgit2/src/thread-utils.c +0 -58
  335. data/vendor/libgit2/src/thread-utils.h +0 -246
  336. data/vendor/libgit2/src/win32/w32_crtdbg_stacktrace.h +0 -127
  337. data/vendor/libgit2/src/win32/w32_stack.c +0 -188
  338. data/vendor/libgit2/src/win32/w32_stack.h +0 -140
@@ -1,29 +0,0 @@
1
- @CHECK_PROTOTYPE_DEFINITION_HEADER@
2
-
3
- static void cmakeRequireSymbol(int dummy, ...) {
4
- (void) dummy;
5
- }
6
-
7
- static void checkSymbol(void) {
8
- #ifndef @CHECK_PROTOTYPE_DEFINITION_SYMBOL@
9
- cmakeRequireSymbol(0, &@CHECK_PROTOTYPE_DEFINITION_SYMBOL@);
10
- #endif
11
- }
12
-
13
- @CHECK_PROTOTYPE_DEFINITION_PROTO@ {
14
- return @CHECK_PROTOTYPE_DEFINITION_RETURN@;
15
- }
16
-
17
- #ifdef __CLASSIC_C__
18
- int main() {
19
- int ac;
20
- char*av[];
21
- #else
22
- int main(int ac, char *av[]) {
23
- #endif
24
- checkSymbol();
25
- if (ac > 1000) {
26
- return *av[0];
27
- }
28
- return 0;
29
- }
@@ -1,96 +0,0 @@
1
- # - Check if the protoype we expect is correct.
2
- # check_prototype_definition(FUNCTION PROTOTYPE RETURN HEADER VARIABLE)
3
- # FUNCTION - The name of the function (used to check if prototype exists)
4
- # PROTOTYPE- The prototype to check.
5
- # RETURN - The return value of the function.
6
- # HEADER - The header files required.
7
- # VARIABLE - The variable to store the result.
8
- # Example:
9
- # check_prototype_definition(getpwent_r
10
- # "struct passwd *getpwent_r(struct passwd *src, char *buf, int buflen)"
11
- # "NULL"
12
- # "unistd.h;pwd.h"
13
- # SOLARIS_GETPWENT_R)
14
- # The following variables may be set before calling this macro to
15
- # modify the way the check is run:
16
- #
17
- # CMAKE_REQUIRED_FLAGS = string of compile command line flags
18
- # CMAKE_REQUIRED_DEFINITIONS = list of macros to define (-DFOO=bar)
19
- # CMAKE_REQUIRED_INCLUDES = list of include directories
20
- # CMAKE_REQUIRED_LIBRARIES = list of libraries to link
21
-
22
- #=============================================================================
23
- # Copyright 2005-2009 Kitware, Inc.
24
- # Copyright 2010-2011 Andreas Schneider <asn@cryptomilk.org>
25
- #
26
- # Distributed under the OSI-approved BSD License (the "License");
27
- # see accompanying file Copyright.txt for details.
28
- #
29
- # This software is distributed WITHOUT ANY WARRANTY; without even the
30
- # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
31
- # See the License for more information.
32
- #=============================================================================
33
- # (To distribute this file outside of CMake, substitute the full
34
- # License text for the above reference.)
35
- #
36
-
37
- get_filename_component(__check_proto_def_dir "${CMAKE_CURRENT_LIST_FILE}" PATH)
38
-
39
- function(CHECK_PROTOTYPE_DEFINITION _FUNCTION _PROTOTYPE _RETURN _HEADER _VARIABLE)
40
-
41
- if ("${_VARIABLE}" MATCHES "^${_VARIABLE}$")
42
- set(CHECK_PROTOTYPE_DEFINITION_CONTENT "/* */\n")
43
-
44
- set(CHECK_PROTOTYPE_DEFINITION_FLAGS ${CMAKE_REQUIRED_FLAGS})
45
- if (CMAKE_REQUIRED_LIBRARIES)
46
- set(CHECK_PROTOTYPE_DEFINITION_LIBS
47
- "-DLINK_LIBRARIES:STRING=${CMAKE_REQUIRED_LIBRARIES}")
48
- else(CMAKE_REQUIRED_LIBRARIES)
49
- set(CHECK_PROTOTYPE_DEFINITION_LIBS)
50
- endif(CMAKE_REQUIRED_LIBRARIES)
51
- if (CMAKE_REQUIRED_INCLUDES)
52
- set(CMAKE_SYMBOL_EXISTS_INCLUDES
53
- "-DINCLUDE_DIRECTORIES:STRING=${CMAKE_REQUIRED_INCLUDES}")
54
- else(CMAKE_REQUIRED_INCLUDES)
55
- set(CMAKE_SYMBOL_EXISTS_INCLUDES)
56
- endif(CMAKE_REQUIRED_INCLUDES)
57
-
58
- foreach(_FILE ${_HEADER})
59
- set(CHECK_PROTOTYPE_DEFINITION_HEADER
60
- "${CHECK_PROTOTYPE_DEFINITION_HEADER}#include <${_FILE}>\n")
61
- endforeach(_FILE)
62
-
63
- set(CHECK_PROTOTYPE_DEFINITION_SYMBOL ${_FUNCTION})
64
- set(CHECK_PROTOTYPE_DEFINITION_PROTO ${_PROTOTYPE})
65
- set(CHECK_PROTOTYPE_DEFINITION_RETURN ${_RETURN})
66
-
67
- configure_file("${__check_proto_def_dir}/CheckPrototypeDefinition.c.in"
68
- "${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeTmp/CheckPrototypeDefinition.c" @ONLY)
69
-
70
- file(READ ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeTmp/CheckPrototypeDefinition.c _SOURCE)
71
-
72
- try_compile(${_VARIABLE}
73
- ${CMAKE_BINARY_DIR}
74
- ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeTmp/CheckPrototypeDefinition.c
75
- COMPILE_DEFINITIONS ${CMAKE_REQUIRED_DEFINITIONS}
76
- CMAKE_FLAGS -DCOMPILE_DEFINITIONS:STRING=${CHECK_PROTOTYPE_DEFINITION_FLAGS}
77
- "${CHECK_PROTOTYPE_DEFINITION_LIBS}"
78
- "${CMAKE_SYMBOL_EXISTS_INCLUDES}"
79
- OUTPUT_VARIABLE OUTPUT)
80
-
81
- if (${_VARIABLE})
82
- set(${_VARIABLE} 1 CACHE INTERNAL "Have correct prototype for ${_FUNCTION}")
83
- message(STATUS "Checking prototype ${_FUNCTION} for ${_VARIABLE} - True")
84
- file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeOutput.log
85
- "Determining if the prototype ${_FUNCTION} exists for ${_VARIABLE} passed with the following output:\n"
86
- "${OUTPUT}\n\n")
87
- else (${_VARIABLE})
88
- message(STATUS "Checking prototype ${_FUNCTION} for ${_VARIABLE} - False")
89
- set(${_VARIABLE} 0 CACHE INTERNAL "Have correct prototype for ${_FUNCTION}")
90
- file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeError.log
91
- "Determining if the prototype ${_FUNCTION} exists for ${_VARIABLE} failed with the following output:\n"
92
- "${OUTPUT}\n\n${_SOURCE}\n\n")
93
- endif (${_VARIABLE})
94
- endif("${_VARIABLE}" MATCHES "^${_VARIABLE}$")
95
-
96
- endfunction(CHECK_PROTOTYPE_DEFINITION)
@@ -1,118 +0,0 @@
1
- /*
2
- * Copyright (C) the libgit2 contributors. All rights reserved.
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 "win32_crtdbg.h"
9
-
10
- #if defined(GIT_MSVC_CRTDBG)
11
-
12
- #include "win32/w32_crtdbg_stacktrace.h"
13
-
14
- static void *crtdbg__malloc(size_t len, const char *file, int line)
15
- {
16
- void *ptr = _malloc_dbg(len, _NORMAL_BLOCK, git_win32__crtdbg_stacktrace(1,file), line);
17
- if (!ptr) git_error_set_oom();
18
- return ptr;
19
- }
20
-
21
- static void *crtdbg__calloc(size_t nelem, size_t elsize, const char *file, int line)
22
- {
23
- void *ptr = _calloc_dbg(nelem, elsize, _NORMAL_BLOCK, git_win32__crtdbg_stacktrace(1,file), line);
24
- if (!ptr) git_error_set_oom();
25
- return ptr;
26
- }
27
-
28
- static char *crtdbg__strdup(const char *str, const char *file, int line)
29
- {
30
- char *ptr = _strdup_dbg(str, _NORMAL_BLOCK, git_win32__crtdbg_stacktrace(1,file), line);
31
- if (!ptr) git_error_set_oom();
32
- return ptr;
33
- }
34
-
35
- static char *crtdbg__strndup(const char *str, size_t n, const char *file, int line)
36
- {
37
- size_t length = 0, alloclength;
38
- char *ptr;
39
-
40
- length = p_strnlen(str, n);
41
-
42
- if (GIT_ADD_SIZET_OVERFLOW(&alloclength, length, 1) ||
43
- !(ptr = crtdbg__malloc(alloclength, file, line)))
44
- return NULL;
45
-
46
- if (length)
47
- memcpy(ptr, str, length);
48
-
49
- ptr[length] = '\0';
50
-
51
- return ptr;
52
- }
53
-
54
- static char *crtdbg__substrdup(const char *start, size_t n, const char *file, int line)
55
- {
56
- char *ptr;
57
- size_t alloclen;
58
-
59
- if (GIT_ADD_SIZET_OVERFLOW(&alloclen, n, 1) ||
60
- !(ptr = crtdbg__malloc(alloclen, file, line)))
61
- return NULL;
62
-
63
- memcpy(ptr, start, n);
64
- ptr[n] = '\0';
65
- return ptr;
66
- }
67
-
68
- static void *crtdbg__realloc(void *ptr, size_t size, const char *file, int line)
69
- {
70
- void *new_ptr = _realloc_dbg(ptr, size, _NORMAL_BLOCK, git_win32__crtdbg_stacktrace(1,file), line);
71
- if (!new_ptr) git_error_set_oom();
72
- return new_ptr;
73
- }
74
-
75
- static void *crtdbg__reallocarray(void *ptr, size_t nelem, size_t elsize, const char *file, int line)
76
- {
77
- size_t newsize;
78
-
79
- if (GIT_MULTIPLY_SIZET_OVERFLOW(&newsize, nelem, elsize))
80
- return NULL;
81
-
82
- return crtdbg__realloc(ptr, newsize, file, line);
83
- }
84
-
85
- static void *crtdbg__mallocarray(size_t nelem, size_t elsize, const char *file, int line)
86
- {
87
- return crtdbg__reallocarray(NULL, nelem, elsize, file, line);
88
- }
89
-
90
- static void crtdbg__free(void *ptr)
91
- {
92
- free(ptr);
93
- }
94
-
95
- int git_win32_crtdbg_init_allocator(git_allocator *allocator)
96
- {
97
- allocator->gmalloc = crtdbg__malloc;
98
- allocator->gcalloc = crtdbg__calloc;
99
- allocator->gstrdup = crtdbg__strdup;
100
- allocator->gstrndup = crtdbg__strndup;
101
- allocator->gsubstrdup = crtdbg__substrdup;
102
- allocator->grealloc = crtdbg__realloc;
103
- allocator->greallocarray = crtdbg__reallocarray;
104
- allocator->gmallocarray = crtdbg__mallocarray;
105
- allocator->gfree = crtdbg__free;
106
- return 0;
107
- }
108
-
109
- #else
110
-
111
- int git_win32_crtdbg_init_allocator(git_allocator *allocator)
112
- {
113
- GIT_UNUSED(allocator);
114
- git_error_set(GIT_EINVALID, "crtdbg memory allocator not available");
115
- return -1;
116
- }
117
-
118
- #endif
@@ -1,316 +0,0 @@
1
- /*
2
- * Copyright (C) the libgit2 contributors. All rights reserved.
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 "buf_text.h"
8
-
9
- int git_buf_text_puts_escaped(
10
- git_buf *buf,
11
- const char *string,
12
- const char *esc_chars,
13
- const char *esc_with)
14
- {
15
- const char *scan;
16
- size_t total = 0, esc_len = strlen(esc_with), count, alloclen;
17
-
18
- if (!string)
19
- return 0;
20
-
21
- for (scan = string; *scan; ) {
22
- /* count run of non-escaped characters */
23
- count = strcspn(scan, esc_chars);
24
- total += count;
25
- scan += count;
26
- /* count run of escaped characters */
27
- count = strspn(scan, esc_chars);
28
- total += count * (esc_len + 1);
29
- scan += count;
30
- }
31
-
32
- GIT_ERROR_CHECK_ALLOC_ADD(&alloclen, total, 1);
33
- if (git_buf_grow_by(buf, alloclen) < 0)
34
- return -1;
35
-
36
- for (scan = string; *scan; ) {
37
- count = strcspn(scan, esc_chars);
38
-
39
- memmove(buf->ptr + buf->size, scan, count);
40
- scan += count;
41
- buf->size += count;
42
-
43
- for (count = strspn(scan, esc_chars); count > 0; --count) {
44
- /* copy escape sequence */
45
- memmove(buf->ptr + buf->size, esc_with, esc_len);
46
- buf->size += esc_len;
47
- /* copy character to be escaped */
48
- buf->ptr[buf->size] = *scan;
49
- buf->size++;
50
- scan++;
51
- }
52
- }
53
-
54
- buf->ptr[buf->size] = '\0';
55
-
56
- return 0;
57
- }
58
-
59
- void git_buf_text_unescape(git_buf *buf)
60
- {
61
- buf->size = git__unescape(buf->ptr);
62
- }
63
-
64
- int git_buf_text_crlf_to_lf(git_buf *tgt, const git_buf *src)
65
- {
66
- const char *scan = src->ptr;
67
- const char *scan_end = src->ptr + src->size;
68
- const char *next = memchr(scan, '\r', src->size);
69
- size_t new_size;
70
- char *out;
71
-
72
- assert(tgt != src);
73
-
74
- if (!next)
75
- return git_buf_set(tgt, src->ptr, src->size);
76
-
77
- /* reduce reallocs while in the loop */
78
- GIT_ERROR_CHECK_ALLOC_ADD(&new_size, src->size, 1);
79
- if (git_buf_grow(tgt, new_size) < 0)
80
- return -1;
81
-
82
- out = tgt->ptr;
83
- tgt->size = 0;
84
-
85
- /* Find the next \r and copy whole chunk up to there to tgt */
86
- for (; next; scan = next + 1, next = memchr(scan, '\r', scan_end - scan)) {
87
- if (next > scan) {
88
- size_t copylen = (size_t)(next - scan);
89
- memcpy(out, scan, copylen);
90
- out += copylen;
91
- }
92
-
93
- /* Do not drop \r unless it is followed by \n */
94
- if (next + 1 == scan_end || next[1] != '\n')
95
- *out++ = '\r';
96
- }
97
-
98
- /* Copy remaining input into dest */
99
- if (scan < scan_end) {
100
- size_t remaining = (size_t)(scan_end - scan);
101
- memcpy(out, scan, remaining);
102
- out += remaining;
103
- }
104
-
105
- tgt->size = (size_t)(out - tgt->ptr);
106
- tgt->ptr[tgt->size] = '\0';
107
-
108
- return 0;
109
- }
110
-
111
- int git_buf_text_lf_to_crlf(git_buf *tgt, const git_buf *src)
112
- {
113
- const char *start = src->ptr;
114
- const char *end = start + src->size;
115
- const char *scan = start;
116
- const char *next = memchr(scan, '\n', src->size);
117
- size_t alloclen;
118
-
119
- assert(tgt != src);
120
-
121
- if (!next)
122
- return git_buf_set(tgt, src->ptr, src->size);
123
-
124
- /* attempt to reduce reallocs while in the loop */
125
- GIT_ERROR_CHECK_ALLOC_ADD(&alloclen, src->size, src->size >> 4);
126
- GIT_ERROR_CHECK_ALLOC_ADD(&alloclen, alloclen, 1);
127
- if (git_buf_grow(tgt, alloclen) < 0)
128
- return -1;
129
- tgt->size = 0;
130
-
131
- for (; next; scan = next + 1, next = memchr(scan, '\n', end - scan)) {
132
- size_t copylen = next - scan;
133
-
134
- /* if we find mixed line endings, carry on */
135
- if (copylen && next[-1] == '\r')
136
- copylen--;
137
-
138
- GIT_ERROR_CHECK_ALLOC_ADD(&alloclen, copylen, 3);
139
- if (git_buf_grow_by(tgt, alloclen) < 0)
140
- return -1;
141
-
142
- if (copylen) {
143
- memcpy(tgt->ptr + tgt->size, scan, copylen);
144
- tgt->size += copylen;
145
- }
146
-
147
- tgt->ptr[tgt->size++] = '\r';
148
- tgt->ptr[tgt->size++] = '\n';
149
- }
150
-
151
- tgt->ptr[tgt->size] = '\0';
152
- return git_buf_put(tgt, scan, end - scan);
153
- }
154
-
155
- int git_buf_text_common_prefix(git_buf *buf, const git_strarray *strings)
156
- {
157
- size_t i;
158
- const char *str, *pfx;
159
-
160
- git_buf_clear(buf);
161
-
162
- if (!strings || !strings->count)
163
- return 0;
164
-
165
- /* initialize common prefix to first string */
166
- if (git_buf_sets(buf, strings->strings[0]) < 0)
167
- return -1;
168
-
169
- /* go through the rest of the strings, truncating to shared prefix */
170
- for (i = 1; i < strings->count; ++i) {
171
-
172
- for (str = strings->strings[i], pfx = buf->ptr;
173
- *str && *str == *pfx; str++, pfx++)
174
- /* scanning */;
175
-
176
- git_buf_truncate(buf, pfx - buf->ptr);
177
-
178
- if (!buf->size)
179
- break;
180
- }
181
-
182
- return 0;
183
- }
184
-
185
- bool git_buf_text_is_binary(const git_buf *buf)
186
- {
187
- const char *scan = buf->ptr, *end = buf->ptr + buf->size;
188
- git_bom_t bom;
189
- int printable = 0, nonprintable = 0;
190
-
191
- scan += git_buf_text_detect_bom(&bom, buf);
192
-
193
- if (bom > GIT_BOM_UTF8)
194
- return 1;
195
-
196
- while (scan < end) {
197
- unsigned char c = *scan++;
198
-
199
- /* Printable characters are those above SPACE (0x1F) excluding DEL,
200
- * and including BS, ESC and FF.
201
- */
202
- if ((c > 0x1F && c != 127) || c == '\b' || c == '\033' || c == '\014')
203
- printable++;
204
- else if (c == '\0')
205
- return true;
206
- else if (!git__isspace(c))
207
- nonprintable++;
208
- }
209
-
210
- return ((printable >> 7) < nonprintable);
211
- }
212
-
213
- bool git_buf_text_contains_nul(const git_buf *buf)
214
- {
215
- return (memchr(buf->ptr, '\0', buf->size) != NULL);
216
- }
217
-
218
- int git_buf_text_detect_bom(git_bom_t *bom, const git_buf *buf)
219
- {
220
- const char *ptr;
221
- size_t len;
222
-
223
- *bom = GIT_BOM_NONE;
224
- /* need at least 2 bytes to look for any BOM */
225
- if (buf->size < 2)
226
- return 0;
227
-
228
- ptr = buf->ptr;
229
- len = buf->size;
230
-
231
- switch (*ptr++) {
232
- case 0:
233
- if (len >= 4 && ptr[0] == 0 && ptr[1] == '\xFE' && ptr[2] == '\xFF') {
234
- *bom = GIT_BOM_UTF32_BE;
235
- return 4;
236
- }
237
- break;
238
- case '\xEF':
239
- if (len >= 3 && ptr[0] == '\xBB' && ptr[1] == '\xBF') {
240
- *bom = GIT_BOM_UTF8;
241
- return 3;
242
- }
243
- break;
244
- case '\xFE':
245
- if (*ptr == '\xFF') {
246
- *bom = GIT_BOM_UTF16_BE;
247
- return 2;
248
- }
249
- break;
250
- case '\xFF':
251
- if (*ptr != '\xFE')
252
- break;
253
- if (len >= 4 && ptr[1] == 0 && ptr[2] == 0) {
254
- *bom = GIT_BOM_UTF32_LE;
255
- return 4;
256
- } else {
257
- *bom = GIT_BOM_UTF16_LE;
258
- return 2;
259
- }
260
- break;
261
- default:
262
- break;
263
- }
264
-
265
- return 0;
266
- }
267
-
268
- bool git_buf_text_gather_stats(
269
- git_buf_text_stats *stats, const git_buf *buf, bool skip_bom)
270
- {
271
- const char *scan = buf->ptr, *end = buf->ptr + buf->size;
272
- int skip;
273
-
274
- memset(stats, 0, sizeof(*stats));
275
-
276
- /* BOM detection */
277
- skip = git_buf_text_detect_bom(&stats->bom, buf);
278
- if (skip_bom)
279
- scan += skip;
280
-
281
- /* Ignore EOF character */
282
- if (buf->size > 0 && end[-1] == '\032')
283
- end--;
284
-
285
- /* Counting loop */
286
- while (scan < end) {
287
- unsigned char c = *scan++;
288
-
289
- if (c > 0x1F && c != 0x7F)
290
- stats->printable++;
291
- else switch (c) {
292
- case '\0':
293
- stats->nul++;
294
- stats->nonprintable++;
295
- break;
296
- case '\n':
297
- stats->lf++;
298
- break;
299
- case '\r':
300
- stats->cr++;
301
- if (scan < end && *scan == '\n')
302
- stats->crlf++;
303
- break;
304
- case '\t': case '\f': case '\v': case '\b': case 0x1b: /*ESC*/
305
- stats->printable++;
306
- break;
307
- default:
308
- stats->nonprintable++;
309
- break;
310
- }
311
- }
312
-
313
- /* Treat files with a bare CR as binary */
314
- return (stats->cr != stats->crlf || stats->nul > 0 ||
315
- ((stats->printable >> 7) < stats->nonprintable));
316
- }