| 67 |
#endif |
#endif |
| 68 |
|
|
| 69 |
|
|
|
/* Get the definitions provided by running "configure" */ |
|
|
|
|
|
#include "config.h" |
|
|
|
|
| 70 |
/* Standard C headers plus the external interface definition. The only time |
/* Standard C headers plus the external interface definition. The only time |
| 71 |
setjmp and stdarg are used is when NO_RECURSE is set. */ |
setjmp and stdarg are used is when NO_RECURSE is set. */ |
| 72 |
|
|
| 82 |
/* When compiling a DLL for Windows, the exported symbols have to be declared |
/* When compiling a DLL for Windows, the exported symbols have to be declared |
| 83 |
using some MS magic. I found some useful information on this web page: |
using some MS magic. I found some useful information on this web page: |
| 84 |
http://msdn2.microsoft.com/en-us/library/y4h7bcy6(VS.80).aspx. According to the |
http://msdn2.microsoft.com/en-us/library/y4h7bcy6(VS.80).aspx. According to the |
| 85 |
information there, using __declspec(dllesport) without "extern" we have a |
information there, using __declspec(dllexport) without "extern" we have a |
| 86 |
definition; with "extern" we have a declaration. The settings here override the |
definition; with "extern" we have a declaration. The settings here override the |
| 87 |
setting in pcre.h (which is included below); it defines only PCRE_EXP_DECL, |
setting in pcre.h (which is included below); it defines only PCRE_EXP_DECL, |
| 88 |
which is all that is needed for applications, which import the symbols. We use: |
which is all that is needed for applications (they just import the symbols). We |
| 89 |
|
use: |
| 90 |
|
|
| 91 |
PCRE_EXP_DECL for declarations |
PCRE_EXP_DECL for declarations |
| 92 |
PCRE_EXP_DEFN for definitions of exported functions |
PCRE_EXP_DEFN for definitions of exported functions |
| 99 |
|
|
| 100 |
The reason for wrapping this in #ifndef PCRE_EXP_DECL is so that pcretest, |
The reason for wrapping this in #ifndef PCRE_EXP_DECL is so that pcretest, |
| 101 |
which is an application, but needs to import this file in order to "peek" at |
which is an application, but needs to import this file in order to "peek" at |
| 102 |
internals, can #include pcre.h first, can get an application's-eye view. |
internals, can #include pcre.h first to get an application's-eye view. |
| 103 |
|
|
| 104 |
In principle, people compiling for non-Windows, non-Unix-like (i.e. uncommon, |
In principle, people compiling for non-Windows, non-Unix-like (i.e. uncommon, |
| 105 |
special-purpose environments) might want to stick other stuff in front of |
special-purpose environments) might want to stick other stuff in front of |
| 108 |
|
|
| 109 |
#ifndef PCRE_EXP_DECL |
#ifndef PCRE_EXP_DECL |
| 110 |
# ifdef _WIN32 |
# ifdef _WIN32 |
| 111 |
# ifdef DLL_EXPORT |
# ifndef PCRE_STATIC |
| 112 |
# define PCRE_EXP_DECL extern __declspec(dllexport) |
# define PCRE_EXP_DECL extern __declspec(dllexport) |
| 113 |
# define PCRE_EXP_DEFN __declspec(dllexport) |
# define PCRE_EXP_DEFN __declspec(dllexport) |
| 114 |
# define PCRE_EXP_DATA_DEFN __declspec(dllexport) |
# define PCRE_EXP_DATA_DEFN __declspec(dllexport) |
| 117 |
# define PCRE_EXP_DEFN |
# define PCRE_EXP_DEFN |
| 118 |
# define PCRE_EXP_DATA_DEFN |
# define PCRE_EXP_DATA_DEFN |
| 119 |
# endif |
# endif |
|
# |
|
| 120 |
# else |
# else |
| 121 |
# ifdef __cplusplus |
# ifdef __cplusplus |
| 122 |
# define PCRE_EXP_DECL extern "C" |
# define PCRE_EXP_DECL extern "C" |
| 229 |
/* Include the public PCRE header and the definitions of UCP character property |
/* Include the public PCRE header and the definitions of UCP character property |
| 230 |
values. */ |
values. */ |
| 231 |
|
|
| 232 |
#include <pcre.h> |
#include "pcre.h" |
| 233 |
#include "ucp.h" |
#include "ucp.h" |
| 234 |
|
|
| 235 |
/* When compiling for use with the Virtual Pascal compiler, these functions |
/* When compiling for use with the Virtual Pascal compiler, these functions |
| 358 |
|
|
| 359 |
/* When UTF-8 encoding is being used, a character is no longer just a single |
/* When UTF-8 encoding is being used, a character is no longer just a single |
| 360 |
byte. The macros for character handling generate simple sequences when used in |
byte. The macros for character handling generate simple sequences when used in |
| 361 |
byte-mode, and more complicated ones for UTF-8 characters. */ |
byte-mode, and more complicated ones for UTF-8 characters. BACKCHAR should |
| 362 |
|
never be called in byte mode. To make sure it can never even appear when UTF-8 |
| 363 |
|
support is omitted, we don't even define it. */ |
| 364 |
|
|
| 365 |
#ifndef SUPPORT_UTF8 |
#ifndef SUPPORT_UTF8 |
| 366 |
#define GETCHAR(c, eptr) c = *eptr; |
#define GETCHAR(c, eptr) c = *eptr; |
| 368 |
#define GETCHARINC(c, eptr) c = *eptr++; |
#define GETCHARINC(c, eptr) c = *eptr++; |
| 369 |
#define GETCHARINCTEST(c, eptr) c = *eptr++; |
#define GETCHARINCTEST(c, eptr) c = *eptr++; |
| 370 |
#define GETCHARLEN(c, eptr, len) c = *eptr; |
#define GETCHARLEN(c, eptr, len) c = *eptr; |
| 371 |
#define BACKCHAR(eptr) |
/* #define BACKCHAR(eptr) */ |
| 372 |
|
|
| 373 |
#else /* SUPPORT_UTF8 */ |
#else /* SUPPORT_UTF8 */ |
| 374 |
|
|
| 461 |
} |
} |
| 462 |
|
|
| 463 |
/* 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 |
| 464 |
it is. Called only in UTF-8 mode. */ |
it is. This is called only in UTF-8 mode - we don't put a test within the macro |
| 465 |
|
because almost all calls are already within a block of UTF-8 only code. */ |
| 466 |
|
|
| 467 |
#define BACKCHAR(eptr) while((*eptr & 0xc0) == 0x80) eptr--; |
#define BACKCHAR(eptr) while((*eptr & 0xc0) == 0x80) eptr-- |
| 468 |
|
|
| 469 |
#endif |
#endif |
| 470 |
|
|
| 492 |
#define PCRE_REQCHSET 0x20000000 /* req_byte is set */ |
#define PCRE_REQCHSET 0x20000000 /* req_byte is set */ |
| 493 |
#define PCRE_STARTLINE 0x10000000 /* start after \n for multiline */ |
#define PCRE_STARTLINE 0x10000000 /* start after \n for multiline */ |
| 494 |
#define PCRE_JCHANGED 0x08000000 /* j option changes within regex */ |
#define PCRE_JCHANGED 0x08000000 /* j option changes within regex */ |
| 495 |
|
#define PCRE_HASCRORLF 0x04000000 /* explicit \r or \n in pattern */ |
| 496 |
|
|
| 497 |
/* Options for the "extra" block produced by pcre_study(). */ |
/* Options for the "extra" block produced by pcre_study(). */ |
| 498 |
|
|
| 604 |
consume characters. If any new escapes are put in between that don't consume a |
consume characters. If any new escapes are put in between that don't consume a |
| 605 |
character, that code will have to change. */ |
character, that code will have to change. */ |
| 606 |
|
|
| 607 |
enum { ESC_A = 1, ESC_G, ESC_B, ESC_b, ESC_D, ESC_d, ESC_S, ESC_s, ESC_W, |
enum { ESC_A = 1, ESC_G, ESC_K, ESC_B, ESC_b, ESC_D, ESC_d, ESC_S, ESC_s, |
| 608 |
ESC_w, ESC_dum1, ESC_C, ESC_P, ESC_p, ESC_R, ESC_X, ESC_Z, ESC_z, |
ESC_W, ESC_w, ESC_dum1, ESC_C, ESC_P, ESC_p, ESC_R, ESC_H, ESC_h, |
| 609 |
ESC_E, ESC_Q, ESC_k, ESC_REF }; |
ESC_V, ESC_v, ESC_X, ESC_Z, ESC_z, ESC_E, ESC_Q, ESC_k, ESC_REF }; |
| 610 |
|
|
| 611 |
|
|
| 612 |
/* Opcode table: OP_BRA must be last, as all values >= it are used for brackets |
/* Opcode table: Starting from 1 (i.e. after OP_END), the values up to |
|
that extract substrings. Starting from 1 (i.e. after OP_END), the values up to |
|
| 613 |
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. |
| 614 |
|
|
|
To keep stored, compiled patterns compatible, new opcodes should be added |
|
|
immediately before OP_BRA, where (since release 7.0) a gap is left for this |
|
|
purpose. |
|
|
|
|
| 615 |
*** NOTE NOTE NOTE *** Whenever this list is updated, the two macro definitions |
*** NOTE NOTE NOTE *** Whenever this list is updated, the two macro definitions |
| 616 |
that follow must also be updated to match. There is also a table called |
that follow must also be updated to match. There is also a table called |
| 617 |
"coptable" in pcre_dfa_exec.c that must be updated. */ |
"coptable" in pcre_dfa_exec.c that must be updated. */ |
| 623 |
|
|
| 624 |
OP_SOD, /* 1 Start of data: \A */ |
OP_SOD, /* 1 Start of data: \A */ |
| 625 |
OP_SOM, /* 2 Start of match (subject + offset): \G */ |
OP_SOM, /* 2 Start of match (subject + offset): \G */ |
| 626 |
OP_NOT_WORD_BOUNDARY, /* 3 \B */ |
OP_SET_SOM, /* 3 Set start of match (\K) */ |
| 627 |
OP_WORD_BOUNDARY, /* 4 \b */ |
OP_NOT_WORD_BOUNDARY, /* 4 \B */ |
| 628 |
OP_NOT_DIGIT, /* 5 \D */ |
OP_WORD_BOUNDARY, /* 5 \b */ |
| 629 |
OP_DIGIT, /* 6 \d */ |
OP_NOT_DIGIT, /* 6 \D */ |
| 630 |
OP_NOT_WHITESPACE, /* 7 \S */ |
OP_DIGIT, /* 7 \d */ |
| 631 |
OP_WHITESPACE, /* 8 \s */ |
OP_NOT_WHITESPACE, /* 8 \S */ |
| 632 |
OP_NOT_WORDCHAR, /* 9 \W */ |
OP_WHITESPACE, /* 9 \s */ |
| 633 |
OP_WORDCHAR, /* 10 \w */ |
OP_NOT_WORDCHAR, /* 10 \W */ |
| 634 |
OP_ANY, /* 11 Match any character */ |
OP_WORDCHAR, /* 11 \w */ |
| 635 |
OP_ANYBYTE, /* 12 Match any byte (\C); different to OP_ANY for UTF-8 */ |
OP_ANY, /* 12 Match any character */ |
| 636 |
OP_NOTPROP, /* 13 \P (not Unicode property) */ |
OP_ANYBYTE, /* 13 Match any byte (\C); different to OP_ANY for UTF-8 */ |
| 637 |
OP_PROP, /* 14 \p (Unicode property) */ |
OP_NOTPROP, /* 14 \P (not Unicode property) */ |
| 638 |
OP_ANYNL, /* 15 \R (any newline sequence) */ |
OP_PROP, /* 15 \p (Unicode property) */ |
| 639 |
OP_EXTUNI, /* 16 \X (extended Unicode sequence */ |
OP_ANYNL, /* 16 \R (any newline sequence) */ |
| 640 |
OP_EODN, /* 17 End of data or \n at end of data: \Z. */ |
OP_NOT_HSPACE, /* 17 \H (not horizontal whitespace) */ |
| 641 |
OP_EOD, /* 18 End of data: \z */ |
OP_HSPACE, /* 18 \h (horizontal whitespace) */ |
| 642 |
|
OP_NOT_VSPACE, /* 19 \V (not vertical whitespace) */ |
| 643 |
OP_OPT, /* 19 Set runtime options */ |
OP_VSPACE, /* 20 \v (vertical whitespace) */ |
| 644 |
OP_CIRC, /* 20 Start of line - varies with multiline switch */ |
OP_EXTUNI, /* 21 \X (extended Unicode sequence */ |
| 645 |
OP_DOLL, /* 21 End of line - varies with multiline switch */ |
OP_EODN, /* 22 End of data or \n at end of data: \Z. */ |
| 646 |
OP_CHAR, /* 22 Match one character, casefully */ |
OP_EOD, /* 23 End of data: \z */ |
| 647 |
OP_CHARNC, /* 23 Match one character, caselessly */ |
|
| 648 |
OP_NOT, /* 24 Match one character, not the following one */ |
OP_OPT, /* 24 Set runtime options */ |
| 649 |
|
OP_CIRC, /* 25 Start of line - varies with multiline switch */ |
| 650 |
OP_STAR, /* 25 The maximizing and minimizing versions of */ |
OP_DOLL, /* 26 End of line - varies with multiline switch */ |
| 651 |
OP_MINSTAR, /* 26 these six opcodes must come in pairs, with */ |
OP_CHAR, /* 27 Match one character, casefully */ |
| 652 |
OP_PLUS, /* 27 the minimizing one second. */ |
OP_CHARNC, /* 28 Match one character, caselessly */ |
| 653 |
OP_MINPLUS, /* 28 This first set applies to single characters.*/ |
OP_NOT, /* 29 Match one character, not the following one */ |
| 654 |
OP_QUERY, /* 29 */ |
|
| 655 |
OP_MINQUERY, /* 30 */ |
OP_STAR, /* 30 The maximizing and minimizing versions of */ |
| 656 |
|
OP_MINSTAR, /* 31 these six opcodes must come in pairs, with */ |
| 657 |
OP_UPTO, /* 31 From 0 to n matches */ |
OP_PLUS, /* 32 the minimizing one second. */ |
| 658 |
OP_MINUPTO, /* 32 */ |
OP_MINPLUS, /* 33 This first set applies to single characters.*/ |
| 659 |
OP_EXACT, /* 33 Exactly n matches */ |
OP_QUERY, /* 34 */ |
| 660 |
|
OP_MINQUERY, /* 35 */ |
| 661 |
OP_POSSTAR, /* 34 Possessified star */ |
|
| 662 |
OP_POSPLUS, /* 35 Possessified plus */ |
OP_UPTO, /* 36 From 0 to n matches */ |
| 663 |
OP_POSQUERY, /* 36 Posesssified query */ |
OP_MINUPTO, /* 37 */ |
| 664 |
OP_POSUPTO, /* 37 Possessified upto */ |
OP_EXACT, /* 38 Exactly n matches */ |
| 665 |
|
|
| 666 |
OP_NOTSTAR, /* 38 The maximizing and minimizing versions of */ |
OP_POSSTAR, /* 39 Possessified star */ |
| 667 |
OP_NOTMINSTAR, /* 39 these six opcodes must come in pairs, with */ |
OP_POSPLUS, /* 40 Possessified plus */ |
| 668 |
OP_NOTPLUS, /* 40 the minimizing one second. They must be in */ |
OP_POSQUERY, /* 41 Posesssified query */ |
| 669 |
OP_NOTMINPLUS, /* 41 exactly the same order as those above. */ |
OP_POSUPTO, /* 42 Possessified upto */ |
| 670 |
OP_NOTQUERY, /* 42 This set applies to "not" single characters. */ |
|
| 671 |
OP_NOTMINQUERY, /* 43 */ |
OP_NOTSTAR, /* 43 The maximizing and minimizing versions of */ |
| 672 |
|
OP_NOTMINSTAR, /* 44 these six opcodes must come in pairs, with */ |
| 673 |
OP_NOTUPTO, /* 44 From 0 to n matches */ |
OP_NOTPLUS, /* 45 the minimizing one second. They must be in */ |
| 674 |
OP_NOTMINUPTO, /* 45 */ |
OP_NOTMINPLUS, /* 46 exactly the same order as those above. */ |
| 675 |
OP_NOTEXACT, /* 46 Exactly n matches */ |
OP_NOTQUERY, /* 47 This set applies to "not" single characters. */ |
| 676 |
|
OP_NOTMINQUERY, /* 48 */ |
| 677 |
OP_NOTPOSSTAR, /* 47 Possessified versions */ |
|
| 678 |
OP_NOTPOSPLUS, /* 48 */ |
OP_NOTUPTO, /* 49 From 0 to n matches */ |
| 679 |
OP_NOTPOSQUERY, /* 49 */ |
OP_NOTMINUPTO, /* 50 */ |
| 680 |
OP_NOTPOSUPTO, /* 50 */ |
OP_NOTEXACT, /* 51 Exactly n matches */ |
| 681 |
|
|
| 682 |
OP_TYPESTAR, /* 51 The maximizing and minimizing versions of */ |
OP_NOTPOSSTAR, /* 52 Possessified versions */ |
| 683 |
OP_TYPEMINSTAR, /* 52 these six opcodes must come in pairs, with */ |
OP_NOTPOSPLUS, /* 53 */ |
| 684 |
OP_TYPEPLUS, /* 53 the minimizing one second. These codes must */ |
OP_NOTPOSQUERY, /* 54 */ |
| 685 |
OP_TYPEMINPLUS, /* 54 be in exactly the same order as those above. */ |
OP_NOTPOSUPTO, /* 55 */ |
| 686 |
OP_TYPEQUERY, /* 55 This set applies to character types such as \d */ |
|
| 687 |
OP_TYPEMINQUERY, /* 56 */ |
OP_TYPESTAR, /* 56 The maximizing and minimizing versions of */ |
| 688 |
|
OP_TYPEMINSTAR, /* 57 these six opcodes must come in pairs, with */ |
| 689 |
OP_TYPEUPTO, /* 57 From 0 to n matches */ |
OP_TYPEPLUS, /* 58 the minimizing one second. These codes must */ |
| 690 |
OP_TYPEMINUPTO, /* 58 */ |
OP_TYPEMINPLUS, /* 59 be in exactly the same order as those above. */ |
| 691 |
OP_TYPEEXACT, /* 59 Exactly n matches */ |
OP_TYPEQUERY, /* 60 This set applies to character types such as \d */ |
| 692 |
|
OP_TYPEMINQUERY, /* 61 */ |
| 693 |
OP_TYPEPOSSTAR, /* 60 Possessified versions */ |
|
| 694 |
OP_TYPEPOSPLUS, /* 61 */ |
OP_TYPEUPTO, /* 62 From 0 to n matches */ |
| 695 |
OP_TYPEPOSQUERY, /* 62 */ |
OP_TYPEMINUPTO, /* 63 */ |
| 696 |
OP_TYPEPOSUPTO, /* 63 */ |
OP_TYPEEXACT, /* 64 Exactly n matches */ |
| 697 |
|
|
| 698 |
OP_CRSTAR, /* 64 The maximizing and minimizing versions of */ |
OP_TYPEPOSSTAR, /* 65 Possessified versions */ |
| 699 |
OP_CRMINSTAR, /* 65 all these opcodes must come in pairs, with */ |
OP_TYPEPOSPLUS, /* 66 */ |
| 700 |
OP_CRPLUS, /* 66 the minimizing one second. These codes must */ |
OP_TYPEPOSQUERY, /* 67 */ |
| 701 |
OP_CRMINPLUS, /* 67 be in exactly the same order as those above. */ |
OP_TYPEPOSUPTO, /* 68 */ |
| 702 |
OP_CRQUERY, /* 68 These are for character classes and back refs */ |
|
| 703 |
OP_CRMINQUERY, /* 69 */ |
OP_CRSTAR, /* 69 The maximizing and minimizing versions of */ |
| 704 |
OP_CRRANGE, /* 70 These are different to the three sets above. */ |
OP_CRMINSTAR, /* 70 all these opcodes must come in pairs, with */ |
| 705 |
OP_CRMINRANGE, /* 71 */ |
OP_CRPLUS, /* 71 the minimizing one second. These codes must */ |
| 706 |
|
OP_CRMINPLUS, /* 72 be in exactly the same order as those above. */ |
| 707 |
|
OP_CRQUERY, /* 73 These are for character classes and back refs */ |
| 708 |
|
OP_CRMINQUERY, /* 74 */ |
| 709 |
|
OP_CRRANGE, /* 75 These are different to the three sets above. */ |
| 710 |
|
OP_CRMINRANGE, /* 76 */ |
| 711 |
|
|
| 712 |
OP_CLASS, /* 72 Match a character class, chars < 256 only */ |
OP_CLASS, /* 77 Match a character class, chars < 256 only */ |
| 713 |
OP_NCLASS, /* 73 Same, but the bitmap was created from a negative |
OP_NCLASS, /* 78 Same, but the bitmap was created from a negative |
| 714 |
class - the difference is relevant only when a UTF-8 |
class - the difference is relevant only when a UTF-8 |
| 715 |
character > 255 is encountered. */ |
character > 255 is encountered. */ |
| 716 |
|
|
| 717 |
OP_XCLASS, /* 74 Extended class for handling UTF-8 chars within the |
OP_XCLASS, /* 79 Extended class for handling UTF-8 chars within the |
| 718 |
class. This does both positive and negative. */ |
class. This does both positive and negative. */ |
| 719 |
|
|
| 720 |
OP_REF, /* 75 Match a back reference */ |
OP_REF, /* 80 Match a back reference */ |
| 721 |
OP_RECURSE, /* 76 Match a numbered subpattern (possibly recursive) */ |
OP_RECURSE, /* 81 Match a numbered subpattern (possibly recursive) */ |
| 722 |
OP_CALLOUT, /* 77 Call out to external function if provided */ |
OP_CALLOUT, /* 82 Call out to external function if provided */ |
| 723 |
|
|
| 724 |
OP_ALT, /* 78 Start of alternation */ |
OP_ALT, /* 83 Start of alternation */ |
| 725 |
OP_KET, /* 79 End of group that doesn't have an unbounded repeat */ |
OP_KET, /* 84 End of group that doesn't have an unbounded repeat */ |
| 726 |
OP_KETRMAX, /* 80 These two must remain together and in this */ |
OP_KETRMAX, /* 85 These two must remain together and in this */ |
| 727 |
OP_KETRMIN, /* 81 order. They are for groups the repeat for ever. */ |
OP_KETRMIN, /* 86 order. They are for groups the repeat for ever. */ |
| 728 |
|
|
| 729 |
/* The assertions must come before BRA, CBRA, ONCE, and COND.*/ |
/* The assertions must come before BRA, CBRA, ONCE, and COND.*/ |
| 730 |
|
|
| 731 |
OP_ASSERT, /* 82 Positive lookahead */ |
OP_ASSERT, /* 87 Positive lookahead */ |
| 732 |
OP_ASSERT_NOT, /* 83 Negative lookahead */ |
OP_ASSERT_NOT, /* 88 Negative lookahead */ |
| 733 |
OP_ASSERTBACK, /* 84 Positive lookbehind */ |
OP_ASSERTBACK, /* 89 Positive lookbehind */ |
| 734 |
OP_ASSERTBACK_NOT, /* 85 Negative lookbehind */ |
OP_ASSERTBACK_NOT, /* 90 Negative lookbehind */ |
| 735 |
OP_REVERSE, /* 86 Move pointer back - used in lookbehind assertions */ |
OP_REVERSE, /* 91 Move pointer back - used in lookbehind assertions */ |
| 736 |
|
|
| 737 |
/* ONCE, BRA, CBRA, and COND must come after the assertions, with ONCE first, |
/* ONCE, BRA, CBRA, and COND must come after the assertions, with ONCE first, |
| 738 |
as there's a test for >= ONCE for a subpattern that isn't an assertion. */ |
as there's a test for >= ONCE for a subpattern that isn't an assertion. */ |
| 739 |
|
|
| 740 |
OP_ONCE, /* 87 Atomic group */ |
OP_ONCE, /* 92 Atomic group */ |
| 741 |
OP_BRA, /* 88 Start of non-capturing bracket */ |
OP_BRA, /* 93 Start of non-capturing bracket */ |
| 742 |
OP_CBRA, /* 89 Start of capturing bracket */ |
OP_CBRA, /* 94 Start of capturing bracket */ |
| 743 |
OP_COND, /* 90 Conditional group */ |
OP_COND, /* 95 Conditional group */ |
| 744 |
|
|
| 745 |
/* These three must follow the previous three, in the same order. There's a |
/* These three must follow the previous three, in the same order. There's a |
| 746 |
check for >= SBRA to distinguish the two sets. */ |
check for >= SBRA to distinguish the two sets. */ |
| 747 |
|
|
| 748 |
OP_SBRA, /* 91 Start of non-capturing bracket, check empty */ |
OP_SBRA, /* 96 Start of non-capturing bracket, check empty */ |
| 749 |
OP_SCBRA, /* 92 Start of capturing bracket, check empty */ |
OP_SCBRA, /* 97 Start of capturing bracket, check empty */ |
| 750 |
OP_SCOND, /* 93 Conditional group, check empty */ |
OP_SCOND, /* 98 Conditional group, check empty */ |
| 751 |
|
|
| 752 |
OP_CREF, /* 94 Used to hold a capture number as condition */ |
OP_CREF, /* 99 Used to hold a capture number as condition */ |
| 753 |
OP_RREF, /* 95 Used to hold a recursion number as condition */ |
OP_RREF, /* 100 Used to hold a recursion number as condition */ |
| 754 |
OP_DEF, /* 96 The DEFINE condition */ |
OP_DEF, /* 101 The DEFINE condition */ |
| 755 |
|
|
| 756 |
|
OP_BRAZERO, /* 102 These two must remain together and in this */ |
| 757 |
|
OP_BRAMINZERO, /* 103 order. */ |
| 758 |
|
|
| 759 |
OP_BRAZERO, /* 97 These two must remain together and in this */ |
/* These are backtracking control verbs */ |
| 760 |
OP_BRAMINZERO /* 98 order. */ |
|
| 761 |
|
OP_PRUNE, /* 104 */ |
| 762 |
|
OP_SKIP, /* 105 */ |
| 763 |
|
OP_THEN, /* 106 */ |
| 764 |
|
OP_COMMIT, /* 107 */ |
| 765 |
|
|
| 766 |
|
/* These are forced failure and success verbs */ |
| 767 |
|
|
| 768 |
|
OP_FAIL, /* 108 */ |
| 769 |
|
OP_ACCEPT /* 109 */ |
| 770 |
}; |
}; |
| 771 |
|
|
| 772 |
|
|
| 774 |
for debugging. The macro is referenced only in pcre_printint.c. */ |
for debugging. The macro is referenced only in pcre_printint.c. */ |
| 775 |
|
|
| 776 |
#define OP_NAME_LIST \ |
#define OP_NAME_LIST \ |
| 777 |
"End", "\\A", "\\G", "\\B", "\\b", "\\D", "\\d", \ |
"End", "\\A", "\\G", "\\K", "\\B", "\\b", "\\D", "\\d", \ |
| 778 |
"\\S", "\\s", "\\W", "\\w", "Any", "Anybyte", \ |
"\\S", "\\s", "\\W", "\\w", "Any", "Anybyte", \ |
| 779 |
"notprop", "prop", "anynl", "extuni", \ |
"notprop", "prop", "\\R", "\\H", "\\h", "\\V", "\\v", \ |
| 780 |
"\\Z", "\\z", \ |
"extuni", "\\Z", "\\z", \ |
| 781 |
"Opt", "^", "$", "char", "charnc", "not", \ |
"Opt", "^", "$", "char", "charnc", "not", \ |
| 782 |
"*", "*?", "+", "+?", "?", "??", "{", "{", "{", \ |
"*", "*?", "+", "+?", "?", "??", "{", "{", "{", \ |
| 783 |
"*+","++", "?+", "{", \ |
"*+","++", "?+", "{", \ |
| 789 |
"class", "nclass", "xclass", "Ref", "Recurse", "Callout", \ |
"class", "nclass", "xclass", "Ref", "Recurse", "Callout", \ |
| 790 |
"Alt", "Ket", "KetRmax", "KetRmin", "Assert", "Assert not", \ |
"Alt", "Ket", "KetRmax", "KetRmin", "Assert", "Assert not", \ |
| 791 |
"AssertB", "AssertB not", "Reverse", \ |
"AssertB", "AssertB not", "Reverse", \ |
| 792 |
"Once", "Bra 0", "Bra", "Cond", "SBra 0", "SBra", "SCond", \ |
"Once", "Bra", "CBra", "Cond", "SBra", "SCBra", "SCond", \ |
| 793 |
"Cond ref", "Cond rec", "Cond def", "Brazero", "Braminzero" |
"Cond ref", "Cond rec", "Cond def", "Brazero", "Braminzero", \ |
| 794 |
|
"*PRUNE", "*SKIP", "*THEN", "*COMMIT", "*FAIL", "*ACCEPT" |
| 795 |
|
|
| 796 |
|
|
| 797 |
/* This macro defines the length of fixed length operations in the compiled |
/* This macro defines the length of fixed length operations in the compiled |
| 805 |
|
|
| 806 |
#define OP_LENGTHS \ |
#define OP_LENGTHS \ |
| 807 |
1, /* End */ \ |
1, /* End */ \ |
| 808 |
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, /* \A, \G, \B, \B, \D, \d, \S, \s, \W, \w */ \ |
1, 1, 1, 1, 1, /* \A, \G, \K, \B, \b */ \ |
| 809 |
|
1, 1, 1, 1, 1, 1, /* \D, \d, \S, \s, \W, \w */ \ |
| 810 |
1, 1, /* Any, Anybyte */ \ |
1, 1, /* Any, Anybyte */ \ |
| 811 |
3, 3, 1, 1, /* NOTPROP, PROP, EXTUNI, ANYNL */ \ |
3, 3, 1, /* NOTPROP, PROP, EXTUNI */ \ |
| 812 |
|
1, 1, 1, 1, 1, /* \R, \H, \h, \V, \v */ \ |
| 813 |
1, 1, 2, 1, 1, /* \Z, \z, Opt, ^, $ */ \ |
1, 1, 2, 1, 1, /* \Z, \z, Opt, ^, $ */ \ |
| 814 |
2, /* Char - the minimum length */ \ |
2, /* Char - the minimum length */ \ |
| 815 |
2, /* Charnc - the minimum length */ \ |
2, /* Charnc - the minimum length */ \ |
| 855 |
3, /* RREF */ \ |
3, /* RREF */ \ |
| 856 |
1, /* DEF */ \ |
1, /* DEF */ \ |
| 857 |
1, 1, /* BRAZERO, BRAMINZERO */ \ |
1, 1, /* BRAZERO, BRAMINZERO */ \ |
| 858 |
|
1, 1, 1, 1, /* PRUNE, SKIP, THEN, COMMIT, */ \ |
| 859 |
|
1, 1 /* FAIL, ACCEPT */ |
| 860 |
|
|
| 861 |
|
|
| 862 |
/* A magic value for OP_RREF to indicate the "any recursion" condition. */ |
/* A magic value for OP_RREF to indicate the "any recursion" condition. */ |
| 871 |
ERR20, ERR21, ERR22, ERR23, ERR24, ERR25, ERR26, ERR27, ERR28, ERR29, |
ERR20, ERR21, ERR22, ERR23, ERR24, ERR25, ERR26, ERR27, ERR28, ERR29, |
| 872 |
ERR30, ERR31, ERR32, ERR33, ERR34, ERR35, ERR36, ERR37, ERR38, ERR39, |
ERR30, ERR31, ERR32, ERR33, ERR34, ERR35, ERR36, ERR37, ERR38, ERR39, |
| 873 |
ERR40, ERR41, ERR42, ERR43, ERR44, ERR45, ERR46, ERR47, ERR48, ERR49, |
ERR40, ERR41, ERR42, ERR43, ERR44, ERR45, ERR46, ERR47, ERR48, ERR49, |
| 874 |
ERR50, ERR51, ERR52, ERR53, ERR54, ERR55, ERR56, ERR57 }; |
ERR50, ERR51, ERR52, ERR53, ERR54, ERR55, ERR56, ERR57, ERR58, ERR59, |
| 875 |
|
ERR60, ERR61 }; |
| 876 |
|
|
| 877 |
/* 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 |
| 878 |
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 |
| 941 |
int external_options; /* External (initial) options */ |
int external_options; /* External (initial) options */ |
| 942 |
int req_varyopt; /* "After variable item" flag for reqbyte */ |
int req_varyopt; /* "After variable item" flag for reqbyte */ |
| 943 |
BOOL nopartial; /* Set TRUE if partial won't work */ |
BOOL nopartial; /* Set TRUE if partial won't work */ |
| 944 |
|
BOOL had_accept; /* (*ACCEPT) encountered */ |
| 945 |
int nltype; /* Newline type */ |
int nltype; /* Newline type */ |
| 946 |
int nllen; /* Newline string length */ |
int nllen; /* Newline string length */ |
| 947 |
uschar nl[4]; /* Newline string when fixed length */ |
uschar nl[4]; /* Newline string when fixed length */ |
| 962 |
struct recursion_info *prevrec; /* Previous recursion record (or NULL) */ |
struct recursion_info *prevrec; /* Previous recursion record (or NULL) */ |
| 963 |
int group_num; /* Number of group that was called */ |
int group_num; /* Number of group that was called */ |
| 964 |
const uschar *after_call; /* "Return value": points after the call in the expr */ |
const uschar *after_call; /* "Return value": points after the call in the expr */ |
| 965 |
USPTR save_start; /* Old value of md->start_match */ |
USPTR save_start; /* Old value of mstart */ |
| 966 |
int *offset_save; /* Pointer to start of saved offsets */ |
int *offset_save; /* Pointer to start of saved offsets */ |
| 967 |
int saved_max; /* Number of saved offsets */ |
int saved_max; /* Number of saved offsets */ |
| 968 |
} recursion_info; |
} recursion_info; |
| 969 |
|
|
|
/* When compiling in a mode that doesn't use recursive calls to match(), |
|
|
a structure is used to remember local variables on the heap. It is defined in |
|
|
pcre_exec.c, close to the match() function, so that it is easy to keep it in |
|
|
step with any changes of local variable. However, the pointer to the current |
|
|
frame must be saved in some "static" place over a longjmp(). We declare the |
|
|
structure here so that we can put a pointer in the match_data structure. NOTE: |
|
|
This isn't used for a "normal" compilation of pcre. */ |
|
|
|
|
|
struct heapframe; |
|
|
|
|
| 970 |
/* 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 |
| 971 |
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 |
| 972 |
has been matched by a subpattern - to break infinite loops. */ |
has been matched by a subpattern - to break infinite loops. */ |
| 1003 |
const uschar *start_code; /* For use when recursing */ |
const uschar *start_code; /* For use when recursing */ |
| 1004 |
USPTR start_subject; /* Start of the subject string */ |
USPTR start_subject; /* Start of the subject string */ |
| 1005 |
USPTR end_subject; /* End of the subject string */ |
USPTR end_subject; /* End of the subject string */ |
| 1006 |
USPTR start_match; /* Start of this match attempt */ |
USPTR start_match_ptr; /* Start of matched string */ |
| 1007 |
USPTR end_match_ptr; /* Subject position at end match */ |
USPTR end_match_ptr; /* Subject position at end match */ |
| 1008 |
int end_offset_top; /* Highwater mark at end of match */ |
int end_offset_top; /* Highwater mark at end of match */ |
| 1009 |
int capture_last; /* Most recent capture number */ |
int capture_last; /* Most recent capture number */ |
| 1012 |
int eptrn; /* Next free eptrblock */ |
int eptrn; /* Next free eptrblock */ |
| 1013 |
recursion_info *recursive; /* Linked list of recursion data */ |
recursion_info *recursive; /* Linked list of recursion data */ |
| 1014 |
void *callout_data; /* To pass back to callouts */ |
void *callout_data; /* To pass back to callouts */ |
|
struct heapframe *thisframe; /* Used only when compiling for no recursion */ |
|
| 1015 |
} match_data; |
} match_data; |
| 1016 |
|
|
| 1017 |
/* 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 |