php_pcre.h 3.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 7 |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 1997-2018 The PHP Group |
  6. +----------------------------------------------------------------------+
  7. | This source file is subject to version 3.01 of the PHP license, |
  8. | that is bundled with this package in the file LICENSE, and is |
  9. | available through the world-wide-web at the following url: |
  10. | http://www.php.net/license/3_01.txt |
  11. | If you did not receive a copy of the PHP license and are unable to |
  12. | obtain it through the world-wide-web, please send a note to |
  13. | license@php.net so we can mail you a copy immediately. |
  14. +----------------------------------------------------------------------+
  15. | Author: Andrei Zmievski <andrei@php.net> |
  16. +----------------------------------------------------------------------+
  17. */
  18. #ifndef PHP_PCRE_H
  19. #define PHP_PCRE_H
  20. #if HAVE_PCRE || HAVE_BUNDLED_PCRE
  21. #if HAVE_BUNDLED_PCRE
  22. #include "pcre2lib/pcre2.h"
  23. #else
  24. #include "pcre2.h"
  25. #endif
  26. #if HAVE_LOCALE_H
  27. #include <locale.h>
  28. #endif
  29. PHPAPI zend_string *php_pcre_replace(zend_string *regex, zend_string *subject_str, char *subject, size_t subject_len, zend_string *replace_str, size_t limit, size_t *replace_count);
  30. PHPAPI pcre2_code* pcre_get_compiled_regex(zend_string *regex, uint32_t *capture_count, uint32_t *options);
  31. PHPAPI pcre2_code* pcre_get_compiled_regex_ex(zend_string *regex, uint32_t *capture_count, uint32_t *preg_options, uint32_t *coptions);
  32. extern zend_module_entry pcre_module_entry;
  33. #define pcre_module_ptr &pcre_module_entry
  34. #include "php_version.h"
  35. #define PHP_PCRE_VERSION PHP_VERSION
  36. typedef struct _pcre_cache_entry pcre_cache_entry;
  37. PHPAPI pcre_cache_entry* pcre_get_compiled_regex_cache(zend_string *regex);
  38. PHPAPI pcre_cache_entry* pcre_get_compiled_regex_cache_ex(zend_string *regex, int locale_aware);
  39. PHPAPI void php_pcre_match_impl( pcre_cache_entry *pce, char *subject, size_t subject_len, zval *return_value,
  40. zval *subpats, int global, int use_flags, zend_long flags, zend_off_t start_offset);
  41. PHPAPI zend_string *php_pcre_replace_impl(pcre_cache_entry *pce, zend_string *subject_str, char *subject, size_t subject_len, zend_string *replace_str,
  42. size_t limit, size_t *replace_count);
  43. PHPAPI void php_pcre_split_impl( pcre_cache_entry *pce, zend_string *subject_str, zval *return_value,
  44. zend_long limit_val, zend_long flags);
  45. PHPAPI void php_pcre_grep_impl( pcre_cache_entry *pce, zval *input, zval *return_value,
  46. zend_long flags);
  47. PHPAPI pcre2_match_context *php_pcre_mctx(void);
  48. PHPAPI pcre2_general_context *php_pcre_gctx(void);
  49. PHPAPI pcre2_compile_context *php_pcre_cctx(void);
  50. PHPAPI void php_pcre_pce_incref(pcre_cache_entry *);
  51. PHPAPI void php_pcre_pce_decref(pcre_cache_entry *);
  52. PHPAPI pcre2_code *php_pcre_pce_re(pcre_cache_entry *);
  53. /* capture_count can be ignored, re is required. */
  54. PHPAPI pcre2_match_data *php_pcre_create_match_data(uint32_t, pcre2_code *);
  55. PHPAPI void php_pcre_free_match_data(pcre2_match_data *);
  56. ZEND_BEGIN_MODULE_GLOBALS(pcre)
  57. HashTable pcre_cache;
  58. zend_long backtrack_limit;
  59. zend_long recursion_limit;
  60. #ifdef HAVE_PCRE_JIT_SUPPORT
  61. zend_bool jit;
  62. #endif
  63. int error_code;
  64. ZEND_END_MODULE_GLOBALS(pcre)
  65. PHPAPI ZEND_EXTERN_MODULE_GLOBALS(pcre)
  66. #define PCRE_G(v) ZEND_MODULE_GLOBALS_ACCESSOR(pcre, v)
  67. #else
  68. #define pcre_module_ptr NULL
  69. #endif /* HAVE_PCRE || HAVE_BUNDLED_PCRE */
  70. #define phpext_pcre_ptr pcre_module_ptr
  71. #endif /* PHP_PCRE_H */