rugged 0.28.4.1 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +2 -2
- data/ext/rugged/extconf.rb +3 -1
- data/ext/rugged/rugged.c +35 -31
- data/ext/rugged/rugged.h +13 -0
- data/ext/rugged/rugged_blob.c +11 -9
- data/ext/rugged/rugged_commit.c +17 -15
- data/ext/rugged/rugged_config.c +1 -1
- data/ext/rugged/rugged_diff.c +4 -26
- data/ext/rugged/rugged_index.c +4 -2
- data/ext/rugged/rugged_note.c +5 -3
- data/ext/rugged/rugged_object.c +57 -10
- data/ext/rugged/rugged_rebase.c +3 -1
- data/ext/rugged/rugged_remote.c +32 -8
- data/ext/rugged/rugged_repo.c +232 -17
- data/ext/rugged/rugged_tag.c +8 -6
- data/ext/rugged/rugged_tree.c +18 -16
- data/lib/rugged/commit.rb +1 -2
- data/lib/rugged/repository.rb +5 -6
- data/lib/rugged/submodule_collection.rb +4 -4
- data/lib/rugged/version.rb +1 -1
- data/vendor/libgit2/AUTHORS +1 -0
- data/vendor/libgit2/CMakeLists.txt +39 -19
- data/vendor/libgit2/COPYING +28 -0
- data/vendor/libgit2/cmake/Modules/EnableWarnings.cmake +5 -1
- data/vendor/libgit2/cmake/Modules/FindCoreFoundation.cmake +2 -2
- data/vendor/libgit2/cmake/Modules/FindGSSAPI.cmake +1 -1
- data/vendor/libgit2/cmake/Modules/FindGSSFramework.cmake +28 -0
- data/vendor/libgit2/cmake/Modules/FindPCRE.cmake +38 -0
- data/vendor/libgit2/cmake/Modules/FindPCRE2.cmake +37 -0
- data/vendor/libgit2/cmake/Modules/FindSecurity.cmake +2 -2
- data/vendor/libgit2/cmake/Modules/FindStatNsec.cmake +6 -0
- data/vendor/libgit2/cmake/Modules/PkgBuildConfig.cmake +77 -0
- data/vendor/libgit2/cmake/Modules/SanitizeBool.cmake +20 -0
- data/vendor/libgit2/cmake/Modules/SelectGSSAPI.cmake +56 -0
- data/vendor/libgit2/cmake/Modules/SelectHTTPSBackend.cmake +127 -0
- data/vendor/libgit2/cmake/Modules/SelectHashes.cmake +69 -0
- data/vendor/libgit2/deps/http-parser/http_parser.c +11 -6
- data/vendor/libgit2/deps/ntlmclient/CMakeLists.txt +23 -0
- data/vendor/libgit2/deps/ntlmclient/compat.h +55 -0
- data/vendor/libgit2/deps/ntlmclient/crypt.h +64 -0
- data/vendor/libgit2/deps/ntlmclient/crypt_commoncrypto.c +120 -0
- data/vendor/libgit2/deps/ntlmclient/crypt_commoncrypto.h +18 -0
- data/vendor/libgit2/deps/ntlmclient/crypt_mbedtls.c +145 -0
- data/vendor/libgit2/deps/ntlmclient/crypt_mbedtls.h +18 -0
- data/vendor/libgit2/deps/ntlmclient/crypt_openssl.c +130 -0
- data/vendor/libgit2/deps/ntlmclient/crypt_openssl.h +21 -0
- data/vendor/libgit2/deps/ntlmclient/ntlm.c +1422 -0
- data/vendor/libgit2/deps/ntlmclient/ntlm.h +174 -0
- data/vendor/libgit2/deps/ntlmclient/ntlmclient.h +320 -0
- data/vendor/libgit2/deps/ntlmclient/unicode.h +36 -0
- data/vendor/libgit2/deps/ntlmclient/unicode_builtin.c +445 -0
- data/vendor/libgit2/deps/ntlmclient/unicode_iconv.c +201 -0
- data/vendor/libgit2/deps/ntlmclient/utf8.h +1257 -0
- data/vendor/libgit2/deps/ntlmclient/util.c +21 -0
- data/vendor/libgit2/deps/ntlmclient/util.h +14 -0
- data/vendor/libgit2/deps/pcre/CMakeLists.txt +140 -0
- data/vendor/libgit2/deps/pcre/COPYING +5 -0
- data/vendor/libgit2/deps/pcre/cmake/COPYING-CMAKE-SCRIPTS +22 -0
- data/vendor/libgit2/deps/pcre/cmake/FindEditline.cmake +17 -0
- data/vendor/libgit2/deps/pcre/cmake/FindPackageHandleStandardArgs.cmake +58 -0
- data/vendor/libgit2/deps/pcre/cmake/FindReadline.cmake +29 -0
- data/vendor/libgit2/deps/pcre/config.h.in +57 -0
- data/vendor/libgit2/deps/pcre/pcre.h +641 -0
- data/vendor/libgit2/deps/pcre/pcre_byte_order.c +319 -0
- data/vendor/libgit2/deps/pcre/pcre_chartables.c +198 -0
- data/vendor/libgit2/deps/pcre/pcre_compile.c +9800 -0
- data/vendor/libgit2/deps/pcre/pcre_config.c +190 -0
- data/vendor/libgit2/deps/pcre/pcre_dfa_exec.c +3676 -0
- data/vendor/libgit2/deps/pcre/pcre_exec.c +7173 -0
- data/vendor/libgit2/deps/pcre/pcre_fullinfo.c +245 -0
- data/vendor/libgit2/deps/pcre/pcre_get.c +669 -0
- data/vendor/libgit2/deps/pcre/pcre_globals.c +86 -0
- data/vendor/libgit2/deps/pcre/pcre_internal.h +2787 -0
- data/vendor/libgit2/deps/pcre/pcre_jit_compile.c +11913 -0
- data/vendor/libgit2/deps/pcre/pcre_maketables.c +156 -0
- data/vendor/libgit2/deps/pcre/pcre_newline.c +210 -0
- data/vendor/libgit2/deps/pcre/pcre_ord2utf8.c +94 -0
- data/vendor/libgit2/deps/pcre/pcre_printint.c +834 -0
- data/vendor/libgit2/deps/pcre/pcre_refcount.c +92 -0
- data/vendor/libgit2/deps/pcre/pcre_string_utils.c +211 -0
- data/vendor/libgit2/deps/pcre/pcre_study.c +1686 -0
- data/vendor/libgit2/deps/pcre/pcre_tables.c +727 -0
- data/vendor/libgit2/deps/pcre/pcre_ucd.c +3644 -0
- data/vendor/libgit2/deps/pcre/pcre_valid_utf8.c +301 -0
- data/vendor/libgit2/deps/pcre/pcre_version.c +98 -0
- data/vendor/libgit2/deps/pcre/pcre_xclass.c +268 -0
- data/vendor/libgit2/deps/pcre/pcreposix.c +421 -0
- data/vendor/libgit2/deps/pcre/pcreposix.h +117 -0
- data/vendor/libgit2/deps/pcre/ucp.h +224 -0
- data/vendor/libgit2/deps/zlib/adler32.c +0 -7
- data/vendor/libgit2/deps/zlib/crc32.c +0 -7
- data/vendor/libgit2/include/git2.h +2 -0
- data/vendor/libgit2/include/git2/apply.h +22 -2
- data/vendor/libgit2/include/git2/attr.h +23 -13
- data/vendor/libgit2/include/git2/blame.h +2 -2
- data/vendor/libgit2/include/git2/blob.h +44 -12
- data/vendor/libgit2/include/git2/branch.h +74 -57
- data/vendor/libgit2/include/git2/buffer.h +20 -14
- data/vendor/libgit2/include/git2/cert.h +135 -0
- data/vendor/libgit2/include/git2/checkout.h +46 -14
- data/vendor/libgit2/include/git2/cherrypick.h +3 -3
- data/vendor/libgit2/include/git2/clone.h +2 -2
- data/vendor/libgit2/include/git2/commit.h +23 -1
- data/vendor/libgit2/include/git2/common.h +15 -6
- data/vendor/libgit2/include/git2/config.h +12 -12
- data/vendor/libgit2/include/git2/cred_helpers.h +4 -42
- data/vendor/libgit2/include/git2/credential.h +314 -0
- data/vendor/libgit2/include/git2/credential_helpers.h +52 -0
- data/vendor/libgit2/include/git2/deprecated.h +321 -3
- data/vendor/libgit2/include/git2/describe.h +4 -4
- data/vendor/libgit2/include/git2/diff.h +16 -14
- data/vendor/libgit2/include/git2/errors.h +4 -2
- data/vendor/libgit2/include/git2/filter.h +8 -0
- data/vendor/libgit2/include/git2/index.h +2 -1
- data/vendor/libgit2/include/git2/indexer.h +48 -4
- data/vendor/libgit2/include/git2/merge.h +6 -10
- data/vendor/libgit2/include/git2/net.h +0 -5
- data/vendor/libgit2/include/git2/object.h +2 -14
- data/vendor/libgit2/include/git2/odb.h +3 -2
- data/vendor/libgit2/include/git2/odb_backend.h +5 -4
- data/vendor/libgit2/include/git2/oid.h +11 -6
- data/vendor/libgit2/include/git2/pack.h +12 -1
- data/vendor/libgit2/include/git2/proxy.h +6 -4
- data/vendor/libgit2/include/git2/rebase.h +46 -2
- data/vendor/libgit2/include/git2/refs.h +19 -0
- data/vendor/libgit2/include/git2/remote.h +40 -15
- data/vendor/libgit2/include/git2/repository.h +29 -6
- data/vendor/libgit2/include/git2/revert.h +1 -1
- data/vendor/libgit2/include/git2/revwalk.h +7 -3
- data/vendor/libgit2/include/git2/stash.h +4 -4
- data/vendor/libgit2/include/git2/status.h +25 -16
- data/vendor/libgit2/include/git2/submodule.h +20 -3
- data/vendor/libgit2/include/git2/sys/alloc.h +9 -9
- data/vendor/libgit2/include/git2/sys/cred.h +15 -0
- data/vendor/libgit2/include/git2/sys/credential.h +90 -0
- data/vendor/libgit2/include/git2/sys/index.h +4 -2
- data/vendor/libgit2/include/git2/sys/mempack.h +2 -1
- data/vendor/libgit2/include/git2/sys/merge.h +1 -1
- data/vendor/libgit2/include/git2/sys/odb_backend.h +48 -4
- data/vendor/libgit2/include/git2/sys/refdb_backend.h +164 -21
- data/vendor/libgit2/include/git2/sys/repository.h +17 -6
- data/vendor/libgit2/include/git2/sys/transport.h +4 -4
- data/vendor/libgit2/include/git2/tag.h +11 -2
- data/vendor/libgit2/include/git2/trace.h +2 -2
- data/vendor/libgit2/include/git2/transport.h +11 -340
- data/vendor/libgit2/include/git2/tree.h +5 -3
- data/vendor/libgit2/include/git2/types.h +4 -89
- data/vendor/libgit2/include/git2/version.h +5 -5
- data/vendor/libgit2/include/git2/worktree.h +5 -5
- data/vendor/libgit2/src/CMakeLists.txt +99 -236
- data/vendor/libgit2/src/alloc.c +2 -14
- data/vendor/libgit2/src/{stdalloc.c → allocators/stdalloc.c} +3 -4
- data/vendor/libgit2/src/{stdalloc.h → allocators/stdalloc.h} +4 -4
- data/vendor/libgit2/src/allocators/win32_crtdbg.c +118 -0
- data/vendor/libgit2/src/{transports/cred.h → allocators/win32_crtdbg.h} +5 -4
- data/vendor/libgit2/src/apply.c +60 -30
- data/vendor/libgit2/src/attr.c +70 -64
- data/vendor/libgit2/src/attr_file.c +189 -96
- data/vendor/libgit2/src/attr_file.h +9 -9
- data/vendor/libgit2/src/attrcache.c +48 -48
- data/vendor/libgit2/src/attrcache.h +2 -1
- data/vendor/libgit2/src/blame.c +17 -5
- data/vendor/libgit2/src/blame.h +1 -1
- data/vendor/libgit2/src/blame_git.c +21 -7
- data/vendor/libgit2/src/blob.c +81 -17
- data/vendor/libgit2/src/blob.h +2 -2
- data/vendor/libgit2/src/branch.c +60 -32
- data/vendor/libgit2/src/buffer.c +19 -7
- data/vendor/libgit2/src/buffer.h +1 -0
- data/vendor/libgit2/src/cache.c +33 -36
- data/vendor/libgit2/src/cache.h +1 -1
- data/vendor/libgit2/src/cc-compat.h +5 -0
- data/vendor/libgit2/src/checkout.c +26 -16
- data/vendor/libgit2/src/cherrypick.c +9 -3
- data/vendor/libgit2/src/clone.c +29 -7
- data/vendor/libgit2/src/clone.h +4 -0
- data/vendor/libgit2/src/commit.c +70 -22
- data/vendor/libgit2/src/commit.h +6 -0
- data/vendor/libgit2/src/commit_list.c +28 -76
- data/vendor/libgit2/src/commit_list.h +2 -2
- data/vendor/libgit2/src/common.h +3 -75
- data/vendor/libgit2/src/config.c +31 -40
- data/vendor/libgit2/src/config.h +7 -6
- data/vendor/libgit2/src/config_backend.h +12 -0
- data/vendor/libgit2/src/config_cache.c +39 -39
- data/vendor/libgit2/src/config_entries.c +69 -99
- data/vendor/libgit2/src/config_entries.h +1 -0
- data/vendor/libgit2/src/config_file.c +346 -380
- data/vendor/libgit2/src/config_mem.c +12 -16
- data/vendor/libgit2/src/config_parse.c +49 -29
- data/vendor/libgit2/src/config_parse.h +13 -12
- data/vendor/libgit2/src/config_snapshot.c +206 -0
- data/vendor/libgit2/src/crlf.c +14 -14
- data/vendor/libgit2/src/describe.c +21 -20
- data/vendor/libgit2/src/diff.c +43 -58
- data/vendor/libgit2/src/diff.h +4 -3
- data/vendor/libgit2/src/diff_driver.c +37 -38
- data/vendor/libgit2/src/diff_file.c +12 -10
- data/vendor/libgit2/src/diff_file.h +2 -2
- data/vendor/libgit2/src/diff_generate.c +148 -98
- data/vendor/libgit2/src/diff_generate.h +2 -2
- data/vendor/libgit2/src/diff_parse.c +1 -1
- data/vendor/libgit2/src/diff_print.c +25 -13
- data/vendor/libgit2/src/diff_stats.c +1 -1
- data/vendor/libgit2/src/diff_tform.c +11 -11
- data/vendor/libgit2/src/errors.c +21 -25
- data/vendor/libgit2/src/errors.h +81 -0
- data/vendor/libgit2/src/features.h.in +9 -2
- data/vendor/libgit2/src/fetch.c +7 -2
- data/vendor/libgit2/src/fetchhead.c +36 -4
- data/vendor/libgit2/src/filebuf.c +6 -10
- data/vendor/libgit2/src/filebuf.h +2 -2
- data/vendor/libgit2/src/filter.c +16 -8
- data/vendor/libgit2/src/{fileops.c → futils.c} +21 -17
- data/vendor/libgit2/src/{fileops.h → futils.h} +5 -5
- data/vendor/libgit2/src/global.c +12 -40
- data/vendor/libgit2/src/global.h +0 -2
- data/vendor/libgit2/src/hash.c +61 -0
- data/vendor/libgit2/src/hash.h +19 -21
- data/vendor/libgit2/src/hash/sha1.h +38 -0
- data/vendor/libgit2/src/hash/{hash_collisiondetect.h → sha1/collisiondetect.c} +14 -17
- data/vendor/libgit2/src/{sha1_lookup.h → hash/sha1/collisiondetect.h} +8 -8
- data/vendor/libgit2/src/hash/{hash_common_crypto.h → sha1/common_crypto.c} +15 -19
- data/vendor/libgit2/src/hash/sha1/common_crypto.h +19 -0
- data/vendor/libgit2/src/hash/{hash_generic.c → sha1/generic.c} +22 -10
- data/vendor/libgit2/src/hash/{hash_generic.h → sha1/generic.h} +4 -14
- data/vendor/libgit2/src/hash/{hash_mbedtls.c → sha1/mbedtls.c} +15 -7
- data/vendor/libgit2/src/hash/{hash_mbedtls.h → sha1/mbedtls.h} +6 -11
- data/vendor/libgit2/src/hash/{hash_openssl.h → sha1/openssl.c} +14 -18
- data/vendor/libgit2/src/hash/sha1/openssl.h +19 -0
- data/vendor/libgit2/src/hash/{sha1dc → sha1/sha1dc}/sha1.c +14 -3
- data/vendor/libgit2/src/hash/{sha1dc → sha1/sha1dc}/sha1.h +0 -0
- data/vendor/libgit2/src/hash/{sha1dc → sha1/sha1dc}/ubc_check.c +0 -0
- data/vendor/libgit2/src/hash/{sha1dc → sha1/sha1dc}/ubc_check.h +0 -0
- data/vendor/libgit2/src/hash/{hash_win32.c → sha1/win32.c} +34 -24
- data/vendor/libgit2/src/hash/{hash_win32.h → sha1/win32.h} +6 -19
- data/vendor/libgit2/src/hashsig.c +1 -1
- data/vendor/libgit2/src/idxmap.c +91 -65
- data/vendor/libgit2/src/idxmap.h +151 -15
- data/vendor/libgit2/src/ignore.c +32 -38
- data/vendor/libgit2/src/index.c +105 -83
- data/vendor/libgit2/src/index.h +1 -1
- data/vendor/libgit2/src/indexer.c +71 -72
- data/vendor/libgit2/src/integer.h +39 -4
- data/vendor/libgit2/src/iterator.c +40 -35
- data/vendor/libgit2/src/iterator.h +8 -8
- data/vendor/libgit2/src/map.h +1 -1
- data/vendor/libgit2/src/merge.c +78 -51
- data/vendor/libgit2/src/merge.h +2 -2
- data/vendor/libgit2/src/merge_driver.c +5 -5
- data/vendor/libgit2/src/merge_file.c +1 -1
- data/vendor/libgit2/src/mwindow.c +18 -23
- data/vendor/libgit2/src/mwindow.h +4 -4
- data/vendor/libgit2/src/net.c +411 -0
- data/vendor/libgit2/src/net.h +57 -0
- data/vendor/libgit2/src/netops.c +6 -193
- data/vendor/libgit2/src/netops.h +1 -34
- data/vendor/libgit2/src/notes.c +8 -5
- data/vendor/libgit2/src/object.c +3 -3
- data/vendor/libgit2/src/object.h +2 -0
- data/vendor/libgit2/src/odb.c +41 -23
- data/vendor/libgit2/src/odb.h +3 -2
- data/vendor/libgit2/src/odb_loose.c +17 -10
- data/vendor/libgit2/src/odb_mempack.c +13 -24
- data/vendor/libgit2/src/odb_pack.c +4 -5
- data/vendor/libgit2/src/offmap.c +43 -55
- data/vendor/libgit2/src/offmap.h +102 -24
- data/vendor/libgit2/src/oid.c +19 -8
- data/vendor/libgit2/src/oidmap.c +39 -57
- data/vendor/libgit2/src/oidmap.h +99 -19
- data/vendor/libgit2/src/pack-objects.c +28 -33
- data/vendor/libgit2/src/pack-objects.h +1 -1
- data/vendor/libgit2/src/pack.c +117 -129
- data/vendor/libgit2/src/pack.h +15 -18
- data/vendor/libgit2/src/parse.c +10 -0
- data/vendor/libgit2/src/parse.h +3 -3
- data/vendor/libgit2/src/patch.c +1 -1
- data/vendor/libgit2/src/patch_generate.c +2 -2
- data/vendor/libgit2/src/patch_parse.c +130 -33
- data/vendor/libgit2/src/path.c +43 -6
- data/vendor/libgit2/src/path.h +2 -0
- data/vendor/libgit2/src/pathspec.c +14 -14
- data/vendor/libgit2/src/pool.c +26 -22
- data/vendor/libgit2/src/pool.h +7 -7
- data/vendor/libgit2/src/posix.c +7 -7
- data/vendor/libgit2/src/posix.h +12 -1
- data/vendor/libgit2/src/proxy.c +7 -2
- data/vendor/libgit2/src/push.c +13 -7
- data/vendor/libgit2/src/reader.c +2 -2
- data/vendor/libgit2/src/rebase.c +87 -28
- data/vendor/libgit2/src/refdb.c +12 -0
- data/vendor/libgit2/src/refdb_fs.c +219 -167
- data/vendor/libgit2/src/reflog.c +11 -13
- data/vendor/libgit2/src/refs.c +39 -23
- data/vendor/libgit2/src/refs.h +8 -1
- data/vendor/libgit2/src/refspec.c +9 -16
- data/vendor/libgit2/src/regexp.c +221 -0
- data/vendor/libgit2/src/regexp.h +97 -0
- data/vendor/libgit2/src/remote.c +57 -55
- data/vendor/libgit2/src/remote.h +2 -2
- data/vendor/libgit2/src/repository.c +187 -154
- data/vendor/libgit2/src/repository.h +49 -40
- data/vendor/libgit2/src/revert.c +8 -3
- data/vendor/libgit2/src/revparse.c +18 -19
- data/vendor/libgit2/src/revwalk.c +72 -34
- data/vendor/libgit2/src/revwalk.h +20 -0
- data/vendor/libgit2/src/settings.c +13 -1
- data/vendor/libgit2/src/sortedcache.c +12 -26
- data/vendor/libgit2/src/sortedcache.h +1 -1
- data/vendor/libgit2/src/stash.c +47 -67
- data/vendor/libgit2/src/status.c +17 -11
- data/vendor/libgit2/src/streams/openssl.c +54 -2
- data/vendor/libgit2/src/streams/socket.c +2 -2
- data/vendor/libgit2/src/strmap.c +37 -84
- data/vendor/libgit2/src/strmap.h +105 -33
- data/vendor/libgit2/src/submodule.c +151 -126
- data/vendor/libgit2/src/submodule.h +1 -1
- data/vendor/libgit2/src/sysdir.c +11 -1
- data/vendor/libgit2/src/tag.c +10 -2
- data/vendor/libgit2/src/trace.c +1 -1
- data/vendor/libgit2/src/trace.h +3 -3
- data/vendor/libgit2/src/trailer.c +46 -32
- data/vendor/libgit2/src/transaction.c +10 -9
- data/vendor/libgit2/src/transports/auth.c +16 -15
- data/vendor/libgit2/src/transports/auth.h +18 -11
- data/vendor/libgit2/src/transports/auth_negotiate.c +64 -33
- data/vendor/libgit2/src/transports/auth_negotiate.h +2 -2
- data/vendor/libgit2/src/transports/auth_ntlm.c +223 -0
- data/vendor/libgit2/src/transports/auth_ntlm.h +38 -0
- data/vendor/libgit2/src/transports/credential.c +476 -0
- data/vendor/libgit2/src/transports/{cred_helpers.c → credential_helpers.c} +21 -8
- data/vendor/libgit2/src/transports/git.c +11 -16
- data/vendor/libgit2/src/transports/http.c +488 -1248
- data/vendor/libgit2/src/transports/http.h +4 -1
- data/vendor/libgit2/src/transports/httpclient.c +1549 -0
- data/vendor/libgit2/src/transports/httpclient.h +190 -0
- data/vendor/libgit2/src/transports/local.c +10 -10
- data/vendor/libgit2/src/transports/smart.c +19 -19
- data/vendor/libgit2/src/transports/smart.h +3 -3
- data/vendor/libgit2/src/transports/smart_pkt.c +1 -1
- data/vendor/libgit2/src/transports/smart_protocol.c +40 -64
- data/vendor/libgit2/src/transports/ssh.c +77 -59
- data/vendor/libgit2/src/transports/winhttp.c +272 -242
- data/vendor/libgit2/src/tree-cache.c +14 -7
- data/vendor/libgit2/src/tree.c +16 -26
- data/vendor/libgit2/src/unix/map.c +1 -1
- data/vendor/libgit2/src/unix/posix.h +2 -12
- data/vendor/libgit2/src/userdiff.h +3 -1
- data/vendor/libgit2/src/util.c +51 -53
- data/vendor/libgit2/src/util.h +16 -21
- data/vendor/libgit2/src/wildmatch.c +320 -0
- data/vendor/libgit2/src/wildmatch.h +23 -0
- data/vendor/libgit2/src/win32/map.c +3 -5
- data/vendor/libgit2/src/win32/path_w32.c +40 -3
- data/vendor/libgit2/src/win32/path_w32.h +15 -29
- data/vendor/libgit2/src/win32/posix.h +1 -4
- data/vendor/libgit2/src/win32/posix_w32.c +47 -5
- data/vendor/libgit2/src/win32/precompiled.h +0 -2
- data/vendor/libgit2/src/win32/thread.c +5 -10
- data/vendor/libgit2/src/win32/w32_buffer.c +7 -3
- data/vendor/libgit2/src/win32/w32_common.h +39 -0
- data/vendor/libgit2/src/win32/w32_crtdbg_stacktrace.c +0 -93
- data/vendor/libgit2/src/win32/w32_crtdbg_stacktrace.h +0 -2
- data/vendor/libgit2/src/win32/w32_stack.c +4 -9
- data/vendor/libgit2/src/win32/w32_stack.h +3 -3
- data/vendor/libgit2/src/win32/w32_util.c +31 -0
- data/vendor/libgit2/src/win32/w32_util.h +6 -32
- data/vendor/libgit2/src/worktree.c +79 -49
- data/vendor/libgit2/src/xdiff/xdiffi.c +1 -1
- data/vendor/libgit2/src/xdiff/xmerge.c +12 -0
- data/vendor/libgit2/src/xdiff/xpatience.c +3 -0
- data/vendor/libgit2/src/zstream.c +5 -0
- data/vendor/libgit2/src/zstream.h +1 -0
- metadata +108 -41
- data/vendor/libgit2/deps/regex/CMakeLists.txt +0 -2
- data/vendor/libgit2/deps/regex/COPYING +0 -502
- data/vendor/libgit2/deps/regex/config.h +0 -7
- data/vendor/libgit2/deps/regex/regcomp.c +0 -3857
- data/vendor/libgit2/deps/regex/regex.c +0 -92
- data/vendor/libgit2/deps/regex/regex.h +0 -582
- data/vendor/libgit2/deps/regex/regex_internal.c +0 -1744
- data/vendor/libgit2/deps/regex/regex_internal.h +0 -819
- data/vendor/libgit2/deps/regex/regexec.c +0 -4369
- data/vendor/libgit2/include/git2/inttypes.h +0 -309
- data/vendor/libgit2/include/git2/sys/time.h +0 -31
- data/vendor/libgit2/libgit2.pc.in +0 -13
- data/vendor/libgit2/src/fnmatch.c +0 -248
- data/vendor/libgit2/src/fnmatch.h +0 -48
- data/vendor/libgit2/src/sha1_lookup.c +0 -35
- data/vendor/libgit2/src/transports/cred.c +0 -390
@@ -0,0 +1,21 @@
|
|
1
|
+
/*
|
2
|
+
* Copyright (c) Edward Thomson. All rights reserved.
|
3
|
+
*
|
4
|
+
* This file is part of ntlmclient, distributed under the MIT license.
|
5
|
+
* For full terms and copyright information, and for third-party
|
6
|
+
* copyright information, see the included LICENSE.txt file.
|
7
|
+
*/
|
8
|
+
|
9
|
+
#include <stdlib.h>
|
10
|
+
#include <stdint.h>
|
11
|
+
|
12
|
+
#include "compat.h"
|
13
|
+
#include "util.h"
|
14
|
+
|
15
|
+
void memzero(void *data, size_t size)
|
16
|
+
{
|
17
|
+
volatile uint8_t *scan = (volatile uint8_t *)data;
|
18
|
+
|
19
|
+
while (size--)
|
20
|
+
*scan++ = 0x0;
|
21
|
+
}
|
@@ -0,0 +1,14 @@
|
|
1
|
+
/*
|
2
|
+
* Copyright (c) Edward Thomson. All rights reserved.
|
3
|
+
*
|
4
|
+
* This file is part of ntlmclient, distributed under the MIT license.
|
5
|
+
* For full terms and copyright information, and for third-party
|
6
|
+
* copyright information, see the included LICENSE.txt file.
|
7
|
+
*/
|
8
|
+
|
9
|
+
#ifndef PRIVATE_UTIL_H__
|
10
|
+
#define PRIVATE_UTIL_H__
|
11
|
+
|
12
|
+
extern void memzero(void *data, size_t size);
|
13
|
+
|
14
|
+
#endif /* PRIVATE_UTIL_H__ */
|
@@ -0,0 +1,140 @@
|
|
1
|
+
INCLUDE(CheckIncludeFile)
|
2
|
+
INCLUDE(CheckFunctionExists)
|
3
|
+
INCLUDE(CheckTypeSize)
|
4
|
+
|
5
|
+
CHECK_INCLUDE_FILE(dirent.h HAVE_DIRENT_H)
|
6
|
+
CHECK_INCLUDE_FILE(stdint.h HAVE_STDINT_H)
|
7
|
+
CHECK_INCLUDE_FILE(inttypes.h HAVE_INTTYPES_H)
|
8
|
+
CHECK_INCLUDE_FILE(sys/stat.h HAVE_SYS_STAT_H)
|
9
|
+
CHECK_INCLUDE_FILE(sys/types.h HAVE_SYS_TYPES_H)
|
10
|
+
CHECK_INCLUDE_FILE(unistd.h HAVE_UNISTD_H)
|
11
|
+
CHECK_INCLUDE_FILE(windows.h HAVE_WINDOWS_H)
|
12
|
+
|
13
|
+
CHECK_FUNCTION_EXISTS(bcopy HAVE_BCOPY)
|
14
|
+
CHECK_FUNCTION_EXISTS(memmove HAVE_MEMMOVE)
|
15
|
+
CHECK_FUNCTION_EXISTS(strerror HAVE_STRERROR)
|
16
|
+
CHECK_FUNCTION_EXISTS(strtoll HAVE_STRTOLL)
|
17
|
+
CHECK_FUNCTION_EXISTS(strtoq HAVE_STRTOQ)
|
18
|
+
CHECK_FUNCTION_EXISTS(_strtoi64 HAVE__STRTOI64)
|
19
|
+
|
20
|
+
CHECK_TYPE_SIZE("long long" LONG_LONG)
|
21
|
+
CHECK_TYPE_SIZE("unsigned long long" UNSIGNED_LONG_LONG)
|
22
|
+
|
23
|
+
DISABLE_WARNINGS(unused-function)
|
24
|
+
DISABLE_WARNINGS(implicit-fallthrough)
|
25
|
+
|
26
|
+
# User-configurable options
|
27
|
+
|
28
|
+
SET(SUPPORT_PCRE8 1)
|
29
|
+
SET(PCRE_LINK_SIZE "2")
|
30
|
+
SET(PCRE_PARENS_NEST_LIMIT "250")
|
31
|
+
SET(PCRE_MATCH_LIMIT "10000000")
|
32
|
+
SET(PCRE_MATCH_LIMIT_RECURSION "MATCH_LIMIT")
|
33
|
+
SET(PCRE_NEWLINE "LF")
|
34
|
+
SET(NO_RECURSE 1)
|
35
|
+
SET(PCRE_POSIX_MALLOC_THRESHOLD "10")
|
36
|
+
SET(BSR_ANYCRLF 0)
|
37
|
+
|
38
|
+
IF (MINGW)
|
39
|
+
OPTION(NON_STANDARD_LIB_PREFIX
|
40
|
+
"ON=Shared libraries built in mingw will be named pcre.dll, etc., instead of libpcre.dll, etc."
|
41
|
+
OFF)
|
42
|
+
|
43
|
+
OPTION(NON_STANDARD_LIB_SUFFIX
|
44
|
+
"ON=Shared libraries built in mingw will be named libpcre-0.dll, etc., instead of libpcre.dll, etc."
|
45
|
+
OFF)
|
46
|
+
ENDIF(MINGW)
|
47
|
+
|
48
|
+
# Prepare build configuration
|
49
|
+
|
50
|
+
SET(pcre_have_long_long 0)
|
51
|
+
SET(pcre_have_ulong_long 0)
|
52
|
+
|
53
|
+
IF(HAVE_LONG_LONG)
|
54
|
+
SET(pcre_have_long_long 1)
|
55
|
+
ENDIF(HAVE_LONG_LONG)
|
56
|
+
|
57
|
+
IF(HAVE_UNSIGNED_LONG_LONG)
|
58
|
+
SET(pcre_have_ulong_long 1)
|
59
|
+
ENDIF(HAVE_UNSIGNED_LONG_LONG)
|
60
|
+
|
61
|
+
SET(NEWLINE "")
|
62
|
+
|
63
|
+
IF(PCRE_NEWLINE STREQUAL "LF")
|
64
|
+
SET(NEWLINE "10")
|
65
|
+
ENDIF(PCRE_NEWLINE STREQUAL "LF")
|
66
|
+
IF(PCRE_NEWLINE STREQUAL "CR")
|
67
|
+
SET(NEWLINE "13")
|
68
|
+
ENDIF(PCRE_NEWLINE STREQUAL "CR")
|
69
|
+
IF(PCRE_NEWLINE STREQUAL "CRLF")
|
70
|
+
SET(NEWLINE "3338")
|
71
|
+
ENDIF(PCRE_NEWLINE STREQUAL "CRLF")
|
72
|
+
IF(PCRE_NEWLINE STREQUAL "ANY")
|
73
|
+
SET(NEWLINE "-1")
|
74
|
+
ENDIF(PCRE_NEWLINE STREQUAL "ANY")
|
75
|
+
IF(PCRE_NEWLINE STREQUAL "ANYCRLF")
|
76
|
+
SET(NEWLINE "-2")
|
77
|
+
ENDIF(PCRE_NEWLINE STREQUAL "ANYCRLF")
|
78
|
+
|
79
|
+
IF(NEWLINE STREQUAL "")
|
80
|
+
MESSAGE(FATAL_ERROR "The PCRE_NEWLINE variable must be set to one of the following values: \"LF\", \"CR\", \"CRLF\", \"ANY\", \"ANYCRLF\".")
|
81
|
+
ENDIF(NEWLINE STREQUAL "")
|
82
|
+
|
83
|
+
# Output files
|
84
|
+
CONFIGURE_FILE(config.h.in
|
85
|
+
${PROJECT_BINARY_DIR}/src/pcre/config.h
|
86
|
+
@ONLY)
|
87
|
+
|
88
|
+
# Source code
|
89
|
+
|
90
|
+
SET(PCRE_HEADERS ${PROJECT_BINARY_DIR}/src/pcre/config.h)
|
91
|
+
|
92
|
+
SET(PCRE_SOURCES
|
93
|
+
pcre_byte_order.c
|
94
|
+
pcre_chartables.c
|
95
|
+
pcre_compile.c
|
96
|
+
pcre_config.c
|
97
|
+
pcre_dfa_exec.c
|
98
|
+
pcre_exec.c
|
99
|
+
pcre_fullinfo.c
|
100
|
+
pcre_get.c
|
101
|
+
pcre_globals.c
|
102
|
+
pcre_jit_compile.c
|
103
|
+
pcre_maketables.c
|
104
|
+
pcre_newline.c
|
105
|
+
pcre_ord2utf8.c
|
106
|
+
pcre_refcount.c
|
107
|
+
pcre_string_utils.c
|
108
|
+
pcre_study.c
|
109
|
+
pcre_tables.c
|
110
|
+
pcre_ucd.c
|
111
|
+
pcre_valid_utf8.c
|
112
|
+
pcre_version.c
|
113
|
+
pcre_xclass.c
|
114
|
+
)
|
115
|
+
|
116
|
+
SET(PCREPOSIX_HEADERS pcreposix.h)
|
117
|
+
|
118
|
+
SET(PCREPOSIX_SOURCES pcreposix.c)
|
119
|
+
|
120
|
+
# Fix static compilation with MSVC: https://bugs.exim.org/show_bug.cgi?id=1681
|
121
|
+
# This code was taken from the CMake wiki, not from WebM.
|
122
|
+
|
123
|
+
# Build setup
|
124
|
+
|
125
|
+
ADD_DEFINITIONS(-DHAVE_CONFIG_H)
|
126
|
+
|
127
|
+
IF(MSVC)
|
128
|
+
ADD_DEFINITIONS(-D_CRT_SECURE_NO_DEPRECATE -D_CRT_SECURE_NO_WARNINGS)
|
129
|
+
ENDIF(MSVC)
|
130
|
+
|
131
|
+
SET(CMAKE_INCLUDE_CURRENT_DIR 1)
|
132
|
+
|
133
|
+
SET(targets)
|
134
|
+
|
135
|
+
# Libraries
|
136
|
+
# pcre
|
137
|
+
INCLUDE_DIRECTORIES(${PROJECT_BINARY_DIR}/src/pcre)
|
138
|
+
ADD_LIBRARY(pcre OBJECT ${PCRE_HEADERS} ${PCRE_SOURCES} ${PCREPOSIX_SOURCES})
|
139
|
+
|
140
|
+
# end CMakeLists.txt
|
@@ -0,0 +1,22 @@
|
|
1
|
+
Redistribution and use in source and binary forms, with or without
|
2
|
+
modification, are permitted provided that the following conditions
|
3
|
+
are met:
|
4
|
+
|
5
|
+
1. Redistributions of source code must retain the copyright
|
6
|
+
notice, this list of conditions and the following disclaimer.
|
7
|
+
2. Redistributions in binary form must reproduce the copyright
|
8
|
+
notice, this list of conditions and the following disclaimer in the
|
9
|
+
documentation and/or other materials provided with the distribution.
|
10
|
+
3. The name of the author may not be used to endorse or promote products
|
11
|
+
derived from this software without specific prior written permission.
|
12
|
+
|
13
|
+
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
14
|
+
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
15
|
+
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
16
|
+
IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
17
|
+
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
18
|
+
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
19
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
20
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
21
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
22
|
+
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
@@ -0,0 +1,17 @@
|
|
1
|
+
# Modified from FindReadline.cmake (PH Feb 2012)
|
2
|
+
|
3
|
+
if(EDITLINE_INCLUDE_DIR AND EDITLINE_LIBRARY AND NCURSES_LIBRARY)
|
4
|
+
set(EDITLINE_FOUND TRUE)
|
5
|
+
else(EDITLINE_INCLUDE_DIR AND EDITLINE_LIBRARY AND NCURSES_LIBRARY)
|
6
|
+
FIND_PATH(EDITLINE_INCLUDE_DIR readline.h
|
7
|
+
/usr/include/editline
|
8
|
+
/usr/include/edit/readline
|
9
|
+
/usr/include/readline
|
10
|
+
)
|
11
|
+
|
12
|
+
FIND_LIBRARY(EDITLINE_LIBRARY NAMES edit)
|
13
|
+
include(FindPackageHandleStandardArgs)
|
14
|
+
FIND_PACKAGE_HANDLE_STANDARD_ARGS(Editline DEFAULT_MSG EDITLINE_INCLUDE_DIR EDITLINE_LIBRARY )
|
15
|
+
|
16
|
+
MARK_AS_ADVANCED(EDITLINE_INCLUDE_DIR EDITLINE_LIBRARY)
|
17
|
+
endif(EDITLINE_INCLUDE_DIR AND EDITLINE_LIBRARY AND NCURSES_LIBRARY)
|
@@ -0,0 +1,58 @@
|
|
1
|
+
# FIND_PACKAGE_HANDLE_STANDARD_ARGS(NAME (DEFAULT_MSG|"Custom failure message") VAR1 ... )
|
2
|
+
# This macro is intended to be used in FindXXX.cmake modules files.
|
3
|
+
# It handles the REQUIRED and QUIET argument to FIND_PACKAGE() and
|
4
|
+
# it also sets the <UPPERCASED_NAME>_FOUND variable.
|
5
|
+
# The package is found if all variables listed are TRUE.
|
6
|
+
# Example:
|
7
|
+
#
|
8
|
+
# FIND_PACKAGE_HANDLE_STANDARD_ARGS(LibXml2 DEFAULT_MSG LIBXML2_LIBRARIES LIBXML2_INCLUDE_DIR)
|
9
|
+
#
|
10
|
+
# LibXml2 is considered to be found, if both LIBXML2_LIBRARIES and
|
11
|
+
# LIBXML2_INCLUDE_DIR are valid. Then also LIBXML2_FOUND is set to TRUE.
|
12
|
+
# If it is not found and REQUIRED was used, it fails with FATAL_ERROR,
|
13
|
+
# independent whether QUIET was used or not.
|
14
|
+
# If it is found, the location is reported using the VAR1 argument, so
|
15
|
+
# here a message "Found LibXml2: /usr/lib/libxml2.so" will be printed out.
|
16
|
+
# If the second argument is DEFAULT_MSG, the message in the failure case will
|
17
|
+
# be "Could NOT find LibXml2", if you don't like this message you can specify
|
18
|
+
# your own custom failure message there.
|
19
|
+
|
20
|
+
MACRO(FIND_PACKAGE_HANDLE_STANDARD_ARGS _NAME _FAIL_MSG _VAR1 )
|
21
|
+
|
22
|
+
IF("${_FAIL_MSG}" STREQUAL "DEFAULT_MSG")
|
23
|
+
IF (${_NAME}_FIND_REQUIRED)
|
24
|
+
SET(_FAIL_MESSAGE "Could not find REQUIRED package ${_NAME}")
|
25
|
+
ELSE (${_NAME}_FIND_REQUIRED)
|
26
|
+
SET(_FAIL_MESSAGE "Could not find OPTIONAL package ${_NAME}")
|
27
|
+
ENDIF (${_NAME}_FIND_REQUIRED)
|
28
|
+
ELSE("${_FAIL_MSG}" STREQUAL "DEFAULT_MSG")
|
29
|
+
SET(_FAIL_MESSAGE "${_FAIL_MSG}")
|
30
|
+
ENDIF("${_FAIL_MSG}" STREQUAL "DEFAULT_MSG")
|
31
|
+
|
32
|
+
STRING(TOUPPER ${_NAME} _NAME_UPPER)
|
33
|
+
|
34
|
+
SET(${_NAME_UPPER}_FOUND TRUE)
|
35
|
+
IF(NOT ${_VAR1})
|
36
|
+
SET(${_NAME_UPPER}_FOUND FALSE)
|
37
|
+
ENDIF(NOT ${_VAR1})
|
38
|
+
|
39
|
+
FOREACH(_CURRENT_VAR ${ARGN})
|
40
|
+
IF(NOT ${_CURRENT_VAR})
|
41
|
+
SET(${_NAME_UPPER}_FOUND FALSE)
|
42
|
+
ENDIF(NOT ${_CURRENT_VAR})
|
43
|
+
ENDFOREACH(_CURRENT_VAR)
|
44
|
+
|
45
|
+
IF (${_NAME_UPPER}_FOUND)
|
46
|
+
IF (NOT ${_NAME}_FIND_QUIETLY)
|
47
|
+
MESSAGE(STATUS "Found ${_NAME}: ${${_VAR1}}")
|
48
|
+
ENDIF (NOT ${_NAME}_FIND_QUIETLY)
|
49
|
+
ELSE (${_NAME_UPPER}_FOUND)
|
50
|
+
IF (${_NAME}_FIND_REQUIRED)
|
51
|
+
MESSAGE(FATAL_ERROR "${_FAIL_MESSAGE}")
|
52
|
+
ELSE (${_NAME}_FIND_REQUIRED)
|
53
|
+
IF (NOT ${_NAME}_FIND_QUIETLY)
|
54
|
+
MESSAGE(STATUS "${_FAIL_MESSAGE}")
|
55
|
+
ENDIF (NOT ${_NAME}_FIND_QUIETLY)
|
56
|
+
ENDIF (${_NAME}_FIND_REQUIRED)
|
57
|
+
ENDIF (${_NAME_UPPER}_FOUND)
|
58
|
+
ENDMACRO(FIND_PACKAGE_HANDLE_STANDARD_ARGS)
|
@@ -0,0 +1,29 @@
|
|
1
|
+
# from http://websvn.kde.org/trunk/KDE/kdeedu/cmake/modules/FindReadline.cmake
|
2
|
+
# http://websvn.kde.org/trunk/KDE/kdeedu/cmake/modules/COPYING-CMAKE-SCRIPTS
|
3
|
+
# --> BSD licensed
|
4
|
+
#
|
5
|
+
# GNU Readline library finder
|
6
|
+
if(READLINE_INCLUDE_DIR AND READLINE_LIBRARY AND NCURSES_LIBRARY)
|
7
|
+
set(READLINE_FOUND TRUE)
|
8
|
+
else(READLINE_INCLUDE_DIR AND READLINE_LIBRARY AND NCURSES_LIBRARY)
|
9
|
+
FIND_PATH(READLINE_INCLUDE_DIR readline/readline.h
|
10
|
+
/usr/include/readline
|
11
|
+
)
|
12
|
+
|
13
|
+
# 2008-04-22 The next clause used to read like this:
|
14
|
+
#
|
15
|
+
# FIND_LIBRARY(READLINE_LIBRARY NAMES readline)
|
16
|
+
# FIND_LIBRARY(NCURSES_LIBRARY NAMES ncurses )
|
17
|
+
# include(FindPackageHandleStandardArgs)
|
18
|
+
# FIND_PACKAGE_HANDLE_STANDARD_ARGS(Readline DEFAULT_MSG NCURSES_LIBRARY READLINE_INCLUDE_DIR READLINE_LIBRARY )
|
19
|
+
#
|
20
|
+
# I was advised to modify it such that it will find an ncurses library if
|
21
|
+
# required, but not if one was explicitly given, that is, it allows the
|
22
|
+
# default to be overridden. PH
|
23
|
+
|
24
|
+
FIND_LIBRARY(READLINE_LIBRARY NAMES readline)
|
25
|
+
include(FindPackageHandleStandardArgs)
|
26
|
+
FIND_PACKAGE_HANDLE_STANDARD_ARGS(Readline DEFAULT_MSG READLINE_INCLUDE_DIR READLINE_LIBRARY )
|
27
|
+
|
28
|
+
MARK_AS_ADVANCED(READLINE_INCLUDE_DIR READLINE_LIBRARY)
|
29
|
+
endif(READLINE_INCLUDE_DIR AND READLINE_LIBRARY AND NCURSES_LIBRARY)
|
@@ -0,0 +1,57 @@
|
|
1
|
+
/* config.h for CMake builds */
|
2
|
+
|
3
|
+
#cmakedefine HAVE_DIRENT_H 1
|
4
|
+
#cmakedefine HAVE_SYS_STAT_H 1
|
5
|
+
#cmakedefine HAVE_SYS_TYPES_H 1
|
6
|
+
#cmakedefine HAVE_UNISTD_H 1
|
7
|
+
#cmakedefine HAVE_WINDOWS_H 1
|
8
|
+
#cmakedefine HAVE_STDINT_H 1
|
9
|
+
#cmakedefine HAVE_INTTYPES_H 1
|
10
|
+
|
11
|
+
#cmakedefine HAVE_TYPE_TRAITS_H 1
|
12
|
+
#cmakedefine HAVE_BITS_TYPE_TRAITS_H 1
|
13
|
+
|
14
|
+
#cmakedefine HAVE_BCOPY 1
|
15
|
+
#cmakedefine HAVE_MEMMOVE 1
|
16
|
+
#cmakedefine HAVE_STRERROR 1
|
17
|
+
#cmakedefine HAVE_STRTOLL 1
|
18
|
+
#cmakedefine HAVE_STRTOQ 1
|
19
|
+
#cmakedefine HAVE__STRTOI64 1
|
20
|
+
|
21
|
+
#cmakedefine PCRE_STATIC 1
|
22
|
+
|
23
|
+
#cmakedefine SUPPORT_PCRE8 1
|
24
|
+
#cmakedefine SUPPORT_PCRE16 1
|
25
|
+
#cmakedefine SUPPORT_PCRE32 1
|
26
|
+
#cmakedefine SUPPORT_JIT 1
|
27
|
+
#cmakedefine SUPPORT_PCREGREP_JIT 1
|
28
|
+
#cmakedefine SUPPORT_UTF 1
|
29
|
+
#cmakedefine SUPPORT_UCP 1
|
30
|
+
#cmakedefine EBCDIC 1
|
31
|
+
#cmakedefine EBCDIC_NL25 1
|
32
|
+
#cmakedefine BSR_ANYCRLF 1
|
33
|
+
#cmakedefine NO_RECURSE 1
|
34
|
+
|
35
|
+
#cmakedefine HAVE_LONG_LONG 1
|
36
|
+
#cmakedefine HAVE_UNSIGNED_LONG_LONG 1
|
37
|
+
|
38
|
+
#cmakedefine SUPPORT_LIBBZ2 1
|
39
|
+
#cmakedefine SUPPORT_LIBZ 1
|
40
|
+
#cmakedefine SUPPORT_LIBEDIT 1
|
41
|
+
#cmakedefine SUPPORT_LIBREADLINE 1
|
42
|
+
|
43
|
+
#cmakedefine SUPPORT_VALGRIND 1
|
44
|
+
#cmakedefine SUPPORT_GCOV 1
|
45
|
+
|
46
|
+
#define NEWLINE @NEWLINE@
|
47
|
+
#define POSIX_MALLOC_THRESHOLD @PCRE_POSIX_MALLOC_THRESHOLD@
|
48
|
+
#define LINK_SIZE @PCRE_LINK_SIZE@
|
49
|
+
#define PARENS_NEST_LIMIT @PCRE_PARENS_NEST_LIMIT@
|
50
|
+
#define MATCH_LIMIT @PCRE_MATCH_LIMIT@
|
51
|
+
#define MATCH_LIMIT_RECURSION @PCRE_MATCH_LIMIT_RECURSION@
|
52
|
+
#define PCREGREP_BUFSIZE @PCREGREP_BUFSIZE@
|
53
|
+
|
54
|
+
#define MAX_NAME_SIZE 32
|
55
|
+
#define MAX_NAME_COUNT 10000
|
56
|
+
|
57
|
+
/* end config.h for CMake builds */
|
@@ -0,0 +1,641 @@
|
|
1
|
+
/*************************************************
|
2
|
+
* Perl-Compatible Regular Expressions *
|
3
|
+
*************************************************/
|
4
|
+
|
5
|
+
/* This is the public header file for the PCRE library, to be #included by
|
6
|
+
applications that call the PCRE functions.
|
7
|
+
|
8
|
+
Copyright (c) 1997-2014 University of Cambridge
|
9
|
+
|
10
|
+
-----------------------------------------------------------------------------
|
11
|
+
Redistribution and use in source and binary forms, with or without
|
12
|
+
modification, are permitted provided that the following conditions are met:
|
13
|
+
|
14
|
+
* Redistributions of source code must retain the above copyright notice,
|
15
|
+
this list of conditions and the following disclaimer.
|
16
|
+
|
17
|
+
* Redistributions in binary form must reproduce the above copyright
|
18
|
+
notice, this list of conditions and the following disclaimer in the
|
19
|
+
documentation and/or other materials provided with the distribution.
|
20
|
+
|
21
|
+
* Neither the name of the University of Cambridge nor the names of its
|
22
|
+
contributors may be used to endorse or promote products derived from
|
23
|
+
this software without specific prior written permission.
|
24
|
+
|
25
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
26
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
27
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
28
|
+
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
29
|
+
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
30
|
+
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
31
|
+
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
32
|
+
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
33
|
+
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
34
|
+
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
35
|
+
POSSIBILITY OF SUCH DAMAGE.
|
36
|
+
-----------------------------------------------------------------------------
|
37
|
+
*/
|
38
|
+
|
39
|
+
#ifndef _PCRE_H
|
40
|
+
#define _PCRE_H
|
41
|
+
|
42
|
+
/* The current PCRE version information. */
|
43
|
+
|
44
|
+
#define PCRE_MAJOR 8
|
45
|
+
#define PCRE_MINOR 42
|
46
|
+
#define PCRE_PRERELEASE
|
47
|
+
#define PCRE_DATE 2018-03-20
|
48
|
+
|
49
|
+
#define PCRE_EXP_DECL extern
|
50
|
+
|
51
|
+
/* Have to include stdlib.h in order to ensure that size_t is defined;
|
52
|
+
it is needed here for malloc. */
|
53
|
+
|
54
|
+
#include <stdlib.h>
|
55
|
+
|
56
|
+
/* Allow for C++ users */
|
57
|
+
|
58
|
+
#ifdef __cplusplus
|
59
|
+
extern "C" {
|
60
|
+
#endif
|
61
|
+
|
62
|
+
/* Public options. Some are compile-time only, some are run-time only, and some
|
63
|
+
are both. Most of the compile-time options are saved with the compiled regex so
|
64
|
+
that they can be inspected during studying (and therefore JIT compiling). Note
|
65
|
+
that pcre_study() has its own set of options. Originally, all the options
|
66
|
+
defined here used distinct bits. However, almost all the bits in a 32-bit word
|
67
|
+
are now used, so in order to conserve them, option bits that were previously
|
68
|
+
only recognized at matching time (i.e. by pcre_exec() or pcre_dfa_exec()) may
|
69
|
+
also be used for compile-time options that affect only compiling and are not
|
70
|
+
relevant for studying or JIT compiling.
|
71
|
+
|
72
|
+
Some options for pcre_compile() change its behaviour but do not affect the
|
73
|
+
behaviour of the execution functions. Other options are passed through to the
|
74
|
+
execution functions and affect their behaviour, with or without affecting the
|
75
|
+
behaviour of pcre_compile().
|
76
|
+
|
77
|
+
Options that can be passed to pcre_compile() are tagged Cx below, with these
|
78
|
+
variants:
|
79
|
+
|
80
|
+
C1 Affects compile only
|
81
|
+
C2 Does not affect compile; affects exec, dfa_exec
|
82
|
+
C3 Affects compile, exec, dfa_exec
|
83
|
+
C4 Affects compile, exec, dfa_exec, study
|
84
|
+
C5 Affects compile, exec, study
|
85
|
+
|
86
|
+
Options that can be set for pcre_exec() and/or pcre_dfa_exec() are flagged with
|
87
|
+
E and D, respectively. They take precedence over C3, C4, and C5 settings passed
|
88
|
+
from pcre_compile(). Those that are compatible with JIT execution are flagged
|
89
|
+
with J. */
|
90
|
+
|
91
|
+
#define PCRE_CASELESS 0x00000001 /* C1 */
|
92
|
+
#define PCRE_MULTILINE 0x00000002 /* C1 */
|
93
|
+
#define PCRE_DOTALL 0x00000004 /* C1 */
|
94
|
+
#define PCRE_EXTENDED 0x00000008 /* C1 */
|
95
|
+
#define PCRE_ANCHORED 0x00000010 /* C4 E D */
|
96
|
+
#define PCRE_DOLLAR_ENDONLY 0x00000020 /* C2 */
|
97
|
+
#define PCRE_EXTRA 0x00000040 /* C1 */
|
98
|
+
#define PCRE_NOTBOL 0x00000080 /* E D J */
|
99
|
+
#define PCRE_NOTEOL 0x00000100 /* E D J */
|
100
|
+
#define PCRE_UNGREEDY 0x00000200 /* C1 */
|
101
|
+
#define PCRE_NOTEMPTY 0x00000400 /* E D J */
|
102
|
+
#define PCRE_UTF8 0x00000800 /* C4 ) */
|
103
|
+
#define PCRE_UTF16 0x00000800 /* C4 ) Synonyms */
|
104
|
+
#define PCRE_UTF32 0x00000800 /* C4 ) */
|
105
|
+
#define PCRE_NO_AUTO_CAPTURE 0x00001000 /* C1 */
|
106
|
+
#define PCRE_NO_UTF8_CHECK 0x00002000 /* C1 E D J ) */
|
107
|
+
#define PCRE_NO_UTF16_CHECK 0x00002000 /* C1 E D J ) Synonyms */
|
108
|
+
#define PCRE_NO_UTF32_CHECK 0x00002000 /* C1 E D J ) */
|
109
|
+
#define PCRE_AUTO_CALLOUT 0x00004000 /* C1 */
|
110
|
+
#define PCRE_PARTIAL_SOFT 0x00008000 /* E D J ) Synonyms */
|
111
|
+
#define PCRE_PARTIAL 0x00008000 /* E D J ) */
|
112
|
+
|
113
|
+
/* This pair use the same bit. */
|
114
|
+
#define PCRE_NEVER_UTF 0x00010000 /* C1 ) Overlaid */
|
115
|
+
#define PCRE_DFA_SHORTEST 0x00010000 /* D ) Overlaid */
|
116
|
+
|
117
|
+
/* This pair use the same bit. */
|
118
|
+
#define PCRE_NO_AUTO_POSSESS 0x00020000 /* C1 ) Overlaid */
|
119
|
+
#define PCRE_DFA_RESTART 0x00020000 /* D ) Overlaid */
|
120
|
+
|
121
|
+
#define PCRE_FIRSTLINE 0x00040000 /* C3 */
|
122
|
+
#define PCRE_DUPNAMES 0x00080000 /* C1 */
|
123
|
+
#define PCRE_NEWLINE_CR 0x00100000 /* C3 E D */
|
124
|
+
#define PCRE_NEWLINE_LF 0x00200000 /* C3 E D */
|
125
|
+
#define PCRE_NEWLINE_CRLF 0x00300000 /* C3 E D */
|
126
|
+
#define PCRE_NEWLINE_ANY 0x00400000 /* C3 E D */
|
127
|
+
#define PCRE_NEWLINE_ANYCRLF 0x00500000 /* C3 E D */
|
128
|
+
#define PCRE_BSR_ANYCRLF 0x00800000 /* C3 E D */
|
129
|
+
#define PCRE_BSR_UNICODE 0x01000000 /* C3 E D */
|
130
|
+
#define PCRE_JAVASCRIPT_COMPAT 0x02000000 /* C5 */
|
131
|
+
#define PCRE_NO_START_OPTIMIZE 0x04000000 /* C2 E D ) Synonyms */
|
132
|
+
#define PCRE_NO_START_OPTIMISE 0x04000000 /* C2 E D ) */
|
133
|
+
#define PCRE_PARTIAL_HARD 0x08000000 /* E D J */
|
134
|
+
#define PCRE_NOTEMPTY_ATSTART 0x10000000 /* E D J */
|
135
|
+
#define PCRE_UCP 0x20000000 /* C3 */
|
136
|
+
|
137
|
+
/* Exec-time and get/set-time error codes */
|
138
|
+
|
139
|
+
#define PCRE_ERROR_NOMATCH (-1)
|
140
|
+
#define PCRE_ERROR_NULL (-2)
|
141
|
+
#define PCRE_ERROR_BADOPTION (-3)
|
142
|
+
#define PCRE_ERROR_BADMAGIC (-4)
|
143
|
+
#define PCRE_ERROR_UNKNOWN_OPCODE (-5)
|
144
|
+
#define PCRE_ERROR_UNKNOWN_NODE (-5) /* For backward compatibility */
|
145
|
+
#define PCRE_ERROR_NOMEMORY (-6)
|
146
|
+
#define PCRE_ERROR_NOSUBSTRING (-7)
|
147
|
+
#define PCRE_ERROR_MATCHLIMIT (-8)
|
148
|
+
#define PCRE_ERROR_CALLOUT (-9) /* Never used by PCRE itself */
|
149
|
+
#define PCRE_ERROR_BADUTF8 (-10) /* Same for 8/16/32 */
|
150
|
+
#define PCRE_ERROR_BADUTF16 (-10) /* Same for 8/16/32 */
|
151
|
+
#define PCRE_ERROR_BADUTF32 (-10) /* Same for 8/16/32 */
|
152
|
+
#define PCRE_ERROR_BADUTF8_OFFSET (-11) /* Same for 8/16 */
|
153
|
+
#define PCRE_ERROR_BADUTF16_OFFSET (-11) /* Same for 8/16 */
|
154
|
+
#define PCRE_ERROR_PARTIAL (-12)
|
155
|
+
#define PCRE_ERROR_BADPARTIAL (-13)
|
156
|
+
#define PCRE_ERROR_INTERNAL (-14)
|
157
|
+
#define PCRE_ERROR_BADCOUNT (-15)
|
158
|
+
#define PCRE_ERROR_DFA_UITEM (-16)
|
159
|
+
#define PCRE_ERROR_DFA_UCOND (-17)
|
160
|
+
#define PCRE_ERROR_DFA_UMLIMIT (-18)
|
161
|
+
#define PCRE_ERROR_DFA_WSSIZE (-19)
|
162
|
+
#define PCRE_ERROR_DFA_RECURSE (-20)
|
163
|
+
#define PCRE_ERROR_RECURSIONLIMIT (-21)
|
164
|
+
#define PCRE_ERROR_NULLWSLIMIT (-22) /* No longer actually used */
|
165
|
+
#define PCRE_ERROR_BADNEWLINE (-23)
|
166
|
+
#define PCRE_ERROR_BADOFFSET (-24)
|
167
|
+
#define PCRE_ERROR_SHORTUTF8 (-25)
|
168
|
+
#define PCRE_ERROR_SHORTUTF16 (-25) /* Same for 8/16 */
|
169
|
+
#define PCRE_ERROR_RECURSELOOP (-26)
|
170
|
+
#define PCRE_ERROR_JIT_STACKLIMIT (-27)
|
171
|
+
#define PCRE_ERROR_BADMODE (-28)
|
172
|
+
#define PCRE_ERROR_BADENDIANNESS (-29)
|
173
|
+
#define PCRE_ERROR_DFA_BADRESTART (-30)
|
174
|
+
#define PCRE_ERROR_JIT_BADOPTION (-31)
|
175
|
+
#define PCRE_ERROR_BADLENGTH (-32)
|
176
|
+
#define PCRE_ERROR_UNSET (-33)
|
177
|
+
|
178
|
+
/* Specific error codes for UTF-8 validity checks */
|
179
|
+
|
180
|
+
#define PCRE_UTF8_ERR0 0
|
181
|
+
#define PCRE_UTF8_ERR1 1
|
182
|
+
#define PCRE_UTF8_ERR2 2
|
183
|
+
#define PCRE_UTF8_ERR3 3
|
184
|
+
#define PCRE_UTF8_ERR4 4
|
185
|
+
#define PCRE_UTF8_ERR5 5
|
186
|
+
#define PCRE_UTF8_ERR6 6
|
187
|
+
#define PCRE_UTF8_ERR7 7
|
188
|
+
#define PCRE_UTF8_ERR8 8
|
189
|
+
#define PCRE_UTF8_ERR9 9
|
190
|
+
#define PCRE_UTF8_ERR10 10
|
191
|
+
#define PCRE_UTF8_ERR11 11
|
192
|
+
#define PCRE_UTF8_ERR12 12
|
193
|
+
#define PCRE_UTF8_ERR13 13
|
194
|
+
#define PCRE_UTF8_ERR14 14
|
195
|
+
#define PCRE_UTF8_ERR15 15
|
196
|
+
#define PCRE_UTF8_ERR16 16
|
197
|
+
#define PCRE_UTF8_ERR17 17
|
198
|
+
#define PCRE_UTF8_ERR18 18
|
199
|
+
#define PCRE_UTF8_ERR19 19
|
200
|
+
#define PCRE_UTF8_ERR20 20
|
201
|
+
#define PCRE_UTF8_ERR21 21
|
202
|
+
#define PCRE_UTF8_ERR22 22 /* Unused (was non-character) */
|
203
|
+
|
204
|
+
/* Specific error codes for UTF-16 validity checks */
|
205
|
+
|
206
|
+
#define PCRE_UTF16_ERR0 0
|
207
|
+
#define PCRE_UTF16_ERR1 1
|
208
|
+
#define PCRE_UTF16_ERR2 2
|
209
|
+
#define PCRE_UTF16_ERR3 3
|
210
|
+
#define PCRE_UTF16_ERR4 4 /* Unused (was non-character) */
|
211
|
+
|
212
|
+
/* Specific error codes for UTF-32 validity checks */
|
213
|
+
|
214
|
+
#define PCRE_UTF32_ERR0 0
|
215
|
+
#define PCRE_UTF32_ERR1 1
|
216
|
+
#define PCRE_UTF32_ERR2 2 /* Unused (was non-character) */
|
217
|
+
#define PCRE_UTF32_ERR3 3
|
218
|
+
|
219
|
+
/* Request types for pcre_fullinfo() */
|
220
|
+
|
221
|
+
#define PCRE_INFO_OPTIONS 0
|
222
|
+
#define PCRE_INFO_SIZE 1
|
223
|
+
#define PCRE_INFO_CAPTURECOUNT 2
|
224
|
+
#define PCRE_INFO_BACKREFMAX 3
|
225
|
+
#define PCRE_INFO_FIRSTBYTE 4
|
226
|
+
#define PCRE_INFO_FIRSTCHAR 4 /* For backwards compatibility */
|
227
|
+
#define PCRE_INFO_FIRSTTABLE 5
|
228
|
+
#define PCRE_INFO_LASTLITERAL 6
|
229
|
+
#define PCRE_INFO_NAMEENTRYSIZE 7
|
230
|
+
#define PCRE_INFO_NAMECOUNT 8
|
231
|
+
#define PCRE_INFO_NAMETABLE 9
|
232
|
+
#define PCRE_INFO_STUDYSIZE 10
|
233
|
+
#define PCRE_INFO_DEFAULT_TABLES 11
|
234
|
+
#define PCRE_INFO_OKPARTIAL 12
|
235
|
+
#define PCRE_INFO_JCHANGED 13
|
236
|
+
#define PCRE_INFO_HASCRORLF 14
|
237
|
+
#define PCRE_INFO_MINLENGTH 15
|
238
|
+
#define PCRE_INFO_JIT 16
|
239
|
+
#define PCRE_INFO_JITSIZE 17
|
240
|
+
#define PCRE_INFO_MAXLOOKBEHIND 18
|
241
|
+
#define PCRE_INFO_FIRSTCHARACTER 19
|
242
|
+
#define PCRE_INFO_FIRSTCHARACTERFLAGS 20
|
243
|
+
#define PCRE_INFO_REQUIREDCHAR 21
|
244
|
+
#define PCRE_INFO_REQUIREDCHARFLAGS 22
|
245
|
+
#define PCRE_INFO_MATCHLIMIT 23
|
246
|
+
#define PCRE_INFO_RECURSIONLIMIT 24
|
247
|
+
#define PCRE_INFO_MATCH_EMPTY 25
|
248
|
+
|
249
|
+
/* Request types for pcre_config(). Do not re-arrange, in order to remain
|
250
|
+
compatible. */
|
251
|
+
|
252
|
+
#define PCRE_CONFIG_UTF8 0
|
253
|
+
#define PCRE_CONFIG_NEWLINE 1
|
254
|
+
#define PCRE_CONFIG_LINK_SIZE 2
|
255
|
+
#define PCRE_CONFIG_POSIX_MALLOC_THRESHOLD 3
|
256
|
+
#define PCRE_CONFIG_MATCH_LIMIT 4
|
257
|
+
#define PCRE_CONFIG_STACKRECURSE 5
|
258
|
+
#define PCRE_CONFIG_UNICODE_PROPERTIES 6
|
259
|
+
#define PCRE_CONFIG_MATCH_LIMIT_RECURSION 7
|
260
|
+
#define PCRE_CONFIG_BSR 8
|
261
|
+
#define PCRE_CONFIG_JIT 9
|
262
|
+
#define PCRE_CONFIG_UTF16 10
|
263
|
+
#define PCRE_CONFIG_JITTARGET 11
|
264
|
+
#define PCRE_CONFIG_UTF32 12
|
265
|
+
#define PCRE_CONFIG_PARENS_LIMIT 13
|
266
|
+
|
267
|
+
/* Request types for pcre_study(). Do not re-arrange, in order to remain
|
268
|
+
compatible. */
|
269
|
+
|
270
|
+
#define PCRE_STUDY_JIT_COMPILE 0x0001
|
271
|
+
#define PCRE_STUDY_JIT_PARTIAL_SOFT_COMPILE 0x0002
|
272
|
+
#define PCRE_STUDY_JIT_PARTIAL_HARD_COMPILE 0x0004
|
273
|
+
#define PCRE_STUDY_EXTRA_NEEDED 0x0008
|
274
|
+
|
275
|
+
/* Bit flags for the pcre[16|32]_extra structure. Do not re-arrange or redefine
|
276
|
+
these bits, just add new ones on the end, in order to remain compatible. */
|
277
|
+
|
278
|
+
#define PCRE_EXTRA_STUDY_DATA 0x0001
|
279
|
+
#define PCRE_EXTRA_MATCH_LIMIT 0x0002
|
280
|
+
#define PCRE_EXTRA_CALLOUT_DATA 0x0004
|
281
|
+
#define PCRE_EXTRA_TABLES 0x0008
|
282
|
+
#define PCRE_EXTRA_MATCH_LIMIT_RECURSION 0x0010
|
283
|
+
#define PCRE_EXTRA_MARK 0x0020
|
284
|
+
#define PCRE_EXTRA_EXECUTABLE_JIT 0x0040
|
285
|
+
|
286
|
+
/* Types */
|
287
|
+
|
288
|
+
struct real_pcre8_or_16; /* declaration; the definition is private */
|
289
|
+
typedef struct real_pcre8_or_16 pcre;
|
290
|
+
|
291
|
+
struct real_pcre8_or_16; /* declaration; the definition is private */
|
292
|
+
typedef struct real_pcre8_or_16 pcre16;
|
293
|
+
|
294
|
+
struct real_pcre32; /* declaration; the definition is private */
|
295
|
+
typedef struct real_pcre32 pcre32;
|
296
|
+
|
297
|
+
struct real_pcre_jit_stack; /* declaration; the definition is private */
|
298
|
+
typedef struct real_pcre_jit_stack pcre_jit_stack;
|
299
|
+
|
300
|
+
struct real_pcre16_jit_stack; /* declaration; the definition is private */
|
301
|
+
typedef struct real_pcre16_jit_stack pcre16_jit_stack;
|
302
|
+
|
303
|
+
struct real_pcre32_jit_stack; /* declaration; the definition is private */
|
304
|
+
typedef struct real_pcre32_jit_stack pcre32_jit_stack;
|
305
|
+
|
306
|
+
/* If PCRE is compiled with 16 bit character support, PCRE_UCHAR16 must contain
|
307
|
+
a 16 bit wide signed data type. Otherwise it can be a dummy data type since
|
308
|
+
pcre16 functions are not implemented. There is a check for this in pcre_internal.h. */
|
309
|
+
#ifndef PCRE_UCHAR16
|
310
|
+
#define PCRE_UCHAR16 unsigned short
|
311
|
+
#endif
|
312
|
+
|
313
|
+
#ifndef PCRE_SPTR16
|
314
|
+
#define PCRE_SPTR16 const PCRE_UCHAR16 *
|
315
|
+
#endif
|
316
|
+
|
317
|
+
/* If PCRE is compiled with 32 bit character support, PCRE_UCHAR32 must contain
|
318
|
+
a 32 bit wide signed data type. Otherwise it can be a dummy data type since
|
319
|
+
pcre32 functions are not implemented. There is a check for this in pcre_internal.h. */
|
320
|
+
#ifndef PCRE_UCHAR32
|
321
|
+
#define PCRE_UCHAR32 unsigned int
|
322
|
+
#endif
|
323
|
+
|
324
|
+
#ifndef PCRE_SPTR32
|
325
|
+
#define PCRE_SPTR32 const PCRE_UCHAR32 *
|
326
|
+
#endif
|
327
|
+
|
328
|
+
/* When PCRE is compiled as a C++ library, the subject pointer type can be
|
329
|
+
replaced with a custom type. For conventional use, the public interface is a
|
330
|
+
const char *. */
|
331
|
+
|
332
|
+
#ifndef PCRE_SPTR
|
333
|
+
#define PCRE_SPTR const char *
|
334
|
+
#endif
|
335
|
+
|
336
|
+
/* The structure for passing additional data to pcre_exec(). This is defined in
|
337
|
+
such as way as to be extensible. Always add new fields at the end, in order to
|
338
|
+
remain compatible. */
|
339
|
+
|
340
|
+
typedef struct pcre_extra {
|
341
|
+
unsigned long int flags; /* Bits for which fields are set */
|
342
|
+
void *study_data; /* Opaque data from pcre_study() */
|
343
|
+
unsigned long int match_limit; /* Maximum number of calls to match() */
|
344
|
+
void *callout_data; /* Data passed back in callouts */
|
345
|
+
const unsigned char *tables; /* Pointer to character tables */
|
346
|
+
unsigned long int match_limit_recursion; /* Max recursive calls to match() */
|
347
|
+
unsigned char **mark; /* For passing back a mark pointer */
|
348
|
+
void *executable_jit; /* Contains a pointer to a compiled jit code */
|
349
|
+
} pcre_extra;
|
350
|
+
|
351
|
+
/* Same structure as above, but with 16 bit char pointers. */
|
352
|
+
|
353
|
+
typedef struct pcre16_extra {
|
354
|
+
unsigned long int flags; /* Bits for which fields are set */
|
355
|
+
void *study_data; /* Opaque data from pcre_study() */
|
356
|
+
unsigned long int match_limit; /* Maximum number of calls to match() */
|
357
|
+
void *callout_data; /* Data passed back in callouts */
|
358
|
+
const unsigned char *tables; /* Pointer to character tables */
|
359
|
+
unsigned long int match_limit_recursion; /* Max recursive calls to match() */
|
360
|
+
PCRE_UCHAR16 **mark; /* For passing back a mark pointer */
|
361
|
+
void *executable_jit; /* Contains a pointer to a compiled jit code */
|
362
|
+
} pcre16_extra;
|
363
|
+
|
364
|
+
/* Same structure as above, but with 32 bit char pointers. */
|
365
|
+
|
366
|
+
typedef struct pcre32_extra {
|
367
|
+
unsigned long int flags; /* Bits for which fields are set */
|
368
|
+
void *study_data; /* Opaque data from pcre_study() */
|
369
|
+
unsigned long int match_limit; /* Maximum number of calls to match() */
|
370
|
+
void *callout_data; /* Data passed back in callouts */
|
371
|
+
const unsigned char *tables; /* Pointer to character tables */
|
372
|
+
unsigned long int match_limit_recursion; /* Max recursive calls to match() */
|
373
|
+
PCRE_UCHAR32 **mark; /* For passing back a mark pointer */
|
374
|
+
void *executable_jit; /* Contains a pointer to a compiled jit code */
|
375
|
+
} pcre32_extra;
|
376
|
+
|
377
|
+
/* The structure for passing out data via the pcre_callout_function. We use a
|
378
|
+
structure so that new fields can be added on the end in future versions,
|
379
|
+
without changing the API of the function, thereby allowing old clients to work
|
380
|
+
without modification. */
|
381
|
+
|
382
|
+
typedef struct pcre_callout_block {
|
383
|
+
int version; /* Identifies version of block */
|
384
|
+
/* ------------------------ Version 0 ------------------------------- */
|
385
|
+
int callout_number; /* Number compiled into pattern */
|
386
|
+
int *offset_vector; /* The offset vector */
|
387
|
+
PCRE_SPTR subject; /* The subject being matched */
|
388
|
+
int subject_length; /* The length of the subject */
|
389
|
+
int start_match; /* Offset to start of this match attempt */
|
390
|
+
int current_position; /* Where we currently are in the subject */
|
391
|
+
int capture_top; /* Max current capture */
|
392
|
+
int capture_last; /* Most recently closed capture */
|
393
|
+
void *callout_data; /* Data passed in with the call */
|
394
|
+
/* ------------------- Added for Version 1 -------------------------- */
|
395
|
+
int pattern_position; /* Offset to next item in the pattern */
|
396
|
+
int next_item_length; /* Length of next item in the pattern */
|
397
|
+
/* ------------------- Added for Version 2 -------------------------- */
|
398
|
+
const unsigned char *mark; /* Pointer to current mark or NULL */
|
399
|
+
/* ------------------------------------------------------------------ */
|
400
|
+
} pcre_callout_block;
|
401
|
+
|
402
|
+
/* Same structure as above, but with 16 bit char pointers. */
|
403
|
+
|
404
|
+
typedef struct pcre16_callout_block {
|
405
|
+
int version; /* Identifies version of block */
|
406
|
+
/* ------------------------ Version 0 ------------------------------- */
|
407
|
+
int callout_number; /* Number compiled into pattern */
|
408
|
+
int *offset_vector; /* The offset vector */
|
409
|
+
PCRE_SPTR16 subject; /* The subject being matched */
|
410
|
+
int subject_length; /* The length of the subject */
|
411
|
+
int start_match; /* Offset to start of this match attempt */
|
412
|
+
int current_position; /* Where we currently are in the subject */
|
413
|
+
int capture_top; /* Max current capture */
|
414
|
+
int capture_last; /* Most recently closed capture */
|
415
|
+
void *callout_data; /* Data passed in with the call */
|
416
|
+
/* ------------------- Added for Version 1 -------------------------- */
|
417
|
+
int pattern_position; /* Offset to next item in the pattern */
|
418
|
+
int next_item_length; /* Length of next item in the pattern */
|
419
|
+
/* ------------------- Added for Version 2 -------------------------- */
|
420
|
+
const PCRE_UCHAR16 *mark; /* Pointer to current mark or NULL */
|
421
|
+
/* ------------------------------------------------------------------ */
|
422
|
+
} pcre16_callout_block;
|
423
|
+
|
424
|
+
/* Same structure as above, but with 32 bit char pointers. */
|
425
|
+
|
426
|
+
typedef struct pcre32_callout_block {
|
427
|
+
int version; /* Identifies version of block */
|
428
|
+
/* ------------------------ Version 0 ------------------------------- */
|
429
|
+
int callout_number; /* Number compiled into pattern */
|
430
|
+
int *offset_vector; /* The offset vector */
|
431
|
+
PCRE_SPTR32 subject; /* The subject being matched */
|
432
|
+
int subject_length; /* The length of the subject */
|
433
|
+
int start_match; /* Offset to start of this match attempt */
|
434
|
+
int current_position; /* Where we currently are in the subject */
|
435
|
+
int capture_top; /* Max current capture */
|
436
|
+
int capture_last; /* Most recently closed capture */
|
437
|
+
void *callout_data; /* Data passed in with the call */
|
438
|
+
/* ------------------- Added for Version 1 -------------------------- */
|
439
|
+
int pattern_position; /* Offset to next item in the pattern */
|
440
|
+
int next_item_length; /* Length of next item in the pattern */
|
441
|
+
/* ------------------- Added for Version 2 -------------------------- */
|
442
|
+
const PCRE_UCHAR32 *mark; /* Pointer to current mark or NULL */
|
443
|
+
/* ------------------------------------------------------------------ */
|
444
|
+
} pcre32_callout_block;
|
445
|
+
|
446
|
+
/* Indirection for store get and free functions. These can be set to
|
447
|
+
alternative malloc/free functions if required. Special ones are used in the
|
448
|
+
non-recursive case for "frames". There is also an optional callout function
|
449
|
+
that is triggered by the (?) regex item. For Virtual Pascal, these definitions
|
450
|
+
have to take another form. */
|
451
|
+
|
452
|
+
#ifndef VPCOMPAT
|
453
|
+
PCRE_EXP_DECL void *(*pcre_malloc)(size_t);
|
454
|
+
PCRE_EXP_DECL void (*pcre_free)(void *);
|
455
|
+
PCRE_EXP_DECL void *(*pcre_stack_malloc)(size_t);
|
456
|
+
PCRE_EXP_DECL void (*pcre_stack_free)(void *);
|
457
|
+
PCRE_EXP_DECL int (*pcre_callout)(pcre_callout_block *);
|
458
|
+
PCRE_EXP_DECL int (*pcre_stack_guard)(void);
|
459
|
+
|
460
|
+
PCRE_EXP_DECL void *(*pcre16_malloc)(size_t);
|
461
|
+
PCRE_EXP_DECL void (*pcre16_free)(void *);
|
462
|
+
PCRE_EXP_DECL void *(*pcre16_stack_malloc)(size_t);
|
463
|
+
PCRE_EXP_DECL void (*pcre16_stack_free)(void *);
|
464
|
+
PCRE_EXP_DECL int (*pcre16_callout)(pcre16_callout_block *);
|
465
|
+
PCRE_EXP_DECL int (*pcre16_stack_guard)(void);
|
466
|
+
|
467
|
+
PCRE_EXP_DECL void *(*pcre32_malloc)(size_t);
|
468
|
+
PCRE_EXP_DECL void (*pcre32_free)(void *);
|
469
|
+
PCRE_EXP_DECL void *(*pcre32_stack_malloc)(size_t);
|
470
|
+
PCRE_EXP_DECL void (*pcre32_stack_free)(void *);
|
471
|
+
PCRE_EXP_DECL int (*pcre32_callout)(pcre32_callout_block *);
|
472
|
+
PCRE_EXP_DECL int (*pcre32_stack_guard)(void);
|
473
|
+
#else /* VPCOMPAT */
|
474
|
+
PCRE_EXP_DECL void *pcre_malloc(size_t);
|
475
|
+
PCRE_EXP_DECL void pcre_free(void *);
|
476
|
+
PCRE_EXP_DECL void *pcre_stack_malloc(size_t);
|
477
|
+
PCRE_EXP_DECL void pcre_stack_free(void *);
|
478
|
+
PCRE_EXP_DECL int pcre_callout(pcre_callout_block *);
|
479
|
+
PCRE_EXP_DECL int pcre_stack_guard(void);
|
480
|
+
|
481
|
+
PCRE_EXP_DECL void *pcre16_malloc(size_t);
|
482
|
+
PCRE_EXP_DECL void pcre16_free(void *);
|
483
|
+
PCRE_EXP_DECL void *pcre16_stack_malloc(size_t);
|
484
|
+
PCRE_EXP_DECL void pcre16_stack_free(void *);
|
485
|
+
PCRE_EXP_DECL int pcre16_callout(pcre16_callout_block *);
|
486
|
+
PCRE_EXP_DECL int pcre16_stack_guard(void);
|
487
|
+
|
488
|
+
PCRE_EXP_DECL void *pcre32_malloc(size_t);
|
489
|
+
PCRE_EXP_DECL void pcre32_free(void *);
|
490
|
+
PCRE_EXP_DECL void *pcre32_stack_malloc(size_t);
|
491
|
+
PCRE_EXP_DECL void pcre32_stack_free(void *);
|
492
|
+
PCRE_EXP_DECL int pcre32_callout(pcre32_callout_block *);
|
493
|
+
PCRE_EXP_DECL int pcre32_stack_guard(void);
|
494
|
+
#endif /* VPCOMPAT */
|
495
|
+
|
496
|
+
/* User defined callback which provides a stack just before the match starts. */
|
497
|
+
|
498
|
+
typedef pcre_jit_stack *(*pcre_jit_callback)(void *);
|
499
|
+
typedef pcre16_jit_stack *(*pcre16_jit_callback)(void *);
|
500
|
+
typedef pcre32_jit_stack *(*pcre32_jit_callback)(void *);
|
501
|
+
|
502
|
+
/* Exported PCRE functions */
|
503
|
+
|
504
|
+
PCRE_EXP_DECL pcre *pcre_compile(const char *, int, const char **, int *,
|
505
|
+
const unsigned char *);
|
506
|
+
PCRE_EXP_DECL pcre16 *pcre16_compile(PCRE_SPTR16, int, const char **, int *,
|
507
|
+
const unsigned char *);
|
508
|
+
PCRE_EXP_DECL pcre32 *pcre32_compile(PCRE_SPTR32, int, const char **, int *,
|
509
|
+
const unsigned char *);
|
510
|
+
PCRE_EXP_DECL pcre *pcre_compile2(const char *, int, int *, const char **,
|
511
|
+
int *, const unsigned char *);
|
512
|
+
PCRE_EXP_DECL pcre16 *pcre16_compile2(PCRE_SPTR16, int, int *, const char **,
|
513
|
+
int *, const unsigned char *);
|
514
|
+
PCRE_EXP_DECL pcre32 *pcre32_compile2(PCRE_SPTR32, int, int *, const char **,
|
515
|
+
int *, const unsigned char *);
|
516
|
+
PCRE_EXP_DECL int pcre_config(int, void *);
|
517
|
+
PCRE_EXP_DECL int pcre16_config(int, void *);
|
518
|
+
PCRE_EXP_DECL int pcre32_config(int, void *);
|
519
|
+
PCRE_EXP_DECL int pcre_copy_named_substring(const pcre *, const char *,
|
520
|
+
int *, int, const char *, char *, int);
|
521
|
+
PCRE_EXP_DECL int pcre16_copy_named_substring(const pcre16 *, PCRE_SPTR16,
|
522
|
+
int *, int, PCRE_SPTR16, PCRE_UCHAR16 *, int);
|
523
|
+
PCRE_EXP_DECL int pcre32_copy_named_substring(const pcre32 *, PCRE_SPTR32,
|
524
|
+
int *, int, PCRE_SPTR32, PCRE_UCHAR32 *, int);
|
525
|
+
PCRE_EXP_DECL int pcre_copy_substring(const char *, int *, int, int,
|
526
|
+
char *, int);
|
527
|
+
PCRE_EXP_DECL int pcre16_copy_substring(PCRE_SPTR16, int *, int, int,
|
528
|
+
PCRE_UCHAR16 *, int);
|
529
|
+
PCRE_EXP_DECL int pcre32_copy_substring(PCRE_SPTR32, int *, int, int,
|
530
|
+
PCRE_UCHAR32 *, int);
|
531
|
+
PCRE_EXP_DECL int pcre_dfa_exec(const pcre *, const pcre_extra *,
|
532
|
+
const char *, int, int, int, int *, int , int *, int);
|
533
|
+
PCRE_EXP_DECL int pcre16_dfa_exec(const pcre16 *, const pcre16_extra *,
|
534
|
+
PCRE_SPTR16, int, int, int, int *, int , int *, int);
|
535
|
+
PCRE_EXP_DECL int pcre32_dfa_exec(const pcre32 *, const pcre32_extra *,
|
536
|
+
PCRE_SPTR32, int, int, int, int *, int , int *, int);
|
537
|
+
PCRE_EXP_DECL int pcre_exec(const pcre *, const pcre_extra *, PCRE_SPTR,
|
538
|
+
int, int, int, int *, int);
|
539
|
+
PCRE_EXP_DECL int pcre16_exec(const pcre16 *, const pcre16_extra *,
|
540
|
+
PCRE_SPTR16, int, int, int, int *, int);
|
541
|
+
PCRE_EXP_DECL int pcre32_exec(const pcre32 *, const pcre32_extra *,
|
542
|
+
PCRE_SPTR32, int, int, int, int *, int);
|
543
|
+
PCRE_EXP_DECL int pcre_jit_exec(const pcre *, const pcre_extra *,
|
544
|
+
PCRE_SPTR, int, int, int, int *, int,
|
545
|
+
pcre_jit_stack *);
|
546
|
+
PCRE_EXP_DECL int pcre16_jit_exec(const pcre16 *, const pcre16_extra *,
|
547
|
+
PCRE_SPTR16, int, int, int, int *, int,
|
548
|
+
pcre16_jit_stack *);
|
549
|
+
PCRE_EXP_DECL int pcre32_jit_exec(const pcre32 *, const pcre32_extra *,
|
550
|
+
PCRE_SPTR32, int, int, int, int *, int,
|
551
|
+
pcre32_jit_stack *);
|
552
|
+
PCRE_EXP_DECL void pcre_free_substring(const char *);
|
553
|
+
PCRE_EXP_DECL void pcre16_free_substring(PCRE_SPTR16);
|
554
|
+
PCRE_EXP_DECL void pcre32_free_substring(PCRE_SPTR32);
|
555
|
+
PCRE_EXP_DECL void pcre_free_substring_list(const char **);
|
556
|
+
PCRE_EXP_DECL void pcre16_free_substring_list(PCRE_SPTR16 *);
|
557
|
+
PCRE_EXP_DECL void pcre32_free_substring_list(PCRE_SPTR32 *);
|
558
|
+
PCRE_EXP_DECL int pcre_fullinfo(const pcre *, const pcre_extra *, int,
|
559
|
+
void *);
|
560
|
+
PCRE_EXP_DECL int pcre16_fullinfo(const pcre16 *, const pcre16_extra *, int,
|
561
|
+
void *);
|
562
|
+
PCRE_EXP_DECL int pcre32_fullinfo(const pcre32 *, const pcre32_extra *, int,
|
563
|
+
void *);
|
564
|
+
PCRE_EXP_DECL int pcre_get_named_substring(const pcre *, const char *,
|
565
|
+
int *, int, const char *, const char **);
|
566
|
+
PCRE_EXP_DECL int pcre16_get_named_substring(const pcre16 *, PCRE_SPTR16,
|
567
|
+
int *, int, PCRE_SPTR16, PCRE_SPTR16 *);
|
568
|
+
PCRE_EXP_DECL int pcre32_get_named_substring(const pcre32 *, PCRE_SPTR32,
|
569
|
+
int *, int, PCRE_SPTR32, PCRE_SPTR32 *);
|
570
|
+
PCRE_EXP_DECL int pcre_get_stringnumber(const pcre *, const char *);
|
571
|
+
PCRE_EXP_DECL int pcre16_get_stringnumber(const pcre16 *, PCRE_SPTR16);
|
572
|
+
PCRE_EXP_DECL int pcre32_get_stringnumber(const pcre32 *, PCRE_SPTR32);
|
573
|
+
PCRE_EXP_DECL int pcre_get_stringtable_entries(const pcre *, const char *,
|
574
|
+
char **, char **);
|
575
|
+
PCRE_EXP_DECL int pcre16_get_stringtable_entries(const pcre16 *, PCRE_SPTR16,
|
576
|
+
PCRE_UCHAR16 **, PCRE_UCHAR16 **);
|
577
|
+
PCRE_EXP_DECL int pcre32_get_stringtable_entries(const pcre32 *, PCRE_SPTR32,
|
578
|
+
PCRE_UCHAR32 **, PCRE_UCHAR32 **);
|
579
|
+
PCRE_EXP_DECL int pcre_get_substring(const char *, int *, int, int,
|
580
|
+
const char **);
|
581
|
+
PCRE_EXP_DECL int pcre16_get_substring(PCRE_SPTR16, int *, int, int,
|
582
|
+
PCRE_SPTR16 *);
|
583
|
+
PCRE_EXP_DECL int pcre32_get_substring(PCRE_SPTR32, int *, int, int,
|
584
|
+
PCRE_SPTR32 *);
|
585
|
+
PCRE_EXP_DECL int pcre_get_substring_list(const char *, int *, int,
|
586
|
+
const char ***);
|
587
|
+
PCRE_EXP_DECL int pcre16_get_substring_list(PCRE_SPTR16, int *, int,
|
588
|
+
PCRE_SPTR16 **);
|
589
|
+
PCRE_EXP_DECL int pcre32_get_substring_list(PCRE_SPTR32, int *, int,
|
590
|
+
PCRE_SPTR32 **);
|
591
|
+
PCRE_EXP_DECL const unsigned char *pcre_maketables(void);
|
592
|
+
PCRE_EXP_DECL const unsigned char *pcre16_maketables(void);
|
593
|
+
PCRE_EXP_DECL const unsigned char *pcre32_maketables(void);
|
594
|
+
PCRE_EXP_DECL int pcre_refcount(pcre *, int);
|
595
|
+
PCRE_EXP_DECL int pcre16_refcount(pcre16 *, int);
|
596
|
+
PCRE_EXP_DECL int pcre32_refcount(pcre32 *, int);
|
597
|
+
PCRE_EXP_DECL pcre_extra *pcre_study(const pcre *, int, const char **);
|
598
|
+
PCRE_EXP_DECL pcre16_extra *pcre16_study(const pcre16 *, int, const char **);
|
599
|
+
PCRE_EXP_DECL pcre32_extra *pcre32_study(const pcre32 *, int, const char **);
|
600
|
+
PCRE_EXP_DECL void pcre_free_study(pcre_extra *);
|
601
|
+
PCRE_EXP_DECL void pcre16_free_study(pcre16_extra *);
|
602
|
+
PCRE_EXP_DECL void pcre32_free_study(pcre32_extra *);
|
603
|
+
PCRE_EXP_DECL const char *pcre_version(void);
|
604
|
+
PCRE_EXP_DECL const char *pcre16_version(void);
|
605
|
+
PCRE_EXP_DECL const char *pcre32_version(void);
|
606
|
+
|
607
|
+
/* Utility functions for byte order swaps. */
|
608
|
+
PCRE_EXP_DECL int pcre_pattern_to_host_byte_order(pcre *, pcre_extra *,
|
609
|
+
const unsigned char *);
|
610
|
+
PCRE_EXP_DECL int pcre16_pattern_to_host_byte_order(pcre16 *, pcre16_extra *,
|
611
|
+
const unsigned char *);
|
612
|
+
PCRE_EXP_DECL int pcre32_pattern_to_host_byte_order(pcre32 *, pcre32_extra *,
|
613
|
+
const unsigned char *);
|
614
|
+
PCRE_EXP_DECL int pcre16_utf16_to_host_byte_order(PCRE_UCHAR16 *,
|
615
|
+
PCRE_SPTR16, int, int *, int);
|
616
|
+
PCRE_EXP_DECL int pcre32_utf32_to_host_byte_order(PCRE_UCHAR32 *,
|
617
|
+
PCRE_SPTR32, int, int *, int);
|
618
|
+
|
619
|
+
/* JIT compiler related functions. */
|
620
|
+
|
621
|
+
PCRE_EXP_DECL pcre_jit_stack *pcre_jit_stack_alloc(int, int);
|
622
|
+
PCRE_EXP_DECL pcre16_jit_stack *pcre16_jit_stack_alloc(int, int);
|
623
|
+
PCRE_EXP_DECL pcre32_jit_stack *pcre32_jit_stack_alloc(int, int);
|
624
|
+
PCRE_EXP_DECL void pcre_jit_stack_free(pcre_jit_stack *);
|
625
|
+
PCRE_EXP_DECL void pcre16_jit_stack_free(pcre16_jit_stack *);
|
626
|
+
PCRE_EXP_DECL void pcre32_jit_stack_free(pcre32_jit_stack *);
|
627
|
+
PCRE_EXP_DECL void pcre_assign_jit_stack(pcre_extra *,
|
628
|
+
pcre_jit_callback, void *);
|
629
|
+
PCRE_EXP_DECL void pcre16_assign_jit_stack(pcre16_extra *,
|
630
|
+
pcre16_jit_callback, void *);
|
631
|
+
PCRE_EXP_DECL void pcre32_assign_jit_stack(pcre32_extra *,
|
632
|
+
pcre32_jit_callback, void *);
|
633
|
+
PCRE_EXP_DECL void pcre_jit_free_unused_memory(void);
|
634
|
+
PCRE_EXP_DECL void pcre16_jit_free_unused_memory(void);
|
635
|
+
PCRE_EXP_DECL void pcre32_jit_free_unused_memory(void);
|
636
|
+
|
637
|
+
#ifdef __cplusplus
|
638
|
+
} /* extern "C" */
|
639
|
+
#endif
|
640
|
+
|
641
|
+
#endif /* End of pcre.h */
|