| 1 | /* Definitions for data structures and routines for the regular
|
|---|
| 2 | expression library, version 0.12.
|
|---|
| 3 | Copyright (C) 1985,1989-1993,1995-1998, 2000 Free Software Foundation, Inc.
|
|---|
| 4 | This file is part of the GNU C Library. Its master source is NOT part of
|
|---|
| 5 | the C library, however. The master source lives in /gd/gnu/lib.
|
|---|
| 6 |
|
|---|
| 7 | The GNU C Library is free software; you can redistribute it and/or
|
|---|
| 8 | modify it under the terms of the GNU Lesser General Public
|
|---|
| 9 | License as published by the Free Software Foundation; either
|
|---|
| 10 | version 2.1 of the License, or (at your option) any later version.
|
|---|
| 11 |
|
|---|
| 12 | The GNU C Library is distributed in the hope that it will be useful,
|
|---|
| 13 | but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|---|
| 14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|---|
| 15 | Lesser General Public License for more details.
|
|---|
| 16 |
|
|---|
| 17 | You should have received a copy of the GNU Lesser General Public
|
|---|
| 18 | License along with the GNU C Library; if not, write to the Free
|
|---|
| 19 | Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
|---|
| 20 | 02111-1307 USA. */
|
|---|
| 21 |
|
|---|
| 22 | #ifndef _REGEX_H
|
|---|
| 23 | #define _REGEX_H 1
|
|---|
| 24 |
|
|---|
| 25 | /* Allow the use in C++ code. */
|
|---|
| 26 | #ifdef __cplusplus
|
|---|
| 27 | extern "C" {
|
|---|
| 28 | #endif
|
|---|
| 29 |
|
|---|
| 30 | /* POSIX says that <sys/types.h> must be included (by the caller) before
|
|---|
| 31 | <regex.h>. */
|
|---|
| 32 |
|
|---|
| 33 | #if !defined _POSIX_C_SOURCE && !defined _POSIX_SOURCE && defined VMS
|
|---|
| 34 | /* VMS doesn't have `size_t' in <sys/types.h>, even though POSIX says it
|
|---|
| 35 | should be there. */
|
|---|
| 36 | # include <stddef.h>
|
|---|
| 37 | #endif
|
|---|
| 38 |
|
|---|
| 39 | /* The following two types have to be signed and unsigned integer type
|
|---|
| 40 | wide enough to hold a value of a pointer. For most ANSI compilers
|
|---|
| 41 | ptrdiff_t and size_t should be likely OK. Still size of these two
|
|---|
| 42 | types is 2 for Microsoft C. Ugh... */
|
|---|
| 43 | typedef long int s_reg_t;
|
|---|
| 44 | typedef unsigned long int active_reg_t;
|
|---|
| 45 |
|
|---|
| 46 | /* The following bits are used to determine the regexp syntax we
|
|---|
| 47 | recognize. The set/not-set meanings are chosen so that Emacs syntax
|
|---|
| 48 | remains the value 0. The bits are given in alphabetical order, and
|
|---|
| 49 | the definitions shifted by one from the previous bit; thus, when we
|
|---|
| 50 | add or remove a bit, only one other definition need change. */
|
|---|
| 51 | typedef unsigned long int reg_syntax_t;
|
|---|
| 52 |
|
|---|
| 53 | /* If this bit is not set, then \ inside a bracket expression is literal.
|
|---|
| 54 | If set, then such a \ quotes the following character. */
|
|---|
| 55 | #define RE_BACKSLASH_ESCAPE_IN_LISTS ((unsigned long int) 1)
|
|---|
| 56 |
|
|---|
| 57 | /* If this bit is not set, then + and ? are operators, and \+ and \? are
|
|---|
| 58 | literals.
|
|---|
| 59 | If set, then \+ and \? are operators and + and ? are literals. */
|
|---|
| 60 | #define RE_BK_PLUS_QM (RE_BACKSLASH_ESCAPE_IN_LISTS << 1)
|
|---|
| 61 |
|
|---|
| 62 | /* If this bit is set, then character classes are supported. They are:
|
|---|
| 63 | [:alpha:], [:upper:], [:lower:], [:digit:], [:alnum:], [:xdigit:],
|
|---|
| 64 | [:space:], [:print:], [:punct:], [:graph:], and [:cntrl:].
|
|---|
| 65 | If not set, then character classes are not supported. */
|
|---|
| 66 | #define RE_CHAR_CLASSES (RE_BK_PLUS_QM << 1)
|
|---|
| 67 |
|
|---|
| 68 | /* If this bit is set, then ^ and $ are always anchors (outside bracket
|
|---|
| 69 | expressions, of course).
|
|---|
| 70 | If this bit is not set, then it depends:
|
|---|
| 71 | ^ is an anchor if it is at the beginning of a regular
|
|---|
| 72 | expression or after an open-group or an alternation operator;
|
|---|
| 73 | $ is an anchor if it is at the end of a regular expression, or
|
|---|
| 74 | before a close-group or an alternation operator.
|
|---|
| 75 |
|
|---|
| 76 | This bit could be (re)combined with RE_CONTEXT_INDEP_OPS, because
|
|---|
| 77 | POSIX draft 11.2 says that * etc. in leading positions is undefined.
|
|---|
| 78 | We already implemented a previous draft which made those constructs
|
|---|
| 79 | invalid, though, so we haven't changed the code back. */
|
|---|
| 80 | #define RE_CONTEXT_INDEP_ANCHORS (RE_CHAR_CLASSES << 1)
|
|---|
| 81 |
|
|---|
| 82 | /* If this bit is set, then special characters are always special
|
|---|
| 83 | regardless of where they are in the pattern.
|
|---|
| 84 | If this bit is not set, then special characters are special only in
|
|---|
| 85 | some contexts; otherwise they are ordinary. Specifically,
|
|---|
| 86 | * + ? and intervals are only special when not after the beginning,
|
|---|
| 87 | open-group, or alternation operator. */
|
|---|
| 88 | #define RE_CONTEXT_INDEP_OPS (RE_CONTEXT_INDEP_ANCHORS << 1)
|
|---|
| 89 |
|
|---|
| 90 | /* If this bit is set, then *, +, ?, and { cannot be first in an re or
|
|---|
| 91 | immediately after an alternation or begin-group operator. */
|
|---|
| 92 | #define RE_CONTEXT_INVALID_OPS (RE_CONTEXT_INDEP_OPS << 1)
|
|---|
| 93 |
|
|---|
| 94 | /* If this bit is set, then . matches newline.
|
|---|
| 95 | If not set, then it doesn't. */
|
|---|
| 96 | #define RE_DOT_NEWLINE (RE_CONTEXT_INVALID_OPS << 1)
|
|---|
| 97 |
|
|---|
| 98 | /* If this bit is set, then . doesn't match NUL.
|
|---|
| 99 | If not set, then it does. */
|
|---|
| 100 | #define RE_DOT_NOT_NULL (RE_DOT_NEWLINE << 1)
|
|---|
| 101 |
|
|---|
| 102 | /* If this bit is set, nonmatching lists [^...] do not match newline.
|
|---|
| 103 | If not set, they do. */
|
|---|
| 104 | #define RE_HAT_LISTS_NOT_NEWLINE (RE_DOT_NOT_NULL << 1)
|
|---|
| 105 |
|
|---|
| 106 | /* If this bit is set, either \{...\} or {...} defines an
|
|---|
| 107 | interval, depending on RE_NO_BK_BRACES.
|
|---|
| 108 | If not set, \{, \}, {, and } are literals. */
|
|---|
| 109 | #define RE_INTERVALS (RE_HAT_LISTS_NOT_NEWLINE << 1)
|
|---|
| 110 |
|
|---|
| 111 | /* If this bit is set, +, ? and | aren't recognized as operators.
|
|---|
| 112 | If not set, they are. */
|
|---|
| 113 | #define RE_LIMITED_OPS (RE_INTERVALS << 1)
|
|---|
| 114 |
|
|---|
| 115 | /* If this bit is set, newline is an alternation operator.
|
|---|
| 116 | If not set, newline is literal. */
|
|---|
| 117 | #define RE_NEWLINE_ALT (RE_LIMITED_OPS << 1)
|
|---|
| 118 |
|
|---|
| 119 | /* If this bit is set, then `{...}' defines an interval, and \{ and \}
|
|---|
| 120 | are literals.
|
|---|
| 121 | If not set, then `\{...\}' defines an interval. */
|
|---|
| 122 | #define RE_NO_BK_BRACES (RE_NEWLINE_ALT << 1)
|
|---|
| 123 |
|
|---|
| 124 | /* If this bit is set, (...) defines a group, and \( and \) are literals.
|
|---|
| 125 | If not set, \(...\) defines a group, and ( and ) are literals. */
|
|---|
| 126 | #define RE_NO_BK_PARENS (RE_NO_BK_BRACES << 1)
|
|---|
| 127 |
|
|---|
| 128 | /* If this bit is set, then \<digit> matches <digit>.
|
|---|
| 129 | If not set, then \<digit> is a back-reference. */
|
|---|
| 130 | #define RE_NO_BK_REFS (RE_NO_BK_PARENS << 1)
|
|---|
| 131 |
|
|---|
| 132 | /* If this bit is set, then | is an alternation operator, and \| is literal.
|
|---|
| 133 | If not set, then \| is an alternation operator, and | is literal. */
|
|---|
| 134 | #define RE_NO_BK_VBAR (RE_NO_BK_REFS << 1)
|
|---|
| 135 |
|
|---|
| 136 | /* If this bit is set, then an ending range point collating higher
|
|---|
| 137 | than the starting range point, as in [z-a], is invalid.
|
|---|
| 138 | If not set, then when ending range point collates higher than the
|
|---|
| 139 | starting range point, the range is ignored. */
|
|---|
| 140 | #define RE_NO_EMPTY_RANGES (RE_NO_BK_VBAR << 1)
|
|---|
| 141 |
|
|---|
| 142 | /* If this bit is set, then an unmatched ) is ordinary.
|
|---|
| 143 | If not set, then an unmatched ) is invalid. */
|
|---|
| 144 | #define RE_UNMATCHED_RIGHT_PAREN_ORD (RE_NO_EMPTY_RANGES << 1)
|
|---|
| 145 |
|
|---|
| 146 | /* If this bit is set, succeed as soon as we match the whole pattern,
|
|---|
| 147 | without further backtracking. */
|
|---|
| 148 | #define RE_NO_POSIX_BACKTRACKING (RE_UNMATCHED_RIGHT_PAREN_ORD << 1)
|
|---|
| 149 |
|
|---|
| 150 | /* If this bit is set, do not process the GNU regex operators.
|
|---|
| 151 | If not set, then the GNU regex operators are recognized. */
|
|---|
| 152 | #define RE_NO_GNU_OPS (RE_NO_POSIX_BACKTRACKING << 1)
|
|---|
| 153 |
|
|---|
| 154 | /* If this bit is set, turn on internal regex debugging.
|
|---|
| 155 | If not set, and debugging was on, turn it off.
|
|---|
| 156 | This only works if regex.c is compiled -DDEBUG.
|
|---|
| 157 | We define this bit always, so that all that's needed to turn on
|
|---|
| 158 | debugging is to recompile regex.c; the calling code can always have
|
|---|
| 159 | this bit set, and it won't affect anything in the normal case. */
|
|---|
| 160 | #define RE_DEBUG (RE_NO_GNU_OPS << 1)
|
|---|
| 161 |
|
|---|
| 162 | /* If this bit is set, a syntactically invalid interval is treated as
|
|---|
| 163 | a string of ordinary characters. For example, the ERE 'a{1' is
|
|---|
| 164 | treated as 'a\{1'. */
|
|---|
| 165 | #define RE_INVALID_INTERVAL_ORD (RE_DEBUG << 1)
|
|---|
| 166 |
|
|---|
| 167 | /* This global variable defines the particular regexp syntax to use (for
|
|---|
| 168 | some interfaces). When a regexp is compiled, the syntax used is
|
|---|
| 169 | stored in the pattern buffer, so changing this does not affect
|
|---|
| 170 | already-compiled regexps. */
|
|---|
| 171 | extern reg_syntax_t re_syntax_options;
|
|---|
| 172 | |
|---|
| 173 |
|
|---|
| 174 | /* Define combinations of the above bits for the standard possibilities.
|
|---|
| 175 | (The [[[ comments delimit what gets put into the Texinfo file, so
|
|---|
| 176 | don't delete them!) */
|
|---|
| 177 | /* [[[begin syntaxes]]] */
|
|---|
| 178 | #define RE_SYNTAX_EMACS 0
|
|---|
| 179 |
|
|---|
| 180 | #define RE_SYNTAX_AWK \
|
|---|
| 181 | (RE_BACKSLASH_ESCAPE_IN_LISTS | RE_DOT_NOT_NULL \
|
|---|
| 182 | | RE_NO_BK_PARENS | RE_NO_BK_REFS \
|
|---|
| 183 | | RE_NO_BK_VBAR | RE_NO_EMPTY_RANGES \
|
|---|
| 184 | | RE_DOT_NEWLINE | RE_CONTEXT_INDEP_ANCHORS \
|
|---|
| 185 | | RE_UNMATCHED_RIGHT_PAREN_ORD | RE_NO_GNU_OPS)
|
|---|
| 186 |
|
|---|
| 187 | #define RE_SYNTAX_GNU_AWK \
|
|---|
| 188 | ((RE_SYNTAX_POSIX_EXTENDED | RE_BACKSLASH_ESCAPE_IN_LISTS | RE_DEBUG) \
|
|---|
| 189 | & ~(RE_DOT_NOT_NULL | RE_INTERVALS | RE_CONTEXT_INDEP_OPS))
|
|---|
| 190 |
|
|---|
| 191 | #define RE_SYNTAX_POSIX_AWK \
|
|---|
| 192 | (RE_SYNTAX_POSIX_EXTENDED | RE_BACKSLASH_ESCAPE_IN_LISTS \
|
|---|
| 193 | | RE_INTERVALS | RE_NO_GNU_OPS)
|
|---|
| 194 |
|
|---|
| 195 | #define RE_SYNTAX_GREP \
|
|---|
| 196 | (RE_BK_PLUS_QM | RE_CHAR_CLASSES \
|
|---|
| 197 | | RE_HAT_LISTS_NOT_NEWLINE | RE_INTERVALS \
|
|---|
| 198 | | RE_NEWLINE_ALT)
|
|---|
| 199 |
|
|---|
| 200 | #define RE_SYNTAX_EGREP \
|
|---|
| 201 | (RE_CHAR_CLASSES | RE_CONTEXT_INDEP_ANCHORS \
|
|---|
| 202 | | RE_CONTEXT_INDEP_OPS | RE_HAT_LISTS_NOT_NEWLINE \
|
|---|
| 203 | | RE_NEWLINE_ALT | RE_NO_BK_PARENS \
|
|---|
| 204 | | RE_NO_BK_VBAR)
|
|---|
| 205 |
|
|---|
| 206 | #define RE_SYNTAX_POSIX_EGREP \
|
|---|
| 207 | (RE_SYNTAX_EGREP | RE_INTERVALS | RE_NO_BK_BRACES \
|
|---|
| 208 | | RE_INVALID_INTERVAL_ORD)
|
|---|
|
|---|