7 |
and semantics are as close as possible to those of the Perl 5 language. |
and semantics are as close as possible to those of the Perl 5 language. |
8 |
|
|
9 |
Written by Philip Hazel |
Written by Philip Hazel |
10 |
Copyright (c) 1997-2008 University of Cambridge |
Copyright (c) 1997-2012 University of Cambridge |
11 |
|
|
12 |
----------------------------------------------------------------------------- |
----------------------------------------------------------------------------- |
13 |
Redistribution and use in source and binary forms, with or without |
Redistribution and use in source and binary forms, with or without |
40 |
|
|
41 |
/* This header contains definitions that are shared between the different |
/* This header contains definitions that are shared between the different |
42 |
modules, but which are not relevant to the exported API. This includes some |
modules, but which are not relevant to the exported API. This includes some |
43 |
functions whose names all begin with "_pcre_". */ |
functions whose names all begin with "_pcre_", "_pcre16_" or "_pcre32_" |
44 |
|
depending on the PRIV macro. */ |
45 |
|
|
46 |
#ifndef PCRE_INTERNAL_H |
#ifndef PCRE_INTERNAL_H |
47 |
#define PCRE_INTERNAL_H |
#define PCRE_INTERNAL_H |
48 |
|
|
49 |
/* Define DEBUG to get debugging output on stdout. */ |
/* Define PCRE_DEBUG to get debugging output on stdout. */ |
50 |
|
|
51 |
#if 0 |
#if 0 |
52 |
#define DEBUG |
#define PCRE_DEBUG |
53 |
|
#endif |
54 |
|
|
55 |
|
/* PCRE is compiled as an 8 bit library if it is not requested otherwise. */ |
56 |
|
#if !defined COMPILE_PCRE16 && ! defined COMPILE_PCRE32 |
57 |
|
#define COMPILE_PCRE8 |
58 |
|
#endif |
59 |
|
|
60 |
|
/* If SUPPORT_UCP is defined, SUPPORT_UTF must also be defined. The |
61 |
|
"configure" script ensures this, but not everybody uses "configure". */ |
62 |
|
|
63 |
|
#if defined SUPPORT_UCP && !(defined SUPPORT_UTF) |
64 |
|
#define SUPPORT_UTF 1 |
65 |
|
#endif |
66 |
|
|
67 |
|
/* We define SUPPORT_UTF if SUPPORT_UTF8 is enabled for compatibility |
68 |
|
reasons with existing code. */ |
69 |
|
|
70 |
|
#if defined SUPPORT_UTF8 && !(defined SUPPORT_UTF) |
71 |
|
#define SUPPORT_UTF 1 |
72 |
|
#endif |
73 |
|
|
74 |
|
/* Fixme: SUPPORT_UTF8 should be eventually disappear from the code. |
75 |
|
Until then we define it if SUPPORT_UTF is defined. */ |
76 |
|
|
77 |
|
#if defined SUPPORT_UTF && !(defined SUPPORT_UTF8) |
78 |
|
#define SUPPORT_UTF8 1 |
79 |
|
#endif |
80 |
|
|
81 |
|
/* We do not support both EBCDIC and UTF-8/16/32 at the same time. The "configure" |
82 |
|
script prevents both being selected, but not everybody uses "configure". */ |
83 |
|
|
84 |
|
#if defined EBCDIC && defined SUPPORT_UTF |
85 |
|
#error The use of both EBCDIC and SUPPORT_UTF is not supported. |
86 |
#endif |
#endif |
87 |
|
|
88 |
/* Use a macro for debugging printing, 'cause that eliminates the use of #ifdef |
/* Use a macro for debugging printing, 'cause that eliminates the use of #ifdef |
94 |
be absolutely sure we get our version. */ |
be absolutely sure we get our version. */ |
95 |
|
|
96 |
#undef DPRINTF |
#undef DPRINTF |
97 |
#ifdef DEBUG |
#ifdef PCRE_DEBUG |
98 |
#define DPRINTF(p) printf p |
#define DPRINTF(p) printf p |
99 |
#else |
#else |
100 |
#define DPRINTF(p) /* Nothing */ |
#define DPRINTF(p) /* Nothing */ |
106 |
|
|
107 |
#include <ctype.h> |
#include <ctype.h> |
108 |
#include <limits.h> |
#include <limits.h> |
|
#include <setjmp.h> |
|
|
#include <stdarg.h> |
|
109 |
#include <stddef.h> |
#include <stddef.h> |
110 |
#include <stdio.h> |
#include <stdio.h> |
111 |
#include <stdlib.h> |
#include <stdlib.h> |
164 |
# endif |
# endif |
165 |
#endif |
#endif |
166 |
|
|
167 |
/* We need to have types that specify unsigned 16-bit and 32-bit integers. We |
/* When compiling with the MSVC compiler, it is sometimes necessary to include |
168 |
|
a "calling convention" before exported function names. (This is secondhand |
169 |
|
information; I know nothing about MSVC myself). For example, something like |
170 |
|
|
171 |
|
void __cdecl function(....) |
172 |
|
|
173 |
|
might be needed. In order so make this easy, all the exported functions have |
174 |
|
PCRE_CALL_CONVENTION just before their names. It is rarely needed; if not |
175 |
|
set, we ensure here that it has no effect. */ |
176 |
|
|
177 |
|
#ifndef PCRE_CALL_CONVENTION |
178 |
|
#define PCRE_CALL_CONVENTION |
179 |
|
#endif |
180 |
|
|
181 |
|
/* We need to have types that specify unsigned 8, 16 and 32-bit integers. We |
182 |
cannot determine these outside the compilation (e.g. by running a program as |
cannot determine these outside the compilation (e.g. by running a program as |
183 |
part of "configure") because PCRE is often cross-compiled for use on other |
part of "configure") because PCRE is often cross-compiled for use on other |
184 |
systems. Instead we make use of the maximum sizes that are available at |
systems. Instead we make use of the maximum sizes that are available at |
185 |
preprocessor time in standard C environments. */ |
preprocessor time in standard C environments. */ |
186 |
|
|
187 |
|
typedef unsigned char pcre_uint8; |
188 |
|
|
189 |
#if USHRT_MAX == 65535 |
#if USHRT_MAX == 65535 |
190 |
typedef unsigned short pcre_uint16; |
typedef unsigned short pcre_uint16; |
191 |
typedef short pcre_int16; |
typedef short pcre_int16; |
206 |
#error Cannot determine a type for 32-bit unsigned integers |
#error Cannot determine a type for 32-bit unsigned integers |
207 |
#endif |
#endif |
208 |
|
|
209 |
|
/* When checking for integer overflow in pcre_compile(), we need to handle |
210 |
|
large integers. If a 64-bit integer type is available, we can use that. |
211 |
|
Otherwise we have to cast to double, which of course requires floating point |
212 |
|
arithmetic. Handle this by defining a macro for the appropriate type. If |
213 |
|
stdint.h is available, include it; it may define INT64_MAX. Systems that do not |
214 |
|
have stdint.h (e.g. Solaris) may have inttypes.h. The macro int64_t may be set |
215 |
|
by "configure". */ |
216 |
|
|
217 |
|
#if HAVE_STDINT_H |
218 |
|
#include <stdint.h> |
219 |
|
#elif HAVE_INTTYPES_H |
220 |
|
#include <inttypes.h> |
221 |
|
#endif |
222 |
|
|
223 |
|
#if defined INT64_MAX || defined int64_t |
224 |
|
#define INT64_OR_DOUBLE int64_t |
225 |
|
#else |
226 |
|
#define INT64_OR_DOUBLE double |
227 |
|
#endif |
228 |
|
|
229 |
/* All character handling must be done as unsigned characters. Otherwise there |
/* All character handling must be done as unsigned characters. Otherwise there |
230 |
are problems with top-bit-set characters and functions such as isspace(). |
are problems with top-bit-set characters and functions such as isspace(). |
231 |
However, we leave the interface to the outside world as char *, because that |
However, we leave the interface to the outside world as char * or short *, |
232 |
should make things easier for callers. We define a short type for unsigned char |
because that should make things easier for callers. This character type is |
233 |
to save lots of typing. I tried "uchar", but it causes problems on Digital |
called pcre_uchar. |
234 |
Unix, where it is defined in sys/types, so use "uschar" instead. */ |
|
235 |
|
The IN_UCHARS macro multiply its argument with the byte size of the current |
236 |
|
pcre_uchar type. Useful for memcpy and such operations, whose require the |
237 |
|
byte size of their input/output buffers. |
238 |
|
|
239 |
|
The MAX_255 macro checks whether its pcre_uchar input is less than 256. |
240 |
|
|
241 |
|
The TABLE_GET macro is designed for accessing elements of tables whose contain |
242 |
|
exactly 256 items. When the character is able to contain more than 256 |
243 |
|
items, some check is needed before accessing these tables. |
244 |
|
*/ |
245 |
|
|
246 |
|
#if defined COMPILE_PCRE8 |
247 |
|
|
248 |
|
typedef unsigned char pcre_uchar; |
249 |
|
#define IN_UCHARS(x) (x) |
250 |
|
#define MAX_255(c) 1 |
251 |
|
#define TABLE_GET(c, table, default) ((table)[c]) |
252 |
|
|
253 |
|
#elif defined COMPILE_PCRE16 |
254 |
|
|
255 |
|
#if USHRT_MAX != 65535 |
256 |
|
/* This is a warning message. Change PCRE_UCHAR16 to a 16 bit data type in |
257 |
|
pcre.h(.in) and disable (comment out) this message. */ |
258 |
|
#error Warning: PCRE_UCHAR16 is not a 16 bit data type. |
259 |
|
#endif |
260 |
|
|
261 |
typedef unsigned char uschar; |
typedef pcre_uint16 pcre_uchar; |
262 |
|
#define UCHAR_SHIFT (1) |
263 |
|
#define IN_UCHARS(x) ((x) << UCHAR_SHIFT) |
264 |
|
#define MAX_255(c) ((c) <= 255u) |
265 |
|
#define TABLE_GET(c, table, default) (MAX_255(c)? ((table)[c]):(default)) |
266 |
|
|
267 |
|
#elif defined COMPILE_PCRE32 |
268 |
|
|
269 |
|
typedef pcre_uint32 pcre_uchar; |
270 |
|
#define UCHAR_SHIFT (2) |
271 |
|
#define IN_UCHARS(x) ((x) << UCHAR_SHIFT) |
272 |
|
#define MAX_255(c) ((c) <= 255u) |
273 |
|
#define TABLE_GET(c, table, default) (MAX_255(c)? ((table)[c]):(default)) |
274 |
|
|
275 |
|
/* Assert that pcre_uchar32 is a 32-bit type */ |
276 |
|
typedef int __assert_pcre_uchar32_size[sizeof(pcre_uchar) == 4 ? 1 : -1]; |
277 |
|
|
278 |
|
#else |
279 |
|
#error Unsupported compiling mode |
280 |
|
#endif /* COMPILE_PCRE[8|16|32] */ |
281 |
|
|
282 |
/* This is an unsigned int value that no character can ever have. UTF-8 |
/* This is an unsigned int value that no character can ever have. UTF-8 |
283 |
characters only go up to 0x7fffffff (though Unicode doesn't go beyond |
characters only go up to 0x7fffffff (though Unicode doesn't go beyond |
300 |
#define IS_NEWLINE(p) \ |
#define IS_NEWLINE(p) \ |
301 |
((NLBLOCK->nltype != NLTYPE_FIXED)? \ |
((NLBLOCK->nltype != NLTYPE_FIXED)? \ |
302 |
((p) < NLBLOCK->PSEND && \ |
((p) < NLBLOCK->PSEND && \ |
303 |
_pcre_is_newline((p), NLBLOCK->nltype, NLBLOCK->PSEND, &(NLBLOCK->nllen),\ |
PRIV(is_newline)((p), NLBLOCK->nltype, NLBLOCK->PSEND, \ |
304 |
utf8)) \ |
&(NLBLOCK->nllen), utf)) \ |
305 |
: \ |
: \ |
306 |
((p) <= NLBLOCK->PSEND - NLBLOCK->nllen && \ |
((p) <= NLBLOCK->PSEND - NLBLOCK->nllen && \ |
307 |
(p)[0] == NLBLOCK->nl[0] && \ |
(p)[0] == NLBLOCK->nl[0] && \ |
314 |
#define WAS_NEWLINE(p) \ |
#define WAS_NEWLINE(p) \ |
315 |
((NLBLOCK->nltype != NLTYPE_FIXED)? \ |
((NLBLOCK->nltype != NLTYPE_FIXED)? \ |
316 |
((p) > NLBLOCK->PSSTART && \ |
((p) > NLBLOCK->PSSTART && \ |
317 |
_pcre_was_newline((p), NLBLOCK->nltype, NLBLOCK->PSSTART, \ |
PRIV(was_newline)((p), NLBLOCK->nltype, NLBLOCK->PSSTART, \ |
318 |
&(NLBLOCK->nllen), utf8)) \ |
&(NLBLOCK->nllen), utf)) \ |
319 |
: \ |
: \ |
320 |
((p) >= NLBLOCK->PSSTART + NLBLOCK->nllen && \ |
((p) >= NLBLOCK->PSSTART + NLBLOCK->nllen && \ |
321 |
(p)[-NLBLOCK->nllen] == NLBLOCK->nl[0] && \ |
(p)[-NLBLOCK->nllen] == NLBLOCK->nl[0] && \ |
333 |
must begin with PCRE_. */ |
must begin with PCRE_. */ |
334 |
|
|
335 |
#ifdef CUSTOM_SUBJECT_PTR |
#ifdef CUSTOM_SUBJECT_PTR |
336 |
#define PCRE_SPTR CUSTOM_SUBJECT_PTR |
#define PCRE_PUCHAR CUSTOM_SUBJECT_PTR |
|
#define USPTR CUSTOM_SUBJECT_PTR |
|
337 |
#else |
#else |
338 |
#define PCRE_SPTR const char * |
#define PCRE_PUCHAR const pcre_uchar * |
|
#define USPTR const unsigned char * |
|
339 |
#endif |
#endif |
340 |
|
|
|
|
|
|
|
|
341 |
/* Include the public PCRE header and the definitions of UCP character property |
/* Include the public PCRE header and the definitions of UCP character property |
342 |
values. */ |
values. */ |
343 |
|
|
405 |
the config.h file, but can be overridden by using -D on the command line. This |
the config.h file, but can be overridden by using -D on the command line. This |
406 |
is automated on Unix systems via the "configure" command. */ |
is automated on Unix systems via the "configure" command. */ |
407 |
|
|
408 |
|
#if defined COMPILE_PCRE8 |
409 |
|
|
410 |
#if LINK_SIZE == 2 |
#if LINK_SIZE == 2 |
411 |
|
|
412 |
#define PUT(a,n,d) \ |
#define PUT(a,n,d) \ |
443 |
#define GET(a,n) \ |
#define GET(a,n) \ |
444 |
(((a)[n] << 24) | ((a)[(n)+1] << 16) | ((a)[(n)+2] << 8) | (a)[(n)+3]) |
(((a)[n] << 24) | ((a)[(n)+1] << 16) | ((a)[(n)+2] << 8) | (a)[(n)+3]) |
445 |
|
|
446 |
#define MAX_PATTERN_SIZE (1 << 30) /* Keep it positive */ |
/* Keep it positive */ |
447 |
|
#define MAX_PATTERN_SIZE (1 << 30) |
448 |
|
|
449 |
|
#else |
450 |
|
#error LINK_SIZE must be either 2, 3, or 4 |
451 |
|
#endif |
452 |
|
|
453 |
|
#elif defined COMPILE_PCRE16 |
454 |
|
|
455 |
|
#if LINK_SIZE == 2 |
456 |
|
|
457 |
|
/* Redefine LINK_SIZE as a multiple of sizeof(pcre_uchar) */ |
458 |
|
#undef LINK_SIZE |
459 |
|
#define LINK_SIZE 1 |
460 |
|
|
461 |
|
#define PUT(a,n,d) \ |
462 |
|
(a[n] = (d)) |
463 |
|
|
464 |
|
#define GET(a,n) \ |
465 |
|
(a[n]) |
466 |
|
|
467 |
|
#define MAX_PATTERN_SIZE (1 << 16) |
468 |
|
|
469 |
|
#elif LINK_SIZE == 3 || LINK_SIZE == 4 |
470 |
|
|
471 |
|
/* Redefine LINK_SIZE as a multiple of sizeof(pcre_uchar) */ |
472 |
|
#undef LINK_SIZE |
473 |
|
#define LINK_SIZE 2 |
474 |
|
|
475 |
|
#define PUT(a,n,d) \ |
476 |
|
(a[n] = (d) >> 16), \ |
477 |
|
(a[(n)+1] = (d) & 65535) |
478 |
|
|
479 |
|
#define GET(a,n) \ |
480 |
|
(((a)[n] << 16) | (a)[(n)+1]) |
481 |
|
|
482 |
|
/* Keep it positive */ |
483 |
|
#define MAX_PATTERN_SIZE (1 << 30) |
484 |
|
|
485 |
#else |
#else |
486 |
#error LINK_SIZE must be either 2, 3, or 4 |
#error LINK_SIZE must be either 2, 3, or 4 |
487 |
#endif |
#endif |
488 |
|
|
489 |
|
#elif defined COMPILE_PCRE32 |
490 |
|
|
491 |
|
/* Only supported LINK_SIZE is 4 */ |
492 |
|
/* Redefine LINK_SIZE as a multiple of sizeof(pcre_uchar) */ |
493 |
|
#undef LINK_SIZE |
494 |
|
#define LINK_SIZE 1 |
495 |
|
|
496 |
|
#define PUT(a,n,d) \ |
497 |
|
(a[n] = (d)) |
498 |
|
|
499 |
|
#define GET(a,n) \ |
500 |
|
(a[n]) |
501 |
|
|
502 |
|
/* Keep it positive */ |
503 |
|
#define MAX_PATTERN_SIZE (1 << 30) |
504 |
|
|
505 |
|
#else |
506 |
|
#error Unsupported compiling mode |
507 |
|
#endif /* COMPILE_PCRE[8|16|32] */ |
508 |
|
|
509 |
/* Convenience macro defined in terms of the others */ |
/* Convenience macro defined in terms of the others */ |
510 |
|
|
515 |
offsets changes. There are used for repeat counts and for other things such as |
offsets changes. There are used for repeat counts and for other things such as |
516 |
capturing parenthesis numbers in back references. */ |
capturing parenthesis numbers in back references. */ |
517 |
|
|
518 |
|
#if defined COMPILE_PCRE8 |
519 |
|
|
520 |
|
#define IMM2_SIZE 2 |
521 |
|
|
522 |
#define PUT2(a,n,d) \ |
#define PUT2(a,n,d) \ |
523 |
a[n] = (d) >> 8; \ |
a[n] = (d) >> 8; \ |
524 |
a[(n)+1] = (d) & 255 |
a[(n)+1] = (d) & 255 |
526 |
#define GET2(a,n) \ |
#define GET2(a,n) \ |
527 |
(((a)[n] << 8) | (a)[(n)+1]) |
(((a)[n] << 8) | (a)[(n)+1]) |
528 |
|
|
529 |
#define PUT2INC(a,n,d) PUT2(a,n,d), a += 2 |
#elif defined COMPILE_PCRE16 |
530 |
|
|
531 |
|
#define IMM2_SIZE 1 |
532 |
|
|
533 |
/* When UTF-8 encoding is being used, a character is no longer just a single |
#define PUT2(a,n,d) \ |
534 |
byte. The macros for character handling generate simple sequences when used in |
a[n] = d |
535 |
byte-mode, and more complicated ones for UTF-8 characters. BACKCHAR should |
|
536 |
never be called in byte mode. To make sure it can never even appear when UTF-8 |
#define GET2(a,n) \ |
537 |
support is omitted, we don't even define it. */ |
a[n] |
538 |
|
|
539 |
|
#elif defined COMPILE_PCRE32 |
540 |
|
|
541 |
|
#define IMM2_SIZE 1 |
542 |
|
|
543 |
#ifndef SUPPORT_UTF8 |
#define PUT2(a,n,d) \ |
544 |
#define NEXTCHAR(p) p++; |
a[n] = d |
545 |
|
|
546 |
|
#define GET2(a,n) \ |
547 |
|
a[n] |
548 |
|
|
549 |
|
#else |
550 |
|
#error Unsupported compiling mode |
551 |
|
#endif /* COMPILE_PCRE[8|16|32] */ |
552 |
|
|
553 |
|
#define PUT2INC(a,n,d) PUT2(a,n,d), a += IMM2_SIZE |
554 |
|
|
555 |
|
/* The maximum length of a MARK name is currently one data unit; it may be |
556 |
|
changed in future to be a fixed number of bytes or to depend on LINK_SIZE. */ |
557 |
|
|
558 |
|
#if defined COMPILE_PCRE16 || defined COMPILE_PCRE32 |
559 |
|
#define MAX_MARK ((1u << 16) - 1) |
560 |
|
#else |
561 |
|
#define MAX_MARK ((1u << 8) - 1) |
562 |
|
#endif |
563 |
|
|
564 |
|
/* When UTF encoding is being used, a character is no longer just a single |
565 |
|
byte. The macros for character handling generate simple sequences when used in |
566 |
|
character-mode, and more complicated ones for UTF characters. GETCHARLENTEST |
567 |
|
and other macros are not used when UTF is not supported, so they are not |
568 |
|
defined. To make sure they can never even appear when UTF support is omitted, |
569 |
|
we don't even define them. */ |
570 |
|
|
571 |
|
#ifndef SUPPORT_UTF |
572 |
|
|
573 |
|
/* #define MAX_VALUE_FOR_SINGLE_CHAR */ |
574 |
|
/* #define HAS_EXTRALEN(c) */ |
575 |
|
/* #define GET_EXTRALEN(c) */ |
576 |
|
/* #define NOT_FIRSTCHAR(c) */ |
577 |
#define GETCHAR(c, eptr) c = *eptr; |
#define GETCHAR(c, eptr) c = *eptr; |
578 |
#define GETCHARTEST(c, eptr) c = *eptr; |
#define GETCHARTEST(c, eptr) c = *eptr; |
579 |
#define GETCHARINC(c, eptr) c = *eptr++; |
#define GETCHARINC(c, eptr) c = *eptr++; |
580 |
#define GETCHARINCTEST(c, eptr) c = *eptr++; |
#define GETCHARINCTEST(c, eptr) c = *eptr++; |
581 |
#define GETCHARLEN(c, eptr, len) c = *eptr; |
#define GETCHARLEN(c, eptr, len) c = *eptr; |
582 |
|
/* #define GETCHARLENTEST(c, eptr, len) */ |
583 |
/* #define BACKCHAR(eptr) */ |
/* #define BACKCHAR(eptr) */ |
584 |
|
/* #define FORWARDCHAR(eptr) */ |
585 |
|
/* #define ACROSSCHAR(condition, eptr, action) */ |
586 |
|
|
587 |
|
#else /* SUPPORT_UTF */ |
588 |
|
|
589 |
|
#if defined COMPILE_PCRE8 |
590 |
|
|
591 |
|
/* These macros were originally written in the form of loops that used data |
592 |
|
from the tables whose names start with PRIV(utf8_table). They were rewritten by |
593 |
|
a user so as not to use loops, because in some environments this gives a |
594 |
|
significant performance advantage, and it seems never to do any harm. */ |
595 |
|
|
596 |
|
/* Tells the biggest code point which can be encoded as a single character. */ |
597 |
|
|
598 |
|
#define MAX_VALUE_FOR_SINGLE_CHAR 127 |
599 |
|
|
600 |
#else /* SUPPORT_UTF8 */ |
/* Tests whether the code point needs extra characters to decode. */ |
601 |
|
|
602 |
/* Advance a character pointer one byte in non-UTF-8 mode and by one character |
#define HAS_EXTRALEN(c) ((c) >= 0xc0) |
|
in UTF-8 mode. */ |
|
603 |
|
|
604 |
#define NEXTCHAR(p) \ |
/* Returns with the additional number of characters if IS_MULTICHAR(c) is TRUE. |
605 |
p++; \ |
Otherwise it has an undefined behaviour. */ |
606 |
if (utf8) { while((*p & 0xc0) == 0x80) p++; } |
|
607 |
|
#define GET_EXTRALEN(c) (PRIV(utf8_table4)[(c) & 0x3f]) |
608 |
|
|
609 |
|
/* Returns TRUE, if the given character is not the first character |
610 |
|
of a UTF sequence. */ |
611 |
|
|
612 |
|
#define NOT_FIRSTCHAR(c) (((c) & 0xc0) == 0x80) |
613 |
|
|
614 |
|
/* Base macro to pick up the remaining bytes of a UTF-8 character, not |
615 |
|
advancing the pointer. */ |
616 |
|
|
617 |
|
#define GETUTF8(c, eptr) \ |
618 |
|
{ \ |
619 |
|
if ((c & 0x20) == 0) \ |
620 |
|
c = ((c & 0x1f) << 6) | (eptr[1] & 0x3f); \ |
621 |
|
else if ((c & 0x10) == 0) \ |
622 |
|
c = ((c & 0x0f) << 12) | ((eptr[1] & 0x3f) << 6) | (eptr[2] & 0x3f); \ |
623 |
|
else if ((c & 0x08) == 0) \ |
624 |
|
c = ((c & 0x07) << 18) | ((eptr[1] & 0x3f) << 12) | \ |
625 |
|
((eptr[2] & 0x3f) << 6) | (eptr[3] & 0x3f); \ |
626 |
|
else if ((c & 0x04) == 0) \ |
627 |
|
c = ((c & 0x03) << 24) | ((eptr[1] & 0x3f) << 18) | \ |
628 |
|
((eptr[2] & 0x3f) << 12) | ((eptr[3] & 0x3f) << 6) | \ |
629 |
|
(eptr[4] & 0x3f); \ |
630 |
|
else \ |
631 |
|
c = ((c & 0x01) << 30) | ((eptr[1] & 0x3f) << 24) | \ |
632 |
|
((eptr[2] & 0x3f) << 18) | ((eptr[3] & 0x3f) << 12) | \ |
633 |
|
((eptr[4] & 0x3f) << 6) | (eptr[5] & 0x3f); \ |
634 |
|
} |
635 |
|
|
636 |
/* Get the next UTF-8 character, not advancing the pointer. This is called when |
/* Get the next UTF-8 character, not advancing the pointer. This is called when |
637 |
we know we are in UTF-8 mode. */ |
we know we are in UTF-8 mode. */ |
638 |
|
|
639 |
#define GETCHAR(c, eptr) \ |
#define GETCHAR(c, eptr) \ |
640 |
c = *eptr; \ |
c = *eptr; \ |
641 |
if (c >= 0xc0) \ |
if (c >= 0xc0) GETUTF8(c, eptr); |
|
{ \ |
|
|
int gcii; \ |
|
|
int gcaa = _pcre_utf8_table4[c & 0x3f]; /* Number of additional bytes */ \ |
|
|
int gcss = 6*gcaa; \ |
|
|
c = (c & _pcre_utf8_table3[gcaa]) << gcss; \ |
|
|
for (gcii = 1; gcii <= gcaa; gcii++) \ |
|
|
{ \ |
|
|
gcss -= 6; \ |
|
|
c |= (eptr[gcii] & 0x3f) << gcss; \ |
|
|
} \ |
|
|
} |
|
642 |
|
|
643 |
/* Get the next UTF-8 character, testing for UTF-8 mode, and not advancing the |
/* Get the next UTF-8 character, testing for UTF-8 mode, and not advancing the |
644 |
pointer. */ |
pointer. */ |
645 |
|
|
646 |
#define GETCHARTEST(c, eptr) \ |
#define GETCHARTEST(c, eptr) \ |
647 |
c = *eptr; \ |
c = *eptr; \ |
648 |
if (utf8 && c >= 0xc0) \ |
if (utf && c >= 0xc0) GETUTF8(c, eptr); |
649 |
|
|
650 |
|
/* Base macro to pick up the remaining bytes of a UTF-8 character, advancing |
651 |
|
the pointer. */ |
652 |
|
|
653 |
|
#define GETUTF8INC(c, eptr) \ |
654 |
{ \ |
{ \ |
655 |
int gcii; \ |
if ((c & 0x20) == 0) \ |
656 |
int gcaa = _pcre_utf8_table4[c & 0x3f]; /* Number of additional bytes */ \ |
c = ((c & 0x1f) << 6) | (*eptr++ & 0x3f); \ |
657 |
int gcss = 6*gcaa; \ |
else if ((c & 0x10) == 0) \ |
658 |
c = (c & _pcre_utf8_table3[gcaa]) << gcss; \ |
{ \ |
659 |
for (gcii = 1; gcii <= gcaa; gcii++) \ |
c = ((c & 0x0f) << 12) | ((*eptr & 0x3f) << 6) | (eptr[1] & 0x3f); \ |
660 |
|
eptr += 2; \ |
661 |
|
} \ |
662 |
|
else if ((c & 0x08) == 0) \ |
663 |
|
{ \ |
664 |
|
c = ((c & 0x07) << 18) | ((*eptr & 0x3f) << 12) | \ |
665 |
|
((eptr[1] & 0x3f) << 6) | (eptr[2] & 0x3f); \ |
666 |
|
eptr += 3; \ |
667 |
|
} \ |
668 |
|
else if ((c & 0x04) == 0) \ |
669 |
{ \ |
{ \ |
670 |
gcss -= 6; \ |
c = ((c & 0x03) << 24) | ((*eptr & 0x3f) << 18) | \ |
671 |
c |= (eptr[gcii] & 0x3f) << gcss; \ |
((eptr[1] & 0x3f) << 12) | ((eptr[2] & 0x3f) << 6) | \ |
672 |
|
(eptr[3] & 0x3f); \ |
673 |
|
eptr += 4; \ |
674 |
|
} \ |
675 |
|
else \ |
676 |
|
{ \ |
677 |
|
c = ((c & 0x01) << 30) | ((*eptr & 0x3f) << 24) | \ |
678 |
|
((eptr[1] & 0x3f) << 18) | ((eptr[2] & 0x3f) << 12) | \ |
679 |
|
((eptr[3] & 0x3f) << 6) | (eptr[4] & 0x3f); \ |
680 |
|
eptr += 5; \ |
681 |
} \ |
} \ |
682 |
} |
} |
683 |
|
|
686 |
|
|
687 |
#define GETCHARINC(c, eptr) \ |
#define GETCHARINC(c, eptr) \ |
688 |
c = *eptr++; \ |
c = *eptr++; \ |
689 |
if (c >= 0xc0) \ |
if (c >= 0xc0) GETUTF8INC(c, eptr); |
|
{ \ |
|
|
int gcaa = _pcre_utf8_table4[c & 0x3f]; /* Number of additional bytes */ \ |
|
|
int gcss = 6*gcaa; \ |
|
|
c = (c & _pcre_utf8_table3[gcaa]) << gcss; \ |
|
|
while (gcaa-- > 0) \ |
|
|
{ \ |
|
|
gcss -= 6; \ |
|
|
c |= (*eptr++ & 0x3f) << gcss; \ |
|
|
} \ |
|
|
} |
|
690 |
|
|
691 |
/* Get the next character, testing for UTF-8 mode, and advancing the pointer */ |
/* Get the next character, testing for UTF-8 mode, and advancing the pointer. |
692 |
|
This is called when we don't know if we are in UTF-8 mode. */ |
693 |
|
|
694 |
#define GETCHARINCTEST(c, eptr) \ |
#define GETCHARINCTEST(c, eptr) \ |
695 |
c = *eptr++; \ |
c = *eptr++; \ |
696 |
if (utf8 && c >= 0xc0) \ |
if (utf && c >= 0xc0) GETUTF8INC(c, eptr); |
697 |
|
|
698 |
|
/* Base macro to pick up the remaining bytes of a UTF-8 character, not |
699 |
|
advancing the pointer, incrementing the length. */ |
700 |
|
|
701 |
|
#define GETUTF8LEN(c, eptr, len) \ |
702 |
{ \ |
{ \ |
703 |
int gcaa = _pcre_utf8_table4[c & 0x3f]; /* Number of additional bytes */ \ |
if ((c & 0x20) == 0) \ |
|
int gcss = 6*gcaa; \ |
|
|
c = (c & _pcre_utf8_table3[gcaa]) << gcss; \ |
|
|
while (gcaa-- > 0) \ |
|
704 |
{ \ |
{ \ |
705 |
gcss -= 6; \ |
c = ((c & 0x1f) << 6) | (eptr[1] & 0x3f); \ |
706 |
c |= (*eptr++ & 0x3f) << gcss; \ |
len++; \ |
707 |
|
} \ |
708 |
|
else if ((c & 0x10) == 0) \ |
709 |
|
{ \ |
710 |
|
c = ((c & 0x0f) << 12) | ((eptr[1] & 0x3f) << 6) | (eptr[2] & 0x3f); \ |
711 |
|
len += 2; \ |
712 |
|
} \ |
713 |
|
else if ((c & 0x08) == 0) \ |
714 |
|
{\ |
715 |
|
c = ((c & 0x07) << 18) | ((eptr[1] & 0x3f) << 12) | \ |
716 |
|
((eptr[2] & 0x3f) << 6) | (eptr[3] & 0x3f); \ |
717 |
|
len += 3; \ |
718 |
|
} \ |
719 |
|
else if ((c & 0x04) == 0) \ |
720 |
|
{ \ |
721 |
|
c = ((c & 0x03) << 24) | ((eptr[1] & 0x3f) << 18) | \ |
722 |
|
((eptr[2] & 0x3f) << 12) | ((eptr[3] & 0x3f) << 6) | \ |
723 |
|
(eptr[4] & 0x3f); \ |
724 |
|
len += 4; \ |
725 |
|
} \ |
726 |
|
else \ |
727 |
|
{\ |
728 |
|
c = ((c & 0x01) << 30) | ((eptr[1] & 0x3f) << 24) | \ |
729 |
|
((eptr[2] & 0x3f) << 18) | ((eptr[3] & 0x3f) << 12) | \ |
730 |
|
((eptr[4] & 0x3f) << 6) | (eptr[5] & 0x3f); \ |
731 |
|
len += 5; \ |
732 |
} \ |
} \ |
733 |
} |
} |
734 |
|
|
737 |
|
|
738 |
#define GETCHARLEN(c, eptr, len) \ |
#define GETCHARLEN(c, eptr, len) \ |
739 |
c = *eptr; \ |
c = *eptr; \ |
740 |
if (c >= 0xc0) \ |
if (c >= 0xc0) GETUTF8LEN(c, eptr, len); |
741 |
{ \ |
|
742 |
int gcii; \ |
/* Get the next UTF-8 character, testing for UTF-8 mode, not advancing the |
743 |
int gcaa = _pcre_utf8_table4[c & 0x3f]; /* Number of additional bytes */ \ |
pointer, incrementing length if there are extra bytes. This is called when we |
744 |
int gcss = 6*gcaa; \ |
do not know if we are in UTF-8 mode. */ |
745 |
c = (c & _pcre_utf8_table3[gcaa]) << gcss; \ |
|
746 |
for (gcii = 1; gcii <= gcaa; gcii++) \ |
#define GETCHARLENTEST(c, eptr, len) \ |
747 |
{ \ |
c = *eptr; \ |
748 |
gcss -= 6; \ |
if (utf && c >= 0xc0) GETUTF8LEN(c, eptr, len); |
|
c |= (eptr[gcii] & 0x3f) << gcss; \ |
|
|
} \ |
|
|
len += gcaa; \ |
|
|
} |
|
749 |
|
|
750 |
/* If the pointer is not at the start of a character, move it back until |
/* If the pointer is not at the start of a character, move it back until |
751 |
it is. This is called only in UTF-8 mode - we don't put a test within the macro |
it is. This is called only in UTF-8 mode - we don't put a test within the macro |
753 |
|
|
754 |
#define BACKCHAR(eptr) while((*eptr & 0xc0) == 0x80) eptr-- |
#define BACKCHAR(eptr) while((*eptr & 0xc0) == 0x80) eptr-- |
755 |
|
|
756 |
#endif |
/* Same as above, just in the other direction. */ |
757 |
|
#define FORWARDCHAR(eptr) while((*eptr & 0xc0) == 0x80) eptr++ |
758 |
|
|
759 |
|
/* Same as above, but it allows a fully customizable form. */ |
760 |
|
#define ACROSSCHAR(condition, eptr, action) \ |
761 |
|
while((condition) && ((eptr) & 0xc0) == 0x80) action |
762 |
|
|
763 |
/* In case there is no definition of offsetof() provided - though any proper |
#elif defined COMPILE_PCRE16 |
|
Standard C system should have one. */ |
|
764 |
|
|
765 |
#ifndef offsetof |
/* Tells the biggest code point which can be encoded as a single character. */ |
766 |
#define offsetof(p_type,field) ((size_t)&(((p_type *)0)->field)) |
|
767 |
#endif |
#define MAX_VALUE_FOR_SINGLE_CHAR 65535 |
768 |
|
|
769 |
|
/* Tests whether the code point needs extra characters to decode. */ |
770 |
|
|
771 |
|
#define HAS_EXTRALEN(c) (((c) & 0xfc00) == 0xd800) |
772 |
|
|
773 |
|
/* Returns with the additional number of characters if IS_MULTICHAR(c) is TRUE. |
774 |
|
Otherwise it has an undefined behaviour. */ |
775 |
|
|
776 |
|
#define GET_EXTRALEN(c) 1 |
777 |
|
|
778 |
|
/* Returns TRUE, if the given character is not the first character |
779 |
|
of a UTF sequence. */ |
780 |
|
|
781 |
|
#define NOT_FIRSTCHAR(c) (((c) & 0xfc00) == 0xdc00) |
782 |
|
|
783 |
|
/* Base macro to pick up the low surrogate of a UTF-16 character, not |
784 |
|
advancing the pointer. */ |
785 |
|
|
786 |
|
#define GETUTF16(c, eptr) \ |
787 |
|
{ c = (((c & 0x3ff) << 10) | (eptr[1] & 0x3ff)) + 0x10000; } |
788 |
|
|
789 |
|
/* Get the next UTF-16 character, not advancing the pointer. This is called when |
790 |
|
we know we are in UTF-16 mode. */ |
791 |
|
|
792 |
|
#define GETCHAR(c, eptr) \ |
793 |
|
c = *eptr; \ |
794 |
|
if ((c & 0xfc00) == 0xd800) GETUTF16(c, eptr); |
795 |
|
|
796 |
|
/* Get the next UTF-16 character, testing for UTF-16 mode, and not advancing the |
797 |
|
pointer. */ |
798 |
|
|
799 |
|
#define GETCHARTEST(c, eptr) \ |
800 |
|
c = *eptr; \ |
801 |
|
if (utf && (c & 0xfc00) == 0xd800) GETUTF16(c, eptr); |
802 |
|
|
803 |
|
/* Base macro to pick up the low surrogate of a UTF-16 character, advancing |
804 |
|
the pointer. */ |
805 |
|
|
806 |
|
#define GETUTF16INC(c, eptr) \ |
807 |
|
{ c = (((c & 0x3ff) << 10) | (*eptr++ & 0x3ff)) + 0x10000; } |
808 |
|
|
809 |
|
/* Get the next UTF-16 character, advancing the pointer. This is called when we |
810 |
|
know we are in UTF-16 mode. */ |
811 |
|
|
812 |
|
#define GETCHARINC(c, eptr) \ |
813 |
|
c = *eptr++; \ |
814 |
|
if ((c & 0xfc00) == 0xd800) GETUTF16INC(c, eptr); |
815 |
|
|
816 |
|
/* Get the next character, testing for UTF-16 mode, and advancing the pointer. |
817 |
|
This is called when we don't know if we are in UTF-16 mode. */ |
818 |
|
|
819 |
|
#define GETCHARINCTEST(c, eptr) \ |
820 |
|
c = *eptr++; \ |
821 |
|
if (utf && (c & 0xfc00) == 0xd800) GETUTF16INC(c, eptr); |
822 |
|
|
823 |
|
/* Base macro to pick up the low surrogate of a UTF-16 character, not |
824 |
|
advancing the pointer, incrementing the length. */ |
825 |
|
|
826 |
|
#define GETUTF16LEN(c, eptr, len) \ |
827 |
|
{ c = (((c & 0x3ff) << 10) | (eptr[1] & 0x3ff)) + 0x10000; len++; } |
828 |
|
|
829 |
|
/* Get the next UTF-16 character, not advancing the pointer, incrementing |
830 |
|
length if there is a low surrogate. This is called when we know we are in |
831 |
|
UTF-16 mode. */ |
832 |
|
|
833 |
|
#define GETCHARLEN(c, eptr, len) \ |
834 |
|
c = *eptr; \ |
835 |
|
if ((c & 0xfc00) == 0xd800) GETUTF16LEN(c, eptr, len); |
836 |
|
|
837 |
|
/* Get the next UTF-816character, testing for UTF-16 mode, not advancing the |
838 |
|
pointer, incrementing length if there is a low surrogate. This is called when |
839 |
|
we do not know if we are in UTF-16 mode. */ |
840 |
|
|
841 |
|
#define GETCHARLENTEST(c, eptr, len) \ |
842 |
|
c = *eptr; \ |
843 |
|
if (utf && (c & 0xfc00) == 0xd800) GETUTF16LEN(c, eptr, len); |
844 |
|
|
845 |
|
/* If the pointer is not at the start of a character, move it back until |
846 |
|
it is. This is called only in UTF-16 mode - we don't put a test within the |
847 |
|
macro because almost all calls are already within a block of UTF-16 only |
848 |
|
code. */ |
849 |
|
|
850 |
|
#define BACKCHAR(eptr) if ((*eptr & 0xfc00) == 0xdc00) eptr-- |
851 |
|
|
852 |
|
/* Same as above, just in the other direction. */ |
853 |
|
#define FORWARDCHAR(eptr) if ((*eptr & 0xfc00) == 0xdc00) eptr++ |
854 |
|
|
855 |
|
/* Same as above, but it allows a fully customizable form. */ |
856 |
|
#define ACROSSCHAR(condition, eptr, action) \ |
857 |
|
if ((condition) && ((eptr) & 0xfc00) == 0xdc00) action |
858 |
|
|
859 |
|
#elif defined COMPILE_PCRE32 |
860 |
|
|
861 |
|
/* These are unnecessary for the 32-bit library */ |
862 |
|
#undef MAX_VALUE_FOR_SINGLE_CHAR |
863 |
|
#undef HAS_EXTRALEN |
864 |
|
#undef GET_EXTRALEN |
865 |
|
#undef NOT_FIRSTCHAR |
866 |
|
|
867 |
|
/* Get the next UTF-32 character, not advancing the pointer. This is called when |
868 |
|
we know we are in UTF-32 mode. */ |
869 |
|
|
870 |
|
#define GETCHAR(c, eptr) \ |
871 |
|
c = *eptr; |
872 |
|
|
873 |
|
/* Get the next UTF-32 character, testing for UTF-32 mode, and not advancing the |
874 |
|
pointer. */ |
875 |
|
|
876 |
|
#define GETCHARTEST(c, eptr) \ |
877 |
|
c = *eptr; |
878 |
|
|
879 |
|
/* Get the next UTF-32 character, advancing the pointer. This is called when we |
880 |
|
know we are in UTF-32 mode. */ |
881 |
|
|
882 |
|
#define GETCHARINC(c, eptr) \ |
883 |
|
c = *eptr++; |
884 |
|
|
885 |
|
/* Get the next character, testing for UTF-32 mode, and advancing the pointer. |
886 |
|
This is called when we don't know if we are in UTF-32 mode. */ |
887 |
|
|
888 |
|
#define GETCHARINCTEST(c, eptr) \ |
889 |
|
c = *eptr++; |
890 |
|
|
891 |
|
/* Get the next UTF-32 character, not advancing the pointer, not incrementing |
892 |
|
length (since all UTF-32 is of length 1). This is called when we know we are in |
893 |
|
UTF-32 mode. */ |
894 |
|
|
895 |
|
#define GETCHARLEN(c, eptr, len) \ |
896 |
|
c = *eptr; |
897 |
|
|
898 |
|
/* Get the next UTF-832character, testing for UTF-32 mode, not advancing the |
899 |
|
pointer, not incrementing the length (since all UTF-32 is of length 1). |
900 |
|
This is called when we do not know if we are in UTF-32 mode. */ |
901 |
|
|
902 |
|
#define GETCHARLENTEST(c, eptr, len) \ |
903 |
|
c = *eptr; |
904 |
|
|
905 |
|
/* If the pointer is not at the start of a character, move it back until |
906 |
|
it is. This is called only in UTF-32 mode - we don't put a test within the |
907 |
|
macro because almost all calls are already within a block of UTF-32 only |
908 |
|
code. */ |
909 |
|
|
910 |
|
#define BACKCHAR(eptr) do { } while (0) |
911 |
|
|
912 |
|
/* Same as above, just in the other direction. */ |
913 |
|
#define FORWARDCHAR(eptr) do { } while (0) |
914 |
|
|
915 |
|
/* Same as above, but it allows a fully customizable form. */ |
916 |
|
#define ACROSSCHAR(condition, eptr, action) do { } while (0) |
917 |
|
|
918 |
|
#else |
919 |
|
#error Unsupported compiling mode |
920 |
|
#endif /* COMPILE_PCRE[8|16|32] */ |
921 |
|
|
922 |
|
#endif /* SUPPORT_UTF */ |
923 |
|
|
924 |
|
/* Tests for Unicode horizontal and vertical whitespace characters must check a |
925 |
|
number of different values. Using a switch statement for this generates the |
926 |
|
fastest code (no loop, no memory access), and there are several places in the |
927 |
|
interpreter code where this happens. In order to ensure that all the case lists |
928 |
|
remain in step, we use macros so that there is only one place where the lists |
929 |
|
are defined. |
930 |
|
|
931 |
|
These values are also required as lists in pcre_compile.c when processing \h, |
932 |
|
\H, \v and \V in a character class. The lists are defined in pcre_tables.c, but |
933 |
|
macros that define the values are here so that all the definitions are |
934 |
|
together. The lists must be in ascending character order, terminated by |
935 |
|
NOTACHAR (which is 0xffffffff). |
936 |
|
|
937 |
|
Any changes should ensure that the various macros are kept in step with each |
938 |
|
other. NOTE: The values also appear in pcre_jit_compile.c. */ |
939 |
|
|
940 |
|
/* ------ ASCII/Unicode environments ------ */ |
941 |
|
|
942 |
|
#ifndef EBCDIC |
943 |
|
|
944 |
|
#define HSPACE_LIST \ |
945 |
|
CHAR_HT, CHAR_SPACE, 0xa0, \ |
946 |
|
0x1680, 0x180e, 0x2000, 0x2001, 0x2002, 0x2003, 0x2004, 0x2005, \ |
947 |
|
0x2006, 0x2007, 0x2008, 0x2009, 0x200A, 0x202f, 0x205f, 0x3000, \ |
948 |
|
NOTACHAR |
949 |
|
|
950 |
|
#define HSPACE_MULTIBYTE_CASES \ |
951 |
|
case 0x1680: /* OGHAM SPACE MARK */ \ |
952 |
|
case 0x180e: /* MONGOLIAN VOWEL SEPARATOR */ \ |
953 |
|
case 0x2000: /* EN QUAD */ \ |
954 |
|
case 0x2001: /* EM QUAD */ \ |
955 |
|
case 0x2002: /* EN SPACE */ \ |
956 |
|
case 0x2003: /* EM SPACE */ \ |
957 |
|
case 0x2004: /* THREE-PER-EM SPACE */ \ |
958 |
|
case 0x2005: /* FOUR-PER-EM SPACE */ \ |
959 |
|
case 0x2006: /* SIX-PER-EM SPACE */ \ |
960 |
|
case 0x2007: /* FIGURE SPACE */ \ |
961 |
|
case 0x2008: /* PUNCTUATION SPACE */ \ |
962 |
|
case 0x2009: /* THIN SPACE */ \ |
963 |
|
case 0x200A: /* HAIR SPACE */ \ |
964 |
|
case 0x202f: /* NARROW NO-BREAK SPACE */ \ |
965 |
|
case 0x205f: /* MEDIUM MATHEMATICAL SPACE */ \ |
966 |
|
case 0x3000 /* IDEOGRAPHIC SPACE */ |
967 |
|
|
968 |
|
#define HSPACE_BYTE_CASES \ |
969 |
|
case CHAR_HT: \ |
970 |
|
case CHAR_SPACE: \ |
971 |
|
case 0xa0 /* NBSP */ |
972 |
|
|
973 |
|
#define HSPACE_CASES \ |
974 |
|
HSPACE_BYTE_CASES: \ |
975 |
|
HSPACE_MULTIBYTE_CASES |
976 |
|
|
977 |
|
#define VSPACE_LIST \ |
978 |
|
CHAR_LF, CHAR_VT, CHAR_FF, CHAR_CR, CHAR_NEL, 0x2028, 0x2029, NOTACHAR |
979 |
|
|
980 |
|
#define VSPACE_MULTIBYTE_CASES \ |
981 |
|
case 0x2028: /* LINE SEPARATOR */ \ |
982 |
|
case 0x2029 /* PARAGRAPH SEPARATOR */ |
983 |
|
|
984 |
|
#define VSPACE_BYTE_CASES \ |
985 |
|
case CHAR_LF: \ |
986 |
|
case CHAR_VT: \ |
987 |
|
case CHAR_FF: \ |
988 |
|
case CHAR_CR: \ |
989 |
|
case CHAR_NEL |
990 |
|
|
991 |
|
#define VSPACE_CASES \ |
992 |
|
VSPACE_BYTE_CASES: \ |
993 |
|
VSPACE_MULTIBYTE_CASES |
994 |
|
|
995 |
|
/* ------ EBCDIC environments ------ */ |
996 |
|
|
997 |
|
#else |
998 |
|
#define HSPACE_LIST CHAR_HT, CHAR_SPACE |
999 |
|
|
1000 |
|
#define HSPACE_BYTE_CASES \ |
1001 |
|
case CHAR_HT: \ |
1002 |
|
case CHAR_SPACE |
1003 |
|
|
1004 |
|
#define HSPACE_CASES HSPACE_BYTE_CASES |
1005 |
|
|
1006 |
|
#ifdef EBCDIC_NL25 |
1007 |
|
#define VSPACE_LIST \ |
1008 |
|
CHAR_VT, CHAR_FF, CHAR_CR, CHAR_NEL, CHAR_LF, NOTACHAR |
1009 |
|
#else |
1010 |
|
#define VSPACE_LIST \ |
1011 |
|
CHAR_VT, CHAR_FF, CHAR_CR, CHAR_LF, CHAR_NEL, NOTACHAR |
1012 |
|
#endif |
1013 |
|
|
1014 |
|
#define VSPACE_BYTE_CASES \ |
1015 |
|
case CHAR_LF: \ |
1016 |
|
case CHAR_VT: \ |
1017 |
|
case CHAR_FF: \ |
1018 |
|
case CHAR_CR: \ |
1019 |
|
case CHAR_NEL |
1020 |
|
|
1021 |
|
#define VSPACE_CASES VSPACE_BYTE_CASES |
1022 |
|
#endif /* EBCDIC */ |
1023 |
|
|
1024 |
|
/* ------ End of whitespace macros ------ */ |
1025 |
|
|
|
/* These are the public options that can change during matching. */ |
|
1026 |
|
|
|
#define PCRE_IMS (PCRE_CASELESS|PCRE_MULTILINE|PCRE_DOTALL) |
|
1027 |
|
|
1028 |
/* Private flags containing information about the compiled regex. They used to |
/* Private flags containing information about the compiled regex. They used to |
1029 |
live at the top end of the options word, but that got almost full, so now they |
live at the top end of the options word, but that got almost full, so now they |
1030 |
are in a 16-bit flags word. */ |
are in a 16-bit flags word. From release 8.00, PCRE_NOPARTIAL is unused, as |
1031 |
|
the restrictions on partial matching have been lifted. It remains for backwards |
1032 |
#define PCRE_NOPARTIAL 0x0001 /* can't use partial with this regex */ |
compatibility. */ |
1033 |
#define PCRE_FIRSTSET 0x0002 /* first_byte is set */ |
|
1034 |
#define PCRE_REQCHSET 0x0004 /* req_byte is set */ |
#define PCRE_MODE8 0x0001 /* compiled in 8 bit mode */ |
1035 |
#define PCRE_STARTLINE 0x0008 /* start after \n for multiline */ |
#define PCRE_MODE16 0x0002 /* compiled in 16 bit mode */ |
1036 |
#define PCRE_JCHANGED 0x0010 /* j option used in regex */ |
#define PCRE_MODE32 0x0004 /* compiled in 32 bit mode */ |
1037 |
#define PCRE_HASCRORLF 0x0020 /* explicit \r or \n in pattern */ |
#define PCRE_FIRSTSET 0x0010 /* first_char is set */ |
1038 |
|
#define PCRE_FCH_CASELESS 0x0020 /* caseless first char */ |
1039 |
|
#define PCRE_REQCHSET 0x0040 /* req_byte is set */ |
1040 |
|
#define PCRE_RCH_CASELESS 0x0080 /* caseless requested char */ |
1041 |
|
#define PCRE_STARTLINE 0x0100 /* start after \n for multiline */ |
1042 |
|
#define PCRE_NOPARTIAL 0x0200 /* can't use partial with this regex */ |
1043 |
|
#define PCRE_JCHANGED 0x0400 /* j option used in regex */ |
1044 |
|
#define PCRE_HASCRORLF 0x0800 /* explicit \r or \n in pattern */ |
1045 |
|
#define PCRE_HASTHEN 0x1000 /* pattern contains (*THEN) */ |
1046 |
|
|
1047 |
|
#if defined COMPILE_PCRE8 |
1048 |
|
#define PCRE_MODE PCRE_MODE8 |
1049 |
|
#elif defined COMPILE_PCRE16 |
1050 |
|
#define PCRE_MODE PCRE_MODE16 |
1051 |
|
#elif defined COMPILE_PCRE32 |
1052 |
|
#define PCRE_MODE PCRE_MODE32 |
1053 |
|
#endif |
1054 |
|
#define PCRE_MODE_MASK (PCRE_MODE8 | PCRE_MODE16 | PCRE_MODE32) |
1055 |
|
|
1056 |
/* Options for the "extra" block produced by pcre_study(). */ |
/* Flags for the "extra" block produced by pcre_study(). */ |
1057 |
|
|
1058 |
#define PCRE_STUDY_MAPPED 0x01 /* a map of starting chars exists */ |
#define PCRE_STUDY_MAPPED 0x0001 /* a map of starting chars exists */ |
1059 |
|
#define PCRE_STUDY_MINLEN 0x0002 /* a minimum length field exists */ |
1060 |
|
|
1061 |
/* Masks for identifying the public options that are permitted at compile |
/* Masks for identifying the public options that are permitted at compile |
1062 |
time, run time, or study time, respectively. */ |
time, run time, or study time, respectively. */ |
1064 |
#define PCRE_NEWLINE_BITS (PCRE_NEWLINE_CR|PCRE_NEWLINE_LF|PCRE_NEWLINE_ANY| \ |
#define PCRE_NEWLINE_BITS (PCRE_NEWLINE_CR|PCRE_NEWLINE_LF|PCRE_NEWLINE_ANY| \ |
1065 |
PCRE_NEWLINE_ANYCRLF) |
PCRE_NEWLINE_ANYCRLF) |
1066 |
|
|
1067 |
#define PUBLIC_OPTIONS \ |
#define PUBLIC_COMPILE_OPTIONS \ |
1068 |
(PCRE_CASELESS|PCRE_EXTENDED|PCRE_ANCHORED|PCRE_MULTILINE| \ |
(PCRE_CASELESS|PCRE_EXTENDED|PCRE_ANCHORED|PCRE_MULTILINE| \ |
1069 |
PCRE_DOTALL|PCRE_DOLLAR_ENDONLY|PCRE_EXTRA|PCRE_UNGREEDY|PCRE_UTF8| \ |
PCRE_DOTALL|PCRE_DOLLAR_ENDONLY|PCRE_EXTRA|PCRE_UNGREEDY|PCRE_UTF8| \ |
1070 |
PCRE_NO_AUTO_CAPTURE|PCRE_NO_UTF8_CHECK|PCRE_AUTO_CALLOUT|PCRE_FIRSTLINE| \ |
PCRE_NO_AUTO_CAPTURE|PCRE_NO_UTF8_CHECK|PCRE_AUTO_CALLOUT|PCRE_FIRSTLINE| \ |
1071 |
PCRE_DUPNAMES|PCRE_NEWLINE_BITS|PCRE_BSR_ANYCRLF|PCRE_BSR_UNICODE| \ |
PCRE_DUPNAMES|PCRE_NEWLINE_BITS|PCRE_BSR_ANYCRLF|PCRE_BSR_UNICODE| \ |
1072 |
PCRE_JAVASCRIPT_COMPAT) |
PCRE_JAVASCRIPT_COMPAT|PCRE_UCP|PCRE_NO_START_OPTIMIZE) |
1073 |
|
|
1074 |
#define PUBLIC_EXEC_OPTIONS \ |
#define PUBLIC_EXEC_OPTIONS \ |
1075 |
(PCRE_ANCHORED|PCRE_NOTBOL|PCRE_NOTEOL|PCRE_NOTEMPTY|PCRE_NO_UTF8_CHECK| \ |
(PCRE_ANCHORED|PCRE_NOTBOL|PCRE_NOTEOL|PCRE_NOTEMPTY|PCRE_NOTEMPTY_ATSTART| \ |
1076 |
PCRE_PARTIAL|PCRE_NEWLINE_BITS|PCRE_BSR_ANYCRLF|PCRE_BSR_UNICODE) |
PCRE_NO_UTF8_CHECK|PCRE_PARTIAL_HARD|PCRE_PARTIAL_SOFT|PCRE_NEWLINE_BITS| \ |
1077 |
|
PCRE_BSR_ANYCRLF|PCRE_BSR_UNICODE|PCRE_NO_START_OPTIMIZE) |
1078 |
|
|
1079 |
#define PUBLIC_DFA_EXEC_OPTIONS \ |
#define PUBLIC_DFA_EXEC_OPTIONS \ |
1080 |
(PCRE_ANCHORED|PCRE_NOTBOL|PCRE_NOTEOL|PCRE_NOTEMPTY|PCRE_NO_UTF8_CHECK| \ |
(PCRE_ANCHORED|PCRE_NOTBOL|PCRE_NOTEOL|PCRE_NOTEMPTY|PCRE_NOTEMPTY_ATSTART| \ |
1081 |
PCRE_PARTIAL|PCRE_DFA_SHORTEST|PCRE_DFA_RESTART|PCRE_NEWLINE_BITS| \ |
PCRE_NO_UTF8_CHECK|PCRE_PARTIAL_HARD|PCRE_PARTIAL_SOFT|PCRE_DFA_SHORTEST| \ |
1082 |
PCRE_BSR_ANYCRLF|PCRE_BSR_UNICODE) |
PCRE_DFA_RESTART|PCRE_NEWLINE_BITS|PCRE_BSR_ANYCRLF|PCRE_BSR_UNICODE| \ |
1083 |
|
PCRE_NO_START_OPTIMIZE) |
1084 |
#define PUBLIC_STUDY_OPTIONS 0 /* None defined */ |
|
1085 |
|
#define PUBLIC_STUDY_OPTIONS \ |
1086 |
|
(PCRE_STUDY_JIT_COMPILE|PCRE_STUDY_JIT_PARTIAL_SOFT_COMPILE| \ |
1087 |
|
PCRE_STUDY_JIT_PARTIAL_HARD_COMPILE|PCRE_STUDY_EXTRA_NEEDED) |
1088 |
|
|
1089 |
/* Magic number to provide a small check against being handed junk. Also used |
/* Magic number to provide a small check against being handed junk. */ |
|
to detect whether a pattern was compiled on a host of different endianness. */ |
|
1090 |
|
|
1091 |
#define MAGIC_NUMBER 0x50435245UL /* 'PCRE' */ |
#define MAGIC_NUMBER 0x50435245UL /* 'PCRE' */ |
1092 |
|
|
1093 |
|
/* This variable is used to detect a loaded regular expression |
1094 |
|
in different endianness. */ |
1095 |
|
|
1096 |
|
#define REVERSED_MAGIC_NUMBER 0x45524350UL /* 'ERCP' */ |
1097 |
|
|
1098 |
/* Negative values for the firstchar and reqchar variables */ |
/* Negative values for the firstchar and reqchar variables */ |
1099 |
|
|
1100 |
#define REQ_UNSET (-2) |
#define REQ_UNSET (-2) |
1105 |
|
|
1106 |
#define REQ_BYTE_MAX 1000 |
#define REQ_BYTE_MAX 1000 |
1107 |
|
|
1108 |
/* Flags added to firstbyte or reqbyte; a "non-literal" item is either a |
/* Miscellaneous definitions. The #ifndef is to pacify compiler warnings in |
1109 |
variable-length repeat, or a anything other than literal characters. */ |
environments where these macros are defined elsewhere. Unfortunately, there |
1110 |
|
is no way to do the same for the typedef. */ |
|
#define REQ_CASELESS 0x0100 /* indicates caselessness */ |
|
|
#define REQ_VARY 0x0200 /* reqbyte followed non-literal item */ |
|
|
|
|
|
/* Miscellaneous definitions */ |
|
1111 |
|
|
1112 |
typedef int BOOL; |
typedef int BOOL; |
1113 |
|
|
1114 |
|
#ifndef FALSE |
1115 |
#define FALSE 0 |
#define FALSE 0 |
1116 |
#define TRUE 1 |
#define TRUE 1 |
1117 |
|
#endif |
1118 |
|
|
1119 |
|
/* If PCRE is to support UTF-8 on EBCDIC platforms, we cannot use normal |
1120 |
|
character constants like '*' because the compiler would emit their EBCDIC code, |
1121 |
|
which is different from their ASCII/UTF-8 code. Instead we define macros for |
1122 |
|
the characters so that they always use the ASCII/UTF-8 code when UTF-8 support |
1123 |
|
is enabled. When UTF-8 support is not enabled, the definitions use character |
1124 |
|
literals. Both character and string versions of each character are needed, and |
1125 |
|
there are some longer strings as well. |
1126 |
|
|
1127 |
|
This means that, on EBCDIC platforms, the PCRE library can handle either |
1128 |
|
EBCDIC, or UTF-8, but not both. To support both in the same compiled library |
1129 |
|
would need different lookups depending on whether PCRE_UTF8 was set or not. |
1130 |
|
This would make it impossible to use characters in switch/case statements, |
1131 |
|
which would reduce performance. For a theoretical use (which nobody has asked |
1132 |
|
for) in a minority area (EBCDIC platforms), this is not sensible. Any |
1133 |
|
application that did need both could compile two versions of the library, using |
1134 |
|
macros to give the functions distinct names. */ |
1135 |
|
|
1136 |
|
#ifndef SUPPORT_UTF |
1137 |
|
|
1138 |
|
/* UTF-8 support is not enabled; use the platform-dependent character literals |
1139 |
|
so that PCRE works in both ASCII and EBCDIC environments, but only in non-UTF |
1140 |
|
mode. Newline characters are problematic in EBCDIC. Though it has CR and LF |
1141 |
|
characters, a common practice has been to use its NL (0x15) character as the |
1142 |
|
line terminator in C-like processing environments. However, sometimes the LF |
1143 |
|
(0x25) character is used instead, according to this Unicode document: |
1144 |
|
|
1145 |
|
http://unicode.org/standard/reports/tr13/tr13-5.html |
1146 |
|
|
1147 |
|
PCRE defaults EBCDIC NL to 0x15, but has a build-time option to select 0x25 |
1148 |
|
instead. Whichever is *not* chosen is defined as NEL. |
1149 |
|
|
1150 |
|
In both ASCII and EBCDIC environments, CHAR_NL and CHAR_LF are synonyms for the |
1151 |
|
same code point. */ |
1152 |
|
|
1153 |
|
#ifdef EBCDIC |
1154 |
|
|
1155 |
|
#ifndef EBCDIC_NL25 |
1156 |
|
#define CHAR_NL '\x15' |
1157 |
|
#define CHAR_NEL '\x25' |
1158 |
|
#define STR_NL "\x15" |
1159 |
|
#define STR_NEL "\x25" |
1160 |
|
#else |
1161 |
|
#define CHAR_NL '\x25' |
1162 |
|
#define CHAR_NEL '\x15' |
1163 |
|
#define STR_NL "\x25" |
1164 |
|
#define STR_NEL "\x15" |
1165 |
|
#endif |
1166 |
|
|
1167 |
|
#define CHAR_LF CHAR_NL |
1168 |
|
#define STR_LF STR_NL |
1169 |
|
|
1170 |
|
#define CHAR_ESC '\047' |
1171 |
|
#define CHAR_DEL '\007' |
1172 |
|
#define STR_ESC "\047" |
1173 |
|
#define STR_DEL "\007" |
1174 |
|
|
1175 |
|
#else /* Not EBCDIC */ |
1176 |
|
|
1177 |
|
/* In ASCII/Unicode, linefeed is '\n' and we equate this to NL for |
1178 |
|
compatibility. NEL is the Unicode newline character; make sure it is |
1179 |
|
a positive value. */ |
1180 |
|
|
1181 |
|
#define CHAR_LF '\n' |
1182 |
|
#define CHAR_NL CHAR_LF |
1183 |
|
#define CHAR_NEL ((unsigned char)'\x85') |
1184 |
|
#define CHAR_ESC '\033' |
1185 |
|
#define CHAR_DEL '\177' |
1186 |
|
|
1187 |
|
#define STR_LF "\n" |
1188 |
|
#define STR_NL STR_LF |
1189 |
|
#define STR_NEL "\x85" |
1190 |
|
#define STR_ESC "\033" |
1191 |
|
#define STR_DEL "\177" |
1192 |
|
|
1193 |
|
#endif /* EBCDIC */ |
1194 |
|
|
1195 |
|
/* The remaining definitions work in both environments. */ |
1196 |
|
|
1197 |
|
#define CHAR_HT '\t' |
1198 |
|
#define CHAR_VT '\v' |
1199 |
|
#define CHAR_FF '\f' |
1200 |
|
#define CHAR_CR '\r' |
1201 |
|
#define CHAR_BS '\b' |
1202 |
|
#define CHAR_BEL '\a' |
1203 |
|
|
1204 |
|
#define CHAR_SPACE ' ' |
1205 |
|
#define CHAR_EXCLAMATION_MARK '!' |
1206 |
|
#define CHAR_QUOTATION_MARK '"' |
1207 |
|
#define CHAR_NUMBER_SIGN '#' |
1208 |
|
#define CHAR_DOLLAR_SIGN '$' |
1209 |
|
#define CHAR_PERCENT_SIGN '%' |
1210 |
|
#define CHAR_AMPERSAND '&' |
1211 |
|
#define CHAR_APOSTROPHE '\'' |
1212 |
|
#define CHAR_LEFT_PARENTHESIS '(' |
1213 |
|
#define CHAR_RIGHT_PARENTHESIS ')' |
1214 |
|
#define CHAR_ASTERISK '*' |
1215 |
|
#define CHAR_PLUS '+' |
1216 |
|
#define CHAR_COMMA ',' |
1217 |
|
#define CHAR_MINUS '-' |
1218 |
|
#define CHAR_DOT '.' |
1219 |
|
#define CHAR_SLASH '/' |
1220 |
|
#define CHAR_0 '0' |
1221 |
|
#define CHAR_1 '1' |
1222 |
|
#define CHAR_2 '2' |
1223 |
|
#define CHAR_3 '3' |
1224 |
|
#define CHAR_4 '4' |
1225 |
|
#define CHAR_5 '5' |
1226 |
|
#define CHAR_6 '6' |
1227 |
|
#define CHAR_7 '7' |
1228 |
|
#define CHAR_8 '8' |
1229 |
|
#define CHAR_9 '9' |
1230 |
|
#define CHAR_COLON ':' |
1231 |
|
#define CHAR_SEMICOLON ';' |
1232 |
|
#define CHAR_LESS_THAN_SIGN '<' |
1233 |
|
#define CHAR_EQUALS_SIGN '=' |
1234 |
|
#define CHAR_GREATER_THAN_SIGN '>' |
1235 |
|
#define CHAR_QUESTION_MARK '?' |
1236 |
|
#define CHAR_COMMERCIAL_AT '@' |
1237 |
|
#define CHAR_A 'A' |
1238 |
|
#define CHAR_B 'B' |
1239 |
|
#define CHAR_C 'C' |
1240 |
|
#define CHAR_D 'D' |
1241 |
|
#define CHAR_E 'E' |
1242 |
|
#define CHAR_F 'F' |
1243 |
|
#define CHAR_G 'G' |
1244 |
|
#define CHAR_H 'H' |
1245 |
|
#define CHAR_I 'I' |
1246 |
|
#define CHAR_J 'J' |
1247 |
|
#define CHAR_K 'K' |
1248 |
|
#define CHAR_L 'L' |
1249 |
|
#define CHAR_M 'M' |
1250 |
|
#define CHAR_N 'N' |
1251 |
|
#define CHAR_O 'O' |
1252 |
|
#define CHAR_P 'P' |
1253 |
|
#define CHAR_Q 'Q' |
1254 |
|
#define CHAR_R 'R' |
1255 |
|
#define CHAR_S 'S' |
1256 |
|
#define CHAR_T 'T' |
1257 |
|
#define CHAR_U 'U' |
1258 |
|
#define CHAR_V 'V' |
1259 |
|
#define CHAR_W 'W' |
1260 |
|
#define CHAR_X 'X' |
1261 |
|
#define CHAR_Y 'Y' |
1262 |
|
#define CHAR_Z 'Z' |
1263 |
|
#define CHAR_LEFT_SQUARE_BRACKET '[' |
1264 |
|
#define CHAR_BACKSLASH '\\' |
1265 |
|
#define CHAR_RIGHT_SQUARE_BRACKET ']' |
1266 |
|
#define CHAR_CIRCUMFLEX_ACCENT '^' |
1267 |
|
#define CHAR_UNDERSCORE '_' |
1268 |
|
#define CHAR_GRAVE_ACCENT '`' |
1269 |
|
#define CHAR_a 'a' |
1270 |
|
#define CHAR_b 'b' |
1271 |
|
#define CHAR_c 'c' |
1272 |
|
#define CHAR_d 'd' |
1273 |
|
#define CHAR_e 'e' |
1274 |
|
#define CHAR_f 'f' |
1275 |
|
#define CHAR_g 'g' |
1276 |
|
#define CHAR_h 'h' |
1277 |
|
#define CHAR_i 'i' |
1278 |
|
#define CHAR_j 'j' |
1279 |
|
#define CHAR_k 'k' |
1280 |
|
#define CHAR_l 'l' |
1281 |
|
#define CHAR_m 'm' |
1282 |
|
#define CHAR_n 'n' |
1283 |
|
#define CHAR_o 'o' |
1284 |
|
#define CHAR_p 'p' |
1285 |
|
#define CHAR_q 'q' |
1286 |
|
#define CHAR_r 'r' |
1287 |
|
#define CHAR_s 's' |
1288 |
|
#define CHAR_t 't' |
1289 |
|
#define CHAR_u 'u' |
1290 |
|
#define CHAR_v 'v' |
1291 |
|
#define CHAR_w 'w' |
1292 |
|
#define CHAR_x 'x' |
1293 |
|
#define CHAR_y 'y' |
1294 |
|
#define CHAR_z 'z' |
1295 |
|
#define CHAR_LEFT_CURLY_BRACKET '{' |
1296 |
|
#define CHAR_VERTICAL_LINE '|' |
1297 |
|
#define CHAR_RIGHT_CURLY_BRACKET '}' |
1298 |
|
#define CHAR_TILDE '~' |
1299 |
|
|
1300 |
|
#define STR_HT "\t" |
1301 |
|
#define STR_VT "\v" |
1302 |
|
#define STR_FF "\f" |
1303 |
|
#define STR_CR "\r" |
1304 |
|
#define STR_BS "\b" |
1305 |
|
#define STR_BEL "\a" |
1306 |
|
|
1307 |
|
#define STR_SPACE " " |
1308 |
|
#define STR_EXCLAMATION_MARK "!" |
1309 |
|
#define STR_QUOTATION_MARK "\"" |
1310 |
|
#define STR_NUMBER_SIGN "#" |
1311 |
|
#define STR_DOLLAR_SIGN "$" |
1312 |
|
#define STR_PERCENT_SIGN "%" |
1313 |
|
#define STR_AMPERSAND "&" |
1314 |
|
#define STR_APOSTROPHE "'" |
1315 |
|
#define STR_LEFT_PARENTHESIS "(" |
1316 |
|
#define STR_RIGHT_PARENTHESIS ")" |
1317 |
|
#define STR_ASTERISK "*" |
1318 |
|
#define STR_PLUS "+" |
1319 |
|
#define STR_COMMA "," |
1320 |
|
#define STR_MINUS "-" |
1321 |
|
#define STR_DOT "." |
1322 |
|
#define STR_SLASH "/" |
1323 |
|
#define STR_0 "0" |
1324 |
|
#define STR_1 "1" |
1325 |
|
#define STR_2 "2" |
1326 |
|
#define STR_3 "3" |
1327 |
|
#define STR_4 "4" |
1328 |
|
#define STR_5 "5" |
1329 |
|
#define STR_6 "6" |
1330 |
|
#define STR_7 "7" |
1331 |
|
#define STR_8 "8" |
1332 |
|
#define STR_9 "9" |
1333 |
|
#define STR_COLON ":" |
1334 |
|
#define STR_SEMICOLON ";" |
1335 |
|
#define STR_LESS_THAN_SIGN "<" |
1336 |
|
#define STR_EQUALS_SIGN "=" |
1337 |
|
#define STR_GREATER_THAN_SIGN ">" |
1338 |
|
#define STR_QUESTION_MARK "?" |
1339 |
|
#define STR_COMMERCIAL_AT "@" |
1340 |
|
#define STR_A "A" |
1341 |
|
#define STR_B "B" |
1342 |
|
#define STR_C "C" |
1343 |
|
#define STR_D "D" |
1344 |
|
#define STR_E "E" |
1345 |
|
#define STR_F "F" |
1346 |
|
#define STR_G "G" |
1347 |
|
#define STR_H "H" |
1348 |
|
#define STR_I "I" |
1349 |
|
#define STR_J "J" |
1350 |
|
#define STR_K "K" |
1351 |
|
#define STR_L "L" |
1352 |
|
#define STR_M "M" |
1353 |
|
#define STR_N "N" |
1354 |
|
#define STR_O "O" |
1355 |
|
#define STR_P "P" |
1356 |
|
#define STR_Q "Q" |
1357 |
|
#define STR_R "R" |
1358 |
|
#define STR_S "S" |
1359 |
|
#define STR_T "T" |
1360 |
|
#define STR_U "U" |
1361 |
|
#define STR_V "V" |
1362 |
|
#define STR_W "W" |
1363 |
|
#define STR_X "X" |
1364 |
|
#define STR_Y "Y" |
1365 |
|
#define STR_Z "Z" |
1366 |
|
#define STR_LEFT_SQUARE_BRACKET "[" |
1367 |
|
#define STR_BACKSLASH "\\" |
1368 |
|
#define STR_RIGHT_SQUARE_BRACKET "]" |
1369 |
|
#define STR_CIRCUMFLEX_ACCENT "^" |
1370 |
|
#define STR_UNDERSCORE "_" |
1371 |
|
#define STR_GRAVE_ACCENT "`" |
1372 |
|
#define STR_a "a" |
1373 |
|
#define STR_b "b" |
1374 |
|
#define STR_c "c" |
1375 |
|
#define STR_d "d" |
1376 |
|
#define STR_e "e" |
1377 |
|
#define STR_f "f" |
1378 |
|
#define STR_g "g" |
1379 |
|
#define STR_h "h" |
1380 |
|
#define STR_i "i" |
1381 |
|
#define STR_j "j" |
1382 |
|
#define STR_k "k" |
1383 |
|
#define STR_l "l" |
1384 |
|
#define STR_m "m" |
1385 |
|
#define STR_n "n" |
1386 |
|
#define STR_o "o" |
1387 |
|
#define STR_p "p" |
1388 |
|
#define STR_q "q" |
1389 |
|
#define STR_r "r" |
1390 |
|
#define STR_s "s" |
1391 |
|
#define STR_t "t" |
1392 |
|
#define STR_u "u" |
1393 |
|
#define STR_v "v" |
1394 |
|
#define STR_w "w" |
1395 |
|
#define STR_x "x" |
1396 |
|
#define STR_y "y" |
1397 |
|
#define STR_z "z" |
1398 |
|
#define STR_LEFT_CURLY_BRACKET "{" |
1399 |
|
#define STR_VERTICAL_LINE "|" |
1400 |
|
#define STR_RIGHT_CURLY_BRACKET "}" |
1401 |
|
#define STR_TILDE "~" |
1402 |
|
|
1403 |
|
#define STRING_ACCEPT0 "ACCEPT\0" |
1404 |
|
#define STRING_COMMIT0 "COMMIT\0" |
1405 |
|
#define STRING_F0 "F\0" |
1406 |
|
#define STRING_FAIL0 "FAIL\0" |
1407 |
|
#define STRING_MARK0 "MARK\0" |
1408 |
|
#define STRING_PRUNE0 "PRUNE\0" |
1409 |
|
#define STRING_SKIP0 "SKIP\0" |
1410 |
|
#define STRING_THEN "THEN" |
1411 |
|
|
1412 |
|
#define STRING_alpha0 "alpha\0" |
1413 |
|
#define STRING_lower0 "lower\0" |
1414 |
|
#define STRING_upper0 "upper\0" |
1415 |
|
#define STRING_alnum0 "alnum\0" |
1416 |
|
#define STRING_ascii0 "ascii\0" |
1417 |
|
#define STRING_blank0 "blank\0" |
1418 |
|
#define STRING_cntrl0 "cntrl\0" |
1419 |
|
#define STRING_digit0 "digit\0" |
1420 |
|
#define STRING_graph0 "graph\0" |
1421 |
|
#define STRING_print0 "print\0" |
1422 |
|
#define STRING_punct0 "punct\0" |
1423 |
|
#define STRING_space0 "space\0" |
1424 |
|
#define STRING_word0 "word\0" |
1425 |
|
#define STRING_xdigit "xdigit" |
1426 |
|
|
1427 |
|
#define STRING_DEFINE "DEFINE" |
1428 |
|
|
1429 |
|
#define STRING_CR_RIGHTPAR "CR)" |
1430 |
|
#define STRING_LF_RIGHTPAR "LF)" |
1431 |
|
#define STRING_CRLF_RIGHTPAR "CRLF)" |
1432 |
|
#define STRING_ANY_RIGHTPAR "ANY)" |
1433 |
|
#define STRING_ANYCRLF_RIGHTPAR "ANYCRLF)" |
1434 |
|
#define STRING_BSR_ANYCRLF_RIGHTPAR "BSR_ANYCRLF)" |
1435 |
|
#define STRING_BSR_UNICODE_RIGHTPAR "BSR_UNICODE)" |
1436 |
|
#ifdef COMPILE_PCRE8 |
1437 |
|
#define STRING_UTF_RIGHTPAR "UTF8)" |
1438 |
|
#endif |
1439 |
|
#ifdef COMPILE_PCRE16 |
1440 |
|
#define STRING_UTF_RIGHTPAR "UTF16)" |
1441 |
|
#endif |
1442 |
|
#ifdef COMPILE_PCRE32 |
1443 |
|
#define STRING_UTF_RIGHTPAR "UTF32)" |
1444 |
|
#endif |
1445 |
|
#define STRING_UCP_RIGHTPAR "UCP)" |
1446 |
|
#define STRING_NO_START_OPT_RIGHTPAR "NO_START_OPT)" |
1447 |
|
|
1448 |
|
#else /* SUPPORT_UTF */ |
1449 |
|
|
1450 |
|
/* UTF-8 support is enabled; always use UTF-8 (=ASCII) character codes. This |
1451 |
|
works in both modes non-EBCDIC platforms, and on EBCDIC platforms in UTF-8 mode |
1452 |
|
only. */ |
1453 |
|
|
1454 |
|
#define CHAR_HT '\011' |
1455 |
|
#define CHAR_VT '\013' |
1456 |
|
#define CHAR_FF '\014' |
1457 |
|
#define CHAR_CR '\015' |
1458 |
|
#define CHAR_LF '\012' |
1459 |
|
#define CHAR_NL CHAR_LF |
1460 |
|
#define CHAR_NEL ((unsigned char)'\x85') |
1461 |
|
#define CHAR_BS '\010' |
1462 |
|
#define CHAR_BEL '\007' |
1463 |
|
#define CHAR_ESC '\033' |
1464 |
|
#define CHAR_DEL '\177' |
1465 |
|
|
1466 |
|
#define CHAR_SPACE '\040' |
1467 |
|
#define CHAR_EXCLAMATION_MARK '\041' |
1468 |
|
#define CHAR_QUOTATION_MARK '\042' |
1469 |
|
#define CHAR_NUMBER_SIGN '\043' |
1470 |
|
#define CHAR_DOLLAR_SIGN '\044' |
1471 |
|
#define CHAR_PERCENT_SIGN '\045' |
1472 |
|
#define CHAR_AMPERSAND '\046' |
1473 |
|
#define CHAR_APOSTROPHE '\047' |
1474 |
|
#define CHAR_LEFT_PARENTHESIS '\050' |
1475 |
|
#define CHAR_RIGHT_PARENTHESIS '\051' |
1476 |
|
#define CHAR_ASTERISK '\052' |
1477 |
|
#define CHAR_PLUS '\053' |
1478 |
|
#define CHAR_COMMA '\054' |
1479 |
|
#define CHAR_MINUS '\055' |
1480 |
|
#define CHAR_DOT '\056' |
1481 |
|
#define CHAR_SLASH '\057' |
1482 |
|
#define CHAR_0 '\060' |
1483 |
|
#define CHAR_1 '\061' |
1484 |
|
#define CHAR_2 '\062' |
1485 |
|
#define CHAR_3 '\063' |
1486 |
|
#define CHAR_4 '\064' |
1487 |
|
#define CHAR_5 '\065' |
1488 |
|
#define CHAR_6 '\066' |
1489 |
|
#define CHAR_7 '\067' |
1490 |
|
#define CHAR_8 '\070' |
1491 |
|
#define CHAR_9 '\071' |
1492 |
|
#define CHAR_COLON '\072' |
1493 |
|
#define CHAR_SEMICOLON '\073' |
1494 |
|
#define CHAR_LESS_THAN_SIGN '\074' |
1495 |
|
#define CHAR_EQUALS_SIGN '\075' |
1496 |
|
#define CHAR_GREATER_THAN_SIGN '\076' |
1497 |
|
#define CHAR_QUESTION_MARK '\077' |
1498 |
|
#define CHAR_COMMERCIAL_AT '\100' |
1499 |
|
#define CHAR_A '\101' |
1500 |
|
#define CHAR_B '\102' |
1501 |
|
#define CHAR_C '\103' |
1502 |
|
#define CHAR_D '\104' |
1503 |
|
#define CHAR_E '\105' |
1504 |
|
#define CHAR_F '\106' |
1505 |
|
#define CHAR_G '\107' |
1506 |
|
#define CHAR_H '\110' |
1507 |
|
#define CHAR_I '\111' |
1508 |
|
#define CHAR_J '\112' |
1509 |
|
#define CHAR_K '\113' |
1510 |
|
#define CHAR_L '\114' |
1511 |
|
#define CHAR_M '\115' |
1512 |
|
#define CHAR_N '\116' |
1513 |
|
#define CHAR_O '\117' |
1514 |
|
#define CHAR_P '\120' |
1515 |
|
#define CHAR_Q '\121' |
1516 |
|
#define CHAR_R '\122' |
1517 |
|
#define CHAR_S '\123' |
1518 |
|
#define CHAR_T '\124' |
1519 |
|
#define CHAR_U '\125' |
1520 |
|
#define CHAR_V '\126' |
1521 |
|
#define CHAR_W '\127' |
1522 |
|
#define CHAR_X '\130' |
1523 |
|
#define CHAR_Y '\131' |
1524 |
|
#define CHAR_Z '\132' |
1525 |
|
#define CHAR_LEFT_SQUARE_BRACKET '\133' |
1526 |
|
#define CHAR_BACKSLASH '\134' |
1527 |
|
#define CHAR_RIGHT_SQUARE_BRACKET '\135' |
1528 |
|
#define CHAR_CIRCUMFLEX_ACCENT '\136' |
1529 |
|
#define CHAR_UNDERSCORE '\137' |
1530 |
|
#define CHAR_GRAVE_ACCENT '\140' |
1531 |
|
#define CHAR_a '\141' |
1532 |
|
#define CHAR_b '\142' |
1533 |
|
#define CHAR_c '\143' |
1534 |
|
#define CHAR_d '\144' |
1535 |
|
#define CHAR_e '\145' |
1536 |
|
#define CHAR_f '\146' |
1537 |
|
#define CHAR_g '\147' |
1538 |
|
#define CHAR_h '\150' |
1539 |
|
#define CHAR_i '\151' |
1540 |
|
#define CHAR_j '\152' |
1541 |
|
#define CHAR_k '\153' |
1542 |
|
#define CHAR_l '\154' |
1543 |
|
#define CHAR_m '\155' |
1544 |
|
#define CHAR_n '\156' |
1545 |
|
#define CHAR_o '\157' |
1546 |
|
#define CHAR_p '\160' |
1547 |
|
#define CHAR_q '\161' |
1548 |
|
#define CHAR_r '\162' |
1549 |
|
#define CHAR_s '\163' |
1550 |
|
#define CHAR_t '\164' |
1551 |
|
#define CHAR_u '\165' |
1552 |
|
#define CHAR_v '\166' |
1553 |
|
#define CHAR_w '\167' |
1554 |
|
#define CHAR_x '\170' |
1555 |
|
#define CHAR_y '\171' |
1556 |
|
#define CHAR_z '\172' |
1557 |
|
#define CHAR_LEFT_CURLY_BRACKET '\173' |
1558 |
|
#define CHAR_VERTICAL_LINE '\174' |
1559 |
|
#define CHAR_RIGHT_CURLY_BRACKET '\175' |
1560 |
|
#define CHAR_TILDE '\176' |
1561 |
|
|
1562 |
|
#define STR_HT "\011" |
1563 |
|
#define STR_VT "\013" |
1564 |
|
#define STR_FF "\014" |
1565 |
|
#define STR_CR "\015" |
1566 |
|
#define STR_NL "\012" |
1567 |
|
#define STR_BS "\010" |
1568 |
|
#define STR_BEL "\007" |
1569 |
|
#define STR_ESC "\033" |
1570 |
|
#define STR_DEL "\177" |
1571 |
|
|
1572 |
|
#define STR_SPACE "\040" |
1573 |
|
#define STR_EXCLAMATION_MARK "\041" |
1574 |
|
#define STR_QUOTATION_MARK "\042" |
1575 |
|
#define STR_NUMBER_SIGN "\043" |
1576 |
|
#define STR_DOLLAR_SIGN "\044" |
1577 |
|
#define STR_PERCENT_SIGN "\045" |
1578 |
|
#define STR_AMPERSAND "\046" |
1579 |
|
#define STR_APOSTROPHE "\047" |
1580 |
|
#define STR_LEFT_PARENTHESIS "\050" |
1581 |
|
#define STR_RIGHT_PARENTHESIS "\051" |
1582 |
|
#define STR_ASTERISK "\052" |
1583 |
|
#define STR_PLUS "\053" |
1584 |
|
#define STR_COMMA "\054" |
1585 |
|
#define STR_MINUS "\055" |
1586 |
|
#define STR_DOT "\056" |
1587 |
|
#define STR_SLASH "\057" |
1588 |
|
#define STR_0 "\060" |
1589 |
|
#define STR_1 "\061" |
1590 |
|
#define STR_2 "\062" |
1591 |
|
#define STR_3 "\063" |
1592 |
|
#define STR_4 "\064" |
1593 |
|
#define STR_5 "\065" |
1594 |
|
#define STR_6 "\066" |
1595 |
|
#define STR_7 "\067" |
1596 |
|
#define STR_8 "\070" |
1597 |
|
#define STR_9 "\071" |
1598 |
|
#define STR_COLON "\072" |
1599 |
|
#define STR_SEMICOLON "\073" |
1600 |
|
#define STR_LESS_THAN_SIGN "\074" |
1601 |
|
#define STR_EQUALS_SIGN "\075" |
1602 |
|
#define STR_GREATER_THAN_SIGN "\076" |
1603 |
|
#define STR_QUESTION_MARK "\077" |
1604 |
|
#define STR_COMMERCIAL_AT "\100" |
1605 |
|
#define STR_A "\101" |
1606 |
|
#define STR_B "\102" |
1607 |
|
#define STR_C "\103" |
1608 |
|
#define STR_D "\104" |
1609 |
|
#define STR_E "\105" |
1610 |
|
#define STR_F "\106" |
1611 |
|
#define STR_G "\107" |
1612 |
|
#define STR_H "\110" |
1613 |
|
#define STR_I "\111" |
1614 |
|
#define STR_J "\112" |
1615 |
|
#define STR_K "\113" |
1616 |
|
#define STR_L "\114" |
1617 |
|
#define STR_M "\115" |
1618 |
|
#define STR_N "\116" |
1619 |
|
#define STR_O "\117" |
1620 |
|
#define STR_P "\120" |
1621 |
|
#define STR_Q "\121" |
1622 |
|
#define STR_R "\122" |
1623 |
|
#define STR_S "\123" |
1624 |
|
#define STR_T "\124" |
1625 |
|
#define STR_U "\125" |
1626 |
|
#define STR_V "\126" |
1627 |
|
#define STR_W "\127" |
1628 |
|
#define STR_X "\130" |
1629 |
|
#define STR_Y "\131" |
1630 |
|
#define STR_Z "\132" |
1631 |
|
#define STR_LEFT_SQUARE_BRACKET "\133" |
1632 |
|
#define STR_BACKSLASH "\134" |
1633 |
|
#define STR_RIGHT_SQUARE_BRACKET "\135" |
1634 |
|
#define STR_CIRCUMFLEX_ACCENT "\136" |
1635 |
|
#define STR_UNDERSCORE "\137" |
1636 |
|
#define STR_GRAVE_ACCENT "\140" |
1637 |
|
#define STR_a "\141" |
1638 |
|
#define STR_b "\142" |
1639 |
|
#define STR_c "\143" |
1640 |
|
#define STR_d "\144" |
1641 |
|
#define STR_e "\145" |
1642 |
|
#define STR_f "\146" |
1643 |
|
#define STR_g "\147" |
1644 |
|
#define STR_h "\150" |
1645 |
|
#define STR_i "\151" |
1646 |
|
#define STR_j "\152" |
1647 |
|
#define STR_k "\153" |
1648 |
|
#define STR_l "\154" |
1649 |
|
#define STR_m "\155" |
1650 |
|
#define STR_n "\156" |
1651 |
|
#define STR_o "\157" |
1652 |
|
#define STR_p "\160" |
1653 |
|
#define STR_q "\161" |
1654 |
|
#define STR_r "\162" |
1655 |
|
#define STR_s "\163" |
1656 |
|
#define STR_t "\164" |
1657 |
|
#define STR_u "\165" |
1658 |
|
#define STR_v "\166" |
1659 |
|
#define STR_w "\167" |
1660 |
|
#define STR_x "\170" |
1661 |
|
#define STR_y "\171" |
1662 |
|
#define STR_z "\172" |
1663 |
|
#define STR_LEFT_CURLY_BRACKET "\173" |
1664 |
|
#define STR_VERTICAL_LINE "\174" |
1665 |
|
#define STR_RIGHT_CURLY_BRACKET "\175" |
1666 |
|
#define STR_TILDE "\176" |
1667 |
|
|
1668 |
|
#define STRING_ACCEPT0 STR_A STR_C STR_C STR_E STR_P STR_T "\0" |
1669 |
|
#define STRING_COMMIT0 STR_C STR_O STR_M STR_M STR_I STR_T "\0" |
1670 |
|
#define STRING_F0 STR_F "\0" |
1671 |
|
#define STRING_FAIL0 STR_F STR_A STR_I STR_L "\0" |
1672 |
|
#define STRING_MARK0 STR_M STR_A STR_R STR_K "\0" |
1673 |
|
#define STRING_PRUNE0 STR_P STR_R STR_U STR_N STR_E "\0" |
1674 |
|
#define STRING_SKIP0 STR_S STR_K STR_I STR_P "\0" |
1675 |
|
#define STRING_THEN STR_T STR_H STR_E STR_N |
1676 |
|
|
1677 |
|
#define STRING_alpha0 STR_a STR_l STR_p STR_h STR_a "\0" |
1678 |
|
#define STRING_lower0 STR_l STR_o STR_w STR_e STR_r "\0" |
1679 |
|
#define STRING_upper0 STR_u STR_p STR_p STR_e STR_r "\0" |
1680 |
|
#define STRING_alnum0 STR_a STR_l STR_n STR_u STR_m "\0" |
1681 |
|
#define STRING_ascii0 STR_a STR_s STR_c STR_i STR_i "\0" |
1682 |
|
#define STRING_blank0 STR_b STR_l STR_a STR_n STR_k "\0" |
1683 |
|
#define STRING_cntrl0 STR_c STR_n STR_t STR_r STR_l "\0" |
1684 |
|
#define STRING_digit0 STR_d STR_i STR_g STR_i STR_t "\0" |
1685 |
|
#define STRING_graph0 STR_g STR_r STR_a STR_p STR_h "\0" |
1686 |
|
#define STRING_print0 STR_p STR_r STR_i STR_n STR_t "\0" |
1687 |
|
#define STRING_punct0 STR_p STR_u STR_n STR_c STR_t "\0" |
1688 |
|
#define STRING_space0 STR_s STR_p STR_a STR_c STR_e "\0" |
1689 |
|
#define STRING_word0 STR_w STR_o STR_r STR_d "\0" |
1690 |
|
#define STRING_xdigit STR_x STR_d STR_i STR_g STR_i STR_t |
1691 |
|
|
1692 |
|
#define STRING_DEFINE STR_D STR_E STR_F STR_I STR_N STR_E |
1693 |
|
|
1694 |
|
#define STRING_CR_RIGHTPAR STR_C STR_R STR_RIGHT_PARENTHESIS |
1695 |
|
#define STRING_LF_RIGHTPAR STR_L STR_F STR_RIGHT_PARENTHESIS |
1696 |
|
#define STRING_CRLF_RIGHTPAR STR_C STR_R STR_L STR_F STR_RIGHT_PARENTHESIS |
1697 |
|
#define STRING_ANY_RIGHTPAR STR_A STR_N STR_Y STR_RIGHT_PARENTHESIS |
1698 |
|
#define STRING_ANYCRLF_RIGHTPAR STR_A STR_N STR_Y STR_C STR_R STR_L STR_F STR_RIGHT_PARENTHESIS |
1699 |
|
#define STRING_BSR_ANYCRLF_RIGHTPAR STR_B STR_S STR_R STR_UNDERSCORE STR_A STR_N STR_Y STR_C STR_R STR_L STR_F STR_RIGHT_PARENTHESIS |
1700 |
|
#define STRING_BSR_UNICODE_RIGHTPAR STR_B STR_S STR_R STR_UNDERSCORE STR_U STR_N STR_I STR_C STR_O STR_D STR_E STR_RIGHT_PARENTHESIS |
1701 |
|
#ifdef COMPILE_PCRE8 |
1702 |
|
#define STRING_UTF_RIGHTPAR STR_U STR_T STR_F STR_8 STR_RIGHT_PARENTHESIS |
1703 |
|
#endif |
1704 |
|
#ifdef COMPILE_PCRE16 |
1705 |
|
#define STRING_UTF_RIGHTPAR STR_U STR_T STR_F STR_1 STR_6 STR_RIGHT_PARENTHESIS |
1706 |
|
#endif |
1707 |
|
#ifdef COMPILE_PCRE32 |
1708 |
|
#define STRING_UTF_RIGHTPAR STR_U STR_T STR_F STR_3 STR_2 STR_RIGHT_PARENTHESIS |
1709 |
|
#endif |
1710 |
|
#define STRING_UCP_RIGHTPAR STR_U STR_C STR_P STR_RIGHT_PARENTHESIS |
1711 |
|
#define STRING_NO_START_OPT_RIGHTPAR STR_N STR_O STR_UNDERSCORE STR_S STR_T STR_A STR_R STR_T STR_UNDERSCORE STR_O STR_P STR_T STR_RIGHT_PARENTHESIS |
1712 |
|
|
1713 |
|
#endif /* SUPPORT_UTF */ |
1714 |
|
|
1715 |
/* Escape items that are just an encoding of a particular data value. */ |
/* Escape items that are just an encoding of a particular data value. */ |
1716 |
|
|
1717 |
#ifndef ESC_e |
#ifndef ESC_e |
1718 |
#define ESC_e 27 |
#define ESC_e CHAR_ESC |
1719 |
#endif |
#endif |
1720 |
|
|
1721 |
#ifndef ESC_f |
#ifndef ESC_f |
1722 |
#define ESC_f '\f' |
#define ESC_f CHAR_FF |
1723 |
#endif |
#endif |
1724 |
|
|
1725 |
#ifndef ESC_n |
#ifndef ESC_n |
1726 |
#define ESC_n '\n' |
#define ESC_n CHAR_LF |
1727 |
#endif |
#endif |
1728 |
|
|
1729 |
#ifndef ESC_r |
#ifndef ESC_r |
1730 |
#define ESC_r '\r' |
#define ESC_r CHAR_CR |
1731 |
#endif |
#endif |
1732 |
|
|
1733 |
/* We can't officially use ESC_t because it is a POSIX reserved identifier |
/* We can't officially use ESC_t because it is a POSIX reserved identifier |
1734 |
(presumably because of all the others like size_t). */ |
(presumably because of all the others like size_t). */ |
1735 |
|
|
1736 |
#ifndef ESC_tee |
#ifndef ESC_tee |
1737 |
#define ESC_tee '\t' |
#define ESC_tee CHAR_HT |
1738 |
#endif |
#endif |
1739 |
|
|
1740 |
/* Codes for different types of Unicode property */ |
/* Codes for different types of Unicode property */ |
1741 |
|
|
1742 |
#define PT_ANY 0 /* Any property - matches all chars */ |
#define PT_ANY 0 /* Any property - matches all chars */ |
1743 |
#define PT_LAMP 1 /* L& - the union of Lu, Ll, Lt */ |
#define PT_LAMP 1 /* L& - the union of Lu, Ll, Lt */ |
1744 |
#define PT_GC 2 /* General characteristic (e.g. L) */ |
#define PT_GC 2 /* Specified general characteristic (e.g. L) */ |
1745 |
#define PT_PC 3 /* Particular characteristic (e.g. Lu) */ |
#define PT_PC 3 /* Specified particular characteristic (e.g. Lu) */ |
1746 |
#define PT_SC 4 /* Script (e.g. Han) */ |
#define PT_SC 4 /* Script (e.g. Han) */ |
1747 |
|
#define PT_ALNUM 5 /* Alphanumeric - the union of L and N */ |
1748 |
|
#define PT_SPACE 6 /* Perl space - Z plus 9,10,12,13 */ |
1749 |
|
#define PT_PXSPACE 7 /* POSIX space - Z plus 9,10,11,12,13 */ |
1750 |
|
#define PT_WORD 8 /* Word - L plus N plus underscore */ |
1751 |
|
#define PT_CLIST 9 /* Pseudo-property: match character list */ |
1752 |
|
|
1753 |
/* Flag bits and data types for the extended class (OP_XCLASS) for classes that |
/* Flag bits and data types for the extended class (OP_XCLASS) for classes that |
1754 |
contain UTF-8 characters with values greater than 255. */ |
contain characters with values greater than 255. */ |
1755 |
|
|
1756 |
#define XCL_NOT 0x01 /* Flag: this is a negative class */ |
#define XCL_NOT 0x01 /* Flag: this is a negative class */ |
1757 |
#define XCL_MAP 0x02 /* Flag: a 32-byte map is present */ |
#define XCL_MAP 0x02 /* Flag: a 32-byte map is present */ |
1765 |
/* These are escaped items that aren't just an encoding of a particular data |
/* These are escaped items that aren't just an encoding of a particular data |
1766 |
value such as \n. They must have non-zero values, as check_escape() returns |
value such as \n. They must have non-zero values, as check_escape() returns |
1767 |
their negation. Also, they must appear in the same order as in the opcode |
their negation. Also, they must appear in the same order as in the opcode |
1768 |
definitions below, up to ESC_z. There's a dummy for OP_ANY because it |
definitions below, up to ESC_z. There's a dummy for OP_ALLANY because it |
1769 |
corresponds to "." rather than an escape sequence, and another for OP_ALLANY |
corresponds to "." in DOTALL mode rather than an escape sequence. It is also |
1770 |
(which is used for [^] in JavaScript compatibility mode). |
used for [^] in JavaScript compatibility mode, and for \C in non-utf mode. In |
1771 |
|
non-DOTALL mode, "." behaves like \N. |
1772 |
|
|
1773 |
|
The special values ESC_DU, ESC_du, etc. are used instead of ESC_D, ESC_d, etc. |
1774 |
|
when PCRE_UCP is set and replacement of \d etc by \p sequences is required. |
1775 |
|
They must be contiguous, and remain in order so that the replacements can be |
1776 |
|
looked up from a table. |
1777 |
|
|
1778 |
The final escape must be ESC_REF as subsequent values are used for |
The final escape must be ESC_REF as subsequent values are used for |
1779 |
backreferences (\1, \2, \3, etc). There are two tests in the code for an escape |
backreferences (\1, \2, \3, etc). There are two tests in the code for an escape |
1783 |
*/ |
*/ |
1784 |
|
|
1785 |
enum { ESC_A = 1, ESC_G, ESC_K, ESC_B, ESC_b, ESC_D, ESC_d, ESC_S, ESC_s, |
enum { ESC_A = 1, ESC_G, ESC_K, ESC_B, ESC_b, ESC_D, ESC_d, ESC_S, ESC_s, |
1786 |
ESC_W, ESC_w, ESC_dum1, ESC_dum2, ESC_C, ESC_P, ESC_p, ESC_R, ESC_H, |
ESC_W, ESC_w, ESC_N, ESC_dum, ESC_C, ESC_P, ESC_p, ESC_R, ESC_H, |
1787 |
ESC_h, ESC_V, ESC_v, ESC_X, ESC_Z, ESC_z, ESC_E, ESC_Q, ESC_g, ESC_k, |
ESC_h, ESC_V, ESC_v, ESC_X, ESC_Z, ESC_z, |
1788 |
|
ESC_E, ESC_Q, ESC_g, ESC_k, |
1789 |
|
ESC_DU, ESC_du, ESC_SU, ESC_su, ESC_WU, ESC_wu, |
1790 |
ESC_REF }; |
ESC_REF }; |
1791 |
|
|
|
|
|
1792 |
/* Opcode table: Starting from 1 (i.e. after OP_END), the values up to |
/* Opcode table: Starting from 1 (i.e. after OP_END), the values up to |
1793 |
OP_EOD must correspond in order to the list of escapes immediately above. |
OP_EOD must correspond in order to the list of escapes immediately above. |
1794 |
|
|
1795 |
*** NOTE NOTE NOTE *** Whenever this list is updated, the two macro definitions |
*** NOTE NOTE NOTE *** Whenever this list is updated, the two macro definitions |
1796 |
that follow must also be updated to match. There is also a table called |
that follow must also be updated to match. There are also tables called |
1797 |
"coptable" in pcre_dfa_exec.c that must be updated. */ |
"coptable" and "poptable" in pcre_dfa_exec.c that must be updated. */ |
1798 |
|
|
1799 |
enum { |
enum { |
1800 |
OP_END, /* 0 End of pattern */ |
OP_END, /* 0 End of pattern */ |
1812 |
OP_WHITESPACE, /* 9 \s */ |
OP_WHITESPACE, /* 9 \s */ |
1813 |
OP_NOT_WORDCHAR, /* 10 \W */ |
OP_NOT_WORDCHAR, /* 10 \W */ |
1814 |
OP_WORDCHAR, /* 11 \w */ |
OP_WORDCHAR, /* 11 \w */ |
1815 |
OP_ANY, /* 12 Match any character (subject to DOTALL) */ |
|
1816 |
OP_ALLANY, /* 13 Match any character (not subject to DOTALL) */ |
OP_ANY, /* 12 Match any character except newline (\N) */ |
1817 |
|
OP_ALLANY, /* 13 Match any character */ |
1818 |
OP_ANYBYTE, /* 14 Match any byte (\C); different to OP_ANY for UTF-8 */ |
OP_ANYBYTE, /* 14 Match any byte (\C); different to OP_ANY for UTF-8 */ |
1819 |
OP_NOTPROP, /* 15 \P (not Unicode property) */ |
OP_NOTPROP, /* 15 \P (not Unicode property) */ |
1820 |
OP_PROP, /* 16 \p (Unicode property) */ |
OP_PROP, /* 16 \p (Unicode property) */ |
1824 |
OP_NOT_VSPACE, /* 20 \V (not vertical whitespace) */ |
OP_NOT_VSPACE, /* 20 \V (not vertical whitespace) */ |
1825 |
OP_VSPACE, /* 21 \v (vertical whitespace) */ |
OP_VSPACE, /* 21 \v (vertical whitespace) */ |
1826 |
OP_EXTUNI, /* 22 \X (extended Unicode sequence */ |
OP_EXTUNI, /* 22 \X (extended Unicode sequence */ |
1827 |
OP_EODN, /* 23 End of data or \n at end of data: \Z. */ |
OP_EODN, /* 23 End of data or \n at end of data (\Z) */ |
1828 |
OP_EOD, /* 24 End of data: \z */ |
OP_EOD, /* 24 End of data (\z) */ |
1829 |
|
|
1830 |
OP_OPT, /* 25 Set runtime options */ |
OP_CIRC, /* 25 Start of line - not multiline */ |
1831 |
OP_CIRC, /* 26 Start of line - varies with multiline switch */ |
OP_CIRCM, /* 26 Start of line - multiline */ |
1832 |
OP_DOLL, /* 27 End of line - varies with multiline switch */ |
OP_DOLL, /* 27 End of line - not multiline */ |
1833 |
OP_CHAR, /* 28 Match one character, casefully */ |
OP_DOLLM, /* 28 End of line - multiline */ |
1834 |
OP_CHARNC, /* 29 Match one character, caselessly */ |
OP_CHAR, /* 29 Match one character, casefully */ |
1835 |
OP_NOT, /* 30 Match one character, not the following one */ |
OP_CHARI, /* 30 Match one character, caselessly */ |
1836 |
|
OP_NOT, /* 31 Match one character, not the given one, casefully */ |
1837 |
OP_STAR, /* 31 The maximizing and minimizing versions of */ |
OP_NOTI, /* 32 Match one character, not the given one, caselessly */ |
1838 |
OP_MINSTAR, /* 32 these six opcodes must come in pairs, with */ |
|
1839 |
OP_PLUS, /* 33 the minimizing one second. */ |
/* The following sets of 13 opcodes must always be kept in step because |
1840 |
OP_MINPLUS, /* 34 This first set applies to single characters.*/ |
the offset from the first one is used to generate the others. */ |
1841 |
OP_QUERY, /* 35 */ |
|
1842 |
OP_MINQUERY, /* 36 */ |
/**** Single characters, caseful, must precede the caseless ones ****/ |
1843 |
|
|
1844 |
OP_UPTO, /* 37 From 0 to n matches */ |
OP_STAR, /* 33 The maximizing and minimizing versions of */ |
1845 |
OP_MINUPTO, /* 38 */ |
OP_MINSTAR, /* 34 these six opcodes must come in pairs, with */ |
1846 |
OP_EXACT, /* 39 Exactly n matches */ |
OP_PLUS, /* 35 the minimizing one second. */ |
1847 |
|
OP_MINPLUS, /* 36 */ |
1848 |
OP_POSSTAR, /* 40 Possessified star */ |
OP_QUERY, /* 37 */ |
1849 |
OP_POSPLUS, /* 41 Possessified plus */ |
OP_MINQUERY, /* 38 */ |
1850 |
OP_POSQUERY, /* 42 Posesssified query */ |
|
1851 |
OP_POSUPTO, /* 43 Possessified upto */ |
OP_UPTO, /* 39 From 0 to n matches of one character, caseful*/ |
1852 |
|
OP_MINUPTO, /* 40 */ |
1853 |
OP_NOTSTAR, /* 44 The maximizing and minimizing versions of */ |
OP_EXACT, /* 41 Exactly n matches */ |
1854 |
OP_NOTMINSTAR, /* 45 these six opcodes must come in pairs, with */ |
|
1855 |
OP_NOTPLUS, /* 46 the minimizing one second. They must be in */ |
OP_POSSTAR, /* 42 Possessified star, caseful */ |
1856 |
OP_NOTMINPLUS, /* 47 exactly the same order as those above. */ |
OP_POSPLUS, /* 43 Possessified plus, caseful */ |
1857 |
OP_NOTQUERY, /* 48 This set applies to "not" single characters. */ |
OP_POSQUERY, /* 44 Posesssified query, caseful */ |
1858 |
OP_NOTMINQUERY, /* 49 */ |
OP_POSUPTO, /* 45 Possessified upto, caseful */ |
1859 |
|
|
1860 |
OP_NOTUPTO, /* 50 From 0 to n matches */ |
/**** Single characters, caseless, must follow the caseful ones */ |
1861 |
OP_NOTMINUPTO, /* 51 */ |
|
1862 |
OP_NOTEXACT, /* 52 Exactly n matches */ |
OP_STARI, /* 46 */ |
1863 |
|
OP_MINSTARI, /* 47 */ |
1864 |
OP_NOTPOSSTAR, /* 53 Possessified versions */ |
OP_PLUSI, /* 48 */ |
1865 |
OP_NOTPOSPLUS, /* 54 */ |
OP_MINPLUSI, /* 49 */ |
1866 |
OP_NOTPOSQUERY, /* 55 */ |
OP_QUERYI, /* 50 */ |
1867 |
OP_NOTPOSUPTO, /* 56 */ |
OP_MINQUERYI, /* 51 */ |
1868 |
|
|
1869 |
OP_TYPESTAR, /* 57 The maximizing and minimizing versions of */ |
OP_UPTOI, /* 52 From 0 to n matches of one character, caseless */ |
1870 |
OP_TYPEMINSTAR, /* 58 these six opcodes must come in pairs, with */ |
OP_MINUPTOI, /* 53 */ |
1871 |
OP_TYPEPLUS, /* 59 the minimizing one second. These codes must */ |
OP_EXACTI, /* 54 */ |
1872 |
OP_TYPEMINPLUS, /* 60 be in exactly the same order as those above. */ |
|
1873 |
OP_TYPEQUERY, /* 61 This set applies to character types such as \d */ |
OP_POSSTARI, /* 55 Possessified star, caseless */ |
1874 |
OP_TYPEMINQUERY, /* 62 */ |
OP_POSPLUSI, /* 56 Possessified plus, caseless */ |
1875 |
|
OP_POSQUERYI, /* 57 Posesssified query, caseless */ |
1876 |
OP_TYPEUPTO, /* 63 From 0 to n matches */ |
OP_POSUPTOI, /* 58 Possessified upto, caseless */ |
1877 |
OP_TYPEMINUPTO, /* 64 */ |
|
1878 |
OP_TYPEEXACT, /* 65 Exactly n matches */ |
/**** The negated ones must follow the non-negated ones, and match them ****/ |
1879 |
|
/**** Negated single character, caseful; must precede the caseless ones ****/ |
1880 |
OP_TYPEPOSSTAR, /* 66 Possessified versions */ |
|
1881 |
OP_TYPEPOSPLUS, /* 67 */ |
OP_NOTSTAR, /* 59 The maximizing and minimizing versions of */ |
1882 |
OP_TYPEPOSQUERY, /* 68 */ |
OP_NOTMINSTAR, /* 60 these six opcodes must come in pairs, with */ |
1883 |
OP_TYPEPOSUPTO, /* 69 */ |
OP_NOTPLUS, /* 61 the minimizing one second. They must be in */ |
1884 |
|
OP_NOTMINPLUS, /* 62 exactly the same order as those above. */ |
1885 |
OP_CRSTAR, /* 70 The maximizing and minimizing versions of */ |
OP_NOTQUERY, /* 63 */ |
1886 |
OP_CRMINSTAR, /* 71 all these opcodes must come in pairs, with */ |
OP_NOTMINQUERY, /* 64 */ |
1887 |
OP_CRPLUS, /* 72 the minimizing one second. These codes must */ |
|
1888 |
OP_CRMINPLUS, /* 73 be in exactly the same order as those above. */ |
OP_NOTUPTO, /* 65 From 0 to n matches, caseful */ |
1889 |
OP_CRQUERY, /* 74 These are for character classes and back refs */ |
OP_NOTMINUPTO, /* 66 */ |
1890 |
OP_CRMINQUERY, /* 75 */ |
OP_NOTEXACT, /* 67 Exactly n matches */ |
1891 |
OP_CRRANGE, /* 76 These are different to the three sets above. */ |
|
1892 |
OP_CRMINRANGE, /* 77 */ |
OP_NOTPOSSTAR, /* 68 Possessified versions, caseful */ |
1893 |
|
OP_NOTPOSPLUS, /* 69 */ |
1894 |
OP_CLASS, /* 78 Match a character class, chars < 256 only */ |
OP_NOTPOSQUERY, /* 70 */ |
1895 |
OP_NCLASS, /* 79 Same, but the bitmap was created from a negative |
OP_NOTPOSUPTO, /* 71 */ |
1896 |
class - the difference is relevant only when a UTF-8 |
|
1897 |
character > 255 is encountered. */ |
/**** Negated single character, caseless; must follow the caseful ones ****/ |
1898 |
|
|
1899 |
OP_XCLASS, /* 80 Extended class for handling UTF-8 chars within the |
OP_NOTSTARI, /* 72 */ |
1900 |
class. This does both positive and negative. */ |
OP_NOTMINSTARI, /* 73 */ |
1901 |
|
OP_NOTPLUSI, /* 74 */ |
1902 |
OP_REF, /* 81 Match a back reference */ |
OP_NOTMINPLUSI, /* 75 */ |
1903 |
OP_RECURSE, /* 82 Match a numbered subpattern (possibly recursive) */ |
OP_NOTQUERYI, /* 76 */ |
1904 |
OP_CALLOUT, /* 83 Call out to external function if provided */ |
OP_NOTMINQUERYI, /* 77 */ |
1905 |
|
|
1906 |
OP_ALT, /* 84 Start of alternation */ |
OP_NOTUPTOI, /* 78 From 0 to n matches, caseless */ |
1907 |
OP_KET, /* 85 End of group that doesn't have an unbounded repeat */ |
OP_NOTMINUPTOI, /* 79 */ |
1908 |
OP_KETRMAX, /* 86 These two must remain together and in this */ |
OP_NOTEXACTI, /* 80 Exactly n matches */ |
1909 |
OP_KETRMIN, /* 87 order. They are for groups the repeat for ever. */ |
|
1910 |
|
OP_NOTPOSSTARI, /* 81 Possessified versions, caseless */ |
1911 |
/* The assertions must come before BRA, CBRA, ONCE, and COND.*/ |
OP_NOTPOSPLUSI, /* 82 */ |
1912 |
|
OP_NOTPOSQUERYI, /* 83 */ |
1913 |
OP_ASSERT, /* 88 Positive lookahead */ |
OP_NOTPOSUPTOI, /* 84 */ |
1914 |
OP_ASSERT_NOT, /* 89 Negative lookahead */ |
|
1915 |
OP_ASSERTBACK, /* 90 Positive lookbehind */ |
/**** Character types ****/ |
1916 |
OP_ASSERTBACK_NOT, /* 91 Negative lookbehind */ |
|
1917 |
OP_REVERSE, /* 92 Move pointer back - used in lookbehind assertions */ |
OP_TYPESTAR, /* 85 The maximizing and minimizing versions of */ |
1918 |
|
OP_TYPEMINSTAR, /* 86 these six opcodes must come in pairs, with */ |
1919 |
/* ONCE, BRA, CBRA, and COND must come after the assertions, with ONCE first, |
OP_TYPEPLUS, /* 87 the minimizing one second. These codes must */ |
1920 |
as there's a test for >= ONCE for a subpattern that isn't an assertion. */ |
OP_TYPEMINPLUS, /* 88 be in exactly the same order as those above. */ |
1921 |
|
OP_TYPEQUERY, /* 89 */ |
1922 |
OP_ONCE, /* 93 Atomic group */ |
OP_TYPEMINQUERY, /* 90 */ |
1923 |
OP_BRA, /* 94 Start of non-capturing bracket */ |
|
1924 |
OP_CBRA, /* 95 Start of capturing bracket */ |
OP_TYPEUPTO, /* 91 From 0 to n matches */ |
1925 |
OP_COND, /* 96 Conditional group */ |
OP_TYPEMINUPTO, /* 92 */ |
1926 |
|
OP_TYPEEXACT, /* 93 Exactly n matches */ |
1927 |
|
|
1928 |
|
OP_TYPEPOSSTAR, /* 94 Possessified versions */ |
1929 |
|
OP_TYPEPOSPLUS, /* 95 */ |
1930 |
|
OP_TYPEPOSQUERY, /* 96 */ |
1931 |
|
OP_TYPEPOSUPTO, /* 97 */ |
1932 |
|
|
1933 |
|
/* These are used for character classes and back references; only the |
1934 |
|
first six are the same as the sets above. */ |
1935 |
|
|
1936 |
|
OP_CRSTAR, /* 98 The maximizing and minimizing versions of */ |
1937 |
|
OP_CRMINSTAR, /* 99 all these opcodes must come in pairs, with */ |
1938 |
|
OP_CRPLUS, /* 100 the minimizing one second. These codes must */ |
1939 |
|
OP_CRMINPLUS, /* 101 be in exactly the same order as those above. */ |
1940 |
|
OP_CRQUERY, /* 102 */ |
1941 |
|
OP_CRMINQUERY, /* 103 */ |
1942 |
|
|
1943 |
|
OP_CRRANGE, /* 104 These are different to the three sets above. */ |
1944 |
|
OP_CRMINRANGE, /* 105 */ |
1945 |
|
|
1946 |
|
/* End of quantifier opcodes */ |
1947 |
|
|
1948 |
|
OP_CLASS, /* 106 Match a character class, chars < 256 only */ |
1949 |
|
OP_NCLASS, /* 107 Same, but the bitmap was created from a negative |
1950 |
|
class - the difference is relevant only when a |
1951 |
|
character > 255 is encountered. */ |
1952 |
|
OP_XCLASS, /* 108 Extended class for handling > 255 chars within the |
1953 |
|
class. This does both positive and negative. */ |
1954 |
|
OP_REF, /* 109 Match a back reference, casefully */ |
1955 |
|
OP_REFI, /* 110 Match a back reference, caselessly */ |
1956 |
|
OP_RECURSE, /* 111 Match a numbered subpattern (possibly recursive) */ |
1957 |
|
OP_CALLOUT, /* 112 Call out to external function if provided */ |
1958 |
|
|
1959 |
|
OP_ALT, /* 113 Start of alternation */ |
1960 |
|
OP_KET, /* 114 End of group that doesn't have an unbounded repeat */ |
1961 |
|
OP_KETRMAX, /* 115 These two must remain together and in this */ |
1962 |
|
OP_KETRMIN, /* 116 order. They are for groups the repeat for ever. */ |
1963 |
|
OP_KETRPOS, /* 117 Possessive unlimited repeat. */ |
1964 |
|
|
1965 |
|
/* The assertions must come before BRA, CBRA, ONCE, and COND, and the four |
1966 |
|
asserts must remain in order. */ |
1967 |
|
|
1968 |
|
OP_REVERSE, /* 118 Move pointer back - used in lookbehind assertions */ |
1969 |
|
OP_ASSERT, /* 119 Positive lookahead */ |
1970 |
|
OP_ASSERT_NOT, /* 120 Negative lookahead */ |
1971 |
|
OP_ASSERTBACK, /* 121 Positive lookbehind */ |
1972 |
|
OP_ASSERTBACK_NOT, /* 122 Negative lookbehind */ |
1973 |
|
|
1974 |
|
/* ONCE, ONCE_NC, BRA, BRAPOS, CBRA, CBRAPOS, and COND must come immediately |
1975 |
|
after the assertions, with ONCE first, as there's a test for >= ONCE for a |
1976 |
|
subpattern that isn't an assertion. The POS versions must immediately follow |
1977 |
|
the non-POS versions in each case. */ |
1978 |
|
|
1979 |
|
OP_ONCE, /* 123 Atomic group, contains captures */ |
1980 |
|
OP_ONCE_NC, /* 124 Atomic group containing no captures */ |
1981 |
|
OP_BRA, /* 125 Start of non-capturing bracket */ |
1982 |
|
OP_BRAPOS, /* 126 Ditto, with unlimited, possessive repeat */ |
1983 |
|
OP_CBRA, /* 127 Start of capturing bracket */ |
1984 |
|
OP_CBRAPOS, /* 128 Ditto, with unlimited, possessive repeat */ |
1985 |
|
OP_COND, /* 129 Conditional group */ |
1986 |
|
|
1987 |
/* These three must follow the previous three, in the same order. There's a |
/* These five must follow the previous five, in the same order. There's a |
1988 |
check for >= SBRA to distinguish the two sets. */ |
check for >= SBRA to distinguish the two sets. */ |
1989 |
|
|
1990 |
OP_SBRA, /* 97 Start of non-capturing bracket, check empty */ |
OP_SBRA, /* 130 Start of non-capturing bracket, check empty */ |
1991 |
OP_SCBRA, /* 98 Start of capturing bracket, check empty */ |
OP_SBRAPOS, /* 131 Ditto, with unlimited, possessive repeat */ |
1992 |
OP_SCOND, /* 99 Conditional group, check empty */ |
OP_SCBRA, /* 132 Start of capturing bracket, check empty */ |
1993 |
|
OP_SCBRAPOS, /* 133 Ditto, with unlimited, possessive repeat */ |
1994 |
OP_CREF, /* 100 Used to hold a capture number as condition */ |
OP_SCOND, /* 134 Conditional group, check empty */ |
1995 |
OP_RREF, /* 101 Used to hold a recursion number as condition */ |
|
1996 |
OP_DEF, /* 102 The DEFINE condition */ |
/* The next two pairs must (respectively) be kept together. */ |
1997 |
|
|
1998 |
OP_BRAZERO, /* 103 These two must remain together and in this */ |
OP_CREF, /* 135 Used to hold a capture number as condition */ |
1999 |
OP_BRAMINZERO, /* 104 order. */ |
OP_NCREF, /* 136 Same, but generated by a name reference*/ |
2000 |
|
OP_RREF, /* 137 Used to hold a recursion number as condition */ |
2001 |
|
OP_NRREF, /* 138 Same, but generated by a name reference*/ |
2002 |
|
OP_DEF, /* 139 The DEFINE condition */ |
2003 |
|
|
2004 |
|
OP_BRAZERO, /* 140 These two must remain together and in this */ |
2005 |
|
OP_BRAMINZERO, /* 141 order. */ |
2006 |
|
OP_BRAPOSZERO, /* 142 */ |
2007 |
|
|
2008 |
/* These are backtracking control verbs */ |
/* These are backtracking control verbs */ |
2009 |
|
|
2010 |
OP_PRUNE, /* 105 */ |
OP_MARK, /* 143 always has an argument */ |
2011 |
OP_SKIP, /* 106 */ |
OP_PRUNE, /* 144 */ |
2012 |
OP_THEN, /* 107 */ |
OP_PRUNE_ARG, /* 145 same, but with argument */ |
2013 |
OP_COMMIT, /* 108 */ |
OP_SKIP, /* 146 */ |
2014 |
|
OP_SKIP_ARG, /* 147 same, but with argument */ |
2015 |
|
OP_THEN, /* 148 */ |
2016 |
|
OP_THEN_ARG, /* 149 same, but with argument */ |
2017 |
|
OP_COMMIT, /* 150 */ |
2018 |
|
|
2019 |
/* These are forced failure and success verbs */ |
/* These are forced failure and success verbs */ |
2020 |
|
|
2021 |
OP_FAIL, /* 109 */ |
OP_FAIL, /* 151 */ |
2022 |
OP_ACCEPT, /* 110 */ |
OP_ACCEPT, /* 152 */ |
2023 |
|
OP_ASSERT_ACCEPT, /* 153 Used inside assertions */ |
2024 |
|
OP_CLOSE, /* 154 Used before OP_ACCEPT to close open captures */ |
2025 |
|
|
2026 |
/* This is used to skip a subpattern with a {0} quantifier */ |
/* This is used to skip a subpattern with a {0} quantifier */ |
2027 |
|
|
2028 |
OP_SKIPZERO /* 111 */ |
OP_SKIPZERO, /* 155 */ |
2029 |
|
|
2030 |
|
/* This is not an opcode, but is used to check that tables indexed by opcode |
2031 |
|
are the correct length, in order to catch updating errors - there have been |
2032 |
|
some in the past. */ |
2033 |
|
|
2034 |
|
OP_TABLE_LENGTH |
2035 |
}; |
}; |
2036 |
|
|
2037 |
|
/* *** NOTE NOTE NOTE *** Whenever the list above is updated, the two macro |
2038 |
|
definitions that follow must also be updated to match. There are also tables |
2039 |
|
called "coptable" and "poptable" in pcre_dfa_exec.c that must be updated. */ |
2040 |
|
|
2041 |
|
|
2042 |
/* This macro defines textual names for all the opcodes. These are used only |
/* This macro defines textual names for all the opcodes. These are used only |
2043 |
for debugging. The macro is referenced only in pcre_printint.c. */ |
for debugging, and some of them are only partial names. The macro is referenced |
2044 |
|
only in pcre_printint.c, which fills out the full names in many cases (and in |
2045 |
|
some cases doesn't actually use these names at all). */ |
2046 |
|
|
2047 |
#define OP_NAME_LIST \ |
#define OP_NAME_LIST \ |
2048 |
"End", "\\A", "\\G", "\\K", "\\B", "\\b", "\\D", "\\d", \ |
"End", "\\A", "\\G", "\\K", "\\B", "\\b", "\\D", "\\d", \ |
2049 |
"\\S", "\\s", "\\W", "\\w", "Any", "AllAny", "Anybyte", \ |
"\\S", "\\s", "\\W", "\\w", "Any", "AllAny", "Anybyte", \ |
2050 |
"notprop", "prop", "\\R", "\\H", "\\h", "\\V", "\\v", \ |
"notprop", "prop", "\\R", "\\H", "\\h", "\\V", "\\v", \ |
2051 |
"extuni", "\\Z", "\\z", \ |
"extuni", "\\Z", "\\z", \ |
2052 |
"Opt", "^", "$", "char", "charnc", "not", \ |
"^", "^", "$", "$", "char", "chari", "not", "noti", \ |
2053 |
"*", "*?", "+", "+?", "?", "??", "{", "{", "{", \ |
"*", "*?", "+", "+?", "?", "??", \ |
2054 |
|
"{", "{", "{", \ |
2055 |
"*+","++", "?+", "{", \ |
"*+","++", "?+", "{", \ |
2056 |
"*", "*?", "+", "+?", "?", "??", "{", "{", "{", \ |
"*", "*?", "+", "+?", "?", "??", \ |
2057 |
|
"{", "{", "{", \ |
2058 |
|
"*+","++", "?+", "{", \ |
2059 |
|
"*", "*?", "+", "+?", "?", "??", \ |
2060 |
|
"{", "{", "{", \ |
2061 |
|
"*+","++", "?+", "{", \ |
2062 |
|
"*", "*?", "+", "+?", "?", "??", \ |
2063 |
|
"{", "{", "{", \ |
2064 |
"*+","++", "?+", "{", \ |
"*+","++", "?+", "{", \ |
2065 |
"*", "*?", "+", "+?", "?", "??", "{", "{", "{", \ |
"*", "*?", "+", "+?", "?", "??", "{", "{", "{", \ |
2066 |
"*+","++", "?+", "{", \ |
"*+","++", "?+", "{", \ |
2067 |
"*", "*?", "+", "+?", "?", "??", "{", "{", \ |
"*", "*?", "+", "+?", "?", "??", "{", "{", \ |
2068 |
"class", "nclass", "xclass", "Ref", "Recurse", "Callout", \ |
"class", "nclass", "xclass", "Ref", "Refi", \ |
2069 |
"Alt", "Ket", "KetRmax", "KetRmin", "Assert", "Assert not", \ |
"Recurse", "Callout", \ |
2070 |
"AssertB", "AssertB not", "Reverse", \ |
"Alt", "Ket", "KetRmax", "KetRmin", "KetRpos", \ |
2071 |
"Once", "Bra", "CBra", "Cond", "SBra", "SCBra", "SCond", \ |
"Reverse", "Assert", "Assert not", "AssertB", "AssertB not", \ |
2072 |
"Cond ref", "Cond rec", "Cond def", "Brazero", "Braminzero", \ |
"Once", "Once_NC", \ |
2073 |
"*PRUNE", "*SKIP", "*THEN", "*COMMIT", "*FAIL", "*ACCEPT", \ |
"Bra", "BraPos", "CBra", "CBraPos", \ |
2074 |
"Skip zero" |
"Cond", \ |
2075 |
|
"SBra", "SBraPos", "SCBra", "SCBraPos", \ |
2076 |
|
"SCond", \ |
2077 |
|
"Cond ref", "Cond nref", "Cond rec", "Cond nrec", "Cond def", \ |
2078 |
|
"Brazero", "Braminzero", "Braposzero", \ |
2079 |
|
"*MARK", "*PRUNE", "*PRUNE", "*SKIP", "*SKIP", \ |
2080 |
|
"*THEN", "*THEN", "*COMMIT", "*FAIL", \ |
2081 |
|
"*ACCEPT", "*ASSERT_ACCEPT", \ |
2082 |
|
"Close", "Skip zero" |
2083 |
|
|
2084 |
|
|
2085 |
/* This macro defines the length of fixed length operations in the compiled |
/* This macro defines the length of fixed length operations in the compiled |
2096 |
1, 1, 1, 1, 1, /* \A, \G, \K, \B, \b */ \ |
1, 1, 1, 1, 1, /* \A, \G, \K, \B, \b */ \ |
2097 |
1, 1, 1, 1, 1, 1, /* \D, \d, \S, \s, \W, \w */ \ |
1, 1, 1, 1, 1, 1, /* \D, \d, \S, \s, \W, \w */ \ |
2098 |
1, 1, 1, /* Any, AllAny, Anybyte */ \ |
1, 1, 1, /* Any, AllAny, Anybyte */ \ |
2099 |
3, 3, 1, /* NOTPROP, PROP, EXTUNI */ \ |
3, 3, /* \P, \p */ \ |
2100 |
1, 1, 1, 1, 1, /* \R, \H, \h, \V, \v */ \ |
1, 1, 1, 1, 1, /* \R, \H, \h, \V, \v */ \ |
2101 |
1, 1, 2, 1, 1, /* \Z, \z, Opt, ^, $ */ \ |
1, /* \X */ \ |
2102 |
|
1, 1, 1, 1, 1, 1, /* \Z, \z, ^, ^M, $, $M */ \ |
2103 |
2, /* Char - the minimum length */ \ |
2, /* Char - the minimum length */ \ |
2104 |
2, /* Charnc - the minimum length */ \ |
2, /* Chari - the minimum length */ \ |
2105 |
2, /* not */ \ |
2, /* not */ \ |
2106 |
/* Positive single-char repeats ** These are */ \ |
2, /* noti */ \ |
2107 |
2, 2, 2, 2, 2, 2, /* *, *?, +, +?, ?, ?? ** minima in */ \ |
/* Positive single-char repeats ** These are */ \ |
2108 |
4, 4, 4, /* upto, minupto, exact ** UTF-8 mode */ \ |
2, 2, 2, 2, 2, 2, /* *, *?, +, +?, ?, ?? ** minima in */ \ |
2109 |
2, 2, 2, 4, /* *+, ++, ?+, upto+ */ \ |
2+IMM2_SIZE, 2+IMM2_SIZE, /* upto, minupto ** mode */ \ |
2110 |
|
2+IMM2_SIZE, /* exact */ \ |
2111 |
|
2, 2, 2, 2+IMM2_SIZE, /* *+, ++, ?+, upto+ */ \ |
2112 |
|
2, 2, 2, 2, 2, 2, /* *I, *?I, +I, +?I, ?I, ??I ** UTF-8 */ \ |
2113 |
|
2+IMM2_SIZE, 2+IMM2_SIZE, /* upto I, minupto I */ \ |
2114 |
|
2+IMM2_SIZE, /* exact I */ \ |
2115 |
|
2, 2, 2, 2+IMM2_SIZE, /* *+I, ++I, ?+I, upto+I */ \ |
2116 |
/* Negative single-char repeats - only for chars < 256 */ \ |
/* Negative single-char repeats - only for chars < 256 */ \ |
2117 |
2, 2, 2, 2, 2, 2, /* NOT *, *?, +, +?, ?, ?? */ \ |
2, 2, 2, 2, 2, 2, /* NOT *, *?, +, +?, ?, ?? */ \ |
2118 |
4, 4, 4, /* NOT upto, minupto, exact */ \ |
2+IMM2_SIZE, 2+IMM2_SIZE, /* NOT upto, minupto */ \ |
2119 |
2, 2, 2, 4, /* Possessive *, +, ?, upto */ \ |
2+IMM2_SIZE, /* NOT exact */ \ |
2120 |
|
2, 2, 2, 2+IMM2_SIZE, /* Possessive NOT *, +, ?, upto */ \ |
2121 |
|
2, 2, 2, 2, 2, 2, /* NOT *I, *?I, +I, +?I, ?I, ??I */ \ |
2122 |
|
2+IMM2_SIZE, 2+IMM2_SIZE, /* NOT upto I, minupto I */ \ |
2123 |
|
2+IMM2_SIZE, /* NOT exact I */ \ |
2124 |
|
2, 2, 2, 2+IMM2_SIZE, /* Possessive NOT *I, +I, ?I, upto I */ \ |
2125 |
/* Positive type repeats */ \ |
/* Positive type repeats */ \ |
2126 |
2, 2, 2, 2, 2, 2, /* Type *, *?, +, +?, ?, ?? */ \ |
2, 2, 2, 2, 2, 2, /* Type *, *?, +, +?, ?, ?? */ \ |
2127 |
4, 4, 4, /* Type upto, minupto, exact */ \ |
2+IMM2_SIZE, 2+IMM2_SIZE, /* Type upto, minupto */ \ |
2128 |
2, 2, 2, 4, /* Possessive *+, ++, ?+, upto+ */ \ |
2+IMM2_SIZE, /* Type exact */ \ |
2129 |
|
2, 2, 2, 2+IMM2_SIZE, /* Possessive *+, ++, ?+, upto+ */ \ |
2130 |
/* Character class & ref repeats */ \ |
/* Character class & ref repeats */ \ |
2131 |
1, 1, 1, 1, 1, 1, /* *, *?, +, +?, ?, ?? */ \ |
1, 1, 1, 1, 1, 1, /* *, *?, +, +?, ?, ?? */ \ |
2132 |
5, 5, /* CRRANGE, CRMINRANGE */ \ |
1+2*IMM2_SIZE, 1+2*IMM2_SIZE, /* CRRANGE, CRMINRANGE */ \ |
2133 |
33, /* CLASS */ \ |
1+(32/sizeof(pcre_uchar)), /* CLASS */ \ |
2134 |
33, /* NCLASS */ \ |
1+(32/sizeof(pcre_uchar)), /* NCLASS */ \ |
2135 |
0, /* XCLASS - variable length */ \ |
0, /* XCLASS - variable length */ \ |
2136 |
3, /* REF */ \ |
1+IMM2_SIZE, /* REF */ \ |
2137 |
|
1+IMM2_SIZE, /* REFI */ \ |
2138 |
1+LINK_SIZE, /* RECURSE */ \ |
1+LINK_SIZE, /* RECURSE */ \ |
2139 |
2+2*LINK_SIZE, /* CALLOUT */ \ |
2+2*LINK_SIZE, /* CALLOUT */ \ |
2140 |
1+LINK_SIZE, /* Alt */ \ |
1+LINK_SIZE, /* Alt */ \ |
2141 |
1+LINK_SIZE, /* Ket */ \ |
1+LINK_SIZE, /* Ket */ \ |
2142 |
1+LINK_SIZE, /* KetRmax */ \ |
1+LINK_SIZE, /* KetRmax */ \ |
2143 |
1+LINK_SIZE, /* KetRmin */ \ |
1+LINK_SIZE, /* KetRmin */ \ |
2144 |
|
1+LINK_SIZE, /* KetRpos */ \ |
2145 |
|
1+LINK_SIZE, /* Reverse */ \ |
2146 |
1+LINK_SIZE, /* Assert */ \ |
1+LINK_SIZE, /* Assert */ \ |
2147 |
1+LINK_SIZE, /* Assert not */ \ |
1+LINK_SIZE, /* Assert not */ \ |
2148 |
1+LINK_SIZE, /* Assert behind */ \ |
1+LINK_SIZE, /* Assert behind */ \ |
2149 |
1+LINK_SIZE, /* Assert behind not */ \ |
1+LINK_SIZE, /* Assert behind not */ \ |
|
1+LINK_SIZE, /* Reverse */ \ |
|
2150 |
1+LINK_SIZE, /* ONCE */ \ |
1+LINK_SIZE, /* ONCE */ \ |
2151 |
|
1+LINK_SIZE, /* ONCE_NC */ \ |
2152 |
1+LINK_SIZE, /* BRA */ \ |
1+LINK_SIZE, /* BRA */ \ |
2153 |
3+LINK_SIZE, /* CBRA */ \ |
1+LINK_SIZE, /* BRAPOS */ \ |
2154 |
|
1+LINK_SIZE+IMM2_SIZE, /* CBRA */ \ |
2155 |
|
1+LINK_SIZE+IMM2_SIZE, /* CBRAPOS */ \ |
2156 |
1+LINK_SIZE, /* COND */ \ |
1+LINK_SIZE, /* COND */ \ |
2157 |
1+LINK_SIZE, /* SBRA */ \ |
1+LINK_SIZE, /* SBRA */ \ |
2158 |
3+LINK_SIZE, /* SCBRA */ \ |
1+LINK_SIZE, /* SBRAPOS */ \ |
2159 |
|
1+LINK_SIZE+IMM2_SIZE, /* SCBRA */ \ |
2160 |
|
1+LINK_SIZE+IMM2_SIZE, /* SCBRAPOS */ \ |
2161 |
1+LINK_SIZE, /* SCOND */ \ |
1+LINK_SIZE, /* SCOND */ \ |
2162 |
3, /* CREF */ \ |
1+IMM2_SIZE, 1+IMM2_SIZE, /* CREF, NCREF */ \ |
2163 |
3, /* RREF */ \ |
1+IMM2_SIZE, 1+IMM2_SIZE, /* RREF, NRREF */ \ |
2164 |
1, /* DEF */ \ |
1, /* DEF */ \ |
2165 |
1, 1, /* BRAZERO, BRAMINZERO */ \ |
1, 1, 1, /* BRAZERO, BRAMINZERO, BRAPOSZERO */ \ |
2166 |
1, 1, 1, 1, /* PRUNE, SKIP, THEN, COMMIT, */ \ |
3, 1, 3, /* MARK, PRUNE, PRUNE_ARG */ \ |
2167 |
1, 1, 1 /* FAIL, ACCEPT, SKIPZERO */ |
1, 3, /* SKIP, SKIP_ARG */ \ |
2168 |
|
1, 3, /* THEN, THEN_ARG */ \ |
2169 |
|
1, 1, 1, 1, /* COMMIT, FAIL, ACCEPT, ASSERT_ACCEPT */ \ |
2170 |
|
1+IMM2_SIZE, 1 /* CLOSE, SKIPZERO */ |
2171 |
|
|
2172 |
|
/* A magic value for OP_RREF and OP_NRREF to indicate the "any recursion" |
2173 |
/* A magic value for OP_RREF to indicate the "any recursion" condition. */ |
condition. */ |
2174 |
|
|
2175 |
#define RREF_ANY 0xffff |
#define RREF_ANY 0xffff |
2176 |
|
|
2177 |
/* Error code numbers. They are given names so that they can more easily be |
/* Compile time error code numbers. They are given names so that they can more |
2178 |
tracked. */ |
easily be tracked. When a new number is added, the table called eint in |
2179 |
|
pcreposix.c must be updated. */ |
2180 |
|
|
2181 |
enum { ERR0, ERR1, ERR2, ERR3, ERR4, ERR5, ERR6, ERR7, ERR8, ERR9, |
enum { ERR0, ERR1, ERR2, ERR3, ERR4, ERR5, ERR6, ERR7, ERR8, ERR9, |
2182 |
ERR10, ERR11, ERR12, ERR13, ERR14, ERR15, ERR16, ERR17, ERR18, ERR19, |
ERR10, ERR11, ERR12, ERR13, ERR14, ERR15, ERR16, ERR17, ERR18, ERR19, |
2184 |
ERR30, ERR31, ERR32, ERR33, ERR34, ERR35, ERR36, ERR37, ERR38, ERR39, |
ERR30, ERR31, ERR32, ERR33, ERR34, ERR35, ERR36, ERR37, ERR38, ERR39, |
2185 |
ERR40, ERR41, ERR42, ERR43, ERR44, ERR45, ERR46, ERR47, ERR48, ERR49, |
ERR40, ERR41, ERR42, ERR43, ERR44, ERR45, ERR46, ERR47, ERR48, ERR49, |
2186 |
ERR50, ERR51, ERR52, ERR53, ERR54, ERR55, ERR56, ERR57, ERR58, ERR59, |
ERR50, ERR51, ERR52, ERR53, ERR54, ERR55, ERR56, ERR57, ERR58, ERR59, |
2187 |
ERR60, ERR61, ERR62, ERR63, ERR64 }; |
ERR60, ERR61, ERR62, ERR63, ERR64, ERR65, ERR66, ERR67, ERR68, ERR69, |
2188 |
|
ERR70, ERR71, ERR72, ERR73, ERR74, ERR75, ERR76, ERR77, ERRCOUNT }; |
2189 |
|
|
2190 |
|
/* JIT compiling modes. The function list is indexed by them. */ |
2191 |
|
enum { JIT_COMPILE, JIT_PARTIAL_SOFT_COMPILE, JIT_PARTIAL_HARD_COMPILE, |
2192 |
|
JIT_NUMBER_OF_COMPILE_MODES }; |
2193 |
|
|
2194 |
/* The real format of the start of the pcre block; the index of names and the |
/* The real format of the start of the pcre block; the index of names and the |
2195 |
code vector run on as long as necessary after the end. We store an explicit |
code vector run on as long as necessary after the end. We store an explicit |
2205 |
structure should be made at the end, and something earlier (e.g. a new |
structure should be made at the end, and something earlier (e.g. a new |
2206 |
flag in the options or one of the dummy fields) should indicate that the new |
flag in the options or one of the dummy fields) should indicate that the new |
2207 |
fields are present. Currently PCRE always sets the dummy fields to zero. |
fields are present. Currently PCRE always sets the dummy fields to zero. |
2208 |
NOTE NOTE NOTE: |
NOTE NOTE NOTE |
2209 |
*/ |
*/ |
2210 |
|
|
2211 |
typedef struct real_pcre { |
#if defined COMPILE_PCRE8 |
2212 |
|
#define REAL_PCRE real_pcre |
2213 |
|
#elif defined COMPILE_PCRE16 |
2214 |
|
#define REAL_PCRE real_pcre16 |
2215 |
|
#elif defined COMPILE_PCRE32 |
2216 |
|
#define REAL_PCRE real_pcre32 |
2217 |
|
#endif |
2218 |
|
|
2219 |
|
/* It is necessary to fork the struct for 32 bit, since it needs to use |
2220 |
|
* pcre_uchar for first_char and req_char. Can't put an ifdef inside the |
2221 |
|
* typedef since pcretest needs access to the struct of the 8-, 16- |
2222 |
|
* and 32-bit variants. */ |
2223 |
|
|
2224 |
|
typedef struct real_pcre8_or_16 { |
2225 |
pcre_uint32 magic_number; |
pcre_uint32 magic_number; |
2226 |
pcre_uint32 size; /* Total that was malloced */ |
pcre_uint32 size; /* Total that was malloced */ |
2227 |
pcre_uint32 options; /* Public options */ |
pcre_uint32 options; /* Public options */ |
2228 |
pcre_uint16 flags; /* Private flags */ |
pcre_uint16 flags; /* Private flags */ |
2229 |
pcre_uint16 dummy1; /* For future use */ |
pcre_uint16 max_lookbehind; /* Longest lookbehind (characters) */ |
2230 |
pcre_uint16 top_bracket; |
pcre_uint16 top_bracket; /* Highest numbered group */ |
2231 |
pcre_uint16 top_backref; |
pcre_uint16 top_backref; /* Highest numbered back reference */ |
2232 |
pcre_uint16 first_byte; |
pcre_uint16 first_char; /* Starting character */ |
2233 |
pcre_uint16 req_byte; |
pcre_uint16 req_char; /* This character must be seen */ |
2234 |
pcre_uint16 name_table_offset; /* Offset to name table that follows */ |
pcre_uint16 name_table_offset; /* Offset to name table that follows */ |
2235 |
pcre_uint16 name_entry_size; /* Size of any name items */ |
pcre_uint16 name_entry_size; /* Size of any name items */ |
2236 |
pcre_uint16 name_count; /* Number of name items */ |
pcre_uint16 name_count; /* Number of name items */ |
2237 |
pcre_uint16 ref_count; /* Reference count */ |
pcre_uint16 ref_count; /* Reference count */ |
2238 |
|
const pcre_uint8 *tables; /* Pointer to tables or NULL for std */ |
2239 |
|
const pcre_uint8 *nullpad; /* NULL padding */ |
2240 |
|
} real_pcre8_or_16; |
2241 |
|
|
2242 |
const unsigned char *tables; /* Pointer to tables or NULL for std */ |
typedef struct real_pcre8_or_16 real_pcre; |
2243 |
const unsigned char *nullpad; /* NULL padding */ |
typedef struct real_pcre8_or_16 real_pcre16; |
2244 |
} real_pcre; |
|
2245 |
|
typedef struct real_pcre32 { |
2246 |
|
pcre_uint32 magic_number; |
2247 |
|
pcre_uint32 size; /* Total that was malloced */ |
2248 |
|
pcre_uint32 options; /* Public options */ |
2249 |
|
pcre_uint16 flags; /* Private flags */ |
2250 |
|
pcre_uint16 max_lookbehind; /* Longest lookbehind (characters) */ |
2251 |
|
pcre_uint16 top_bracket; /* Highest numbered group */ |
2252 |
|
pcre_uint16 top_backref; /* Highest numbered back reference */ |
2253 |
|
pcre_uint32 first_char; /* Starting character */ |
2254 |
|
pcre_uint32 req_char; /* This character must be seen */ |
2255 |
|
pcre_uint16 name_table_offset; /* Offset to name table that follows */ |
2256 |
|
pcre_uint16 name_entry_size; /* Size of any name items */ |
2257 |
|
pcre_uint16 name_count; /* Number of name items */ |
2258 |
|
pcre_uint16 ref_count; /* Reference count */ |
2259 |
|
pcre_uint16 dummy1; /* for later expansion */ |
2260 |
|
pcre_uint16 dummy2; /* for later expansion */ |
2261 |
|
const pcre_uint8 *tables; /* Pointer to tables or NULL for std */ |
2262 |
|
void *nullpad; /* for later expansion */ |
2263 |
|
} real_pcre32; |
2264 |
|
|
2265 |
|
/* Assert that the size of REAL_PCRE is divisible by 8 */ |
2266 |
|
typedef int __assert_real_pcre_size_divisible_8[(sizeof(REAL_PCRE) % 8) == 0 ? 1 : -1]; |
2267 |
|
|
2268 |
|
/* Needed in pcretest to access some fields in the real_pcre* structures |
2269 |
|
* directly. They're unified for 8/16/32 bits since the structs only differ |
2270 |
|
* after these fields; if that ever changes, need to fork those defines into |
2271 |
|
* 8/16 and 32 bit versions. */ |
2272 |
|
#define REAL_PCRE_MAGIC(re) (((REAL_PCRE*)re)->magic_number) |
2273 |
|
#define REAL_PCRE_SIZE(re) (((REAL_PCRE*)re)->size) |
2274 |
|
#define REAL_PCRE_OPTIONS(re) (((REAL_PCRE*)re)->options) |
2275 |
|
#define REAL_PCRE_FLAGS(re) (((REAL_PCRE*)re)->flags) |
2276 |
|
|
2277 |
/* The format of the block used to store data from pcre_study(). The same |
/* The format of the block used to store data from pcre_study(). The same |
2278 |
remark (see NOTE above) about extending this structure applies. */ |
remark (see NOTE above) about extending this structure applies. */ |
2279 |
|
|
2280 |
typedef struct pcre_study_data { |
typedef struct pcre_study_data { |
2281 |
pcre_uint32 size; /* Total that was malloced */ |
pcre_uint32 size; /* Total that was malloced */ |
2282 |
pcre_uint32 options; |
pcre_uint32 flags; /* Private flags */ |
2283 |
uschar start_bits[32]; |
pcre_uint8 start_bits[32]; /* Starting char bits */ |
2284 |
|
pcre_uint32 minlength; /* Minimum subject length */ |
2285 |
} pcre_study_data; |
} pcre_study_data; |
2286 |
|
|
2287 |
|
/* Structure for building a chain of open capturing subpatterns during |
2288 |
|
compiling, so that instructions to close them can be compiled when (*ACCEPT) is |
2289 |
|
encountered. This is also used to identify subpatterns that contain recursive |
2290 |
|
back references to themselves, so that they can be made atomic. */ |
2291 |
|
|
2292 |
|
typedef struct open_capitem { |
2293 |
|
struct open_capitem *next; /* Chain link */ |
2294 |
|
pcre_uint16 number; /* Capture number */ |
2295 |
|
pcre_uint16 flag; /* Set TRUE if recursive back ref */ |
2296 |
|
} open_capitem; |
2297 |
|
|
2298 |
/* Structure for passing "static" information around between the functions |
/* Structure for passing "static" information around between the functions |
2299 |
doing the compiling, so that they are thread-safe. */ |
doing the compiling, so that they are thread-safe. */ |
2300 |
|
|
2301 |
typedef struct compile_data { |
typedef struct compile_data { |
2302 |
const uschar *lcc; /* Points to lower casing table */ |
const pcre_uint8 *lcc; /* Points to lower casing table */ |
2303 |
const uschar *fcc; /* Points to case-flipping table */ |
const pcre_uint8 *fcc; /* Points to case-flipping table */ |
2304 |
const uschar *cbits; /* Points to character type table */ |
const pcre_uint8 *cbits; /* Points to character type table */ |
2305 |
const uschar *ctypes; /* Points to table of type maps */ |
const pcre_uint8 *ctypes; /* Points to table of type maps */ |
2306 |
const uschar *start_workspace;/* The start of working space */ |
const pcre_uchar *start_workspace;/* The start of working space */ |
2307 |
const uschar *start_code; /* The start of the compiled code */ |
const pcre_uchar *start_code; /* The start of the compiled code */ |
2308 |
const uschar *start_pattern; /* The start of the pattern */ |
const pcre_uchar *start_pattern; /* The start of the pattern */ |
2309 |
const uschar *end_pattern; /* The end of the pattern */ |
const pcre_uchar *end_pattern; /* The end of the pattern */ |
2310 |
uschar *hwm; /* High watermark of workspace */ |
open_capitem *open_caps; /* Chain of open capture items */ |
2311 |
uschar *name_table; /* The name/number table */ |
pcre_uchar *hwm; /* High watermark of workspace */ |
2312 |
int names_found; /* Number of entries so far */ |
pcre_uchar *name_table; /* The name/number table */ |
2313 |
int name_entry_size; /* Size of each entry */ |
int names_found; /* Number of entries so far */ |
2314 |
int bracount; /* Count of capturing parens as we compile */ |
int name_entry_size; /* Size of each entry */ |
2315 |
int final_bracount; /* Saved value after first pass */ |
int workspace_size; /* Size of workspace */ |
2316 |
int top_backref; /* Maximum back reference */ |
int bracount; /* Count of capturing parens as we compile */ |
2317 |
unsigned int backref_map; /* Bitmap of low back refs */ |
int final_bracount; /* Saved value after first pass */ |
2318 |
int external_options; /* External (initial) options */ |
int max_lookbehind; /* Maximum lookbehind (characters) */ |
2319 |
int external_flags; /* External flag bits to be set */ |
int top_backref; /* Maximum back reference */ |
2320 |
int req_varyopt; /* "After variable item" flag for reqbyte */ |
unsigned int backref_map; /* Bitmap of low back refs */ |
2321 |
BOOL had_accept; /* (*ACCEPT) encountered */ |
int assert_depth; /* Depth of nested assertions */ |
2322 |
int nltype; /* Newline type */ |
int external_options; /* External (initial) options */ |
2323 |
int nllen; /* Newline string length */ |
int external_flags; /* External flag bits to be set */ |
2324 |
uschar nl[4]; /* Newline string when fixed length */ |
int req_varyopt; /* "After variable item" flag for reqbyte */ |
2325 |
|
BOOL had_accept; /* (*ACCEPT) encountered */ |
2326 |
|
BOOL had_pruneorskip; /* (*PRUNE) or (*SKIP) encountered */ |
2327 |
|
BOOL check_lookbehind; /* Lookbehinds need later checking */ |
2328 |
|
int nltype; /* Newline type */ |
2329 |
|
int nllen; /* Newline string length */ |
2330 |
|
pcre_uchar nl[4]; /* Newline string when fixed length */ |
2331 |
} compile_data; |
} compile_data; |
2332 |
|
|
2333 |
/* Structure for maintaining a chain of pointers to the currently incomplete |
/* Structure for maintaining a chain of pointers to the currently incomplete |
2334 |
branches, for testing for left recursion. */ |
branches, for testing for left recursion while compiling. */ |
2335 |
|
|
2336 |
typedef struct branch_chain { |
typedef struct branch_chain { |
2337 |
struct branch_chain *outer; |
struct branch_chain *outer; |
2338 |
uschar *current; |
pcre_uchar *current_branch; |
2339 |
} branch_chain; |
} branch_chain; |
2340 |
|
|
2341 |
/* Structure for items in a linked list that represents an explicit recursive |
/* Structure for items in a linked list that represents an explicit recursive |
2342 |
call within the pattern. */ |
call within the pattern; used by pcre_exec(). */ |
2343 |
|
|
2344 |
typedef struct recursion_info { |
typedef struct recursion_info { |
2345 |
struct recursion_info *prevrec; /* Previous recursion record (or NULL) */ |
struct recursion_info *prevrec; /* Previous recursion record (or NULL) */ |
2346 |
int group_num; /* Number of group that was called */ |
int group_num; /* Number of group that was called */ |
2347 |
const uschar *after_call; /* "Return value": points after the call in the expr */ |
int *offset_save; /* Pointer to start of saved offsets */ |
2348 |
USPTR save_start; /* Old value of mstart */ |
int saved_max; /* Number of saved offsets */ |
2349 |
int *offset_save; /* Pointer to start of saved offsets */ |
PCRE_PUCHAR subject_position; /* Position at start of recursion */ |
|
int saved_max; /* Number of saved offsets */ |
|
2350 |
} recursion_info; |
} recursion_info; |
2351 |
|
|
2352 |
|
/* A similar structure for pcre_dfa_exec(). */ |
2353 |
|
|
2354 |
|
typedef struct dfa_recursion_info { |
2355 |
|
struct dfa_recursion_info *prevrec; |
2356 |
|
int group_num; |
2357 |
|
PCRE_PUCHAR subject_position; |
2358 |
|
} dfa_recursion_info; |
2359 |
|
|
2360 |
/* Structure for building a chain of data for holding the values of the subject |
/* Structure for building a chain of data for holding the values of the subject |
2361 |
pointer at the start of each subpattern, so as to detect when an empty string |
pointer at the start of each subpattern, so as to detect when an empty string |
2362 |
has been matched by a subpattern - to break infinite loops. */ |
has been matched by a subpattern - to break infinite loops; used by |
2363 |
|
pcre_exec(). */ |
2364 |
|
|
2365 |
typedef struct eptrblock { |
typedef struct eptrblock { |
2366 |
struct eptrblock *epb_prev; |
struct eptrblock *epb_prev; |
2367 |
USPTR epb_saved_eptr; |
PCRE_PUCHAR epb_saved_eptr; |
2368 |
} eptrblock; |
} eptrblock; |
2369 |
|
|
2370 |
|
|
2375 |
unsigned long int match_call_count; /* As it says */ |
unsigned long int match_call_count; /* As it says */ |
2376 |
unsigned long int match_limit; /* As it says */ |
unsigned long int match_limit; /* As it says */ |
2377 |
unsigned long int match_limit_recursion; /* As it says */ |
unsigned long int match_limit_recursion; /* As it says */ |
2378 |
int *offset_vector; /* Offset vector */ |
int *offset_vector; /* Offset vector */ |
2379 |
int offset_end; /* One past the end */ |
int offset_end; /* One past the end */ |
2380 |
int offset_max; /* The maximum usable for return data */ |
int offset_max; /* The maximum usable for return data */ |
2381 |
int nltype; /* Newline type */ |
int nltype; /* Newline type */ |
2382 |
int nllen; /* Newline string length */ |
int nllen; /* Newline string length */ |
2383 |
uschar nl[4]; /* Newline string when fixed */ |
int name_count; /* Number of names in name table */ |
2384 |
const uschar *lcc; /* Points to lower casing table */ |
int name_entry_size; /* Size of entry in names table */ |
2385 |
const uschar *ctypes; /* Points to table of type maps */ |
pcre_uchar *name_table; /* Table of names */ |
2386 |
BOOL offset_overflow; /* Set if too many extractions */ |
pcre_uchar nl[4]; /* Newline string when fixed */ |
2387 |
BOOL notbol; /* NOTBOL flag */ |
const pcre_uint8 *lcc; /* Points to lower casing table */ |
2388 |
BOOL noteol; /* NOTEOL flag */ |
const pcre_uint8 *fcc; /* Points to case-flipping table */ |
2389 |
BOOL utf8; /* UTF8 flag */ |
const pcre_uint8 *ctypes; /* Points to table of type maps */ |
2390 |
BOOL jscript_compat; /* JAVASCRIPT_COMPAT flag */ |
BOOL offset_overflow; /* Set if too many extractions */ |
2391 |
BOOL endonly; /* Dollar not before final \n */ |
BOOL notbol; /* NOTBOL flag */ |
2392 |
BOOL notempty; /* Empty string match not wanted */ |
BOOL noteol; /* NOTEOL flag */ |
2393 |
BOOL partial; /* PARTIAL flag */ |
BOOL utf; /* UTF-8 / UTF-16 flag */ |
2394 |
BOOL hitend; /* Hit the end of the subject at some point */ |
BOOL jscript_compat; /* JAVASCRIPT_COMPAT flag */ |
2395 |
BOOL bsr_anycrlf; /* \R is just any CRLF, not full Unicode */ |
BOOL use_ucp; /* PCRE_UCP flag */ |
2396 |
const uschar *start_code; /* For use when recursing */ |
BOOL endonly; /* Dollar not before final \n */ |
2397 |
USPTR start_subject; /* Start of the subject string */ |
BOOL notempty; /* Empty string match not wanted */ |
2398 |
USPTR end_subject; /* End of the subject string */ |
BOOL notempty_atstart; /* Empty string match at start not wanted */ |
2399 |
USPTR start_match_ptr; /* Start of matched string */ |
BOOL hitend; /* Hit the end of the subject at some point */ |
2400 |
USPTR end_match_ptr; /* Subject position at end match */ |
BOOL bsr_anycrlf; /* \R is just any CRLF, not full Unicode */ |
2401 |
int end_offset_top; /* Highwater mark at end of match */ |
BOOL hasthen; /* Pattern contains (*THEN) */ |
2402 |
int capture_last; /* Most recent capture number */ |
BOOL ignore_skip_arg; /* For re-run when SKIP name not found */ |
2403 |
int start_offset; /* The start offset value */ |
const pcre_uchar *start_code; /* For use when recursing */ |
2404 |
eptrblock *eptrchain; /* Chain of eptrblocks for tail recursions */ |
PCRE_PUCHAR start_subject; /* Start of the subject string */ |
2405 |
int eptrn; /* Next free eptrblock */ |
PCRE_PUCHAR end_subject; /* End of the subject string */ |
2406 |
recursion_info *recursive; /* Linked list of recursion data */ |
PCRE_PUCHAR start_match_ptr; /* Start of matched string */ |
2407 |
void *callout_data; /* To pass back to callouts */ |
PCRE_PUCHAR end_match_ptr; /* Subject position at end match */ |
2408 |
|
PCRE_PUCHAR start_used_ptr; /* Earliest consulted character */ |
2409 |
|
int partial; /* PARTIAL options */ |
2410 |
|
int end_offset_top; /* Highwater mark at end of match */ |
2411 |
|
int capture_last; /* Most recent capture number */ |
2412 |
|
int start_offset; /* The start offset value */ |
2413 |
|
int match_function_type; /* Set for certain special calls of MATCH() */ |
2414 |
|
eptrblock *eptrchain; /* Chain of eptrblocks for tail recursions */ |
2415 |
|
int eptrn; /* Next free eptrblock */ |
2416 |
|
recursion_info *recursive; /* Linked list of recursion data */ |
2417 |
|
void *callout_data; /* To pass back to callouts */ |
2418 |
|
const pcre_uchar *mark; /* Mark pointer to pass back on success */ |
2419 |
|
const pcre_uchar *nomatch_mark;/* Mark pointer to pass back on failure */ |
2420 |
|
const pcre_uchar *once_target; /* Where to back up to for atomic groups */ |
2421 |
|
#ifdef NO_RECURSE |
2422 |
|
void *match_frames_base; /* For remembering malloc'd frames */ |
2423 |
|
#endif |
2424 |
} match_data; |
} match_data; |
2425 |
|
|
2426 |
/* A similar structure is used for the same purpose by the DFA matching |
/* A similar structure is used for the same purpose by the DFA matching |
2427 |
functions. */ |
functions. */ |
2428 |
|
|
2429 |
typedef struct dfa_match_data { |
typedef struct dfa_match_data { |
2430 |
const uschar *start_code; /* Start of the compiled pattern */ |
const pcre_uchar *start_code; /* Start of the compiled pattern */ |
2431 |
const uschar *start_subject; /* Start of the subject string */ |
const pcre_uchar *start_subject ; /* Start of the subject string */ |
2432 |
const uschar *end_subject; /* End of subject string */ |
const pcre_uchar *end_subject; /* End of subject string */ |
2433 |
const uschar *tables; /* Character tables */ |
const pcre_uchar *start_used_ptr; /* Earliest consulted character */ |
2434 |
int moptions; /* Match options */ |
const pcre_uint8 *tables; /* Character tables */ |
2435 |
int poptions; /* Pattern options */ |
int start_offset; /* The start offset value */ |
2436 |
int nltype; /* Newline type */ |
int moptions; /* Match options */ |
2437 |
int nllen; /* Newline string length */ |
int poptions; /* Pattern options */ |
2438 |
uschar nl[4]; /* Newline string when fixed */ |
int nltype; /* Newline type */ |
2439 |
void *callout_data; /* To pass back to callouts */ |
int nllen; /* Newline string length */ |
2440 |
|
pcre_uchar nl[4]; /* Newline string when fixed */ |
2441 |
|
void *callout_data; /* To pass back to callouts */ |
2442 |
|
dfa_recursion_info *recursive; /* Linked list of recursion data */ |
2443 |
} dfa_match_data; |
} dfa_match_data; |
2444 |
|
|
2445 |
/* Bit definitions for entries in the pcre_ctypes table. */ |
/* Bit definitions for entries in the pcre_ctypes table. */ |
2475 |
#define ctypes_offset (cbits_offset + cbit_length) |
#define ctypes_offset (cbits_offset + cbit_length) |
2476 |
#define tables_length (ctypes_offset + 256) |
#define tables_length (ctypes_offset + 256) |
2477 |
|
|
2478 |
|
/* Internal function and data prefixes. */ |
2479 |
|
|
2480 |
|
#if defined COMPILE_PCRE8 |
2481 |
|
#ifndef PUBL |
2482 |
|
#define PUBL(name) pcre_##name |
2483 |
|
#endif |
2484 |
|
#ifndef PRIV |
2485 |
|
#define PRIV(name) _pcre_##name |
2486 |
|
#endif |
2487 |
|
#elif defined COMPILE_PCRE16 |
2488 |
|
#ifndef PUBL |
2489 |
|
#define PUBL(name) pcre16_##name |
2490 |
|
#endif |
2491 |
|
#ifndef PRIV |
2492 |
|
#define PRIV(name) _pcre16_##name |
2493 |
|
#endif |
2494 |
|
#elif defined COMPILE_PCRE32 |
2495 |
|
#ifndef PUBL |
2496 |
|
#define PUBL(name) pcre32_##name |
2497 |
|
#endif |
2498 |
|
#ifndef PRIV |
2499 |
|
#define PRIV(name) _pcre32_##name |
2500 |
|
#endif |
2501 |
|
#else |
2502 |
|
#error Unsupported compiling mode |
2503 |
|
#endif /* COMPILE_PCRE[8|16|32] */ |
2504 |
|
|
2505 |
/* Layout of the UCP type table that translates property names into types and |
/* Layout of the UCP type table that translates property names into types and |
2506 |
codes. Each entry used to point directly to a name, but to reduce the number of |
codes. Each entry used to point directly to a name, but to reduce the number of |
2507 |
relocations in shared libraries, it now has an offset into a single string |
relocations in shared libraries, it now has an offset into a single string |
2519 |
but are not part of the PCRE public API. The data for these tables is in the |
but are not part of the PCRE public API. The data for these tables is in the |
2520 |
pcre_tables.c module. */ |
pcre_tables.c module. */ |
2521 |
|
|
2522 |
extern const int _pcre_utf8_table1[]; |
#ifdef COMPILE_PCRE8 |
2523 |
extern const int _pcre_utf8_table2[]; |
extern const int PRIV(utf8_table1)[]; |
2524 |
extern const int _pcre_utf8_table3[]; |
extern const int PRIV(utf8_table1_size); |
2525 |
extern const uschar _pcre_utf8_table4[]; |
extern const int PRIV(utf8_table2)[]; |
2526 |
|
extern const int PRIV(utf8_table3)[]; |
2527 |
extern const int _pcre_utf8_table1_size; |
extern const pcre_uint8 PRIV(utf8_table4)[]; |
2528 |
|
#endif /* COMPILE_PCRE8 */ |
2529 |
extern const char _pcre_utt_names[]; |
|
2530 |
extern const ucp_type_table _pcre_utt[]; |
extern const char PRIV(utt_names)[]; |
2531 |
extern const int _pcre_utt_size; |
extern const ucp_type_table PRIV(utt)[]; |
2532 |
|
extern const int PRIV(utt_size); |
2533 |
|
|
2534 |
extern const uschar _pcre_default_tables[]; |
extern const pcre_uint8 PRIV(OP_lengths)[]; |
2535 |
|
extern const pcre_uint8 PRIV(default_tables)[]; |
2536 |
|
|
2537 |
extern const uschar _pcre_OP_lengths[]; |
extern const pcre_uint32 PRIV(hspace_list)[]; |
2538 |
|
extern const pcre_uint32 PRIV(vspace_list)[]; |
2539 |
|
|
2540 |
|
|
2541 |
/* Internal shared functions. These are functions that are used by more than |
/* Internal shared functions. These are functions that are used by more than |
2542 |
one of the exported public functions. They have to be "external" in the C |
one of the exported public functions. They have to be "external" in the C |
2543 |
sense, but are not part of the PCRE public API. */ |
sense, but are not part of the PCRE public API. */ |
2544 |
|
|
2545 |
extern BOOL _pcre_is_newline(const uschar *, int, const uschar *, |
/* String comparison functions. */ |
2546 |
int *, BOOL); |
#if defined COMPILE_PCRE8 |
|
extern int _pcre_ord2utf8(int, uschar *); |
|
|
extern real_pcre *_pcre_try_flipped(const real_pcre *, real_pcre *, |
|
|
const pcre_study_data *, pcre_study_data *); |
|
|
extern int _pcre_valid_utf8(const uschar *, int); |
|
|
extern BOOL _pcre_was_newline(const uschar *, int, const uschar *, |
|
|
int *, BOOL); |
|
|
extern BOOL _pcre_xclass(int, const uschar *); |
|
2547 |
|
|
2548 |
|
#define STRCMP_UC_UC(str1, str2) \ |
2549 |
|
strcmp((char *)(str1), (char *)(str2)) |
2550 |
|
#define STRCMP_UC_C8(str1, str2) \ |
2551 |
|
strcmp((char *)(str1), (str2)) |
2552 |
|
#define STRNCMP_UC_UC(str1, str2, num) \ |
2553 |
|
strncmp((char *)(str1), (char *)(str2), (num)) |
2554 |
|
#define STRNCMP_UC_C8(str1, str2, num) \ |
2555 |
|
strncmp((char *)(str1), (str2), (num)) |
2556 |
|
#define STRLEN_UC(str) strlen((const char *)str) |
2557 |
|
|
2558 |
|
#elif defined COMPILE_PCRE16 || defined COMPILE_PCRE32 |
2559 |
|
|
2560 |
|
extern int PRIV(strcmp_uc_uc)(const pcre_uchar *, |
2561 |
|
const pcre_uchar *); |
2562 |
|
extern int PRIV(strcmp_uc_c8)(const pcre_uchar *, |
2563 |
|
const char *); |
2564 |
|
extern int PRIV(strncmp_uc_uc)(const pcre_uchar *, |
2565 |
|
const pcre_uchar *, unsigned int num); |
2566 |
|
extern int PRIV(strncmp_uc_c8)(const pcre_uchar *, |
2567 |
|
const char *, unsigned int num); |
2568 |
|
extern unsigned int PRIV(strlen_uc)(const pcre_uchar *str); |
2569 |
|
|
2570 |
|
#define STRCMP_UC_UC(str1, str2) \ |
2571 |
|
PRIV(strcmp_uc_uc)((str1), (str2)) |
2572 |
|
#define STRCMP_UC_C8(str1, str2) \ |
2573 |
|
PRIV(strcmp_uc_c8)((str1), (str2)) |
2574 |
|
#define STRNCMP_UC_UC(str1, str2, num) \ |
2575 |
|
PRIV(strncmp_uc_uc)((str1), (str2), (num)) |
2576 |
|
#define STRNCMP_UC_C8(str1, str2, num) \ |
2577 |
|
PRIV(strncmp_uc_c8)((str1), (str2), (num)) |
2578 |
|
#define STRLEN_UC(str) PRIV(strlen_uc)(str) |
2579 |
|
|
2580 |
|
#endif /* COMPILE_PCRE[8|16|32] */ |
2581 |
|
|
2582 |
|
extern const pcre_uchar *PRIV(find_bracket)(const pcre_uchar *, BOOL, int); |
2583 |
|
extern BOOL PRIV(is_newline)(PCRE_PUCHAR, int, PCRE_PUCHAR, |
2584 |
|
int *, BOOL); |
2585 |
|
extern int PRIV(ord2utf)(pcre_uint32, pcre_uchar *); |
2586 |
|
extern int PRIV(valid_utf)(PCRE_PUCHAR, int, int *); |
2587 |
|
extern BOOL PRIV(was_newline)(PCRE_PUCHAR, int, PCRE_PUCHAR, |
2588 |
|
int *, BOOL); |
2589 |
|
extern BOOL PRIV(xclass)(pcre_uint32, const pcre_uchar *, BOOL); |
2590 |
|
|
2591 |
|
#ifdef SUPPORT_JIT |
2592 |
|
extern void PRIV(jit_compile)(const REAL_PCRE *, |
2593 |
|
PUBL(extra) *, int); |
2594 |
|
extern int PRIV(jit_exec)(const REAL_PCRE *, const PUBL(extra) *, |
2595 |
|
const pcre_uchar *, int, int, int, int *, int); |
2596 |
|
extern void PRIV(jit_free)(void *); |
2597 |
|
extern int PRIV(jit_get_size)(void *); |
2598 |
|
extern const char* PRIV(jit_get_target)(void); |
2599 |
|
#endif |
2600 |
|
|
2601 |
/* Unicode character database (UCD) */ |
/* Unicode character database (UCD) */ |
2602 |
|
|
2603 |
typedef struct { |
typedef struct { |
2604 |
uschar script; |
pcre_uint8 script; /* ucp_Arabic, etc. */ |
2605 |
uschar chartype; |
pcre_uint8 chartype; /* ucp_Cc, etc. (general categories) */ |
2606 |
pcre_int32 other_case; |
pcre_uint8 gbprop; /* ucp_gbControl, etc. (grapheme break property) */ |
2607 |
|
pcre_uint8 caseset; /* offset to multichar other cases or zero */ |
2608 |
|
pcre_int32 other_case; /* offset to other case, or zero if none */ |
2609 |
} ucd_record; |
} ucd_record; |
2610 |
|
|
2611 |
extern const ucd_record _pcre_ucd_records[]; |
extern const pcre_uint32 PRIV(ucd_caseless_sets)[]; |
2612 |
extern const uschar _pcre_ucd_stage1[]; |
extern const ucd_record PRIV(ucd_records)[]; |
2613 |
extern const pcre_uint16 _pcre_ucd_stage2[]; |
extern const pcre_uint8 PRIV(ucd_stage1)[]; |
2614 |
extern const int _pcre_ucp_gentype[]; |
extern const pcre_uint16 PRIV(ucd_stage2)[]; |
2615 |
|
extern const int PRIV(ucp_gentype)[]; |
2616 |
|
extern const pcre_uint32 PRIV(ucp_gbtable)[]; |
2617 |
|
#ifdef SUPPORT_JIT |
2618 |
|
extern const int PRIV(ucp_typerange)[]; |
2619 |
|
#endif |
2620 |
|
|
2621 |
|
#ifdef SUPPORT_UCP |
2622 |
/* UCD access macros */ |
/* UCD access macros */ |
2623 |
|
|
2624 |
#define UCD_BLOCK_SIZE 128 |
#define UCD_BLOCK_SIZE 128 |
2625 |
#define GET_UCD(ch) (_pcre_ucd_records + \ |
#define GET_UCD(ch) (PRIV(ucd_records) + \ |
2626 |
_pcre_ucd_stage2[_pcre_ucd_stage1[(ch) / UCD_BLOCK_SIZE] * \ |
PRIV(ucd_stage2)[PRIV(ucd_stage1)[(ch) / UCD_BLOCK_SIZE] * \ |
2627 |
UCD_BLOCK_SIZE + ch % UCD_BLOCK_SIZE]) |
UCD_BLOCK_SIZE + (ch) % UCD_BLOCK_SIZE]) |
2628 |
|
|
2629 |
#define UCD_CHARTYPE(ch) GET_UCD(ch)->chartype |
#define UCD_CHARTYPE(ch) GET_UCD(ch)->chartype |
2630 |
#define UCD_SCRIPT(ch) GET_UCD(ch)->script |
#define UCD_SCRIPT(ch) GET_UCD(ch)->script |
2631 |
#define UCD_CATEGORY(ch) _pcre_ucp_gentype[UCD_CHARTYPE(ch)] |
#define UCD_CATEGORY(ch) PRIV(ucp_gentype)[UCD_CHARTYPE(ch)] |
2632 |
#define UCD_OTHERCASE(ch) (ch + GET_UCD(ch)->other_case) |
#define UCD_GRAPHBREAK(ch) GET_UCD(ch)->gbprop |
2633 |
|
#define UCD_CASESET(ch) GET_UCD(ch)->caseset |
2634 |
|
#define UCD_OTHERCASE(ch) (ch + GET_UCD(ch)->other_case) |
2635 |
|
|
2636 |
|
#endif /* SUPPORT_UCP */ |
2637 |
|
|
2638 |
#endif |
#endif |
2639 |
|
|