2 * regcomp and regexec -- regsub and regerror are elsewhere
4 * Copyright (c) 1986 by University of Toronto.
5 * Written by Henry Spencer. Not derived from licensed software.
7 * Permission is granted to anyone to use this software for any
8 * purpose on any computer system, and to redistribute it freely,
9 * subject to the following restrictions:
11 * 1. The author is not responsible for the consequences of use of
12 * this software, no matter how awful, even if they arise
15 * 2. The origin of this software must not be misrepresented, either
16 * by explicit claim or by omission.
18 * 3. Altered versions must be plainly marked as such, and must not
19 * be misrepresented as being the original software.
20 *** THIS IS AN ALTERED VERSION. It was altered by John Gilmore,
21 *** hoptoad!gnu, on 27 Dec 1986, to add \n as an alternative to |
22 *** to assist in implementing egrep.
23 *** THIS IS AN ALTERED VERSION. It was altered by John Gilmore,
24 *** hoptoad!gnu, on 27 Dec 1986, to add \< and \> for word-matching
25 *** as in BSD grep and ex.
26 *** THIS IS AN ALTERED VERSION. It was altered by John Gilmore,
27 *** hoptoad!gnu, on 28 Dec 1986, to optimize characters quoted with \.
28 *** THIS IS AN ALTERED VERSION. It was altered by James A. Woods,
29 *** ames!jaw, on 19 June 1987, to quash a regcomp() redundancy.
30 *** THIS IS AN ALTERED VERSION. It was altered by Christopher Seiwald
31 *** seiwald@vix.com, on 28 August 1993, for use in jam. Regmagic.h
32 *** was moved into regexp.h, and the include of regexp.h now uses "'s
33 *** to avoid conflicting with the system regexp.h. Const, bless its
34 *** soul, was removed so it can compile everywhere. The declaration
35 *** of strchr() was in conflict on AIX, so it was removed (as it is
36 *** happily defined in string.h).
37 *** THIS IS AN ALTERED VERSION. It was altered by Christopher Seiwald
38 *** seiwald@perforce.com, on 20 January 2000, to use function prototypes.
39 *** THIS IS AN ALTERED VERSION. It was altered by Christopher Seiwald
40 *** seiwald@perforce.com, on 05 November 2002, to const string literals.
42 * Beware that some of this code is subtly aware of the way operator
43 * precedence is structured in regular expressions. Serious changes in
44 * regular-expression syntax might require a total rethink.
55 * The "internal use only" fields in regexp.h are present to pass info from
56 * compile to execute that permits the execute phase to run lots faster on
57 * simple cases. They are:
59 * regstart char that must begin a match; '\0' if none obvious
60 * reganch is the match anchored (at beginning-of-line only)?
61 * regmust string (pointer into program) that match must include, or NULL
62 * regmlen length of regmust string
64 * Regstart and reganch permit very fast decisions on suitable starting points
65 * for a match, cutting down the work a lot. Regmust permits fast rejection
66 * of lines that cannot possibly match. The regmust tests are costly enough
67 * that regcomp() supplies a regmust only if the r.e. contains something
68 * potentially expensive (at present, the only such thing detected is * or +
69 * at the start of the r.e., which can involve a lot of backup). Regmlen is
70 * supplied because the test in regexec() needs it and regcomp() is computing
75 * Structure for regexp "program". This is essentially a linear encoding
76 * of a nondeterministic finite-state machine (aka syntax charts or
77 * "railroad normal form" in parsing technology). Each node is an opcode
78 * plus a "next" pointer, possibly plus an operand. "Next" pointers of
79 * all nodes except BRANCH implement concatenation; a "next" pointer with
80 * a BRANCH on both ends of it is connecting two alternatives. (Here we
81 * have one of the subtle syntax dependencies: an individual BRANCH (as
82 * opposed to a collection of them) is never concatenated with anything
83 * because of operator precedence.) The operand of some types of node is
84 * a literal string; for others, it is a node leading into a sub-FSM. In
85 * particular, the operand of a BRANCH node is the first node of the branch.
86 * (NB this is *not* a tree structure: the tail of the branch connects
87 * to the thing following the set of BRANCHes.) The opcodes are:
90 /* definition number opnd? meaning */
91 #define END 0 /* no End of program. */
92 #define BOL 1 /* no Match "" at beginning of line. */
93 #define EOL 2 /* no Match "" at end of line. */
94 #define ANY 3 /* no Match any one character. */
95 #define ANYOF 4 /* str Match any character in this string. */
96 #define ANYBUT 5 /* str Match any character not in this string. */
97 #define BRANCH 6 /* node Match this alternative, or the next... */
98 #define BACK 7 /* no Match "", "next" ptr points backward. */
99 #define EXACTLY 8 /* str Match this string. */
100 #define NOTHING 9 /* no Match empty string. */
101 #define STAR 10 /* node Match this (simple) thing 0 or more times. */
102 #define PLUS 11 /* node Match this (simple) thing 1 or more times. */
103 #define WORDA 12 /* no Match "" at wordchar, where prev is nonword */
104 #define WORDZ 13 /* no Match "" at nonwordchar, where prev is word */
105 #define OPEN 20 /* no Mark this point in input as start of #n. */
106 /* OPEN+1 is number 1, etc. */
107 #define CLOSE 30 /* no Analogous to OPEN. */
112 * BRANCH The set of branches constituting a single choice are hooked
113 * together with their "next" pointers, since precedence prevents
114 * anything being concatenated to any individual branch. The
115 * "next" pointer of the last BRANCH in a choice points to the
116 * thing following the whole choice. This is also where the
117 * final "next" pointer of each individual branch points; each
118 * branch starts with the operand node of a BRANCH node.
120 * BACK Normal "next" pointers all implicitly point forward; BACK
121 * exists to make loop structures possible.
123 * STAR,PLUS '?', and complex '*' and '+', are implemented as circular
124 * BRANCH structures using BACK. Simple cases (one character
125 * per match) are implemented with STAR and PLUS for speed
126 * and to minimize recursive plunges.
128 * OPEN,CLOSE ...are numbered at compile time.
132 * A node is one char of opcode followed by two chars of "next" pointer.
133 * "Next" pointers are stored as two 8-bit pieces, high order first. The
134 * value is a positive offset from the opcode of the node containing it.
135 * An operand, if any, simply follows the node. (Note that much of the
136 * code generation knows about this implicit relationship.)
138 * Using two bytes for the "next" pointer is vast overkill for most things,
139 * but allows patterns to get big without disasters.
142 #define NEXT(p) (((*((p)+1)&0377)<<8) + (*((p)+2)&0377))
143 #define OPERAND(p) ((p) + 3)
146 * See regmagic.h for one further detail of program structure.
151 * Utility definitions.
154 #define UCHARAT(p) ((int)*(unsigned char *)(p))
156 #define UCHARAT(p) ((int)*(p)&CHARBITS)
159 #define FAIL(m) { regerror(m); return(NULL); }
160 #define ISMULT(c) ((c) == '*' || (c) == '+' || (c) == '?')
163 * Flags to be passed up and down.
165 #define HASWIDTH 01 /* Known never to match null string. */
166 #define SIMPLE 02 /* Simple enough to be STAR/PLUS operand. */
167 #define SPSTART 04 /* Starts with * or +. */
168 #define WORST 0 /* Worst case. */
171 * Global work variables for regcomp().
173 static char *regparse
; /* Input-scan pointer. */
174 static int regnpar
; /* () count. */
175 static char regdummy
;
176 static char *regcode
; /* Code-emit pointer; ®dummy = don't. */
177 static long regsize
; /* Code size. */
180 * Forward declarations for regcomp()'s friends.
183 #define STATIC static
185 STATIC
char *reg( int paren
, int *flagp
);
186 STATIC
char *regbranch( int *flagp
);
187 STATIC
char *regpiece( int *flagp
);
188 STATIC
char *regatom( int *flagp
);
189 STATIC
char *regnode( int op
);
190 STATIC
char *regnext( register char *p
);
191 STATIC
void regc( int b
);
192 STATIC
void reginsert( char op
, char *opnd
);
193 STATIC
void regtail( char *p
, char *val
);
194 STATIC
void regoptail( char *p
, char *val
);
196 STATIC
int strcspn();
200 - regcomp - compile a regular expression into internal code
202 * We can't allocate space until we know how big the compiled form will be,
203 * but we can't compile it (and thus know how big it is) until we've got a
204 * place to put the code. So we cheat: we compile it twice, once with code
205 * generation turned off and size counting turned on, and once "for real".
206 * This also means that we don't allocate space until we are sure that the
207 * thing really will compile successfully, and we never have to move the
208 * code and thus invalidate pointers into it. (Note that it has to be in
209 * one piece because free() must be able to free it all.)
211 * Beware that the optimization-preparation code in here knows about some
212 * of the structure of the compiled regexp.
215 regcomp( const char *exp
)
219 register char *longest
;
220 register unsigned len
;
224 FAIL("NULL argument");
226 /* First pass: determine size, legality. */
228 if (exp
[0] == '.' && exp
[1] == '*') exp
+= 2; /* aid grep */
230 regparse
= (char *)exp
;
235 if (reg(0, &flags
) == NULL
)
238 /* Small enough for pointer-storage convention? */
239 if (regsize
>= 32767L) /* Probably could be 65535L. */
240 FAIL("regexp too big");
242 /* Allocate space. */
243 r
= (regexp
*)malloc(sizeof(regexp
) + (unsigned)regsize
);
245 FAIL("out of space");
247 /* Second pass: emit code. */
248 regparse
= (char *)exp
;
250 regcode
= r
->program
;
252 if (reg(0, &flags
) == NULL
)
255 /* Dig out information for optimizations. */
256 r
->regstart
= '\0'; /* Worst-case defaults. */
260 scan
= r
->program
+1; /* First BRANCH. */
261 if (OP(regnext(scan
)) == END
) { /* Only one top-level choice. */
262 scan
= OPERAND(scan
);
264 /* Starting-point info. */
265 if (OP(scan
) == EXACTLY
)
266 r
->regstart
= *OPERAND(scan
);
267 else if (OP(scan
) == BOL
)
271 * If there's something expensive in the r.e., find the
272 * longest literal string that must appear and make it the
273 * regmust. Resolve ties in favor of later strings, since
274 * the regstart check works with the beginning of the r.e.
275 * and avoiding duplication strengthens checking. Not a
276 * strong reason, but sufficient in the absence of others.
281 for (; scan
!= NULL
; scan
= regnext(scan
))
282 if (OP(scan
) == EXACTLY
&& strlen(OPERAND(scan
)) >= len
) {
283 longest
= OPERAND(scan
);
284 len
= strlen(OPERAND(scan
));
286 r
->regmust
= longest
;
295 - reg - regular expression, i.e. main body or parenthesized thing
297 * Caller must absorb opening parenthesis.
299 * Combining parenthesis handling with the base level of regular expression
300 * is a trifle forced, but the need to tie the tails of the branches to what
301 * follows makes it hard to avoid.
305 int paren
, /* Parenthesized? */
310 register char *ender
;
311 register int parno
= 0; /*k8*/
314 *flagp
= HASWIDTH
; /* Tentatively. */
316 /* Make an OPEN node, if parenthesized. */
318 if (regnpar
>= NSUBEXP
)
322 ret
= regnode(OPEN
+parno
);
326 /* Pick up the branches, linking them together. */
327 br
= regbranch(&flags
);
331 regtail(ret
, br
); /* OPEN -> first. */
334 if (!(flags
&HASWIDTH
))
336 *flagp
|= flags
&SPSTART
;
337 while (*regparse
== '|' || *regparse
== '\n') {
339 br
= regbranch(&flags
);
342 regtail(ret
, br
); /* BRANCH -> BRANCH. */
343 if (!(flags
&HASWIDTH
))
345 *flagp
|= flags
&SPSTART
;
348 /* Make a closing node, and hook it on the end. */
349 ender
= regnode((paren
) ? CLOSE
+parno
: END
);
352 /* Hook the tails of the branches to the closing node. */
353 for (br
= ret
; br
!= NULL
; br
= regnext(br
))
354 regoptail(br
, ender
);
356 /* Check for proper termination. */
357 if (paren
&& *regparse
++ != ')') {
358 FAIL("unmatched ()");
359 } else if (!paren
&& *regparse
!= '\0') {
360 if (*regparse
== ')') {
361 FAIL("unmatched ()");
363 FAIL("junk on end"); /* "Can't happen". */
371 - regbranch - one alternative of an | operator
373 * Implements the concatenation operator.
376 regbranch( int *flagp
)
379 register char *chain
;
380 register char *latest
;
383 *flagp
= WORST
; /* Tentatively. */
385 ret
= regnode(BRANCH
);
387 while (*regparse
!= '\0' && *regparse
!= ')' &&
388 *regparse
!= '\n' && *regparse
!= '|') {
389 latest
= regpiece(&flags
);
392 *flagp
|= flags
&HASWIDTH
;
393 if (chain
== NULL
) /* First piece. */
394 *flagp
|= flags
&SPSTART
;
396 regtail(chain
, latest
);
399 if (chain
== NULL
) /* Loop ran zero times. */
400 (void) regnode(NOTHING
);
406 - regpiece - something followed by possible [*+?]
408 * Note that the branching code sequences used for ? and the general cases
409 * of * and + are somewhat optimized: they use the same NOTHING node as
410 * both the endmarker for their branch list and the body of the last branch.
411 * It might seem that this node could be dispensed with entirely, but the
412 * endmarker role is not redundant.
415 regpiece( int *flagp
)
422 ret
= regatom(&flags
);
432 if (!(flags
&HASWIDTH
) && op
!= '?')
433 FAIL("*+ operand could be empty");
434 *flagp
= (op
!= '+') ? (WORST
|SPSTART
) : (WORST
|HASWIDTH
);
436 if (op
== '*' && (flags
&SIMPLE
))
437 reginsert(STAR
, ret
);
438 else if (op
== '*') {
439 /* Emit x* as (x&|), where & means "self". */
440 reginsert(BRANCH
, ret
); /* Either x */
441 regoptail(ret
, regnode(BACK
)); /* and loop */
442 regoptail(ret
, ret
); /* back */
443 regtail(ret
, regnode(BRANCH
)); /* or */
444 regtail(ret
, regnode(NOTHING
)); /* null. */
445 } else if (op
== '+' && (flags
&SIMPLE
)) {
446 reginsert(PLUS
, ret
);
447 } else if (op
== '+') {
448 /* Emit x+ as x(&|), where & means "self". */
449 next
= regnode(BRANCH
); /* Either */
451 regtail(regnode(BACK
), ret
); /* loop back */
452 regtail(next
, regnode(BRANCH
)); /* or */
453 regtail(ret
, regnode(NOTHING
)); /* null. */
454 } else if (op
== '?') {
455 /* Emit x? as (x|) */
456 reginsert(BRANCH
, ret
); /* Either x */
457 regtail(ret
, regnode(BRANCH
)); /* or */
458 next
= regnode(NOTHING
); /* null. */
460 regoptail(ret
, next
);
463 if (ISMULT(*regparse
))
470 - regatom - the lowest level
472 * Optimization: gobbles an entire sequence of ordinary characters so that
473 * it can turn them into a single node, which is smaller to store and
474 * faster to run. Backslashed characters are exceptions, each becoming a
475 * separate node; the code is simpler that way and it's not worth fixing.
478 regatom( int *flagp
)
483 *flagp
= WORST
; /* Tentatively. */
485 switch (*regparse
++) {
486 /* FIXME: these chars only have meaning at beg/end of pat? */
495 *flagp
|= HASWIDTH
|SIMPLE
;
499 register int classend
;
501 if (*regparse
== '^') { /* Complement of range. */
502 ret
= regnode(ANYBUT
);
505 ret
= regnode(ANYOF
);
506 if (*regparse
== ']' || *regparse
== '-')
508 while (*regparse
!= '\0' && *regparse
!= ']') {
509 if (*regparse
== '-') {
511 if (*regparse
== ']' || *regparse
== '\0')
514 classr
= UCHARAT(regparse
-2)+1;
515 classend
= UCHARAT(regparse
);
516 if (classr
> classend
+1)
517 FAIL("invalid [] range");
518 for (; classr
<= classend
; classr
++)
526 if (*regparse
!= ']')
527 FAIL("unmatched []");
529 *flagp
|= HASWIDTH
|SIMPLE
;
533 ret
= reg(1, &flags
);
536 *flagp
|= flags
&(HASWIDTH
|SPSTART
);
542 FAIL("internal urp"); /* Supposed to be caught earlier. */
547 FAIL("?+* follows nothing");
550 switch (*regparse
++) {
555 ret
= regnode(WORDA
);
558 ret
= regnode(WORDZ
);
560 /* FIXME: Someday handle \1, \2, ... */
562 /* Handle general quoted chars in exact-match routine */
569 * Encode a string of characters to be matched exactly.
571 * This is a bit tricky due to quoted chars and due to
572 * '*', '+', and '?' taking the SINGLE char previous
575 * On entry, the char at regparse[-1] is going to go
576 * into the string, no matter what it is. (It could be
577 * following a \ if we are entered from the '\' case.)
579 * Basic idea is to pick up a good char in ch and
580 * examine the next char. If it's *+? then we twiddle.
581 * If it's \ then we frozzle. If it's other magic char
582 * we push ch and terminate the string. If none of the
583 * above, we push ch on the string and go around again.
585 * regprev is used to remember where "the current char"
586 * starts in the string, if due to a *+? we need to back
587 * up and put the current char in a separate, 1-char, string.
588 * When regprev is NULL, ch is the only char in the
589 * string; this is used in *+? handling, and in setting
590 * flags |= SIMPLE at the end.
596 regparse
--; /* Look at cur char */
597 ret
= regnode(EXACTLY
);
598 for ( regprev
= 0 ; ; ) {
599 ch
= *regparse
++; /* Get current char */
600 switch (*regparse
) { /* look at next one */
603 regc(ch
); /* Add cur to string */
606 case '.': case '[': case '(':
607 case ')': case '|': case '\n':
610 /* FIXME, $ and ^ should not always be magic */
612 regc(ch
); /* dump cur char */
613 goto done
; /* and we are done */
615 case '?': case '+': case '*':
616 if (!regprev
) /* If just ch in str, */
617 goto magic
; /* use it */
618 /* End mult-char string one early */
619 regparse
= regprev
; /* Back up parse */
623 regc(ch
); /* Cur char OK */
624 switch (regparse
[1]){ /* Look after \ */
628 /* FIXME: Someday handle \1, \2, ... */
629 goto done
; /* Not quoted */
631 /* Backup point is \, scan * point is after it. */
634 continue; /* NOT break; */
637 regprev
= regparse
; /* Set backup point */
642 if (!regprev
) /* One char? */
652 - regnode - emit a node
654 static char * /* Location. */
661 if (ret
== ®dummy
) {
668 *ptr
++ = '\0'; /* Null "next" pointer. */
676 - regc - emit (if appropriate) a byte of code
681 if (regcode
!= ®dummy
)
688 - reginsert - insert an operator in front of already-emitted operand
690 * Means relocating the operand.
699 register char *place
;
701 if (regcode
== ®dummy
) {
712 place
= opnd
; /* Op node, where operand used to be. */
719 - regtail - set the next-pointer at the end of a node chain
733 /* Find last node. */
736 temp
= regnext(scan
);
742 if (OP(scan
) == BACK
)
746 *(scan
+1) = (offset
>>8)&0377;
747 *(scan
+2) = offset
&0377;
751 - regoptail - regtail on operand of first argument; nop if operandless
759 /* "Operandless" and "op != BRANCH" are synonymous in practice. */
760 if (p
== NULL
|| p
== ®dummy
|| OP(p
) != BRANCH
)
762 regtail(OPERAND(p
), val
);
766 * regexec and friends
770 * Global work variables for regexec().
772 static const char *reginput
; /* String-input pointer. */
773 static char *regbol
; /* Beginning of input, for ^ check. */
774 static const char **regstartp
; /* Pointer to startp array. */
775 static const char **regendp
; /* Ditto for endp. */
780 STATIC
int regtry( regexp
*prog
, const char *string
);
781 STATIC
int regmatch( char *prog
);
782 STATIC
int regrepeat( char *p
);
787 STATIC
char *regprop();
791 - regexec - match a regexp against a string
795 register regexp
*prog
,
796 register const char *string
)
801 if (prog
== NULL
|| string
== NULL
) {
802 regerror("NULL parameter");
806 /* Check validity of program. */
807 if (UCHARAT(prog
->program
) != MAGIC
) {
808 regerror("corrupted program");
812 /* If there is a "must appear" string, look for it. */
813 if (prog
->regmust
!= NULL
) {
815 while ((s
= strchr(s
, prog
->regmust
[0])) != NULL
) {
816 if (strncmp(s
, prog
->regmust
, prog
->regmlen
) == 0)
817 break; /* Found it. */
820 if (s
== NULL
) /* Not present. */
824 /* Mark beginning of line for ^ . */
825 regbol
= (char *)string
;
827 /* Simplest case: anchored match need be tried only once. */
829 return(regtry(prog
, string
));
831 /* Messy cases: unanchored match. */
833 if (prog
->regstart
!= '\0')
834 /* We know what char it must start with. */
835 while ((s
= strchr(s
, prog
->regstart
)) != NULL
) {
841 /* We don't -- general case. */
845 } while (*s
++ != '\0');
852 - regtry - try match at specific point
854 static int /* 0 failure, 1 success */
860 register const char **sp
;
861 register const char **ep
;
864 regstartp
= prog
->startp
;
865 regendp
= prog
->endp
;
869 for (i
= NSUBEXP
; i
> 0; i
--) {
873 if (regmatch(prog
->program
+ 1)) {
874 prog
->startp
[0] = string
;
875 prog
->endp
[0] = reginput
;
882 - regmatch - main matching routine
884 * Conceptually the strategy is simple: check to see whether the current
885 * node matches, call self recursively to see whether the rest matches,
886 * and then act accordingly. In practice we make some effort to avoid
887 * recursion, in particular by going through "ordinary" nodes (that don't
888 * need to know whether the rest of the match failed) by a loop instead of
891 static int /* 0 failure, 1 success */
892 regmatch( char *prog
)
894 register char *scan
; /* Current node. */
895 char *next
; /* Next node. */
899 if (scan
!= NULL
&& regnarrate
)
900 fprintf(stderr
, "%s(\n", regprop(scan
));
902 while (scan
!= NULL
) {
905 fprintf(stderr
, "%s...\n", regprop(scan
));
907 next
= regnext(scan
);
911 if (reginput
!= regbol
)
915 if (*reginput
!= '\0')
919 /* Must be looking at a letter, digit, or _ */
920 if ((!isalnum(*reginput
)) && *reginput
!= '_')
922 /* Prev must be BOL or nonword */
923 if (reginput
> regbol
&&
924 (isalnum(reginput
[-1]) || reginput
[-1] == '_'))
928 /* Must be looking at non letter, digit, or _ */
929 if (isalnum(*reginput
) || *reginput
== '_')
931 /* We don't care what the previous char was */
934 if (*reginput
== '\0')
942 opnd
= OPERAND(scan
);
943 /* Inline the first character, for speed. */
944 if (*opnd
!= *reginput
)
947 if (len
> 1 && strncmp(opnd
, reginput
, len
) != 0)
953 if (*reginput
== '\0' || strchr(OPERAND(scan
), *reginput
) == NULL
)
958 if (*reginput
== '\0' || strchr(OPERAND(scan
), *reginput
) != NULL
)
976 register const char *save
;
978 no
= OP(scan
) - OPEN
;
981 if (regmatch(next
)) {
983 * Don't set startp if some later
984 * invocation of the same parentheses
987 if (regstartp
[no
] == NULL
)
988 regstartp
[no
] = save
;
1004 register const char *save
;
1006 no
= OP(scan
) - CLOSE
;
1009 if (regmatch(next
)) {
1011 * Don't set endp if some later
1012 * invocation of the same parentheses
1015 if (regendp
[no
] == NULL
)
1023 register const char *save
;
1025 if (OP(next
) != BRANCH
) /* No choice. */
1026 next
= OPERAND(scan
); /* Avoid recursion. */
1030 if (regmatch(OPERAND(scan
)))
1033 scan
= regnext(scan
);
1034 } while (scan
!= NULL
&& OP(scan
) == BRANCH
);
1042 register char nextch
;
1044 register const char *save
;
1048 * Lookahead to avoid useless match attempts
1049 * when we know what character comes next.
1052 if (OP(next
) == EXACTLY
)
1053 nextch
= *OPERAND(next
);
1054 min
= (OP(scan
) == STAR
) ? 0 : 1;
1056 no
= regrepeat(OPERAND(scan
));
1058 /* If it could work, try it. */
1059 if (nextch
== '\0' || *reginput
== nextch
)
1062 /* Couldn't or didn't -- back up. */
1064 reginput
= save
+ no
;
1070 return(1); /* Success! */
1073 regerror("memory corruption");
1082 * We get here only if there's trouble -- normally "case END" is
1083 * the terminating point.
1085 regerror("corrupted pointers");
1090 - regrepeat - repeatedly match something simple, report how many
1093 regrepeat( char *p
)
1095 register int count
= 0;
1096 register const char *scan
;
1097 register char *opnd
;
1103 count
= strlen(scan
);
1107 while (*opnd
== *scan
) {
1113 while (*scan
!= '\0' && strchr(opnd
, *scan
) != NULL
) {
1119 while (*scan
!= '\0' && strchr(opnd
, *scan
) == NULL
) {
1124 default: /* Oh dear. Called inappropriately. */
1125 regerror("internal foulup");
1126 count
= 0; /* Best compromise. */
1135 - regnext - dig the "next" pointer out of a node
1138 regnext( register char *p
)
1140 register int offset
;
1157 STATIC
char *regprop();
1160 - regdump - dump a regexp onto stdout in vaguely comprehensible form
1163 regdump( regexp
*r
)
1166 register char op
= EXACTLY
; /* Arbitrary non-END op. */
1167 register char *next
;
1171 while (op
!= END
) { /* While that wasn't END last time... */
1173 printf("%2d%s", s
-r
->program
, regprop(s
)); /* Where, what. */
1175 if (next
== NULL
) /* Next ptr. */
1178 printf("(%d)", (s
-r
->program
)+(next
-s
));
1180 if (op
== ANYOF
|| op
== ANYBUT
|| op
== EXACTLY
) {
1181 /* Literal string, where present. */
1182 while (*s
!= '\0') {
1191 /* Header fields of interest. */
1192 if (r
->regstart
!= '\0')
1193 printf("start `%c' ", r
->regstart
);
1195 printf("anchored ");
1196 if (r
->regmust
!= NULL
)
1197 printf("must have \"%s\"", r
->regmust
);
1202 - regprop - printable representation of opcode
1208 static char buf
[50];
1210 (void) strcpy(buf
, ":");
1252 sprintf(buf
+strlen(buf
), "OPEN%d", OP(op
)-OPEN
);
1264 sprintf(buf
+strlen(buf
), "CLOSE%d", OP(op
)-CLOSE
);
1280 regerror("corrupted opcode");
1284 (void) strcat(buf
, p
);
1290 * The following is provided for those people who do not have strcspn() in
1291 * their C libraries. They should get off their butts and do something
1292 * about it; at least one public-domain implementation of those (highly
1293 * useful) string routines has been published on Usenet.
1297 * strcspn - find length of initial segment of s1 consisting entirely
1298 * of characters not from s2
1306 register char *scan1
;
1307 register char *scan2
;
1311 for (scan1
= s1
; *scan1
!= '\0'; scan1
++) {
1312 for (scan2
= s2
; *scan2
!= '\0';) /* ++ moved down. */
1313 if (*scan1
== *scan2
++)
1322 regerror( const char *s
)
1324 printf( "re error %s\n", s
);