2014-02-28 10:40:55 +01:00
|
|
|
/*************************************************
|
|
|
|
* Perl-Compatible Regular Expressions *
|
|
|
|
*************************************************/
|
|
|
|
|
|
|
|
/* This is the public header file for the PCRE library, second API, to be
|
|
|
|
#included by applications that call PCRE2 functions.
|
|
|
|
|
2015-01-05 17:02:11 +01:00
|
|
|
Copyright (c) 2015 University of Cambridge
|
2014-02-28 10:40:55 +01:00
|
|
|
|
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
|
|
modification, are permitted provided that the following conditions are met:
|
|
|
|
|
|
|
|
* Redistributions of source code must retain the above copyright notice,
|
|
|
|
this list of conditions and the following disclaimer.
|
|
|
|
|
|
|
|
* Redistributions in binary form must reproduce the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer in the
|
|
|
|
documentation and/or other materials provided with the distribution.
|
|
|
|
|
|
|
|
* Neither the name of the University of Cambridge nor the names of its
|
|
|
|
contributors may be used to endorse or promote products derived from
|
|
|
|
this software without specific prior written permission.
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
|
|
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _PCRE2_H
|
|
|
|
#define _PCRE2_H
|
|
|
|
|
|
|
|
/* The current PCRE version information. */
|
|
|
|
|
2014-06-23 18:41:29 +02:00
|
|
|
#define PCRE2_MAJOR 10
|
2015-01-23 17:51:47 +01:00
|
|
|
#define PCRE2_MINOR 10
|
2015-02-26 18:36:29 +01:00
|
|
|
#define PCRE2_PRERELEASE -RC2
|
|
|
|
#define PCRE2_DATE 2015-02-26
|
2014-02-28 10:40:55 +01:00
|
|
|
|
|
|
|
/* When an application links to a PCRE DLL in Windows, the symbols that are
|
2014-08-15 12:07:50 +02:00
|
|
|
imported have to be identified as such. When building PCRE2, the appropriate
|
2014-02-28 10:40:55 +01:00
|
|
|
export setting is defined in pcre2_internal.h, which includes this file. So we
|
|
|
|
don't change existing definitions of PCRE2_EXP_DECL. */
|
|
|
|
|
|
|
|
#if defined(_WIN32) && !defined(PCRE2_STATIC)
|
|
|
|
# ifndef PCRE2_EXP_DECL
|
|
|
|
# define PCRE2_EXP_DECL extern __declspec(dllimport)
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* By default, we use the standard "extern" declarations. */
|
|
|
|
|
|
|
|
#ifndef PCRE2_EXP_DECL
|
|
|
|
# ifdef __cplusplus
|
|
|
|
# define PCRE2_EXP_DECL extern "C"
|
|
|
|
# else
|
|
|
|
# define PCRE2_EXP_DECL extern
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2014-08-15 12:07:50 +02:00
|
|
|
/* Have to include limits.h, stdlib.h and stdint.h to ensure that size_t and
|
|
|
|
uint8_t, UCHAR_MAX, etc are defined. */
|
2014-02-28 10:40:55 +01:00
|
|
|
|
2014-08-15 12:07:50 +02:00
|
|
|
#include <limits.h>
|
2014-02-28 10:40:55 +01:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
/* Allow for C++ users compiling this directly. */
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2014-12-19 10:55:25 +01:00
|
|
|
/* The following option bits can be passed to pcre2_compile(), pcre2_match(),
|
|
|
|
or pcre2_dfa_match(). PCRE2_NO_UTF_CHECK affects only the function to which it
|
|
|
|
is passed. Put these bits at the most significant end of the options word so
|
2014-08-15 12:07:50 +02:00
|
|
|
others can be added next to them */
|
2014-02-28 10:40:55 +01:00
|
|
|
|
2014-08-15 12:07:50 +02:00
|
|
|
#define PCRE2_ANCHORED 0x80000000u
|
2014-11-03 18:13:00 +01:00
|
|
|
#define PCRE2_NO_UTF_CHECK 0x40000000u
|
2014-02-28 10:40:55 +01:00
|
|
|
|
2014-12-19 10:55:25 +01:00
|
|
|
/* The following option bits can be passed only to pcre2_compile(). However,
|
|
|
|
they may affect compilation, JIT compilation, and/or interpretive execution.
|
|
|
|
The following tags indicate which:
|
2014-02-28 10:40:55 +01:00
|
|
|
|
2014-12-19 10:55:25 +01:00
|
|
|
C alters what is compiled by pcre2_compile()
|
|
|
|
J alters what is compiled by pcre2_jit_compile()
|
2014-11-03 18:13:00 +01:00
|
|
|
M is inspected during pcre2_match() execution
|
2014-06-23 18:41:29 +02:00
|
|
|
D is inspected during pcre2_dfa_match() execution
|
|
|
|
*/
|
2014-02-28 10:40:55 +01:00
|
|
|
|
2014-08-15 12:07:50 +02:00
|
|
|
#define PCRE2_ALLOW_EMPTY_CLASS 0x00000001u /* C */
|
|
|
|
#define PCRE2_ALT_BSUX 0x00000002u /* C */
|
|
|
|
#define PCRE2_AUTO_CALLOUT 0x00000004u /* C */
|
|
|
|
#define PCRE2_CASELESS 0x00000008u /* C */
|
2014-11-03 18:13:00 +01:00
|
|
|
#define PCRE2_DOLLAR_ENDONLY 0x00000010u /* J M D */
|
2014-08-15 12:07:50 +02:00
|
|
|
#define PCRE2_DOTALL 0x00000020u /* C */
|
|
|
|
#define PCRE2_DUPNAMES 0x00000040u /* C */
|
|
|
|
#define PCRE2_EXTENDED 0x00000080u /* C */
|
2014-11-03 18:13:00 +01:00
|
|
|
#define PCRE2_FIRSTLINE 0x00000100u /* J M D */
|
|
|
|
#define PCRE2_MATCH_UNSET_BACKREF 0x00000200u /* C J M */
|
2014-08-15 12:07:50 +02:00
|
|
|
#define PCRE2_MULTILINE 0x00000400u /* C */
|
|
|
|
#define PCRE2_NEVER_UCP 0x00000800u /* C */
|
|
|
|
#define PCRE2_NEVER_UTF 0x00001000u /* C */
|
|
|
|
#define PCRE2_NO_AUTO_CAPTURE 0x00002000u /* C */
|
|
|
|
#define PCRE2_NO_AUTO_POSSESS 0x00004000u /* C */
|
2015-01-05 17:02:11 +01:00
|
|
|
#define PCRE2_NO_DOTSTAR_ANCHOR 0x00008000u /* C */
|
|
|
|
#define PCRE2_NO_START_OPTIMIZE 0x00010000u /* J M D */
|
|
|
|
#define PCRE2_UCP 0x00020000u /* C J M D */
|
|
|
|
#define PCRE2_UNGREEDY 0x00040000u /* C */
|
|
|
|
#define PCRE2_UTF 0x00080000u /* C J M D */
|
2014-02-28 10:40:55 +01:00
|
|
|
|
|
|
|
/* These are for pcre2_jit_compile(). */
|
|
|
|
|
2014-11-03 18:13:00 +01:00
|
|
|
#define PCRE2_JIT_COMPLETE 0x00000001u /* For full matching */
|
2014-08-15 12:07:50 +02:00
|
|
|
#define PCRE2_JIT_PARTIAL_SOFT 0x00000002u
|
|
|
|
#define PCRE2_JIT_PARTIAL_HARD 0x00000004u
|
2014-02-28 10:40:55 +01:00
|
|
|
|
2014-08-15 12:07:50 +02:00
|
|
|
/* These are for pcre2_match() and pcre2_dfa_match(). Note that PCRE2_ANCHORED,
|
2014-11-24 16:31:28 +01:00
|
|
|
and PCRE2_NO_UTF_CHECK can also be passed to these functions, so take care not
|
|
|
|
to define synonyms by mistake. */
|
2014-02-28 10:40:55 +01:00
|
|
|
|
2014-08-15 12:07:50 +02:00
|
|
|
#define PCRE2_NOTBOL 0x00000001u
|
|
|
|
#define PCRE2_NOTEOL 0x00000002u
|
2014-11-03 18:13:00 +01:00
|
|
|
#define PCRE2_NOTEMPTY 0x00000004u /* ) These two must be kept */
|
|
|
|
#define PCRE2_NOTEMPTY_ATSTART 0x00000008u /* ) adjacent to each other. */
|
2014-08-15 12:07:50 +02:00
|
|
|
#define PCRE2_PARTIAL_SOFT 0x00000010u
|
|
|
|
#define PCRE2_PARTIAL_HARD 0x00000020u
|
2014-02-28 10:40:55 +01:00
|
|
|
|
2014-06-23 18:41:29 +02:00
|
|
|
/* These are additional options for pcre2_dfa_match(). */
|
2014-02-28 10:40:55 +01:00
|
|
|
|
2014-08-15 12:07:50 +02:00
|
|
|
#define PCRE2_DFA_RESTART 0x00000040u
|
|
|
|
#define PCRE2_DFA_SHORTEST 0x00000080u
|
2014-02-28 10:40:55 +01:00
|
|
|
|
2014-11-24 16:31:28 +01:00
|
|
|
/* This is an additional option for pcre2_substitute(). */
|
|
|
|
|
|
|
|
#define PCRE2_SUBSTITUTE_GLOBAL 0x00000100u
|
|
|
|
|
2014-11-03 18:13:00 +01:00
|
|
|
/* Newline and \R settings, for use in compile contexts. The newline values
|
|
|
|
must be kept in step with values set in config.h and both sets must all be
|
|
|
|
greater than zero. */
|
2014-02-28 10:40:55 +01:00
|
|
|
|
2014-06-23 18:41:29 +02:00
|
|
|
#define PCRE2_NEWLINE_CR 1
|
|
|
|
#define PCRE2_NEWLINE_LF 2
|
|
|
|
#define PCRE2_NEWLINE_CRLF 3
|
|
|
|
#define PCRE2_NEWLINE_ANY 4
|
|
|
|
#define PCRE2_NEWLINE_ANYCRLF 5
|
2014-02-28 10:40:55 +01:00
|
|
|
|
2014-06-23 18:41:29 +02:00
|
|
|
#define PCRE2_BSR_UNICODE 1
|
|
|
|
#define PCRE2_BSR_ANYCRLF 2
|
2014-02-28 10:40:55 +01:00
|
|
|
|
2014-06-23 18:41:29 +02:00
|
|
|
/* Error codes: no match and partial match are "expected" errors. */
|
2014-02-28 10:40:55 +01:00
|
|
|
|
|
|
|
#define PCRE2_ERROR_NOMATCH (-1)
|
2014-06-23 18:41:29 +02:00
|
|
|
#define PCRE2_ERROR_PARTIAL (-2)
|
|
|
|
|
|
|
|
/* Error codes for UTF-8 validity checks */
|
|
|
|
|
|
|
|
#define PCRE2_ERROR_UTF8_ERR1 (-3)
|
|
|
|
#define PCRE2_ERROR_UTF8_ERR2 (-4)
|
|
|
|
#define PCRE2_ERROR_UTF8_ERR3 (-5)
|
|
|
|
#define PCRE2_ERROR_UTF8_ERR4 (-6)
|
|
|
|
#define PCRE2_ERROR_UTF8_ERR5 (-7)
|
|
|
|
#define PCRE2_ERROR_UTF8_ERR6 (-8)
|
|
|
|
#define PCRE2_ERROR_UTF8_ERR7 (-9)
|
|
|
|
#define PCRE2_ERROR_UTF8_ERR8 (-10)
|
|
|
|
#define PCRE2_ERROR_UTF8_ERR9 (-11)
|
|
|
|
#define PCRE2_ERROR_UTF8_ERR10 (-12)
|
|
|
|
#define PCRE2_ERROR_UTF8_ERR11 (-13)
|
|
|
|
#define PCRE2_ERROR_UTF8_ERR12 (-14)
|
|
|
|
#define PCRE2_ERROR_UTF8_ERR13 (-15)
|
|
|
|
#define PCRE2_ERROR_UTF8_ERR14 (-16)
|
|
|
|
#define PCRE2_ERROR_UTF8_ERR15 (-17)
|
|
|
|
#define PCRE2_ERROR_UTF8_ERR16 (-18)
|
|
|
|
#define PCRE2_ERROR_UTF8_ERR17 (-19)
|
|
|
|
#define PCRE2_ERROR_UTF8_ERR18 (-20)
|
|
|
|
#define PCRE2_ERROR_UTF8_ERR19 (-21)
|
|
|
|
#define PCRE2_ERROR_UTF8_ERR20 (-22)
|
|
|
|
#define PCRE2_ERROR_UTF8_ERR21 (-23)
|
|
|
|
|
|
|
|
/* Error codes for UTF-16 validity checks */
|
|
|
|
|
|
|
|
#define PCRE2_ERROR_UTF16_ERR1 (-24)
|
|
|
|
#define PCRE2_ERROR_UTF16_ERR2 (-25)
|
|
|
|
#define PCRE2_ERROR_UTF16_ERR3 (-26)
|
|
|
|
|
|
|
|
/* Error codes for UTF-32 validity checks */
|
|
|
|
|
|
|
|
#define PCRE2_ERROR_UTF32_ERR1 (-27)
|
|
|
|
#define PCRE2_ERROR_UTF32_ERR2 (-28)
|
|
|
|
|
2015-02-20 12:20:40 +01:00
|
|
|
/* Error codes for pcre2[_dfa]_match(), substring extraction functions, context
|
|
|
|
functions, and serializing functions. They are in numerical order. Originally
|
|
|
|
they were in alphabetical order too, but now that PCRE2 is released, the
|
|
|
|
numbers must not be changed. */
|
2014-11-03 18:13:00 +01:00
|
|
|
|
|
|
|
#define PCRE2_ERROR_BADDATA (-29)
|
2015-02-20 12:20:40 +01:00
|
|
|
#define PCRE2_ERROR_MIXEDTABLES (-30) /* Name was changed */
|
2014-11-03 18:13:00 +01:00
|
|
|
#define PCRE2_ERROR_BADMAGIC (-31)
|
|
|
|
#define PCRE2_ERROR_BADMODE (-32)
|
|
|
|
#define PCRE2_ERROR_BADOFFSET (-33)
|
|
|
|
#define PCRE2_ERROR_BADOPTION (-34)
|
2014-11-24 16:31:28 +01:00
|
|
|
#define PCRE2_ERROR_BADREPLACEMENT (-35)
|
|
|
|
#define PCRE2_ERROR_BADUTFOFFSET (-36)
|
|
|
|
#define PCRE2_ERROR_CALLOUT (-37) /* Never used by PCRE2 itself */
|
|
|
|
#define PCRE2_ERROR_DFA_BADRESTART (-38)
|
|
|
|
#define PCRE2_ERROR_DFA_RECURSE (-39)
|
|
|
|
#define PCRE2_ERROR_DFA_UCOND (-40)
|
2014-12-19 10:55:25 +01:00
|
|
|
#define PCRE2_ERROR_DFA_UFUNC (-41)
|
|
|
|
#define PCRE2_ERROR_DFA_UITEM (-42)
|
|
|
|
#define PCRE2_ERROR_DFA_WSSIZE (-43)
|
|
|
|
#define PCRE2_ERROR_INTERNAL (-44)
|
|
|
|
#define PCRE2_ERROR_JIT_BADOPTION (-45)
|
|
|
|
#define PCRE2_ERROR_JIT_STACKLIMIT (-46)
|
|
|
|
#define PCRE2_ERROR_MATCHLIMIT (-47)
|
|
|
|
#define PCRE2_ERROR_NOMEMORY (-48)
|
|
|
|
#define PCRE2_ERROR_NOSUBSTRING (-49)
|
|
|
|
#define PCRE2_ERROR_NOUNIQUESUBSTRING (-50)
|
|
|
|
#define PCRE2_ERROR_NULL (-51)
|
|
|
|
#define PCRE2_ERROR_RECURSELOOP (-52)
|
|
|
|
#define PCRE2_ERROR_RECURSIONLIMIT (-53)
|
|
|
|
#define PCRE2_ERROR_UNAVAILABLE (-54)
|
|
|
|
#define PCRE2_ERROR_UNSET (-55)
|
2014-06-23 18:41:29 +02:00
|
|
|
|
|
|
|
/* Request types for pcre2_pattern_info() */
|
|
|
|
|
2014-08-15 12:07:50 +02:00
|
|
|
#define PCRE2_INFO_ALLOPTIONS 0
|
|
|
|
#define PCRE2_INFO_ARGOPTIONS 1
|
|
|
|
#define PCRE2_INFO_BACKREFMAX 2
|
|
|
|
#define PCRE2_INFO_BSR 3
|
|
|
|
#define PCRE2_INFO_CAPTURECOUNT 4
|
|
|
|
#define PCRE2_INFO_FIRSTCODEUNIT 5
|
|
|
|
#define PCRE2_INFO_FIRSTCODETYPE 6
|
|
|
|
#define PCRE2_INFO_FIRSTBITMAP 7
|
|
|
|
#define PCRE2_INFO_HASCRORLF 8
|
|
|
|
#define PCRE2_INFO_JCHANGED 9
|
2014-06-23 18:41:29 +02:00
|
|
|
#define PCRE2_INFO_JITSIZE 10
|
|
|
|
#define PCRE2_INFO_LASTCODEUNIT 11
|
|
|
|
#define PCRE2_INFO_LASTCODETYPE 12
|
2014-08-15 12:07:50 +02:00
|
|
|
#define PCRE2_INFO_MATCHEMPTY 13
|
|
|
|
#define PCRE2_INFO_MATCHLIMIT 14
|
2014-06-23 18:41:29 +02:00
|
|
|
#define PCRE2_INFO_MAXLOOKBEHIND 15
|
|
|
|
#define PCRE2_INFO_MINLENGTH 16
|
|
|
|
#define PCRE2_INFO_NAMECOUNT 17
|
|
|
|
#define PCRE2_INFO_NAMEENTRYSIZE 18
|
|
|
|
#define PCRE2_INFO_NAMETABLE 19
|
2014-08-15 12:07:50 +02:00
|
|
|
#define PCRE2_INFO_NEWLINE 20
|
|
|
|
#define PCRE2_INFO_RECURSIONLIMIT 21
|
|
|
|
#define PCRE2_INFO_SIZE 22
|
2014-02-28 10:40:55 +01:00
|
|
|
|
|
|
|
/* Request types for pcre2_config(). */
|
|
|
|
|
|
|
|
#define PCRE2_CONFIG_BSR 0
|
|
|
|
#define PCRE2_CONFIG_JIT 1
|
|
|
|
#define PCRE2_CONFIG_JITTARGET 2
|
2014-08-15 12:07:50 +02:00
|
|
|
#define PCRE2_CONFIG_LINKSIZE 3
|
|
|
|
#define PCRE2_CONFIG_MATCHLIMIT 4
|
2014-11-28 14:58:17 +01:00
|
|
|
#define PCRE2_CONFIG_NEWLINE 5
|
|
|
|
#define PCRE2_CONFIG_PARENSLIMIT 6
|
|
|
|
#define PCRE2_CONFIG_RECURSIONLIMIT 7
|
2014-06-23 18:41:29 +02:00
|
|
|
#define PCRE2_CONFIG_STACKRECURSE 8
|
2014-11-03 18:13:00 +01:00
|
|
|
#define PCRE2_CONFIG_UNICODE 9
|
|
|
|
#define PCRE2_CONFIG_UNICODE_VERSION 10
|
2014-08-15 12:07:50 +02:00
|
|
|
#define PCRE2_CONFIG_VERSION 11
|
2014-06-23 18:41:29 +02:00
|
|
|
|
2014-08-15 12:07:50 +02:00
|
|
|
/* Types for code units in patterns and subject strings. */
|
2014-02-28 10:40:55 +01:00
|
|
|
|
|
|
|
typedef uint8_t PCRE2_UCHAR8;
|
|
|
|
typedef uint16_t PCRE2_UCHAR16;
|
|
|
|
typedef uint32_t PCRE2_UCHAR32;
|
|
|
|
|
|
|
|
typedef const PCRE2_UCHAR8 *PCRE2_SPTR8;
|
|
|
|
typedef const PCRE2_UCHAR16 *PCRE2_SPTR16;
|
|
|
|
typedef const PCRE2_UCHAR32 *PCRE2_SPTR32;
|
|
|
|
|
2014-11-03 18:13:00 +01:00
|
|
|
/* The PCRE2_SIZE type is used for all string lengths and offsets in PCRE2,
|
|
|
|
including pattern offsets for errors and subject offsets after a match. We
|
|
|
|
define special values to indicate zero-terminated strings and unset offsets in
|
|
|
|
the offset vector (ovector). */
|
2014-08-15 12:07:50 +02:00
|
|
|
|
2014-11-03 18:13:00 +01:00
|
|
|
#define PCRE2_SIZE size_t
|
|
|
|
#define PCRE2_ZERO_TERMINATED (~(PCRE2_SIZE)0)
|
|
|
|
#define PCRE2_UNSET (~(PCRE2_SIZE)0)
|
2014-06-23 18:41:29 +02:00
|
|
|
|
2014-02-28 10:40:55 +01:00
|
|
|
/* Generic types for opaque structures and JIT callback functions. These
|
|
|
|
declarations are defined in a macro that is expanded for each width later. */
|
|
|
|
|
|
|
|
#define PCRE2_TYPES_LIST \
|
2014-06-23 18:41:29 +02:00
|
|
|
struct pcre2_real_general_context; \
|
|
|
|
typedef struct pcre2_real_general_context pcre2_general_context; \
|
2014-02-28 10:40:55 +01:00
|
|
|
\
|
2014-06-23 18:41:29 +02:00
|
|
|
struct pcre2_real_compile_context; \
|
|
|
|
typedef struct pcre2_real_compile_context pcre2_compile_context; \
|
|
|
|
\
|
|
|
|
struct pcre2_real_match_context; \
|
|
|
|
typedef struct pcre2_real_match_context pcre2_match_context; \
|
|
|
|
\
|
|
|
|
struct pcre2_real_code; \
|
|
|
|
typedef struct pcre2_real_code pcre2_code; \
|
2014-02-28 10:40:55 +01:00
|
|
|
\
|
|
|
|
struct pcre2_real_match_data; \
|
|
|
|
typedef struct pcre2_real_match_data pcre2_match_data; \
|
|
|
|
\
|
|
|
|
struct pcre2_real_jit_stack; \
|
|
|
|
typedef struct pcre2_real_jit_stack pcre2_jit_stack; \
|
|
|
|
\
|
|
|
|
typedef pcre2_jit_stack *(*pcre2_jit_callback)(void *);
|
|
|
|
|
2014-06-23 18:41:29 +02:00
|
|
|
|
2014-02-28 10:40:55 +01:00
|
|
|
/* The structure for passing out data via the pcre_callout_function. We use a
|
|
|
|
structure so that new fields can be added on the end in future versions,
|
|
|
|
without changing the API of the function, thereby allowing old clients to work
|
|
|
|
without modification. Define the generic version in a macro; the width-specific
|
|
|
|
versions are generated from this macro below. */
|
|
|
|
|
|
|
|
#define PCRE2_STRUCTURE_LIST \
|
|
|
|
typedef struct pcre2_callout_block { \
|
2014-11-03 18:13:00 +01:00
|
|
|
uint32_t version; /* Identifies version of block */ \
|
2014-02-28 10:40:55 +01:00
|
|
|
/* ------------------------ Version 0 ------------------------------- */ \
|
2014-08-15 12:07:50 +02:00
|
|
|
uint32_t callout_number; /* Number compiled into pattern */ \
|
|
|
|
uint32_t capture_top; /* Max current capture */ \
|
|
|
|
uint32_t capture_last; /* Most recently closed capture */ \
|
2014-11-03 18:13:00 +01:00
|
|
|
PCRE2_SIZE *offset_vector; /* The offset vector */ \
|
|
|
|
PCRE2_SPTR mark; /* Pointer to current mark or NULL */ \
|
|
|
|
PCRE2_SPTR subject; /* The subject being matched */ \
|
|
|
|
PCRE2_SIZE subject_length; /* The length of the subject */ \
|
|
|
|
PCRE2_SIZE start_match; /* Offset to start of this match attempt */ \
|
|
|
|
PCRE2_SIZE current_position; /* Where we currently are in the subject */ \
|
|
|
|
PCRE2_SIZE pattern_position; /* Offset to next item in the pattern */ \
|
|
|
|
PCRE2_SIZE next_item_length; /* Length of next item in the pattern */ \
|
2014-02-28 10:40:55 +01:00
|
|
|
/* ------------------------------------------------------------------ */ \
|
|
|
|
} pcre2_callout_block;
|
|
|
|
|
2014-06-23 18:41:29 +02:00
|
|
|
|
|
|
|
/* List the generic forms of all other functions in macros, which will be
|
|
|
|
expanded for each width below. Start with functions that give general
|
|
|
|
information. */
|
|
|
|
|
|
|
|
#define PCRE2_GENERAL_INFO_FUNCTIONS \
|
2014-11-03 18:13:00 +01:00
|
|
|
PCRE2_EXP_DECL int pcre2_config(uint32_t, void *);
|
2014-06-23 18:41:29 +02:00
|
|
|
|
|
|
|
|
|
|
|
/* Functions for manipulating contexts. */
|
|
|
|
|
|
|
|
#define PCRE2_GENERAL_CONTEXT_FUNCTIONS \
|
2014-02-28 10:40:55 +01:00
|
|
|
PCRE2_EXP_DECL \
|
2014-06-23 18:41:29 +02:00
|
|
|
pcre2_general_context *pcre2_general_context_copy(pcre2_general_context *); \
|
|
|
|
PCRE2_EXP_DECL \
|
|
|
|
pcre2_general_context *pcre2_general_context_create( \
|
2014-11-03 18:13:00 +01:00
|
|
|
void *(*)(PCRE2_SIZE, void *), \
|
2014-08-15 12:07:50 +02:00
|
|
|
void (*)(void *, void *), void *); \
|
2014-06-23 18:41:29 +02:00
|
|
|
PCRE2_EXP_DECL void pcre2_general_context_free(pcre2_general_context *);
|
|
|
|
|
|
|
|
#define PCRE2_COMPILE_CONTEXT_FUNCTIONS \
|
|
|
|
PCRE2_EXP_DECL \
|
|
|
|
pcre2_compile_context *pcre2_compile_context_copy(pcre2_compile_context *); \
|
|
|
|
PCRE2_EXP_DECL \
|
|
|
|
pcre2_compile_context *pcre2_compile_context_create(pcre2_general_context *);\
|
|
|
|
PCRE2_EXP_DECL void pcre2_compile_context_free(pcre2_compile_context *); \
|
2014-11-03 18:13:00 +01:00
|
|
|
PCRE2_EXP_DECL int pcre2_set_bsr(pcre2_compile_context *, uint32_t); \
|
2014-06-23 18:41:29 +02:00
|
|
|
PCRE2_EXP_DECL int pcre2_set_character_tables(pcre2_compile_context *, \
|
|
|
|
const unsigned char *); \
|
2014-11-03 18:13:00 +01:00
|
|
|
PCRE2_EXP_DECL int pcre2_set_newline(pcre2_compile_context *, uint32_t); \
|
2014-06-23 18:41:29 +02:00
|
|
|
PCRE2_EXP_DECL int pcre2_set_parens_nest_limit(pcre2_compile_context *, \
|
|
|
|
uint32_t); \
|
|
|
|
PCRE2_EXP_DECL int pcre2_set_compile_recursion_guard(\
|
2014-11-28 14:58:17 +01:00
|
|
|
pcre2_compile_context *, int (*)(uint32_t, void *), \
|
|
|
|
void *);
|
2014-06-23 18:41:29 +02:00
|
|
|
|
|
|
|
#define PCRE2_MATCH_CONTEXT_FUNCTIONS \
|
|
|
|
PCRE2_EXP_DECL \
|
|
|
|
pcre2_match_context *pcre2_match_context_copy(pcre2_match_context *); \
|
|
|
|
PCRE2_EXP_DECL \
|
|
|
|
pcre2_match_context *pcre2_match_context_create(pcre2_general_context *); \
|
|
|
|
PCRE2_EXP_DECL void pcre2_match_context_free(pcre2_match_context *); \
|
|
|
|
PCRE2_EXP_DECL int pcre2_set_callout(pcre2_match_context *, \
|
2014-11-28 14:58:17 +01:00
|
|
|
int (*)(pcre2_callout_block *, void *), void *); \
|
2014-06-23 18:41:29 +02:00
|
|
|
PCRE2_EXP_DECL int pcre2_set_match_limit(pcre2_match_context *, \
|
|
|
|
uint32_t); \
|
|
|
|
PCRE2_EXP_DECL int pcre2_set_recursion_limit(pcre2_match_context *, \
|
|
|
|
uint32_t); \
|
|
|
|
PCRE2_EXP_DECL int pcre2_set_recursion_memory_management( \
|
2014-11-03 18:13:00 +01:00
|
|
|
pcre2_match_context *, void *(*)(PCRE2_SIZE, void *), \
|
2014-08-15 12:07:50 +02:00
|
|
|
void (*)(void *, void *), void *);
|
2014-06-23 18:41:29 +02:00
|
|
|
|
|
|
|
|
|
|
|
/* Functions concerned with compiling a pattern to PCRE internal code. */
|
|
|
|
|
|
|
|
#define PCRE2_COMPILE_FUNCTIONS \
|
|
|
|
PCRE2_EXP_DECL \
|
2014-11-03 18:13:00 +01:00
|
|
|
pcre2_code *pcre2_compile(PCRE2_SPTR, PCRE2_SIZE, uint32_t, \
|
|
|
|
int *, PCRE2_SIZE *, pcre2_compile_context *); \
|
2014-06-23 18:41:29 +02:00
|
|
|
PCRE2_EXP_DECL void pcre2_code_free(pcre2_code *);
|
|
|
|
|
|
|
|
|
|
|
|
/* Functions that give information about a compiled pattern. */
|
|
|
|
|
|
|
|
#define PCRE2_PATTERN_INFO_FUNCTIONS \
|
|
|
|
PCRE2_EXP_DECL int pcre2_pattern_info(const pcre2_code *, uint32_t, \
|
|
|
|
void *);
|
|
|
|
|
|
|
|
|
|
|
|
/* Functions for running a match and inspecting the result. */
|
|
|
|
|
|
|
|
#define PCRE2_MATCH_FUNCTIONS \
|
2014-02-28 10:40:55 +01:00
|
|
|
PCRE2_EXP_DECL \
|
2014-11-03 18:13:00 +01:00
|
|
|
pcre2_match_data *pcre2_match_data_create(uint32_t, \
|
|
|
|
pcre2_general_context *); \
|
2014-06-23 18:41:29 +02:00
|
|
|
PCRE2_EXP_DECL \
|
2014-11-24 16:31:28 +01:00
|
|
|
pcre2_match_data *pcre2_match_data_create_from_pattern(\
|
|
|
|
const pcre2_code *, \
|
2014-11-03 18:13:00 +01:00
|
|
|
pcre2_general_context *); \
|
|
|
|
PCRE2_EXP_DECL int pcre2_dfa_match(const pcre2_code *, PCRE2_SPTR, \
|
|
|
|
PCRE2_SIZE, PCRE2_SIZE, uint32_t, \
|
|
|
|
pcre2_match_data *, pcre2_match_context *, int *, \
|
|
|
|
PCRE2_SIZE); \
|
|
|
|
PCRE2_EXP_DECL int pcre2_match(const pcre2_code *, \
|
|
|
|
PCRE2_SPTR, PCRE2_SIZE, PCRE2_SIZE, uint32_t, \
|
|
|
|
pcre2_match_data *, pcre2_match_context *); \
|
|
|
|
PCRE2_EXP_DECL void pcre2_match_data_free(pcre2_match_data *); \
|
|
|
|
PCRE2_EXP_DECL PCRE2_SPTR pcre2_get_mark(pcre2_match_data *); \
|
|
|
|
PCRE2_EXP_DECL uint32_t pcre2_get_ovector_count(pcre2_match_data *); \
|
|
|
|
PCRE2_EXP_DECL PCRE2_SIZE *pcre2_get_ovector_pointer(pcre2_match_data *); \
|
|
|
|
PCRE2_EXP_DECL PCRE2_SIZE pcre2_get_startchar(pcre2_match_data *);
|
2014-06-23 18:41:29 +02:00
|
|
|
|
|
|
|
|
|
|
|
/* Convenience functions for handling matched substrings. */
|
|
|
|
|
|
|
|
#define PCRE2_SUBSTRING_FUNCTIONS \
|
|
|
|
PCRE2_EXP_DECL int pcre2_substring_copy_byname(pcre2_match_data *, \
|
2014-11-03 18:13:00 +01:00
|
|
|
PCRE2_SPTR, PCRE2_UCHAR *, PCRE2_SIZE *); \
|
2014-06-23 18:41:29 +02:00
|
|
|
PCRE2_EXP_DECL int pcre2_substring_copy_bynumber(pcre2_match_data *, \
|
2014-12-19 10:55:25 +01:00
|
|
|
uint32_t, PCRE2_UCHAR *, PCRE2_SIZE *); \
|
2014-06-23 18:41:29 +02:00
|
|
|
PCRE2_EXP_DECL void pcre2_substring_free(PCRE2_UCHAR *); \
|
|
|
|
PCRE2_EXP_DECL int pcre2_substring_get_byname(pcre2_match_data *, \
|
2014-11-03 18:13:00 +01:00
|
|
|
PCRE2_SPTR, PCRE2_UCHAR **, PCRE2_SIZE *); \
|
2014-06-23 18:41:29 +02:00
|
|
|
PCRE2_EXP_DECL int pcre2_substring_get_bynumber(pcre2_match_data *, \
|
2014-12-19 10:55:25 +01:00
|
|
|
uint32_t, PCRE2_UCHAR **, PCRE2_SIZE *); \
|
2014-06-23 18:41:29 +02:00
|
|
|
PCRE2_EXP_DECL int pcre2_substring_length_byname(pcre2_match_data *, \
|
2014-11-03 18:13:00 +01:00
|
|
|
PCRE2_SPTR, PCRE2_SIZE *); \
|
2014-06-23 18:41:29 +02:00
|
|
|
PCRE2_EXP_DECL int pcre2_substring_length_bynumber(pcre2_match_data *, \
|
2014-12-19 10:55:25 +01:00
|
|
|
uint32_t, PCRE2_SIZE *); \
|
2014-06-23 18:41:29 +02:00
|
|
|
PCRE2_EXP_DECL int pcre2_substring_nametable_scan(const pcre2_code *, \
|
|
|
|
PCRE2_SPTR, PCRE2_SPTR *, PCRE2_SPTR *); \
|
|
|
|
PCRE2_EXP_DECL int pcre2_substring_number_from_name(\
|
|
|
|
const pcre2_code *, PCRE2_SPTR); \
|
|
|
|
PCRE2_EXP_DECL void pcre2_substring_list_free(PCRE2_SPTR *); \
|
|
|
|
PCRE2_EXP_DECL int pcre2_substring_list_get(pcre2_match_data *, \
|
2014-11-03 18:13:00 +01:00
|
|
|
PCRE2_UCHAR ***, PCRE2_SIZE **);
|
2014-06-23 18:41:29 +02:00
|
|
|
|
2015-01-23 17:51:47 +01:00
|
|
|
/* Functions for serializing / deserializing compiled patterns. */
|
|
|
|
|
|
|
|
#define PCRE2_SERIALIZE_FUNCTIONS \
|
2015-02-20 12:20:40 +01:00
|
|
|
PCRE2_EXP_DECL int32_t pcre2_serialize_encode(const pcre2_code **, \
|
|
|
|
int32_t, uint8_t **, PCRE2_SIZE *, \
|
2015-01-23 17:51:47 +01:00
|
|
|
pcre2_general_context *); \
|
2015-02-20 12:20:40 +01:00
|
|
|
PCRE2_EXP_DECL int32_t pcre2_serialize_decode(pcre2_code **, int32_t, \
|
2015-01-23 17:51:47 +01:00
|
|
|
const uint8_t *, pcre2_general_context *); \
|
2015-02-20 12:20:40 +01:00
|
|
|
PCRE2_EXP_DECL int32_t pcre2_serialize_get_number_of_codes(const uint8_t *); \
|
2015-01-23 17:51:47 +01:00
|
|
|
PCRE2_EXP_DECL void pcre2_serialize_free(uint8_t *);
|
|
|
|
|
2014-06-23 18:41:29 +02:00
|
|
|
|
2014-11-24 16:31:28 +01:00
|
|
|
/* Convenience function for match + substitute. */
|
|
|
|
|
|
|
|
#define PCRE2_SUBSTITUTE_FUNCTION \
|
|
|
|
PCRE2_EXP_DECL int pcre2_substitute(const pcre2_code *, \
|
|
|
|
PCRE2_SPTR, PCRE2_SIZE, PCRE2_SIZE, uint32_t, \
|
|
|
|
pcre2_match_data *, pcre2_match_context *, \
|
|
|
|
PCRE2_SPTR, PCRE2_SIZE, PCRE2_UCHAR *, \
|
|
|
|
PCRE2_SIZE *);
|
|
|
|
|
|
|
|
|
2014-06-23 18:41:29 +02:00
|
|
|
/* Functions for JIT processing */
|
|
|
|
|
|
|
|
#define PCRE2_JIT_FUNCTIONS \
|
2014-11-03 18:13:00 +01:00
|
|
|
PCRE2_EXP_DECL int pcre2_jit_compile(pcre2_code *, uint32_t); \
|
2014-06-23 18:41:29 +02:00
|
|
|
PCRE2_EXP_DECL int pcre2_jit_match(const pcre2_code *, \
|
2014-11-03 18:13:00 +01:00
|
|
|
PCRE2_SPTR, PCRE2_SIZE, PCRE2_SIZE, uint32_t, \
|
2014-11-24 16:31:28 +01:00
|
|
|
pcre2_match_data *, pcre2_match_context *); \
|
|
|
|
PCRE2_EXP_DECL void pcre2_jit_free_unused_memory(pcre2_general_context *); \
|
2014-02-28 10:40:55 +01:00
|
|
|
PCRE2_EXP_DECL \
|
2014-11-28 14:58:17 +01:00
|
|
|
pcre2_jit_stack *pcre2_jit_stack_create(PCRE2_SIZE, PCRE2_SIZE, \
|
|
|
|
pcre2_general_context *); \
|
2014-11-24 16:31:28 +01:00
|
|
|
PCRE2_EXP_DECL void pcre2_jit_stack_assign(pcre2_match_context *, \
|
2014-06-23 18:41:29 +02:00
|
|
|
pcre2_jit_callback, void *); \
|
|
|
|
PCRE2_EXP_DECL void pcre2_jit_stack_free(pcre2_jit_stack *);
|
|
|
|
|
|
|
|
|
|
|
|
/* Other miscellaneous functions. */
|
|
|
|
|
|
|
|
#define PCRE2_OTHER_FUNCTIONS \
|
2014-11-03 18:13:00 +01:00
|
|
|
PCRE2_EXP_DECL int pcre2_get_error_message(int, PCRE2_UCHAR *, PCRE2_SIZE); \
|
2014-02-28 10:40:55 +01:00
|
|
|
PCRE2_EXP_DECL \
|
2014-08-15 12:07:50 +02:00
|
|
|
const uint8_t *pcre2_maketables(pcre2_general_context *); \
|
2014-02-28 10:40:55 +01:00
|
|
|
|
|
|
|
|
|
|
|
/* Define macros that generate width-specific names from generic versions. The
|
|
|
|
three-level macro scheme is necessary to get the macros expanded when we want
|
|
|
|
them to be. First we get the width from PCRE2_LOCAL_WIDTH, which is used for
|
2014-06-23 18:41:29 +02:00
|
|
|
generating three versions of everything below. After that, PCRE2_SUFFIX will be
|
|
|
|
re-defined to use PCRE2_CODE_UNIT_WIDTH, for use when macros such as
|
|
|
|
pcre2_compile are called by application code. */
|
2014-02-28 10:40:55 +01:00
|
|
|
|
|
|
|
#define PCRE2_JOIN(a,b) a ## b
|
|
|
|
#define PCRE2_GLUE(a,b) PCRE2_JOIN(a,b)
|
2014-06-23 18:41:29 +02:00
|
|
|
#define PCRE2_SUFFIX(a) PCRE2_GLUE(a,PCRE2_LOCAL_WIDTH)
|
|
|
|
|
2014-02-28 10:40:55 +01:00
|
|
|
|
|
|
|
/* Data types */
|
|
|
|
|
2014-06-23 18:41:29 +02:00
|
|
|
#define PCRE2_UCHAR PCRE2_SUFFIX(PCRE2_UCHAR)
|
|
|
|
#define PCRE2_SPTR PCRE2_SUFFIX(PCRE2_SPTR)
|
2014-02-28 10:40:55 +01:00
|
|
|
|
2014-06-23 18:41:29 +02:00
|
|
|
#define pcre2_code PCRE2_SUFFIX(pcre2_code_)
|
|
|
|
#define pcre2_jit_callback PCRE2_SUFFIX(pcre2_jit_callback_)
|
|
|
|
#define pcre2_jit_stack PCRE2_SUFFIX(pcre2_jit_stack_)
|
|
|
|
|
|
|
|
#define pcre2_real_code PCRE2_SUFFIX(pcre2_real_code_)
|
|
|
|
#define pcre2_real_general_context PCRE2_SUFFIX(pcre2_real_general_context_)
|
|
|
|
#define pcre2_real_compile_context PCRE2_SUFFIX(pcre2_real_compile_context_)
|
|
|
|
#define pcre2_real_match_context PCRE2_SUFFIX(pcre2_real_match_context_)
|
|
|
|
#define pcre2_real_jit_stack PCRE2_SUFFIX(pcre2_real_jit_stack_)
|
|
|
|
#define pcre2_real_match_data PCRE2_SUFFIX(pcre2_real_match_data_)
|
2014-02-28 10:40:55 +01:00
|
|
|
|
|
|
|
|
|
|
|
/* Data blocks */
|
|
|
|
|
2014-06-23 18:41:29 +02:00
|
|
|
#define pcre2_callout_block PCRE2_SUFFIX(pcre2_callout_block_)
|
|
|
|
#define pcre2_general_context PCRE2_SUFFIX(pcre2_general_context_)
|
|
|
|
#define pcre2_compile_context PCRE2_SUFFIX(pcre2_compile_context_)
|
|
|
|
#define pcre2_match_context PCRE2_SUFFIX(pcre2_match_context_)
|
|
|
|
#define pcre2_match_data PCRE2_SUFFIX(pcre2_match_data_)
|
|
|
|
|
|
|
|
|
|
|
|
/* Functions: the complete list in alphabetical order */
|
|
|
|
|
2014-08-15 12:07:50 +02:00
|
|
|
#define pcre2_code_free PCRE2_SUFFIX(pcre2_code_free_)
|
2014-06-23 18:41:29 +02:00
|
|
|
#define pcre2_compile PCRE2_SUFFIX(pcre2_compile_)
|
2014-08-15 12:07:50 +02:00
|
|
|
#define pcre2_compile_context_copy PCRE2_SUFFIX(pcre2_compile_context_copy_)
|
|
|
|
#define pcre2_compile_context_create PCRE2_SUFFIX(pcre2_compile_context_create_)
|
|
|
|
#define pcre2_compile_context_free PCRE2_SUFFIX(pcre2_compile_context_free_)
|
2014-06-23 18:41:29 +02:00
|
|
|
#define pcre2_config PCRE2_SUFFIX(pcre2_config_)
|
|
|
|
#define pcre2_dfa_match PCRE2_SUFFIX(pcre2_dfa_match_)
|
|
|
|
#define pcre2_match PCRE2_SUFFIX(pcre2_match_)
|
2014-08-15 12:07:50 +02:00
|
|
|
#define pcre2_general_context_copy PCRE2_SUFFIX(pcre2_general_context_copy_)
|
|
|
|
#define pcre2_general_context_create PCRE2_SUFFIX(pcre2_general_context_create_)
|
|
|
|
#define pcre2_general_context_free PCRE2_SUFFIX(pcre2_general_context_free_)
|
2014-06-23 18:41:29 +02:00
|
|
|
#define pcre2_get_error_message PCRE2_SUFFIX(pcre2_get_error_message_)
|
|
|
|
#define pcre2_get_mark PCRE2_SUFFIX(pcre2_get_mark_)
|
|
|
|
#define pcre2_get_ovector_pointer PCRE2_SUFFIX(pcre2_get_ovector_pointer_)
|
|
|
|
#define pcre2_get_ovector_count PCRE2_SUFFIX(pcre2_get_ovector_count_)
|
|
|
|
#define pcre2_get_startchar PCRE2_SUFFIX(pcre2_get_startchar_)
|
|
|
|
#define pcre2_jit_compile PCRE2_SUFFIX(pcre2_jit_compile_)
|
|
|
|
#define pcre2_jit_match PCRE2_SUFFIX(pcre2_jit_match_)
|
|
|
|
#define pcre2_jit_free_unused_memory PCRE2_SUFFIX(pcre2_jit_free_unused_memory_)
|
|
|
|
#define pcre2_jit_stack_assign PCRE2_SUFFIX(pcre2_jit_stack_assign_)
|
2014-11-03 18:13:00 +01:00
|
|
|
#define pcre2_jit_stack_create PCRE2_SUFFIX(pcre2_jit_stack_create_)
|
2014-06-23 18:41:29 +02:00
|
|
|
#define pcre2_jit_stack_free PCRE2_SUFFIX(pcre2_jit_stack_free_)
|
|
|
|
#define pcre2_maketables PCRE2_SUFFIX(pcre2_maketables_)
|
2014-08-15 12:07:50 +02:00
|
|
|
#define pcre2_match_context_copy PCRE2_SUFFIX(pcre2_match_context_copy_)
|
|
|
|
#define pcre2_match_context_create PCRE2_SUFFIX(pcre2_match_context_create_)
|
|
|
|
#define pcre2_match_context_free PCRE2_SUFFIX(pcre2_match_context_free_)
|
|
|
|
#define pcre2_match_data_create PCRE2_SUFFIX(pcre2_match_data_create_)
|
|
|
|
#define pcre2_match_data_create_from_pattern PCRE2_SUFFIX(pcre2_match_data_create_from_pattern_)
|
|
|
|
#define pcre2_match_data_free PCRE2_SUFFIX(pcre2_match_data_free_)
|
2014-06-23 18:41:29 +02:00
|
|
|
#define pcre2_pattern_info PCRE2_SUFFIX(pcre2_pattern_info_)
|
2015-01-23 17:51:47 +01:00
|
|
|
#define pcre2_serialize_decode PCRE2_SUFFIX(pcre2_serialize_decode_)
|
|
|
|
#define pcre2_serialize_encode PCRE2_SUFFIX(pcre2_serialize_encode_)
|
|
|
|
#define pcre2_serialize_free PCRE2_SUFFIX(pcre2_serialize_free_)
|
|
|
|
#define pcre2_serialize_get_number_of_codes PCRE2_SUFFIX(pcre2_serialize_get_number_of_codes_)
|
2014-11-03 18:13:00 +01:00
|
|
|
#define pcre2_set_bsr PCRE2_SUFFIX(pcre2_set_bsr_)
|
2014-06-23 18:41:29 +02:00
|
|
|
#define pcre2_set_callout PCRE2_SUFFIX(pcre2_set_callout_)
|
|
|
|
#define pcre2_set_character_tables PCRE2_SUFFIX(pcre2_set_character_tables_)
|
|
|
|
#define pcre2_set_compile_recursion_guard PCRE2_SUFFIX(pcre2_set_compile_recursion_guard_)
|
|
|
|
#define pcre2_set_match_limit PCRE2_SUFFIX(pcre2_set_match_limit_)
|
2014-11-03 18:13:00 +01:00
|
|
|
#define pcre2_set_newline PCRE2_SUFFIX(pcre2_set_newline_)
|
2014-06-23 18:41:29 +02:00
|
|
|
#define pcre2_set_parens_nest_limit PCRE2_SUFFIX(pcre2_set_parens_nest_limit_)
|
|
|
|
#define pcre2_set_recursion_limit PCRE2_SUFFIX(pcre2_set_recursion_limit_)
|
|
|
|
#define pcre2_set_recursion_memory_management PCRE2_SUFFIX(pcre2_set_recursion_memory_management_)
|
2014-11-24 16:31:28 +01:00
|
|
|
#define pcre2_substitute PCRE2_SUFFIX(pcre2_substitute_)
|
2014-08-15 12:07:50 +02:00
|
|
|
#define pcre2_substring_copy_byname PCRE2_SUFFIX(pcre2_substring_copy_byname_)
|
|
|
|
#define pcre2_substring_copy_bynumber PCRE2_SUFFIX(pcre2_substring_copy_bynumber_)
|
|
|
|
#define pcre2_substring_free PCRE2_SUFFIX(pcre2_substring_free_)
|
|
|
|
#define pcre2_substring_get_byname PCRE2_SUFFIX(pcre2_substring_get_byname_)
|
|
|
|
#define pcre2_substring_get_bynumber PCRE2_SUFFIX(pcre2_substring_get_bynumber_)
|
|
|
|
#define pcre2_substring_length_byname PCRE2_SUFFIX(pcre2_substring_length_byname_)
|
|
|
|
#define pcre2_substring_length_bynumber PCRE2_SUFFIX(pcre2_substring_length_bynumber_)
|
|
|
|
#define pcre2_substring_list_get PCRE2_SUFFIX(pcre2_substring_list_get_)
|
|
|
|
#define pcre2_substring_list_free PCRE2_SUFFIX(pcre2_substring_list_free_)
|
|
|
|
#define pcre2_substring_nametable_scan PCRE2_SUFFIX(pcre2_substring_nametable_scan_)
|
|
|
|
#define pcre2_substring_number_from_name PCRE2_SUFFIX(pcre2_substring_number_from_name_)
|
2014-06-23 18:41:29 +02:00
|
|
|
|
2014-02-28 10:40:55 +01:00
|
|
|
|
|
|
|
/* Now generate all three sets of width-specific structures and function
|
|
|
|
prototypes. */
|
|
|
|
|
2014-06-23 18:41:29 +02:00
|
|
|
#define PCRE2_TYPES_STRUCTURES_AND_FUNCTIONS \
|
|
|
|
PCRE2_TYPES_LIST \
|
|
|
|
PCRE2_STRUCTURE_LIST \
|
|
|
|
PCRE2_GENERAL_INFO_FUNCTIONS \
|
|
|
|
PCRE2_GENERAL_CONTEXT_FUNCTIONS \
|
|
|
|
PCRE2_COMPILE_CONTEXT_FUNCTIONS \
|
|
|
|
PCRE2_MATCH_CONTEXT_FUNCTIONS \
|
|
|
|
PCRE2_COMPILE_FUNCTIONS \
|
|
|
|
PCRE2_PATTERN_INFO_FUNCTIONS \
|
|
|
|
PCRE2_MATCH_FUNCTIONS \
|
|
|
|
PCRE2_SUBSTRING_FUNCTIONS \
|
2015-01-23 17:51:47 +01:00
|
|
|
PCRE2_SERIALIZE_FUNCTIONS \
|
|
|
|
PCRE2_SUBSTITUTE_FUNCTION \
|
2014-06-23 18:41:29 +02:00
|
|
|
PCRE2_JIT_FUNCTIONS \
|
|
|
|
PCRE2_OTHER_FUNCTIONS
|
|
|
|
|
2014-02-28 10:40:55 +01:00
|
|
|
#define PCRE2_LOCAL_WIDTH 8
|
2014-06-23 18:41:29 +02:00
|
|
|
PCRE2_TYPES_STRUCTURES_AND_FUNCTIONS
|
2014-02-28 10:40:55 +01:00
|
|
|
#undef PCRE2_LOCAL_WIDTH
|
|
|
|
|
|
|
|
#define PCRE2_LOCAL_WIDTH 16
|
2014-06-23 18:41:29 +02:00
|
|
|
PCRE2_TYPES_STRUCTURES_AND_FUNCTIONS
|
2014-02-28 10:40:55 +01:00
|
|
|
#undef PCRE2_LOCAL_WIDTH
|
|
|
|
|
|
|
|
#define PCRE2_LOCAL_WIDTH 32
|
2014-06-23 18:41:29 +02:00
|
|
|
PCRE2_TYPES_STRUCTURES_AND_FUNCTIONS
|
2014-02-28 10:40:55 +01:00
|
|
|
#undef PCRE2_LOCAL_WIDTH
|
|
|
|
|
2014-06-23 18:41:29 +02:00
|
|
|
/* Undefine the list macros; they are no longer needed. */
|
|
|
|
|
2014-02-28 10:40:55 +01:00
|
|
|
#undef PCRE2_TYPES_LIST
|
|
|
|
#undef PCRE2_STRUCTURE_LIST
|
2014-06-23 18:41:29 +02:00
|
|
|
#undef PCRE2_GENERAL_INFO_FUNCTIONS
|
|
|
|
#undef PCRE2_GENERAL_CONTEXT_FUNCTIONS
|
|
|
|
#undef PCRE2_COMPILE_CONTEXT_FUNCTIONS
|
|
|
|
#undef PCRE2_MATCH_CONTEXT_FUNCTIONS
|
|
|
|
#undef PCRE2_COMPILE_FUNCTIONS
|
|
|
|
#undef PCRE2_PATTERN_INFO_FUNCTIONS
|
|
|
|
#undef PCRE2_MATCH_FUNCTIONS
|
|
|
|
#undef PCRE2_SUBSTRING_FUNCTIONS
|
2015-01-23 17:51:47 +01:00
|
|
|
#undef PCRE2_SERIALIZE_FUNCTIONS
|
|
|
|
#undef PCRE2_SUBSTITUTE_FUNCTION
|
2014-06-23 18:41:29 +02:00
|
|
|
#undef PCRE2_JIT_FUNCTIONS
|
|
|
|
#undef PCRE2_OTHER_FUNCTIONS
|
|
|
|
#undef PCRE2_TYPES_STRUCTURES_AND_FUNCTIONS
|
|
|
|
|
2014-11-03 18:13:00 +01:00
|
|
|
/* PCRE2_CODE_UNIT_WIDTH must be defined. If it is 8, 16, or 32, redefine
|
|
|
|
PCRE2_SUFFIX to use it. If it is 0, undefine the other macros and make
|
|
|
|
PCRE2_SUFFIX a no-op. Otherwise, generate an error. */
|
2014-02-28 10:40:55 +01:00
|
|
|
|
2014-06-23 18:41:29 +02:00
|
|
|
#undef PCRE2_SUFFIX
|
2014-11-03 18:13:00 +01:00
|
|
|
#ifndef PCRE2_CODE_UNIT_WIDTH
|
|
|
|
#error PCRE2_CODE_UNIT_WIDTH must be defined before including pcre2.h.
|
|
|
|
#error Use 8, 16, or 32; or 0 for a multi-width application.
|
|
|
|
#else /* PCRE2_CODE_UNIT_WIDTH is defined */
|
|
|
|
#if PCRE2_CODE_UNIT_WIDTH == 8 || \
|
|
|
|
PCRE2_CODE_UNIT_WIDTH == 16 || \
|
|
|
|
PCRE2_CODE_UNIT_WIDTH == 32
|
2014-06-23 18:41:29 +02:00
|
|
|
#define PCRE2_SUFFIX(a) PCRE2_GLUE(a, PCRE2_CODE_UNIT_WIDTH)
|
2014-11-03 18:13:00 +01:00
|
|
|
#elif PCRE2_CODE_UNIT_WIDTH == 0
|
2014-02-28 10:40:55 +01:00
|
|
|
#undef PCRE2_JOIN
|
|
|
|
#undef PCRE2_GLUE
|
2014-06-23 18:41:29 +02:00
|
|
|
#define PCRE2_SUFFIX(a) a
|
2014-11-03 18:13:00 +01:00
|
|
|
#else
|
|
|
|
#error PCRE2_CODE_UNIT_WIDTH must be 0, 8, 16, or 32.
|
2014-02-28 10:40:55 +01:00
|
|
|
#endif
|
2014-11-03 18:13:00 +01:00
|
|
|
#endif /* PCRE2_CODE_UNIT_WIDTH is defined */
|
2014-06-23 18:41:29 +02:00
|
|
|
|
2014-02-28 10:40:55 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
} /* extern "C" */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* End of pcre2.h */
|