1 // Scintilla source code edit control
3 ** Regular expression search library.
7 * regex - Regular expression pattern matching and replacement
9 * By: Ozan S. Yigit (oz)
10 * Dept. of Computer Science
13 * Original code available from http://www.cs.yorku.ca/~oz/
14 * Translation to C++ by Neil Hodgson neilh@scintilla.org
15 * Removed all use of register.
16 * Converted to modern function prototypes.
17 * Put all global/static variables into an object so this code can be
18 * used from multiple threads, etc.
19 * Some extensions by Philippe Lhoste PhiLho(a)GMX.net
20 * '?' extensions by Michael Mullin masmullin@gmail.com
22 * These routines are the PUBLIC DOMAIN equivalents of regex
23 * routines as found in 4.nBSD UN*X, with minor extensions.
25 * These routines are derived from various implementations found
26 * in software tools books, and Conroy's grep. They are NOT derived
27 * from licensed/restricted software.
28 * For more interesting/academic/complicated implementations,
29 * see Henry Spencer's regexp routines, or GNU Emacs pattern
32 * Modification history removed.
35 * RESearch::Compile: compile a regular expression into a NFA.
37 * const char *RESearch::Compile(const char *pattern, int length,
38 * bool caseSensitive, bool posix)
40 * Returns a short error string if they fail.
42 * RESearch::Execute: execute the NFA to match a pattern.
44 * int RESearch::Execute(characterIndexer &ci, int lp, int endp)
46 * re_fail: failure routine for RESearch::Execute. (no longer used)
48 * void re_fail(char *msg, char op)
50 * Regular Expressions:
52 * [1] char matches itself, unless it is a special
53 * character (metachar): . \ [ ] * + ? ^ $
54 * and ( ) if posix option.
56 * [2] . matches any character.
58 * [3] \ matches the character following it, except:
59 * - \a, \b, \f, \n, \r, \t, \v match the corresponding C
60 * escape char, respectively BEL, BS, FF, LF, CR, TAB and VT;
61 * Note that \r and \n are never matched because Scintilla
62 * regex searches are made line per line
63 * (stripped of end-of-line chars).
64 * - if not in posix mode, when followed by a
65 * left or right round bracket (see [8]);
66 * - when followed by a digit 1 to 9 (see [9]);
67 * - when followed by a left or right angle bracket
69 * - when followed by d, D, s, S, w or W (see [11]);
70 * - when followed by x and two hexa digits (see [12].
71 * Backslash is used as an escape character for all
72 * other meta-characters, and itself.
74 * [4] [set] matches one of the characters in the set.
75 * If the first character in the set is "^",
76 * it matches the characters NOT in the set, i.e.
77 * complements the set. A shorthand S-E (start dash end)
78 * is used to specify a set of characters S up to
79 * E, inclusive. S and E must be characters, otherwise
80 * the dash is taken literally (eg. in expression [\d-a]).
81 * The special characters "]" and "-" have no special
82 * meaning if they appear as the first chars in the set.
83 * To include both, put - first: [-]A-Z]
84 * (or just backslash them).
87 * [-]|] matches these 3 chars,
89 * []-|] matches from ] to | chars
91 * [a-z] any lowercase alpha
93 * [^-]] any char except - and ]
95 * [^A-Z] any char except uppercase
100 * [5] * any regular expression form [1] to [4]
101 * (except [8], [9] and [10] forms of [3]),
102 * followed by closure char (*)
103 * matches zero or more matches of that form.
105 * [6] + same as [5], except it matches one or more.
107 * [5-6] Both [5] and [6] are greedy (they match as much as possible).
108 * Unless they are followed by the 'lazy' quantifier (?)
109 * In which case both [5] and [6] try to match as little as possible
111 * [7] ? same as [5] except it matches zero or one.
113 * [8] a regular expression in the form [1] to [13], enclosed
114 * as \(form\) (or (form) with posix flag) matches what
115 * form matches. The enclosure creates a set of tags,
116 * used for [9] and for pattern substitution.
117 * The tagged forms are numbered starting from 1.
119 * [9] a \ followed by a digit 1 to 9 matches whatever a
120 * previously tagged regular expression ([8]) matched.
122 * [10] \< a regular expression starting with a \< construct
123 * \> and/or ending with a \> construct, restricts the
124 * pattern matching to the beginning of a word, and/or
125 * the end of a word. A word is defined to be a character
126 * string beginning and/or ending with the characters
127 * A-Z a-z 0-9 and _. Scintilla extends this definition
128 * by user setting. The word must also be preceded and/or
129 * followed by any character outside those mentioned.
131 * [11] \l a backslash followed by d, D, s, S, w or W,
132 * becomes a character class (both inside and
135 * D: any char except decimal digits
136 * s: whitespace (space, \t \n \r \f \v)
137 * S: any char except whitespace (see above)
138 * w: alphanumeric & underscore (changed by user setting)
139 * W: any char except alphanumeric & underscore (see above)
141 * [12] \xHH a backslash followed by x and two hexa digits,
142 * becomes the character whose Ascii code is equal
143 * to these digits. If not followed by two digits,
144 * it is 'x' char itself.
146 * [13] a composite regular expression xy where x and y
147 * are in the form [1] to [12] matches the longest
148 * match of x followed by a match for y.
150 * [14] ^ a regular expression starting with a ^ character
151 * $ and/or ending with a $ character, restricts the
152 * pattern matching to the beginning of the line,
153 * or the end of line. [anchors] Elsewhere in the
154 * pattern, ^ and $ are treated as ordinary characters.
159 * HCR's Hugh Redelmeier has been most helpful in various
160 * stages of development. He convinced me to include BOW
161 * and EOW constructs, originally invented by Rob Pike at
162 * the University of Toronto.
165 * Software tools Kernighan & Plauger
166 * Software tools in Pascal Kernighan & Plauger
167 * Grep [rsx-11 C dist] David Conroy
168 * ed - text editor Un*x Programmer's Manual
169 * Advanced editing on Un*x B. W. Kernighan
170 * RegExp routines Henry Spencer
174 * This implementation uses a bit-set representation for character
175 * classes for speed and compactness. Each character is represented
176 * by one bit in a 256-bit block. Thus, CCL always takes a
177 * constant 32 bytes in the internal nfa, and RESearch::Execute does a single
178 * bit comparison to locate the character in the set.
183 * compile: CHR f CHR o CLO CHR o END CLO ANY END END
184 * matches: fo foo fooo foobar fobar foxx ...
186 * pattern: fo[ob]a[rz]
187 * compile: CHR f CHR o CCL bitset CHR a CCL bitset END
188 * matches: fobar fooar fobaz fooaz
191 * compile: CHR f CHR o CHR o CHR \ CLO CHR \ END END
192 * matches: foo\ foo\\ foo\\\ ...
194 * pattern: \(foo\)[1-3]\1 (same as foo[1-3]foo)
195 * compile: BOT 1 CHR f CHR o CHR o EOT 1 CCL bitset REF 1 END
196 * matches: foo1foo foo2foo foo3foo
198 * pattern: \(fo.*\)-\1
199 * compile: BOT 1 CHR f CHR o CLO ANY END EOT 1 CHR - REF 1 END
200 * matches: foo-foo fo-fo fob-fob foobar-foobar ...
209 #include "Position.h"
210 #include "CharClassify.h"
211 #include "RESearch.h"
214 using namespace Scintilla
;
231 #define CLQ 12 /* 0 to 1 closure */
232 #define LCLO 13 /* lazy closure */
237 * The following defines are not meant to be changeable.
238 * They are for readability only.
243 const char bitarr
[] = { 1, 2, 4, 8, 16, 32, 64, '\200' };
245 #define badpat(x) (*nfa = END, x)
248 * Character classification table for word boundary operators BOW
249 * and EOW is passed in by the creator of this object (Scintilla
250 * Document). The Document default state is that word chars are:
251 * 0-9, a-z, A-Z and _
254 RESearch::RESearch(CharClassify
*charClassTable
) {
256 charClass
= charClassTable
;
257 sta
= NOP
; /* status of lastpat */
259 std::fill(bittab
, bittab
+ BITBLK
, 0);
260 std::fill(tagstk
, tagstk
+ MAXTAG
, 0);
261 std::fill(nfa
, nfa
+ MAXNFA
, 0);
265 RESearch::~RESearch() {
269 void RESearch::Clear() {
270 for (int i
= 0; i
< MAXTAG
; i
++) {
277 void RESearch::GrabMatches(CharacterIndexer
&ci
) {
278 for (unsigned int i
= 0; i
< MAXTAG
; i
++) {
279 if ((bopat
[i
] != NOTFOUND
) && (eopat
[i
] != NOTFOUND
)) {
280 unsigned int len
= eopat
[i
] - bopat
[i
];
282 for (unsigned int j
= 0; j
< len
; j
++)
283 pat
[i
][j
] = ci
.CharAt(bopat
[i
] + j
);
288 void RESearch::ChSet(unsigned char c
) {
289 bittab
[((c
) & BLKIND
) >> 3] |= bitarr
[(c
) & BITIND
];
292 void RESearch::ChSetWithCase(unsigned char c
, bool caseSensitive
) {
296 if ((c
>= 'a') && (c
<= 'z')) {
298 ChSet(static_cast<unsigned char>(c
- 'a' + 'A'));
299 } else if ((c
>= 'A') && (c
<= 'Z')) {
301 ChSet(static_cast<unsigned char>(c
- 'A' + 'a'));
308 static unsigned char escapeValue(unsigned char ch
) {
310 case 'a': return '\a';
311 case 'b': return '\b';
312 case 'f': return '\f';
313 case 'n': return '\n';
314 case 'r': return '\r';
315 case 't': return '\t';
316 case 'v': return '\v';
321 static int GetHexaChar(unsigned char hd1
, unsigned char hd2
) {
323 if (hd1
>= '0' && hd1
<= '9') {
324 hexValue
+= 16 * (hd1
- '0');
325 } else if (hd1
>= 'A' && hd1
<= 'F') {
326 hexValue
+= 16 * (hd1
- 'A' + 10);
327 } else if (hd1
>= 'a' && hd1
<= 'f') {
328 hexValue
+= 16 * (hd1
- 'a' + 10);
332 if (hd2
>= '0' && hd2
<= '9') {
333 hexValue
+= hd2
- '0';
334 } else if (hd2
>= 'A' && hd2
<= 'F') {
335 hexValue
+= hd2
- 'A' + 10;
336 } else if (hd2
>= 'a' && hd2
<= 'f') {
337 hexValue
+= hd2
- 'a' + 10;
345 * Called when the parser finds a backslash not followed
346 * by a valid expression (like \( in non-Posix mode).
347 * @param pattern : pointer on the char after the backslash.
348 * @param incr : (out) number of chars to skip after expression evaluation.
349 * @return the char if it resolves to a simple char,
350 * or -1 for a char class. In this case, bittab is changed.
352 int RESearch::GetBackslashExpression(
355 // Since error reporting is primitive and messages are not used anyway,
356 // I choose to interpret unexpected syntax in a logical way instead
357 // of reporting errors. Otherwise, we can stick on, eg., PCRE behavior.
358 incr
= 0; // Most of the time, will skip the char "naturally".
361 unsigned char bsc
= *pattern
;
364 result
= '\\'; // \ at end of pattern, take it literally
376 result
= escapeValue(bsc
);
379 unsigned char hd1
= *(pattern
+ 1);
380 unsigned char hd2
= *(pattern
+ 2);
381 int hexValue
= GetHexaChar(hd1
, hd2
);
384 incr
= 2; // Must skip the digits
386 result
= 'x'; // \x without 2 digits: see it as 'x'
391 for (c
= '0'; c
<= '9'; c
++) {
392 ChSet(static_cast<unsigned char>(c
));
396 for (c
= 0; c
< MAXCHR
; c
++) {
397 if (c
< '0' || c
> '9') {
398 ChSet(static_cast<unsigned char>(c
));
411 for (c
= 0; c
< MAXCHR
; c
++) {
412 if (c
!= ' ' && !(c
>= 0x09 && c
<= 0x0D)) {
413 ChSet(static_cast<unsigned char>(c
));
418 for (c
= 0; c
< MAXCHR
; c
++) {
419 if (iswordc(static_cast<unsigned char>(c
))) {
420 ChSet(static_cast<unsigned char>(c
));
425 for (c
= 0; c
< MAXCHR
; c
++) {
426 if (!iswordc(static_cast<unsigned char>(c
))) {
427 ChSet(static_cast<unsigned char>(c
));
437 const char *RESearch::Compile(const char *pattern
, int length
, bool caseSensitive
, bool posix
) {
438 char *mp
=nfa
; /* nfa pointer */
439 char *lp
; /* saved pointer */
440 char *sp
=nfa
; /* another one */
441 char *mpMax
= mp
+ MAXNFA
- BITBLK
- 10;
443 int tagi
= 0; /* tag stack index */
444 int tagc
= 1; /* actual tag count */
447 char mask
; /* xor mask -CCL/NCL */
448 int c1
, c2
, prevChar
;
450 if (!pattern
|| !length
) {
454 return badpat("No previous regular expression");
458 const char *p
=pattern
; /* pattern pointer */
459 for (int i
=0; i
<length
; i
++, p
++) {
461 return badpat("Pattern too long");
465 case '.': /* match any char */
469 case '^': /* match beginning */
478 case '$': /* match endofline */
487 case '[': /* match char class */
500 if (*p
== '-') { /* real dash */
505 if (*p
== ']') { /* real brace */
510 while (*p
&& *p
!= ']') {
513 // Previous def. was a char class like \d, take dash literally
520 c2
= static_cast<unsigned char>(*++p
);
522 if (!*(p
+1)) { // End of RE
523 return badpat("Missing ]");
528 c2
= GetBackslashExpression(p
, incr
);
532 // Convention: \c (c is any char) is case sensitive, whatever the option
533 ChSet(static_cast<unsigned char>(c2
));
536 // bittab is already changed
542 // Char after dash is char class like \d, take dash literally
546 // Put all chars between c1 and c2 included in the char set
548 ChSetWithCase(static_cast<unsigned char>(c1
++), caseSensitive
);
552 // Dash before the ], take it literally
557 return badpat("Missing ]");
559 } else if (*p
== '\\' && *(p
+1)) {
563 int c
= GetBackslashExpression(p
, incr
);
567 // Convention: \c (c is any char) is case sensitive, whatever the option
568 ChSet(static_cast<unsigned char>(c
));
571 // bittab is already changed
575 prevChar
= static_cast<unsigned char>(*p
);
576 ChSetWithCase(*p
, caseSensitive
);
582 return badpat("Missing ]");
584 for (n
= 0; n
< BITBLK
; bittab
[n
++] = 0)
585 *mp
++ = static_cast<char>(mask
^ bittab
[n
]);
589 case '*': /* match 0 or more... */
590 case '+': /* match 1 or more... */
593 return badpat("Empty closure");
594 lp
= sp
; /* previous opcode */
595 if (*lp
== CLO
|| *lp
== LCLO
) /* equivalence... */
605 return badpat("Illegal closure");
611 for (sp
= mp
; lp
< sp
; lp
++)
620 if (*p
== '?') *mp
= CLQ
;
621 else if (*(p
+1) == '?') *mp
= LCLO
;
627 case '\\': /* tags, backrefs... */
635 return badpat("Null pattern inside \\<\\>");
648 if (tagi
> 0 && tagstk
[tagi
] == n
)
649 return badpat("Cyclical reference");
651 *mp
++ = static_cast<char>(REF
);
652 *mp
++ = static_cast<char>(n
);
654 return badpat("Undetermined reference");
658 if (!posix
&& *p
== '(') {
660 tagstk
[++tagi
] = tagc
;
662 *mp
++ = static_cast<char>(tagc
++);
664 return badpat("Too many \\(\\) pairs");
666 } else if (!posix
&& *p
== ')') {
668 return badpat("Null pattern inside \\(\\)");
670 *mp
++ = static_cast<char>(EOT
);
671 *mp
++ = static_cast<char>(tagstk
[tagi
--]);
673 return badpat("Unmatched \\)");
677 int c
= GetBackslashExpression(p
, incr
);
682 *mp
++ = static_cast<unsigned char>(c
);
686 for (n
= 0; n
< BITBLK
; bittab
[n
++] = 0)
687 *mp
++ = static_cast<char>(mask
^ bittab
[n
]);
693 default : /* an ordinary char */
694 if (posix
&& *p
== '(') {
696 tagstk
[++tagi
] = tagc
;
698 *mp
++ = static_cast<char>(tagc
++);
700 return badpat("Too many () pairs");
702 } else if (posix
&& *p
== ')') {
704 return badpat("Null pattern inside ()");
706 *mp
++ = static_cast<char>(EOT
);
707 *mp
++ = static_cast<char>(tagstk
[tagi
--]);
709 return badpat("Unmatched )");
712 unsigned char c
= *p
;
714 c
= '\\'; // We take it as raw backslash
715 if (caseSensitive
|| !iswordc(c
)) {
721 ChSetWithCase(c
, false);
722 for (n
= 0; n
< BITBLK
; bittab
[n
++] = 0)
723 *mp
++ = static_cast<char>(mask
^ bittab
[n
]);
731 return badpat((posix
? "Unmatched (" : "Unmatched \\("));
739 * execute nfa to find a match.
741 * special cases: (nfa[0])
743 * Match only once, starting from the
746 * First locate the character without
747 * calling PMatch, and if found, call
748 * PMatch for the remaining string.
750 * RESearch::Compile failed, poor luser did not
751 * check for it. Fail fast.
753 * If a match is found, bopat[0] and eopat[0] are set
754 * to the beginning and the end of the matched fragment,
758 int RESearch::Execute(CharacterIndexer
&ci
, int lp
, int endp
) {
770 case BOL
: /* anchored: match from BOL only */
771 ep
= PMatch(ci
, lp
, endp
, ap
);
773 case EOL
: /* just searching for end of line normal path doesn't work */
774 if (*(ap
+1) == END
) {
781 case CHR
: /* ordinary char: locate it fast */
783 while ((lp
< endp
) && (static_cast<unsigned char>(ci
.CharAt(lp
)) != c
))
785 if (lp
>= endp
) /* if EOS, fail, else fall through. */
787 default: /* regular matching all the way. */
789 ep
= PMatch(ci
, lp
, endp
, ap
);
795 case END
: /* munged automaton. fail always */
807 * PMatch: internal routine for the hard part
809 * This code is partly snarfed from an early grep written by
810 * David Conroy. The backref and tag stuff, and various other
811 * innovations are by oz.
813 * special case optimizations: (nfa[n], nfa[n+1])
815 * We KNOW .* will match everything up to the
816 * end of line. Thus, directly go to the end of
817 * line, without recursive PMatch calls. As in
818 * the other closure cases, the remaining pattern
819 * must be matched by moving backwards on the
820 * string recursively, to find a match for xy
821 * (x is ".*" and y is the remaining pattern)
822 * where the match satisfies the LONGEST match for
823 * x followed by a match for y.
825 * We can again scan the string forward for the
826 * single char and at the point of failure, we
827 * execute the remaining nfa recursively, same as
830 * At the end of a successful match, bopat[n] and eopat[n]
831 * are set to the beginning and end of subpatterns matched
832 * by tagged expressions (n = 1 to 9).
835 extern void re_fail(char *,char);
837 #define isinset(x,y) ((x)[((y)&BLKIND)>>3] & bitarr[(y)&BITIND])
840 * skip values for CLO XXX to skip past the closure
843 #define ANYSKIP 2 /* [CLO] ANY END */
844 #define CHRSKIP 3 /* [CLO] CHR chr END */
845 #define CCLSKIP 34 /* [CLO] CCL 32 bytes END */
847 int RESearch::PMatch(CharacterIndexer
&ci
, int lp
, int endp
, char *ap
) {
849 int e
; /* extra pointer for CLO */
850 int bp
; /* beginning of subpat... */
851 int ep
; /* ending of subpat... */
852 int are
; /* to save the line ptr. */
853 int llp
; /* lazy lp for LCLO */
855 while ((op
= *ap
++) != END
)
859 if (ci
.CharAt(lp
++) != *ap
++)
883 bopat
[static_cast<int>(*ap
++)] = lp
;
886 eopat
[static_cast<int>(*ap
++)] = lp
;
889 if ((lp
!=bol
&& iswordc(ci
.CharAt(lp
-1))) || !iswordc(ci
.CharAt(lp
)))
893 if (lp
==bol
|| !iswordc(ci
.CharAt(lp
-1)) || iswordc(ci
.CharAt(lp
)))
901 if (ci
.CharAt(bp
++) != ci
.CharAt(lp
++))
911 if (op
== CLO
|| op
== LCLO
)
921 if (op
== CLO
|| op
== LCLO
)
922 while ((lp
< endp
) && (c
== ci
.CharAt(lp
)))
924 else if ((lp
< endp
) && (c
== ci
.CharAt(lp
)))
929 while ((lp
< endp
) && isinset(ap
+1,ci
.CharAt(lp
)))
935 //re_fail("closure: bad nfa.", *ap);
944 if ((q
= PMatch(ci
, llp
, endp
, ap
)) != NOTFOUND
) {
947 if (op
!= LCLO
) return e
;
949 if (*ap
== END
) return e
;
953 PMatch(ci
, lp
, endp
, ap
);
956 //re_fail("RESearch::Execute: bad nfa.", static_cast<char>(op));