rugged 1.1.1 → 1.4.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (407) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE +1 -0
  3. data/README.md +1 -1
  4. data/ext/rugged/extconf.rb +2 -2
  5. data/ext/rugged/rugged.c +7 -4
  6. data/ext/rugged/rugged_config.c +7 -2
  7. data/ext/rugged/rugged_object.c +1 -1
  8. data/ext/rugged/rugged_remote.c +17 -0
  9. data/ext/rugged/rugged_repo.c +3 -3
  10. data/lib/rugged/repository.rb +2 -2
  11. data/lib/rugged/version.rb +1 -1
  12. data/vendor/libgit2/CMakeLists.txt +103 -271
  13. data/vendor/libgit2/COPYING +149 -24
  14. data/vendor/libgit2/cmake/AddCFlagIfSupported.cmake +21 -21
  15. data/vendor/libgit2/cmake/DefaultCFlags.cmake +154 -0
  16. data/vendor/libgit2/cmake/EnableWarnings.cmake +13 -13
  17. data/vendor/libgit2/cmake/FindCoreFoundation.cmake +13 -13
  18. data/vendor/libgit2/cmake/FindGSSAPI.cmake +171 -287
  19. data/vendor/libgit2/cmake/FindGSSFramework.cmake +13 -13
  20. data/vendor/libgit2/cmake/{FindHTTP_Parser.cmake → FindHTTPParser.cmake} +17 -17
  21. data/vendor/libgit2/cmake/FindIconv.cmake +27 -27
  22. data/vendor/libgit2/cmake/FindLibSSH2.cmake +13 -0
  23. data/vendor/libgit2/cmake/FindPCRE.cmake +13 -13
  24. data/vendor/libgit2/cmake/FindPCRE2.cmake +12 -12
  25. data/vendor/libgit2/cmake/FindPkgLibraries.cmake +19 -19
  26. data/vendor/libgit2/cmake/FindSecurity.cmake +14 -14
  27. data/vendor/libgit2/cmake/FindStatNsec.cmake +12 -18
  28. data/vendor/libgit2/cmake/Findfutimens.cmake +14 -0
  29. data/vendor/libgit2/cmake/FindmbedTLS.cmake +63 -70
  30. data/vendor/libgit2/cmake/IdeSplitSources.cmake +18 -18
  31. data/vendor/libgit2/cmake/PkgBuildConfig.cmake +60 -60
  32. data/vendor/libgit2/cmake/SanitizeBool.cmake +20 -20
  33. data/vendor/libgit2/cmake/SelectGSSAPI.cmake +37 -37
  34. data/vendor/libgit2/cmake/SelectHTTPParser.cmake +19 -0
  35. data/vendor/libgit2/cmake/SelectHTTPSBackend.cmake +100 -96
  36. data/vendor/libgit2/cmake/SelectHashes.cmake +39 -48
  37. data/vendor/libgit2/cmake/SelectRegex.cmake +51 -0
  38. data/vendor/libgit2/cmake/SelectSSH.cmake +41 -0
  39. data/vendor/libgit2/cmake/SelectWinHTTP.cmake +17 -0
  40. data/vendor/libgit2/cmake/SelectZlib.cmake +34 -0
  41. data/vendor/libgit2/deps/chromium-zlib/CMakeLists.txt +101 -0
  42. data/vendor/libgit2/deps/ntlmclient/CMakeLists.txt +32 -20
  43. data/vendor/libgit2/deps/ntlmclient/crypt.h +14 -9
  44. data/vendor/libgit2/deps/ntlmclient/crypt_commoncrypto.c +20 -20
  45. data/vendor/libgit2/deps/ntlmclient/crypt_commoncrypto.h +3 -3
  46. data/vendor/libgit2/deps/ntlmclient/crypt_mbedtls.c +37 -36
  47. data/vendor/libgit2/deps/ntlmclient/crypt_mbedtls.h +4 -3
  48. data/vendor/libgit2/deps/ntlmclient/crypt_openssl.c +178 -51
  49. data/vendor/libgit2/deps/ntlmclient/crypt_openssl.h +74 -5
  50. data/vendor/libgit2/deps/ntlmclient/ntlm.c +154 -122
  51. data/vendor/libgit2/deps/ntlmclient/ntlm.h +17 -13
  52. data/vendor/libgit2/deps/ntlmclient/ntlmclient.h +17 -4
  53. data/vendor/libgit2/deps/ntlmclient/unicode.h +10 -4
  54. data/vendor/libgit2/deps/ntlmclient/unicode_builtin.c +16 -27
  55. data/vendor/libgit2/deps/ntlmclient/unicode_builtin.h +20 -0
  56. data/vendor/libgit2/deps/ntlmclient/unicode_iconv.c +28 -52
  57. data/vendor/libgit2/deps/ntlmclient/unicode_iconv.h +22 -0
  58. data/vendor/libgit2/deps/pcre/CMakeLists.txt +88 -88
  59. data/vendor/libgit2/deps/winhttp/CMakeLists.txt +14 -16
  60. data/vendor/libgit2/include/git2/apply.h +16 -2
  61. data/vendor/libgit2/include/git2/attr.h +106 -2
  62. data/vendor/libgit2/include/git2/blame.h +97 -43
  63. data/vendor/libgit2/include/git2/blob.h +33 -2
  64. data/vendor/libgit2/include/git2/branch.h +27 -0
  65. data/vendor/libgit2/include/git2/buffer.h +18 -78
  66. data/vendor/libgit2/include/git2/cert.h +43 -6
  67. data/vendor/libgit2/include/git2/checkout.h +32 -13
  68. data/vendor/libgit2/include/git2/clone.h +4 -4
  69. data/vendor/libgit2/include/git2/commit.h +37 -19
  70. data/vendor/libgit2/include/git2/common.h +46 -5
  71. data/vendor/libgit2/include/git2/config.h +19 -3
  72. data/vendor/libgit2/include/git2/credential.h +2 -1
  73. data/vendor/libgit2/include/git2/credential_helpers.h +1 -0
  74. data/vendor/libgit2/include/git2/deprecated.h +326 -6
  75. data/vendor/libgit2/include/git2/describe.h +7 -2
  76. data/vendor/libgit2/include/git2/diff.h +50 -121
  77. data/vendor/libgit2/include/git2/email.h +127 -0
  78. data/vendor/libgit2/include/git2/errors.h +7 -6
  79. data/vendor/libgit2/include/git2/filter.h +69 -18
  80. data/vendor/libgit2/include/git2/graph.h +21 -2
  81. data/vendor/libgit2/include/git2/ignore.h +1 -1
  82. data/vendor/libgit2/include/git2/index.h +13 -7
  83. data/vendor/libgit2/include/git2/indexer.h +19 -0
  84. data/vendor/libgit2/include/git2/merge.h +23 -3
  85. data/vendor/libgit2/include/git2/message.h +2 -0
  86. data/vendor/libgit2/include/git2/notes.h +2 -2
  87. data/vendor/libgit2/include/git2/object.h +23 -0
  88. data/vendor/libgit2/include/git2/odb.h +65 -6
  89. data/vendor/libgit2/include/git2/odb_backend.h +1 -1
  90. data/vendor/libgit2/include/git2/oidarray.h +5 -8
  91. data/vendor/libgit2/include/git2/pack.h +24 -8
  92. data/vendor/libgit2/include/git2/patch.h +16 -0
  93. data/vendor/libgit2/include/git2/pathspec.h +1 -1
  94. data/vendor/libgit2/include/git2/proxy.h +1 -1
  95. data/vendor/libgit2/include/git2/rebase.h +34 -2
  96. data/vendor/libgit2/include/git2/refdb.h +3 -0
  97. data/vendor/libgit2/include/git2/reflog.h +1 -1
  98. data/vendor/libgit2/include/git2/refs.h +8 -4
  99. data/vendor/libgit2/include/git2/remote.h +246 -46
  100. data/vendor/libgit2/include/git2/repository.h +25 -18
  101. data/vendor/libgit2/include/git2/reset.h +2 -2
  102. data/vendor/libgit2/include/git2/revparse.h +5 -5
  103. data/vendor/libgit2/include/git2/revwalk.h +4 -1
  104. data/vendor/libgit2/include/git2/signature.h +1 -1
  105. data/vendor/libgit2/include/git2/stash.h +4 -4
  106. data/vendor/libgit2/include/git2/status.h +124 -62
  107. data/vendor/libgit2/include/git2/stdint.h +3 -3
  108. data/vendor/libgit2/include/git2/submodule.h +16 -2
  109. data/vendor/libgit2/include/git2/sys/commit_graph.h +174 -0
  110. data/vendor/libgit2/include/git2/sys/email.h +45 -0
  111. data/vendor/libgit2/include/git2/sys/filter.h +49 -28
  112. data/vendor/libgit2/include/git2/sys/midx.h +74 -0
  113. data/vendor/libgit2/include/git2/sys/odb_backend.h +9 -5
  114. data/vendor/libgit2/include/git2/sys/remote.h +31 -0
  115. data/vendor/libgit2/include/git2/sys/stream.h +1 -1
  116. data/vendor/libgit2/include/git2/sys/transport.h +26 -34
  117. data/vendor/libgit2/include/git2/tag.h +13 -0
  118. data/vendor/libgit2/include/git2/tree.h +4 -17
  119. data/vendor/libgit2/include/git2/types.h +16 -7
  120. data/vendor/libgit2/include/git2/version.h +4 -4
  121. data/vendor/libgit2/include/git2/worktree.h +13 -2
  122. data/vendor/libgit2/include/git2.h +1 -0
  123. data/vendor/libgit2/src/CMakeLists.txt +192 -290
  124. data/vendor/libgit2/src/alloc.c +21 -8
  125. data/vendor/libgit2/src/allocators/failalloc.c +92 -0
  126. data/vendor/libgit2/src/allocators/failalloc.h +23 -0
  127. data/vendor/libgit2/src/allocators/stdalloc.c +41 -10
  128. data/vendor/libgit2/src/allocators/win32_leakcheck.c +118 -0
  129. data/vendor/libgit2/src/allocators/{win32_crtdbg.h → win32_leakcheck.h} +3 -3
  130. data/vendor/libgit2/src/annotated_commit.c +21 -9
  131. data/vendor/libgit2/src/annotated_commit.h +1 -1
  132. data/vendor/libgit2/src/apply.c +34 -25
  133. data/vendor/libgit2/src/apply.h +2 -2
  134. data/vendor/libgit2/src/array.h +11 -11
  135. data/vendor/libgit2/src/attr.c +204 -82
  136. data/vendor/libgit2/src/attr_file.c +105 -52
  137. data/vendor/libgit2/src/attr_file.h +36 -15
  138. data/vendor/libgit2/src/attrcache.c +55 -45
  139. data/vendor/libgit2/src/attrcache.h +4 -5
  140. data/vendor/libgit2/src/blame.c +15 -9
  141. data/vendor/libgit2/src/blame_git.c +2 -2
  142. data/vendor/libgit2/src/blob.c +76 -52
  143. data/vendor/libgit2/src/blob.h +1 -1
  144. data/vendor/libgit2/src/branch.c +203 -110
  145. data/vendor/libgit2/src/branch.h +15 -3
  146. data/vendor/libgit2/src/buf.c +126 -0
  147. data/vendor/libgit2/src/buf.h +50 -0
  148. data/vendor/libgit2/src/cache.c +2 -2
  149. data/vendor/libgit2/src/cache.h +7 -7
  150. data/vendor/libgit2/src/cc-compat.h +11 -9
  151. data/vendor/libgit2/src/checkout.c +118 -91
  152. data/vendor/libgit2/src/cherrypick.c +16 -12
  153. data/vendor/libgit2/src/clone.c +97 -103
  154. data/vendor/libgit2/src/commit.c +167 -84
  155. data/vendor/libgit2/src/commit.h +24 -1
  156. data/vendor/libgit2/src/commit_graph.c +1224 -0
  157. data/vendor/libgit2/src/commit_graph.h +169 -0
  158. data/vendor/libgit2/src/commit_list.c +48 -3
  159. data/vendor/libgit2/src/commit_list.h +2 -0
  160. data/vendor/libgit2/src/common.h +35 -5
  161. data/vendor/libgit2/src/config.c +119 -64
  162. data/vendor/libgit2/src/config.h +15 -2
  163. data/vendor/libgit2/src/config_cache.c +5 -3
  164. data/vendor/libgit2/src/config_file.c +120 -100
  165. data/vendor/libgit2/src/config_mem.c +9 -9
  166. data/vendor/libgit2/src/config_parse.c +29 -27
  167. data/vendor/libgit2/src/crlf.c +36 -23
  168. data/vendor/libgit2/src/date.c +13 -19
  169. data/vendor/libgit2/src/date.h +33 -0
  170. data/vendor/libgit2/src/delta.c +1 -1
  171. data/vendor/libgit2/src/describe.c +32 -21
  172. data/vendor/libgit2/src/diff.c +71 -183
  173. data/vendor/libgit2/src/diff.h +2 -4
  174. data/vendor/libgit2/src/diff_driver.c +53 -51
  175. data/vendor/libgit2/src/diff_driver.h +3 -3
  176. data/vendor/libgit2/src/diff_file.c +31 -26
  177. data/vendor/libgit2/src/diff_generate.c +76 -23
  178. data/vendor/libgit2/src/diff_generate.h +5 -3
  179. data/vendor/libgit2/src/diff_print.c +120 -95
  180. data/vendor/libgit2/src/diff_stats.c +47 -34
  181. data/vendor/libgit2/src/{message.h → diff_stats.h} +7 -6
  182. data/vendor/libgit2/src/diff_tform.c +18 -16
  183. data/vendor/libgit2/src/diff_xdiff.c +7 -10
  184. data/vendor/libgit2/src/diff_xdiff.h +1 -1
  185. data/vendor/libgit2/src/email.c +315 -0
  186. data/vendor/libgit2/src/email.h +25 -0
  187. data/vendor/libgit2/src/errors.c +37 -32
  188. data/vendor/libgit2/src/features.h.in +11 -2
  189. data/vendor/libgit2/src/fetch.c +77 -26
  190. data/vendor/libgit2/src/fetch.h +1 -1
  191. data/vendor/libgit2/src/fetchhead.c +27 -23
  192. data/vendor/libgit2/src/filebuf.c +36 -34
  193. data/vendor/libgit2/src/filebuf.h +1 -1
  194. data/vendor/libgit2/src/filter.c +278 -132
  195. data/vendor/libgit2/src/filter.h +46 -6
  196. data/vendor/libgit2/src/fs_path.c +2071 -0
  197. data/vendor/libgit2/src/fs_path.h +772 -0
  198. data/vendor/libgit2/src/futils.c +96 -90
  199. data/vendor/libgit2/src/futils.h +27 -15
  200. data/vendor/libgit2/src/graph.c +64 -9
  201. data/vendor/libgit2/src/hash/sha1/collisiondetect.c +5 -5
  202. data/vendor/libgit2/src/hash/sha1/common_crypto.c +5 -5
  203. data/vendor/libgit2/src/hash/sha1/generic.c +2 -2
  204. data/vendor/libgit2/src/hash/sha1/generic.h +1 -1
  205. data/vendor/libgit2/src/hash/sha1/mbedtls.c +13 -13
  206. data/vendor/libgit2/src/hash/sha1/openssl.c +5 -5
  207. data/vendor/libgit2/src/hash/sha1/sha1dc/sha1.c +9 -11
  208. data/vendor/libgit2/src/hash/sha1/win32.c +21 -17
  209. data/vendor/libgit2/src/hash/sha1.h +3 -1
  210. data/vendor/libgit2/src/hash.c +71 -36
  211. data/vendor/libgit2/src/hash.h +13 -13
  212. data/vendor/libgit2/src/hashsig.c +23 -10
  213. data/vendor/libgit2/src/ident.c +30 -20
  214. data/vendor/libgit2/src/ignore.c +63 -46
  215. data/vendor/libgit2/src/ignore.h +2 -2
  216. data/vendor/libgit2/src/index.c +184 -149
  217. data/vendor/libgit2/src/index.h +7 -4
  218. data/vendor/libgit2/src/indexer.c +143 -89
  219. data/vendor/libgit2/src/integer.h +64 -2
  220. data/vendor/libgit2/src/iterator.c +93 -73
  221. data/vendor/libgit2/src/iterator.h +6 -6
  222. data/vendor/libgit2/src/khash.h +3 -12
  223. data/vendor/libgit2/src/{settings.c → libgit2.c} +165 -56
  224. data/vendor/libgit2/src/libgit2.h +15 -0
  225. data/vendor/libgit2/src/mailmap.c +60 -45
  226. data/vendor/libgit2/src/map.h +3 -3
  227. data/vendor/libgit2/src/merge.c +104 -61
  228. data/vendor/libgit2/src/merge.h +3 -15
  229. data/vendor/libgit2/src/merge_driver.c +21 -15
  230. data/vendor/libgit2/src/merge_file.c +24 -6
  231. data/vendor/libgit2/src/message.c +21 -8
  232. data/vendor/libgit2/src/midx.c +501 -18
  233. data/vendor/libgit2/src/midx.h +29 -2
  234. data/vendor/libgit2/src/mwindow.c +103 -59
  235. data/vendor/libgit2/src/mwindow.h +3 -3
  236. data/vendor/libgit2/src/net.c +405 -71
  237. data/vendor/libgit2/src/net.h +26 -5
  238. data/vendor/libgit2/src/netops.c +7 -5
  239. data/vendor/libgit2/src/netops.h +3 -3
  240. data/vendor/libgit2/src/notes.c +40 -49
  241. data/vendor/libgit2/src/object.c +68 -20
  242. data/vendor/libgit2/src/object.h +1 -1
  243. data/vendor/libgit2/src/odb.c +320 -80
  244. data/vendor/libgit2/src/odb.h +17 -3
  245. data/vendor/libgit2/src/odb_loose.c +96 -86
  246. data/vendor/libgit2/src/odb_mempack.c +19 -6
  247. data/vendor/libgit2/src/odb_pack.c +402 -125
  248. data/vendor/libgit2/src/oid.c +16 -8
  249. data/vendor/libgit2/src/oid.h +15 -0
  250. data/vendor/libgit2/src/oidarray.c +10 -1
  251. data/vendor/libgit2/src/pack-objects.c +90 -69
  252. data/vendor/libgit2/src/pack-objects.h +11 -6
  253. data/vendor/libgit2/src/pack.c +337 -127
  254. data/vendor/libgit2/src/pack.h +25 -7
  255. data/vendor/libgit2/src/patch.c +17 -10
  256. data/vendor/libgit2/src/patch.h +1 -0
  257. data/vendor/libgit2/src/patch_generate.c +29 -13
  258. data/vendor/libgit2/src/patch_generate.h +5 -5
  259. data/vendor/libgit2/src/patch_parse.c +26 -25
  260. data/vendor/libgit2/src/path.c +86 -1768
  261. data/vendor/libgit2/src/path.h +39 -635
  262. data/vendor/libgit2/src/pathspec.c +12 -12
  263. data/vendor/libgit2/src/pathspec.h +2 -2
  264. data/vendor/libgit2/src/pool.c +13 -7
  265. data/vendor/libgit2/src/posix.c +14 -6
  266. data/vendor/libgit2/src/posix.h +1 -0
  267. data/vendor/libgit2/src/pqueue.h +1 -1
  268. data/vendor/libgit2/src/proxy.c +4 -1
  269. data/vendor/libgit2/src/proxy.h +1 -1
  270. data/vendor/libgit2/src/push.c +30 -35
  271. data/vendor/libgit2/src/push.h +4 -16
  272. data/vendor/libgit2/src/rand.c +226 -0
  273. data/vendor/libgit2/src/rand.h +37 -0
  274. data/vendor/libgit2/src/reader.c +18 -14
  275. data/vendor/libgit2/src/reader.h +2 -2
  276. data/vendor/libgit2/src/rebase.c +177 -132
  277. data/vendor/libgit2/src/refdb.c +30 -13
  278. data/vendor/libgit2/src/refdb_fs.c +548 -222
  279. data/vendor/libgit2/src/reflog.c +19 -14
  280. data/vendor/libgit2/src/refs.c +107 -72
  281. data/vendor/libgit2/src/refs.h +2 -2
  282. data/vendor/libgit2/src/refspec.c +53 -38
  283. data/vendor/libgit2/src/refspec.h +5 -2
  284. data/vendor/libgit2/src/regexp.c +1 -1
  285. data/vendor/libgit2/src/remote.c +960 -486
  286. data/vendor/libgit2/src/remote.h +16 -10
  287. data/vendor/libgit2/src/repository.c +702 -422
  288. data/vendor/libgit2/src/repository.h +26 -8
  289. data/vendor/libgit2/src/reset.c +16 -12
  290. data/vendor/libgit2/src/revert.c +16 -12
  291. data/vendor/libgit2/src/revparse.c +66 -48
  292. data/vendor/libgit2/src/revwalk.c +39 -22
  293. data/vendor/libgit2/src/runtime.c +162 -0
  294. data/vendor/libgit2/src/runtime.h +62 -0
  295. data/vendor/libgit2/src/settings.h +11 -0
  296. data/vendor/libgit2/src/signature.c +18 -11
  297. data/vendor/libgit2/src/signature.h +1 -1
  298. data/vendor/libgit2/src/sortedcache.c +1 -1
  299. data/vendor/libgit2/src/sortedcache.h +10 -8
  300. data/vendor/libgit2/src/stash.c +39 -38
  301. data/vendor/libgit2/src/status.c +11 -5
  302. data/vendor/libgit2/src/{buffer.c → str.c} +459 -136
  303. data/vendor/libgit2/src/str.h +357 -0
  304. data/vendor/libgit2/src/strarray.c +2 -1
  305. data/vendor/libgit2/src/streams/mbedtls.c +22 -23
  306. data/vendor/libgit2/src/streams/mbedtls.h +1 -1
  307. data/vendor/libgit2/src/streams/openssl.c +101 -201
  308. data/vendor/libgit2/src/streams/openssl.h +9 -1
  309. data/vendor/libgit2/src/streams/openssl_dynamic.c +309 -0
  310. data/vendor/libgit2/src/streams/openssl_dynamic.h +348 -0
  311. data/vendor/libgit2/src/streams/openssl_legacy.c +203 -0
  312. data/vendor/libgit2/src/streams/openssl_legacy.h +63 -0
  313. data/vendor/libgit2/src/streams/registry.c +5 -6
  314. data/vendor/libgit2/src/streams/socket.c +6 -2
  315. data/vendor/libgit2/src/streams/stransport.c +6 -3
  316. data/vendor/libgit2/src/streams/tls.c +5 -3
  317. data/vendor/libgit2/src/submodule.c +290 -212
  318. data/vendor/libgit2/src/submodule.h +10 -10
  319. data/vendor/libgit2/src/sysdir.c +70 -56
  320. data/vendor/libgit2/src/sysdir.h +15 -10
  321. data/vendor/libgit2/src/tag.c +72 -34
  322. data/vendor/libgit2/src/thread.c +140 -0
  323. data/vendor/libgit2/src/thread.h +479 -0
  324. data/vendor/libgit2/src/threadstate.c +84 -0
  325. data/vendor/libgit2/src/threadstate.h +24 -0
  326. data/vendor/libgit2/src/trace.c +3 -16
  327. data/vendor/libgit2/src/trace.h +17 -30
  328. data/vendor/libgit2/src/trailer.c +2 -2
  329. data/vendor/libgit2/src/transaction.c +20 -9
  330. data/vendor/libgit2/src/transport.c +13 -13
  331. data/vendor/libgit2/src/transports/auth.c +8 -10
  332. data/vendor/libgit2/src/transports/auth.h +2 -3
  333. data/vendor/libgit2/src/transports/auth_negotiate.c +23 -17
  334. data/vendor/libgit2/src/transports/auth_ntlm.c +20 -16
  335. data/vendor/libgit2/src/transports/auth_ntlm.h +0 -1
  336. data/vendor/libgit2/src/transports/credential.c +15 -7
  337. data/vendor/libgit2/src/transports/git.c +10 -14
  338. data/vendor/libgit2/src/transports/http.c +56 -34
  339. data/vendor/libgit2/src/transports/http.h +3 -3
  340. data/vendor/libgit2/src/transports/httpclient.c +106 -79
  341. data/vendor/libgit2/src/transports/httpclient.h +1 -1
  342. data/vendor/libgit2/src/transports/local.c +127 -119
  343. data/vendor/libgit2/src/transports/smart.c +61 -144
  344. data/vendor/libgit2/src/transports/smart.h +26 -32
  345. data/vendor/libgit2/src/transports/smart_pkt.c +33 -33
  346. data/vendor/libgit2/src/transports/smart_protocol.c +68 -44
  347. data/vendor/libgit2/src/transports/ssh.c +100 -131
  348. data/vendor/libgit2/src/transports/winhttp.c +86 -82
  349. data/vendor/libgit2/src/tree-cache.c +5 -5
  350. data/vendor/libgit2/src/tree-cache.h +2 -2
  351. data/vendor/libgit2/src/tree.c +150 -116
  352. data/vendor/libgit2/src/tree.h +1 -0
  353. data/vendor/libgit2/src/tsort.c +0 -2
  354. data/vendor/libgit2/src/unix/map.c +3 -3
  355. data/vendor/libgit2/src/unix/posix.h +1 -4
  356. data/vendor/libgit2/src/unix/pthread.h +2 -1
  357. data/vendor/libgit2/src/unix/realpath.c +0 -2
  358. data/vendor/libgit2/src/utf8.c +150 -0
  359. data/vendor/libgit2/src/utf8.h +52 -0
  360. data/vendor/libgit2/src/util.c +68 -144
  361. data/vendor/libgit2/src/util.h +36 -68
  362. data/vendor/libgit2/src/vector.c +23 -19
  363. data/vendor/libgit2/src/vector.h +5 -3
  364. data/vendor/libgit2/src/win32/findfile.c +172 -114
  365. data/vendor/libgit2/src/win32/findfile.h +7 -4
  366. data/vendor/libgit2/src/win32/map.c +1 -1
  367. data/vendor/libgit2/src/win32/msvc-compat.h +9 -1
  368. data/vendor/libgit2/src/win32/path_w32.c +162 -33
  369. data/vendor/libgit2/src/win32/path_w32.h +2 -1
  370. data/vendor/libgit2/src/win32/posix.h +6 -7
  371. data/vendor/libgit2/src/win32/posix_w32.c +26 -33
  372. data/vendor/libgit2/src/win32/precompiled.h +0 -1
  373. data/vendor/libgit2/src/win32/reparse.h +4 -4
  374. data/vendor/libgit2/src/win32/thread.c +24 -15
  375. data/vendor/libgit2/src/win32/thread.h +1 -1
  376. data/vendor/libgit2/src/win32/w32_buffer.c +5 -6
  377. data/vendor/libgit2/src/win32/w32_buffer.h +2 -3
  378. data/vendor/libgit2/src/win32/w32_common.h +18 -9
  379. data/vendor/libgit2/src/win32/{w32_crtdbg_stacktrace.c → w32_leakcheck.c} +269 -33
  380. data/vendor/libgit2/src/win32/w32_leakcheck.h +222 -0
  381. data/vendor/libgit2/src/win32/w32_util.h +6 -6
  382. data/vendor/libgit2/src/worktree.c +138 -105
  383. data/vendor/libgit2/src/worktree.h +1 -1
  384. data/vendor/libgit2/src/xdiff/git-xdiff.h +53 -0
  385. data/vendor/libgit2/src/xdiff/xdiff.h +15 -15
  386. data/vendor/libgit2/src/xdiff/xdiffi.c +134 -108
  387. data/vendor/libgit2/src/xdiff/xemit.c +23 -7
  388. data/vendor/libgit2/src/xdiff/xhistogram.c +87 -78
  389. data/vendor/libgit2/src/xdiff/xinclude.h +1 -12
  390. data/vendor/libgit2/src/xdiff/xmerge.c +104 -117
  391. data/vendor/libgit2/src/xdiff/xpatience.c +6 -17
  392. data/vendor/libgit2/src/xdiff/xprepare.c +15 -20
  393. data/vendor/libgit2/src/xdiff/xutils.c +18 -7
  394. data/vendor/libgit2/src/zstream.c +6 -6
  395. data/vendor/libgit2/src/zstream.h +4 -4
  396. metadata +60 -24
  397. data/vendor/libgit2/src/allocators/win32_crtdbg.c +0 -118
  398. data/vendor/libgit2/src/buf_text.c +0 -316
  399. data/vendor/libgit2/src/buf_text.h +0 -122
  400. data/vendor/libgit2/src/buffer.h +0 -222
  401. data/vendor/libgit2/src/global.c +0 -363
  402. data/vendor/libgit2/src/global.h +0 -41
  403. data/vendor/libgit2/src/thread-utils.c +0 -58
  404. data/vendor/libgit2/src/thread-utils.h +0 -369
  405. data/vendor/libgit2/src/win32/w32_crtdbg_stacktrace.h +0 -127
  406. data/vendor/libgit2/src/win32/w32_stack.c +0 -188
  407. data/vendor/libgit2/src/win32/w32_stack.h +0 -140
@@ -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
- }
@@ -1,122 +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
- #ifndef INCLUDE_buf_text_h__
8
- #define INCLUDE_buf_text_h__
9
-
10
- #include "common.h"
11
-
12
- #include "buffer.h"
13
-
14
- typedef enum {
15
- GIT_BOM_NONE = 0,
16
- GIT_BOM_UTF8 = 1,
17
- GIT_BOM_UTF16_LE = 2,
18
- GIT_BOM_UTF16_BE = 3,
19
- GIT_BOM_UTF32_LE = 4,
20
- GIT_BOM_UTF32_BE = 5
21
- } git_bom_t;
22
-
23
- typedef struct {
24
- git_bom_t bom; /* BOM found at head of text */
25
- unsigned int nul, cr, lf, crlf; /* NUL, CR, LF and CRLF counts */
26
- unsigned int printable, nonprintable; /* These are just approximations! */
27
- } git_buf_text_stats;
28
-
29
- /**
30
- * Append string to buffer, prefixing each character from `esc_chars` with
31
- * `esc_with` string.
32
- *
33
- * @param buf Buffer to append data to
34
- * @param string String to escape and append
35
- * @param esc_chars Characters to be escaped
36
- * @param esc_with String to insert in from of each found character
37
- * @return 0 on success, <0 on failure (probably allocation problem)
38
- */
39
- extern int git_buf_text_puts_escaped(
40
- git_buf *buf,
41
- const char *string,
42
- const char *esc_chars,
43
- const char *esc_with);
44
-
45
- /**
46
- * Append string escaping characters that are regex special
47
- */
48
- GIT_INLINE(int) git_buf_text_puts_escape_regex(git_buf *buf, const char *string)
49
- {
50
- return git_buf_text_puts_escaped(buf, string, "^.[]$()|*+?{}\\", "\\");
51
- }
52
-
53
- /**
54
- * Unescape all characters in a buffer in place
55
- *
56
- * I.e. remove backslashes
57
- */
58
- extern void git_buf_text_unescape(git_buf *buf);
59
-
60
- /**
61
- * Replace all \r\n with \n.
62
- *
63
- * @return 0 on success, -1 on memory error
64
- */
65
- extern int git_buf_text_crlf_to_lf(git_buf *tgt, const git_buf *src);
66
-
67
- /**
68
- * Replace all \n with \r\n. Does not modify existing \r\n.
69
- *
70
- * @return 0 on success, -1 on memory error
71
- */
72
- extern int git_buf_text_lf_to_crlf(git_buf *tgt, const git_buf *src);
73
-
74
- /**
75
- * Fill buffer with the common prefix of a array of strings
76
- *
77
- * Buffer will be set to empty if there is no common prefix
78
- */
79
- extern int git_buf_text_common_prefix(git_buf *buf, const git_strarray *strs);
80
-
81
- /**
82
- * Check quickly if buffer looks like it contains binary data
83
- *
84
- * @param buf Buffer to check
85
- * @return true if buffer looks like non-text data
86
- */
87
- extern bool git_buf_text_is_binary(const git_buf *buf);
88
-
89
- /**
90
- * Check quickly if buffer contains a NUL byte
91
- *
92
- * @param buf Buffer to check
93
- * @return true if buffer contains a NUL byte
94
- */
95
- extern bool git_buf_text_contains_nul(const git_buf *buf);
96
-
97
- /**
98
- * Check if a buffer begins with a UTF BOM
99
- *
100
- * @param bom Set to the type of BOM detected or GIT_BOM_NONE
101
- * @param buf Buffer in which to check the first bytes for a BOM
102
- * @return Number of bytes of BOM data (or 0 if no BOM found)
103
- */
104
- extern int git_buf_text_detect_bom(git_bom_t *bom, const git_buf *buf);
105
-
106
- /**
107
- * Gather stats for a piece of text
108
- *
109
- * Fill the `stats` structure with counts of unreadable characters, carriage
110
- * returns, etc, so it can be used in heuristics. This automatically skips
111
- * a trailing EOF (\032 character). Also it will look for a BOM at the
112
- * start of the text and can be told to skip that as well.
113
- *
114
- * @param stats Structure to be filled in
115
- * @param buf Text to process
116
- * @param skip_bom Exclude leading BOM from stats if true
117
- * @return Does the buffer heuristically look like binary data
118
- */
119
- extern bool git_buf_text_gather_stats(
120
- git_buf_text_stats *stats, const git_buf *buf, bool skip_bom);
121
-
122
- #endif
@@ -1,222 +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
- #ifndef INCLUDE_buffer_h__
8
- #define INCLUDE_buffer_h__
9
-
10
- #include "common.h"
11
- #include "git2/strarray.h"
12
- #include "git2/buffer.h"
13
-
14
- /* typedef struct {
15
- * char *ptr;
16
- * size_t asize, size;
17
- * } git_buf;
18
- */
19
-
20
- extern char git_buf__initbuf[];
21
- extern char git_buf__oom[];
22
-
23
- /* Use to initialize buffer structure when git_buf is on stack */
24
- #define GIT_BUF_INIT { git_buf__initbuf, 0, 0 }
25
-
26
- GIT_INLINE(bool) git_buf_is_allocated(const git_buf *buf)
27
- {
28
- return (buf->ptr != NULL && buf->asize > 0);
29
- }
30
-
31
- /**
32
- * Initialize a git_buf structure.
33
- *
34
- * For the cases where GIT_BUF_INIT cannot be used to do static
35
- * initialization.
36
- */
37
- extern int git_buf_init(git_buf *buf, size_t initial_size);
38
-
39
- /**
40
- * Resize the buffer allocation to make more space.
41
- *
42
- * This will attempt to grow the buffer to accommodate the additional size.
43
- * It is similar to `git_buf_grow`, but performs the new size calculation,
44
- * checking for overflow.
45
- *
46
- * Like `git_buf_grow`, if this is a user-supplied buffer, this will allocate
47
- * a new buffer.
48
- */
49
- extern int git_buf_grow_by(git_buf *buffer, size_t additional_size);
50
-
51
- /**
52
- * Attempt to grow the buffer to hold at least `target_size` bytes.
53
- *
54
- * If the allocation fails, this will return an error. If `mark_oom` is true,
55
- * this will mark the buffer as invalid for future operations; if false,
56
- * existing buffer content will be preserved, but calling code must handle
57
- * that buffer was not expanded. If `preserve_external` is true, then any
58
- * existing data pointed to be `ptr` even if `asize` is zero will be copied
59
- * into the newly allocated buffer.
60
- */
61
- extern int git_buf_try_grow(
62
- git_buf *buf, size_t target_size, bool mark_oom);
63
-
64
- /**
65
- * Sanitizes git_buf structures provided from user input. Users of the
66
- * library, when providing git_buf's, may wish to provide a NULL ptr for
67
- * ease of handling. The buffer routines, however, expect a non-NULL ptr
68
- * always. This helper method simply handles NULL input, converting to a
69
- * git_buf__initbuf. If a buffer with a non-NULL ptr is passed in, this method
70
- * assures that the buffer is '\0'-terminated.
71
- */
72
- extern void git_buf_sanitize(git_buf *buf);
73
-
74
- extern void git_buf_swap(git_buf *buf_a, git_buf *buf_b);
75
- extern char *git_buf_detach(git_buf *buf);
76
- extern int git_buf_attach(git_buf *buf, char *ptr, size_t asize);
77
-
78
- /* Populates a `git_buf` where the contents are not "owned" by the
79
- * buffer, and calls to `git_buf_dispose` will not free the given buf.
80
- */
81
- extern void git_buf_attach_notowned(
82
- git_buf *buf, const char *ptr, size_t size);
83
-
84
- /**
85
- * Test if there have been any reallocation failures with this git_buf.
86
- *
87
- * Any function that writes to a git_buf can fail due to memory allocation
88
- * issues. If one fails, the git_buf will be marked with an OOM error and
89
- * further calls to modify the buffer will fail. Check git_buf_oom() at the
90
- * end of your sequence and it will be true if you ran out of memory at any
91
- * point with that buffer.
92
- *
93
- * @return false if no error, true if allocation error
94
- */
95
- GIT_INLINE(bool) git_buf_oom(const git_buf *buf)
96
- {
97
- return (buf->ptr == git_buf__oom);
98
- }
99
-
100
- /*
101
- * Functions below that return int value error codes will return 0 on
102
- * success or -1 on failure (which generally means an allocation failed).
103
- * Using a git_buf where the allocation has failed with result in -1 from
104
- * all further calls using that buffer. As a result, you can ignore the
105
- * return code of these functions and call them in a series then just call
106
- * git_buf_oom at the end.
107
- */
108
- int git_buf_sets(git_buf *buf, const char *string);
109
- int git_buf_putc(git_buf *buf, char c);
110
- int git_buf_putcn(git_buf *buf, char c, size_t len);
111
- int git_buf_put(git_buf *buf, const char *data, size_t len);
112
- int git_buf_puts(git_buf *buf, const char *string);
113
- int git_buf_printf(git_buf *buf, const char *format, ...) GIT_FORMAT_PRINTF(2, 3);
114
- int git_buf_vprintf(git_buf *buf, const char *format, va_list ap);
115
- void git_buf_clear(git_buf *buf);
116
- void git_buf_consume_bytes(git_buf *buf, size_t len);
117
- void git_buf_consume(git_buf *buf, const char *end);
118
- void git_buf_truncate(git_buf *buf, size_t len);
119
- void git_buf_shorten(git_buf *buf, size_t amount);
120
- void git_buf_rtruncate_at_char(git_buf *path, char separator);
121
-
122
- /** General join with separator */
123
- int git_buf_join_n(git_buf *buf, char separator, int nbuf, ...);
124
- /** Fast join of two strings - first may legally point into `buf` data */
125
- int git_buf_join(git_buf *buf, char separator, const char *str_a, const char *str_b);
126
- /** Fast join of three strings - cannot reference `buf` data */
127
- int git_buf_join3(git_buf *buf, char separator, const char *str_a, const char *str_b, const char *str_c);
128
-
129
- /**
130
- * Join two strings as paths, inserting a slash between as needed.
131
- * @return 0 on success, -1 on failure
132
- */
133
- GIT_INLINE(int) git_buf_joinpath(git_buf *buf, const char *a, const char *b)
134
- {
135
- return git_buf_join(buf, '/', a, b);
136
- }
137
-
138
- GIT_INLINE(const char *) git_buf_cstr(const git_buf *buf)
139
- {
140
- return buf->ptr;
141
- }
142
-
143
- GIT_INLINE(size_t) git_buf_len(const git_buf *buf)
144
- {
145
- return buf->size;
146
- }
147
-
148
- void git_buf_copy_cstr(char *data, size_t datasize, const git_buf *buf);
149
-
150
- #define git_buf_PUTS(buf, str) git_buf_put(buf, str, sizeof(str) - 1)
151
-
152
- GIT_INLINE(ssize_t) git_buf_rfind_next(const git_buf *buf, char ch)
153
- {
154
- ssize_t idx = (ssize_t)buf->size - 1;
155
- while (idx >= 0 && buf->ptr[idx] == ch) idx--;
156
- while (idx >= 0 && buf->ptr[idx] != ch) idx--;
157
- return idx;
158
- }
159
-
160
- GIT_INLINE(ssize_t) git_buf_rfind(const git_buf *buf, char ch)
161
- {
162
- ssize_t idx = (ssize_t)buf->size - 1;
163
- while (idx >= 0 && buf->ptr[idx] != ch) idx--;
164
- return idx;
165
- }
166
-
167
- GIT_INLINE(ssize_t) git_buf_find(const git_buf *buf, char ch)
168
- {
169
- void *found = memchr(buf->ptr, ch, buf->size);
170
- return found ? (ssize_t)((const char *)found - buf->ptr) : -1;
171
- }
172
-
173
- /* Remove whitespace from the end of the buffer */
174
- void git_buf_rtrim(git_buf *buf);
175
-
176
- int git_buf_cmp(const git_buf *a, const git_buf *b);
177
-
178
- /* Quote and unquote a buffer as specified in
179
- * http://marc.info/?l=git&m=112927316408690&w=2
180
- */
181
- int git_buf_quote(git_buf *buf);
182
- int git_buf_unquote(git_buf *buf);
183
-
184
- /* Write data as base64 encoded in buffer */
185
- int git_buf_encode_base64(git_buf *buf, const char *data, size_t len);
186
- /* Decode the given bas64 and write the result to the buffer */
187
- int git_buf_decode_base64(git_buf *buf, const char *base64, size_t len);
188
-
189
- /* Write data as "base85" encoded in buffer */
190
- int git_buf_encode_base85(git_buf *buf, const char *data, size_t len);
191
- /* Decode the given "base85" and write the result to the buffer */
192
- int git_buf_decode_base85(git_buf *buf, const char *base64, size_t len, size_t output_len);
193
-
194
- /* Decode the given percent-encoded string and write the result to the buffer */
195
- int git_buf_decode_percent(git_buf *buf, const char *str, size_t len);
196
-
197
- /*
198
- * Insert, remove or replace a portion of the buffer.
199
- *
200
- * @param buf The buffer to work with
201
- *
202
- * @param where The location in the buffer where the transformation
203
- * should be applied.
204
- *
205
- * @param nb_to_remove The number of chars to be removed. 0 to not
206
- * remove any character in the buffer.
207
- *
208
- * @param data A pointer to the data which should be inserted.
209
- *
210
- * @param nb_to_insert The number of chars to be inserted. 0 to not
211
- * insert any character from the buffer.
212
- *
213
- * @return 0 or an error code.
214
- */
215
- int git_buf_splice(
216
- git_buf *buf,
217
- size_t where,
218
- size_t nb_to_remove,
219
- const char *data,
220
- size_t nb_to_insert);
221
-
222
- #endif