annotate src/regex.h @ 185:3d6bfa290dbd r20-3b19

Import from CVS: tag r20-3b19
author cvs
date Mon, 13 Aug 2007 09:55:28 +0200
parents cf808b4c4290
children 41ff10fd062f
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 /* Definitions for data structures and routines for the regular
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 expression library, version 0.12.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 Copyright (C) 1985, 89, 90, 91, 92, 93, 95 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 This program is free software; you can redistribute it and/or modify
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 it under the terms of the GNU General Public License as published by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 the Free Software Foundation; either version 2, or (at your option)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 any later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 This program is distributed in the hope that it will be useful,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 GNU General Public License for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 along with this program; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 Boston, MA 02111-1307, USA. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 /* Synched up with: FSF 19.29. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23 #ifndef __REGEXP_LIBRARY_H__
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 #define __REGEXP_LIBRARY_H__
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 /* POSIX says that <sys/types.h> must be included (by the caller) before
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 <regex.h>. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 #if !defined (_POSIX_C_SOURCE) && !defined (_POSIX_SOURCE) && defined (VMS)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 /* VMS doesn't have `size_t' in <sys/types.h>, even though POSIX says it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 should be there. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 #include <stddef.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 /* The following bits are used to determine the regexp syntax we
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 104
diff changeset
37 recognize. The not-set meaning typically corresponds to the syntax
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 104
diff changeset
38 used by Emacs (the exception is RE_INTERVAL, made for historical
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 104
diff changeset
39 reasons). The bits are given in alphabetical order, and the
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 104
diff changeset
40 definitions shifted by one from the previous bit; thus, when we add or
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 104
diff changeset
41 remove a bit, only one other definition need change. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 typedef unsigned reg_syntax_t;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 /* If this bit is not set, then \ inside a bracket expression is literal.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 If set, then such a \ quotes the following character. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 #define RE_BACKSLASH_ESCAPE_IN_LISTS (1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 /* If this bit is not set, then + and ? are operators, and \+ and \? are
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 104
diff changeset
49 literals.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 If set, then \+ and \? are operators and + and ? are literals. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 #define RE_BK_PLUS_QM (RE_BACKSLASH_ESCAPE_IN_LISTS << 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 /* If this bit is set, then character classes are supported. They are:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 [:alpha:], [:upper:], [:lower:], [:digit:], [:alnum:], [:xdigit:],
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 [:space:], [:print:], [:punct:], [:graph:], and [:cntrl:].
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 If not set, then character classes are not supported. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 #define RE_CHAR_CLASSES (RE_BK_PLUS_QM << 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 /* If this bit is set, then ^ and $ are always anchors (outside bracket
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 expressions, of course).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 If this bit is not set, then it depends:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 ^ is an anchor if it is at the beginning of a regular
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 expression or after an open-group or an alternation operator;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 $ is an anchor if it is at the end of a regular expression, or
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 104
diff changeset
65 before a close-group or an alternation operator.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 This bit could be (re)combined with RE_CONTEXT_INDEP_OPS, because
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 POSIX draft 11.2 says that * etc. in leading positions is undefined.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 We already implemented a previous draft which made those constructs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 invalid, though, so we haven't changed the code back. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 #define RE_CONTEXT_INDEP_ANCHORS (RE_CHAR_CLASSES << 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 /* If this bit is set, then special characters are always special
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 regardless of where they are in the pattern.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 If this bit is not set, then special characters are special only in
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 104
diff changeset
76 some contexts; otherwise they are ordinary. Specifically,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 * + ? and intervals are only special when not after the beginning,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 open-group, or alternation operator. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 #define RE_CONTEXT_INDEP_OPS (RE_CONTEXT_INDEP_ANCHORS << 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 /* If this bit is set, then *, +, ?, and { cannot be first in an re or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 immediately after an alternation or begin-group operator. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 #define RE_CONTEXT_INVALID_OPS (RE_CONTEXT_INDEP_OPS << 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 /* If this bit is set, then . matches newline.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 If not set, then it doesn't. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 #define RE_DOT_NEWLINE (RE_CONTEXT_INVALID_OPS << 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 /* If this bit is set, then . doesn't match NUL.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 If not set, then it does. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 #define RE_DOT_NOT_NULL (RE_DOT_NEWLINE << 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 /* If this bit is set, nonmatching lists [^...] do not match newline.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 If not set, they do. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 #define RE_HAT_LISTS_NOT_NEWLINE (RE_DOT_NOT_NULL << 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 /* If this bit is set, either \{...\} or {...} defines an
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 104
diff changeset
98 interval, depending on RE_NO_BK_BRACES.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 If not set, \{, \}, {, and } are literals. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 #define RE_INTERVALS (RE_HAT_LISTS_NOT_NEWLINE << 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 /* If this bit is set, +, ? and | aren't recognized as operators.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 If not set, they are. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 #define RE_LIMITED_OPS (RE_INTERVALS << 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 /* If this bit is set, newline is an alternation operator.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 If not set, newline is literal. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 #define RE_NEWLINE_ALT (RE_LIMITED_OPS << 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 /* If this bit is set, then `{...}' defines an interval, and \{ and \}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 are literals.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 If not set, then `\{...\}' defines an interval. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 #define RE_NO_BK_BRACES (RE_NEWLINE_ALT << 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 /* If this bit is set, (...) defines a group, and \( and \) are literals.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 If not set, \(...\) defines a group, and ( and ) are literals. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 #define RE_NO_BK_PARENS (RE_NO_BK_BRACES << 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 /* If this bit is set, then \<digit> matches <digit>.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 If not set, then \<digit> is a back-reference. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 #define RE_NO_BK_REFS (RE_NO_BK_PARENS << 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 104
diff changeset
123 /* If this bit is set, then | is an alternation operator, and \| is literal.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 If not set, then \| is an alternation operator, and | is literal. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 #define RE_NO_BK_VBAR (RE_NO_BK_REFS << 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 /* If this bit is set, then an ending range point collating higher
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 than the starting range point, as in [z-a], is invalid.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 If not set, then when ending range point collates higher than the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 starting range point, the range is ignored. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 #define RE_NO_EMPTY_RANGES (RE_NO_BK_VBAR << 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 104
diff changeset
133 /* If this bit is not set, allow minimal matching:
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 104
diff changeset
134 - a*? and a+? and a?? perform shortest-possible matching (compare with a*
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 104
diff changeset
135 and a+ and a?, respectively, which perform longest-possible matching)
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 104
diff changeset
136 - other juxtaposing of * + and ? is rejected.
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 104
diff changeset
137 If this bit is set, consecutive * + and ?'s are collapsed in a logical
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 104
diff changeset
138 manner:
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 104
diff changeset
139 - a*? and a+? are the same as a*
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 104
diff changeset
140 - a?? is the same as a?
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 104
diff changeset
141 */
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 104
diff changeset
142 #define RE_NO_MINIMAL_MATCHING (RE_NO_EMPTY_RANGES << 1)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 /* If this bit is set, succeed as soon as we match the whole pattern,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 without further backtracking. */
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 104
diff changeset
146 #define RE_NO_POSIX_BACKTRACKING (RE_NO_MINIMAL_MATCHING << 1)
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 104
diff changeset
147
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 104
diff changeset
148 /* If this bit is not set, (?:re) behaves like (re) (or \(?:re\) behaves like
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 104
diff changeset
149 \(re\)) except that the matched string is not registered. */
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 104
diff changeset
150 #define RE_NO_SHY_GROUPS (RE_NO_POSIX_BACKTRACKING << 1)
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 104
diff changeset
151
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 104
diff changeset
152 /* If this bit is set, then an unmatched ) is ordinary.
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 104
diff changeset
153 If not set, then an unmatched ) is invalid. */
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 104
diff changeset
154 #define RE_UNMATCHED_RIGHT_PAREN_ORD (RE_NO_SHY_GROUPS << 1)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 /* This global variable defines the particular regexp syntax to use (for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 some interfaces). When a regexp is compiled, the syntax used is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 stored in the pattern buffer, so changing this does not affect
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 already-compiled regexps. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160 extern reg_syntax_t re_syntax_options;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 /* Define combinations of the above bits for the standard possibilities.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 (The [[[ comments delimit what gets put into the Texinfo file, so
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 104
diff changeset
164 don't delete them!) */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 /* [[[begin syntaxes]]] */
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 104
diff changeset
166 #define RE_SYNTAX_EMACS RE_INTERVALS
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 #define RE_SYNTAX_AWK \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 (RE_BACKSLASH_ESCAPE_IN_LISTS | RE_DOT_NOT_NULL \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 | RE_NO_BK_PARENS | RE_NO_BK_REFS \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 | RE_NO_BK_VBAR | RE_NO_EMPTY_RANGES \
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 104
diff changeset
172 | RE_UNMATCHED_RIGHT_PAREN_ORD | RE_NO_SHY_GROUPS \
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 104
diff changeset
173 | RE_NO_MINIMAL_MATCHING)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 #define RE_SYNTAX_POSIX_AWK \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 (RE_SYNTAX_POSIX_EXTENDED | RE_BACKSLASH_ESCAPE_IN_LISTS)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 #define RE_SYNTAX_GREP \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179 (RE_BK_PLUS_QM | RE_CHAR_CLASSES \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 | RE_HAT_LISTS_NOT_NEWLINE | RE_INTERVALS \
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 104
diff changeset
181 | RE_NEWLINE_ALT | RE_NO_SHY_GROUPS \
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 104
diff changeset
182 | RE_NO_MINIMAL_MATCHING)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 #define RE_SYNTAX_EGREP \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 (RE_CHAR_CLASSES | RE_CONTEXT_INDEP_ANCHORS \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 | RE_CONTEXT_INDEP_OPS | RE_HAT_LISTS_NOT_NEWLINE \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 | RE_NEWLINE_ALT | RE_NO_BK_PARENS \
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 104
diff changeset
188 | RE_NO_BK_VBAR | RE_NO_SHY_GROUPS \
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 104
diff changeset
189 | RE_NO_MINIMAL_MATCHING)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 #define RE_SYNTAX_POSIX_EGREP \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 (RE_SYNTAX_EGREP | RE_INTERVALS | RE_NO_BK_BRACES)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 /* P1003.2/D11.2, section 4.20.7.1, lines 5078ff. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 #define RE_SYNTAX_ED RE_SYNTAX_POSIX_BASIC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197 #define RE_SYNTAX_SED RE_SYNTAX_POSIX_BASIC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199 /* Syntax bits common to both basic and extended POSIX regex syntax. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200 #define _RE_SYNTAX_POSIX_COMMON \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201 (RE_CHAR_CLASSES | RE_DOT_NEWLINE | RE_DOT_NOT_NULL \
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 104
diff changeset
202 | RE_INTERVALS | RE_NO_EMPTY_RANGES | RE_NO_SHY_GROUPS \
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 104
diff changeset
203 | RE_NO_MINIMAL_MATCHING)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205 #define RE_SYNTAX_POSIX_BASIC \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206 (_RE_SYNTAX_POSIX_COMMON | RE_BK_PLUS_QM)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 /* Differs from ..._POSIX_BASIC only in that RE_BK_PLUS_QM becomes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 RE_LIMITED_OPS, i.e., \? \+ \| are not recognized. Actually, this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 isn't minimal, since other operators, such as \`, aren't disabled. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211 #define RE_SYNTAX_POSIX_MINIMAL_BASIC \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212 (_RE_SYNTAX_POSIX_COMMON | RE_LIMITED_OPS)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 #define RE_SYNTAX_POSIX_EXTENDED \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215 (_RE_SYNTAX_POSIX_COMMON | RE_CONTEXT_INDEP_ANCHORS \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 | RE_CONTEXT_INDEP_OPS | RE_NO_BK_BRACES \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217 | RE_NO_BK_PARENS | RE_NO_BK_VBAR \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 | RE_UNMATCHED_RIGHT_PAREN_ORD)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220 /* Differs from ..._POSIX_EXTENDED in that RE_CONTEXT_INVALID_OPS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 replaces RE_CONTEXT_INDEP_OPS and RE_NO_BK_REFS is added. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222 #define RE_SYNTAX_POSIX_MINIMAL_EXTENDED \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223 (_RE_SYNTAX_POSIX_COMMON | RE_CONTEXT_INDEP_ANCHORS \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224 | RE_CONTEXT_INVALID_OPS | RE_NO_BK_BRACES \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225 | RE_NO_BK_PARENS | RE_NO_BK_REFS \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226 | RE_NO_BK_VBAR | RE_UNMATCHED_RIGHT_PAREN_ORD)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227 /* [[[end syntaxes]]] */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229 /* Maximum number of duplicates an interval can allow. Some systems
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230 (erroneously) define this in other header files, but we want our
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 value, so remove any previous define. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232 #ifdef RE_DUP_MAX
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 #undef RE_DUP_MAX
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234 #endif
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 104
diff changeset
235 #define RE_DUP_MAX ((1 << 15) - 1)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238 /* POSIX `cflags' bits (i.e., information for `regcomp'). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240 /* If this bit is set, then use extended regular expression syntax.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 If not set, then use basic regular expression syntax. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242 #define REG_EXTENDED 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244 /* If this bit is set, then ignore case when matching.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 If not set, then case is significant. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246 #define REG_ICASE (REG_EXTENDED << 1)
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 104
diff changeset
247
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248 /* If this bit is set, then anchors do not match at newline
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249 characters in the string.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250 If not set, then anchors do match at newlines. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251 #define REG_NEWLINE (REG_ICASE << 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253 /* If this bit is set, then report only success or fail in regexec.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254 If not set, then returns differ between not matching and errors. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255 #define REG_NOSUB (REG_NEWLINE << 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258 /* POSIX `eflags' bits (i.e., information for regexec). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260 /* If this bit is set, then the beginning-of-line operator doesn't match
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261 the beginning of the string (presumably because it's not the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262 beginning of a line).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263 If not set, then the beginning-of-line operator does match the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264 beginning of the string. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265 #define REG_NOTBOL 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267 /* Like REG_NOTBOL, except for the end-of-line. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268 #define REG_NOTEOL (1 << 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271 /* If any error codes are removed, changed, or added, update the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272 `re_error_msg' table in regex.c. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273 typedef enum
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275 REG_NOERROR = 0, /* Success. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276 REG_NOMATCH, /* Didn't find a match (for regexec). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278 /* POSIX regcomp return error codes. (In the order listed in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279 standard.) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280 REG_BADPAT, /* Invalid pattern. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281 REG_ECOLLATE, /* Not implemented. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282 REG_ECTYPE, /* Invalid character class name. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283 REG_EESCAPE, /* Trailing backslash. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284 REG_ESUBREG, /* Invalid back reference. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285 REG_EBRACK, /* Unmatched left bracket. */
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 104
diff changeset
286 REG_EPAREN, /* Parenthesis imbalance. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287 REG_EBRACE, /* Unmatched \{. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288 REG_BADBR, /* Invalid contents of \{\}. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289 REG_ERANGE, /* Invalid range end. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 REG_ESPACE, /* Ran out of memory. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291 REG_BADRPT, /* No preceding re for repetition op. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293 /* Error codes we've added. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294 REG_EEND, /* Premature end. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295 REG_ESIZE, /* Compiled pattern bigger than 2^16 bytes. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296 REG_ERPAREN /* Unmatched ) or \); not returned from regcomp. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297 #ifdef emacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298 ,REG_ESYNTAX /* Invalid syntax designator. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
299 #endif
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 0
diff changeset
300 #ifdef MULE
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 0
diff changeset
301 ,REG_ERANGESPAN /* Ranges may not span charsets. */
104
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 70
diff changeset
302 ,REG_ECATEGORY /* Invalid category designator */
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 0
diff changeset
303 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304 } reg_errcode_t;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306 /* This data structure represents a compiled pattern. Before calling
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307 the pattern compiler, the fields `buffer', `allocated', `fastmap',
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308 `translate', and `no_sub' can be set. After the pattern has been
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309 compiled, the `re_nsub' field is available. All other fields are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310 private to the regex routines. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312 struct re_pattern_buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314 /* [[[begin pattern_buffer]]] */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315 /* Space that holds the compiled pattern. It is declared as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316 `unsigned char *' because its elements are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317 sometimes used as array indexes. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318 unsigned char *buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320 /* Number of bytes to which `buffer' points. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321 unsigned long allocated;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323 /* Number of bytes actually used in `buffer'. */
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 104
diff changeset
324 unsigned long used;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
326 /* Syntax setting with which the pattern was compiled. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327 reg_syntax_t syntax;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
328
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
329 /* Pointer to a fastmap, if any, otherwise zero. re_search uses
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
330 the fastmap, if there is one, to skip over impossible
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331 starting points for matches. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
332 char *fastmap;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
333
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334 /* Either a translate table to apply to all characters before
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
335 comparing them, or zero for no translation. The translation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
336 is applied to a pattern when it is compiled and to a string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337 when it is matched. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
338 char *translate;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
339
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340 /* Number of subexpressions found by the compiler. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341 size_t re_nsub;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
342
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
343 /* Zero if this pattern cannot match the empty string, one else.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344 Well, in truth it's used only in `re_search_2', to see
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345 whether or not we should use the fastmap, so we don't set
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346 this absolutely perfectly; see `re_compile_fastmap' (the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347 `duplicate' case). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348 unsigned can_be_null : 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
349
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350 /* If REGS_UNALLOCATED, allocate space in the `regs' structure
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351 for `max (RE_NREGS, re_nsub + 1)' groups.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
352 If REGS_REALLOCATE, reallocate space if necessary.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353 If REGS_FIXED, use what's there. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
354 #define REGS_UNALLOCATED 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355 #define REGS_REALLOCATE 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
356 #define REGS_FIXED 2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
357 unsigned regs_allocated : 2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
358
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
359 /* Set to zero when `regex_compile' compiles a pattern; set to one
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
360 by `re_compile_fastmap' if it updates the fastmap. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
361 unsigned fastmap_accurate : 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
362
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
363 /* If set, `re_match_2' does not return information about
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
364 subexpressions. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
365 unsigned no_sub : 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
366
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
367 /* If set, a beginning-of-line anchor doesn't match at the
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 104
diff changeset
368 beginning of the string. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
369 unsigned not_bol : 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
370
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
371 /* Similarly for an end-of-line anchor. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
372 unsigned not_eol : 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
373
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
374 /* If true, an anchor at a newline matches. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
375 unsigned newline_anchor : 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
376
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
377 /* [[[end pattern_buffer]]] */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
378 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
379
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
380 typedef struct re_pattern_buffer regex_t;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
381
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
382 /* Type for byte offsets within the string. POSIX mandates this. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
383 typedef int regoff_t;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
385
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
386 /* This is the structure we store register match data in. See
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
387 regex.texinfo for a full description of what registers match. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
388 struct re_registers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
389 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
390 unsigned num_regs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
391 regoff_t *start;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
392 regoff_t *end;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
393 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
394
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
395
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
396 /* If `regs_allocated' is REGS_UNALLOCATED in the pattern buffer,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
397 `re_match_2' returns information about at least this many registers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
398 the first time a `regs' structure is passed. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
399 #ifndef RE_NREGS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
400 #define RE_NREGS 30
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
401 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
402
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
403
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
404 /* POSIX specification for registers. Aside from the different names than
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
405 `re_registers', POSIX uses an array of structures, instead of a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
406 structure of arrays. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
407 typedef struct
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
408 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
409 regoff_t rm_so; /* Byte offset from string's start to substring's start. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
410 regoff_t rm_eo; /* Byte offset from string's start to substring's end. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
411 } regmatch_t;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
412
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
413 /* Declarations for routines. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
414
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
415 /* To avoid duplicating every routine declaration -- once with a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
416 prototype (if we are ANSI), and once without (if we aren't) -- we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
417 use the following macro to declare argument types. This
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
418 unfortunately clutters up the declarations a bit, but I think it's
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
419 worth it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
420
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
421 #ifdef __STDC__
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
422
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
423 #define _RE_ARGS(args) args
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
424
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
425 #else /* not __STDC__ */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
426
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
427 #define _RE_ARGS(args) ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
428
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
429 #endif /* not __STDC__ */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
430
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
431 /* Sets the current default syntax to SYNTAX, and return the old syntax.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
432 You can also simply assign to the `re_syntax_options' variable. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
433 extern reg_syntax_t re_set_syntax _RE_ARGS ((reg_syntax_t syntax));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
434
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
435 /* Compile the regular expression PATTERN, with length LENGTH
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
436 and syntax given by the global `re_syntax_options', into the buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
437 BUFFER. Return NULL if successful, and an error string if not. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
438 extern CONST char *re_compile_pattern
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
439 _RE_ARGS ((CONST char *pattern, int length,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
440 struct re_pattern_buffer *buffer));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
441
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
442
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
443 /* Compile a fastmap for the compiled pattern in BUFFER; used to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
444 accelerate searches. Return 0 if successful and -2 if was an
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
445 internal error. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
446 extern int re_compile_fastmap _RE_ARGS ((struct re_pattern_buffer *buffer));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
447
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
448
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
449 /* Search in the string STRING (with length LENGTH) for the pattern
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
450 compiled into BUFFER. Start searching at position START, for RANGE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
451 characters. Return the starting position of the match, -1 for no
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
452 match, or -2 for an internal error. Also return register
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
453 information in REGS (if REGS and BUFFER->no_sub are nonzero). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
454 extern int re_search
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
455 _RE_ARGS ((struct re_pattern_buffer *buffer, CONST char *string,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
456 int length, int start, int range, struct re_registers *regs));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
457
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
458
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
459 /* Like `re_search', but search in the concatenation of STRING1 and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
460 STRING2. Also, stop searching at index START + STOP. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
461 extern int re_search_2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
462 _RE_ARGS ((struct re_pattern_buffer *buffer, CONST char *string1,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
463 int length1, CONST char *string2, int length2,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
464 int start, int range, struct re_registers *regs, int stop));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
465
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
466
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
467 /* Like `re_search', but return how many characters in STRING the regexp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
468 in BUFFER matched, starting at position START. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
469 extern int re_match
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
470 _RE_ARGS ((struct re_pattern_buffer *buffer, CONST char *string,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
471 int length, int start, struct re_registers *regs));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
472
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
473
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
474 /* Relates to `re_match' as `re_search_2' relates to `re_search'. */
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 104
diff changeset
475 extern int re_match_2
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
476 _RE_ARGS ((struct re_pattern_buffer *buffer, CONST char *string1,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
477 int length1, CONST char *string2, int length2,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
478 int start, struct re_registers *regs, int stop));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
479
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
480
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
481 /* Set REGS to hold NUM_REGS registers, storing them in STARTS and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
482 ENDS. Subsequent matches using BUFFER and REGS will use this memory
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
483 for recording register information. STARTS and ENDS must be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
484 allocated with malloc, and must each be at least `NUM_REGS * sizeof
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
485 (regoff_t)' bytes long.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
486
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
487 If NUM_REGS == 0, then subsequent matches should allocate their own
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
488 register data.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
489
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
490 Unless this function is called, the first search or match using
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
491 PATTERN_BUFFER will allocate its own register data, without
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
492 freeing the old data. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
493 extern void re_set_registers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
494 _RE_ARGS ((struct re_pattern_buffer *buffer, struct re_registers *regs,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
495 unsigned num_regs, regoff_t *starts, regoff_t *ends));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
496
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
497 #ifdef _REGEX_RE_COMP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
498 /* 4.2 bsd compatibility. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
499 extern char *re_comp _RE_ARGS ((CONST char *));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
500 extern int re_exec _RE_ARGS ((CONST char *));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
501 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
502
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
503 /* POSIX compatibility. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
504 extern int regcomp _RE_ARGS ((regex_t *preg, CONST char *pattern, int cflags));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
505 extern int regexec
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
506 _RE_ARGS ((CONST regex_t *preg, CONST char *string, size_t nmatch,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
507 regmatch_t pmatch[], int eflags));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
508 extern size_t regerror
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
509 _RE_ARGS ((int errcode, CONST regex_t *preg, char *errbuf,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
510 size_t errbuf_size));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
511 extern void regfree _RE_ARGS ((regex_t *preg));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
512
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
513 #endif /* not __REGEXP_LIBRARY_H__ */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
514
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
515 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
516 Local variables:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
517 make-backup-files: t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
518 version-control: t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
519 trim-versions-without-asking: nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
520 End:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
521 */