Home | History | Annotate | Line # | Download | only in regex
regex2.h revision 1.1.1.1
      1  1.1.1.1  cgd /*-
      2  1.1.1.1  cgd  * Copyright (c) 1992, 1993, 1994 Henry Spencer.
      3  1.1.1.1  cgd  * Copyright (c) 1992, 1993, 1994
      4  1.1.1.1  cgd  *	The Regents of the University of California.  All rights reserved.
      5  1.1.1.1  cgd  *
      6  1.1.1.1  cgd  * This code is derived from software contributed to Berkeley by
      7  1.1.1.1  cgd  * Henry Spencer.
      8  1.1.1.1  cgd  *
      9  1.1.1.1  cgd  * Redistribution and use in source and binary forms, with or without
     10  1.1.1.1  cgd  * modification, are permitted provided that the following conditions
     11  1.1.1.1  cgd  * are met:
     12  1.1.1.1  cgd  * 1. Redistributions of source code must retain the above copyright
     13  1.1.1.1  cgd  *    notice, this list of conditions and the following disclaimer.
     14  1.1.1.1  cgd  * 2. Redistributions in binary form must reproduce the above copyright
     15  1.1.1.1  cgd  *    notice, this list of conditions and the following disclaimer in the
     16  1.1.1.1  cgd  *    documentation and/or other materials provided with the distribution.
     17  1.1.1.1  cgd  * 3. All advertising materials mentioning features or use of this software
     18  1.1.1.1  cgd  *    must display the following acknowledgement:
     19  1.1.1.1  cgd  *	This product includes software developed by the University of
     20  1.1.1.1  cgd  *	California, Berkeley and its contributors.
     21  1.1.1.1  cgd  * 4. Neither the name of the University nor the names of its contributors
     22  1.1.1.1  cgd  *    may be used to endorse or promote products derived from this software
     23  1.1.1.1  cgd  *    without specific prior written permission.
     24  1.1.1.1  cgd  *
     25  1.1.1.1  cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     26  1.1.1.1  cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     27  1.1.1.1  cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     28  1.1.1.1  cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     29  1.1.1.1  cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     30  1.1.1.1  cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     31  1.1.1.1  cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     32  1.1.1.1  cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     33  1.1.1.1  cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     34  1.1.1.1  cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     35  1.1.1.1  cgd  * SUCH DAMAGE.
     36  1.1.1.1  cgd  *
     37  1.1.1.1  cgd  *	@(#)regex2.h	8.4 (Berkeley) 3/20/94
     38  1.1.1.1  cgd  */
     39  1.1.1.1  cgd 
     40      1.1  jtc /*
     41      1.1  jtc  * First, the stuff that ends up in the outside-world include file
     42      1.1  jtc  = typedef off_t regoff_t;
     43      1.1  jtc  = typedef struct {
     44      1.1  jtc  = 	int re_magic;
     45      1.1  jtc  = 	size_t re_nsub;		// number of parenthesized subexpressions
     46  1.1.1.1  cgd  = 	const char *re_endp;	// end pointer for REG_PEND
     47      1.1  jtc  = 	struct re_guts *re_g;	// none of your business :-)
     48      1.1  jtc  = } regex_t;
     49      1.1  jtc  = typedef struct {
     50      1.1  jtc  = 	regoff_t rm_so;		// start of match
     51      1.1  jtc  = 	regoff_t rm_eo;		// end of match
     52      1.1  jtc  = } regmatch_t;
     53      1.1  jtc  */
     54      1.1  jtc /*
     55      1.1  jtc  * internals of regex_t
     56      1.1  jtc  */
     57      1.1  jtc #define	MAGIC1	((('r'^0200)<<8) | 'e')
     58      1.1  jtc 
     59      1.1  jtc /*
     60      1.1  jtc  * The internal representation is a *strip*, a sequence of
     61      1.1  jtc  * operators ending with an endmarker.  (Some terminology etc. is a
     62      1.1  jtc  * historical relic of earlier versions which used multiple strips.)
     63      1.1  jtc  * Certain oddities in the representation are there to permit running
     64      1.1  jtc  * the machinery backwards; in particular, any deviation from sequential
     65      1.1  jtc  * flow must be marked at both its source and its destination.  Some
     66      1.1  jtc  * fine points:
     67      1.1  jtc  *
     68      1.1  jtc  * - OPLUS_ and O_PLUS are *inside* the loop they create.
     69      1.1  jtc  * - OQUEST_ and O_QUEST are *outside* the bypass they create.
     70      1.1  jtc  * - OCH_ and O_CH are *outside* the multi-way branch they create, while
     71      1.1  jtc  *   OOR1 and OOR2 are respectively the end and the beginning of one of
     72      1.1  jtc  *   the branches.  Note that there is an implicit OOR2 following OCH_
     73      1.1  jtc  *   and an implicit OOR1 preceding O_CH.
     74      1.1  jtc  *
     75      1.1  jtc  * In state representations, an operator's bit is on to signify a state
     76      1.1  jtc  * immediately *preceding* "execution" of that operator.
     77      1.1  jtc  */
     78      1.1  jtc typedef unsigned long sop;	/* strip operator */
     79      1.1  jtc typedef long sopno;
     80      1.1  jtc #define	OPRMASK	0xf8000000
     81      1.1  jtc #define	OPDMASK	0x07ffffff
     82      1.1  jtc #define	OPSHIFT	((unsigned)27)
     83      1.1  jtc #define	OP(n)	((n)&OPRMASK)
     84      1.1  jtc #define	OPND(n)	((n)&OPDMASK)
     85      1.1  jtc #define	SOP(op, opnd)	((op)|(opnd))
     86      1.1  jtc /* operators			   meaning	operand			*/
     87      1.1  jtc /*						(back, fwd are offsets)	*/
     88      1.1  jtc #define	OEND	(1<<OPSHIFT)	/* endmarker	-			*/
     89      1.1  jtc #define	OCHAR	(2<<OPSHIFT)	/* character	unsigned char		*/
     90      1.1  jtc #define	OBOL	(3<<OPSHIFT)	/* left anchor	-			*/
     91      1.1  jtc #define	OEOL	(4<<OPSHIFT)	/* right anchor	-			*/
     92      1.1  jtc #define	OANY	(5<<OPSHIFT)	/* .		-			*/
     93      1.1  jtc #define	OANYOF	(6<<OPSHIFT)	/* [...]	set number		*/
     94      1.1  jtc #define	OBACK_	(7<<OPSHIFT)	/* begin \d	paren number		*/
     95      1.1  jtc #define	O_BACK	(8<<OPSHIFT)	/* end \d	paren number		*/
     96      1.1  jtc #define	OPLUS_	(9<<OPSHIFT)	/* + prefix	fwd to suffix		*/
     97      1.1  jtc #define	O_PLUS	(10<<OPSHIFT)	/* + suffix	back to prefix		*/
     98      1.1  jtc #define	OQUEST_	(11<<OPSHIFT)	/* ? prefix	fwd to suffix		*/
     99      1.1  jtc #define	O_QUEST	(12<<OPSHIFT)	/* ? suffix	back to prefix		*/
    100      1.1  jtc #define	OLPAREN	(13<<OPSHIFT)	/* (		fwd to )		*/
    101      1.1  jtc #define	ORPAREN	(14<<OPSHIFT)	/* )		back to (		*/
    102      1.1  jtc #define	OCH_	(15<<OPSHIFT)	/* begin choice	fwd to OOR2		*/
    103      1.1  jtc #define	OOR1	(16<<OPSHIFT)	/* | pt. 1	back to OOR1 or OCH_	*/
    104      1.1  jtc #define	OOR2	(17<<OPSHIFT)	/* | pt. 2	fwd to OOR2 or O_CH	*/
    105      1.1  jtc #define	O_CH	(18<<OPSHIFT)	/* end choice	back to OOR1		*/
    106      1.1  jtc #define	OBOW	(19<<OPSHIFT)	/* begin word	-			*/
    107      1.1  jtc #define	OEOW	(20<<OPSHIFT)	/* end word	-			*/
    108      1.1  jtc 
    109      1.1  jtc /*
    110      1.1  jtc  * Structure for [] character-set representation.  Character sets are
    111      1.1  jtc  * done as bit vectors, grouped 8 to a byte vector for compactness.
    112      1.1  jtc  * The individual set therefore has both a pointer to the byte vector
    113      1.1  jtc  * and a mask to pick out the relevant bit of each byte.  A hash code
    114      1.1  jtc  * simplifies testing whether two sets could be identical.
    115      1.1  jtc  *
    116      1.1  jtc  * This will get trickier for multicharacter collating elements.  As
    117      1.1  jtc  * preliminary hooks for dealing with such things, we also carry along
    118      1.1  jtc  * a string of multi-character elements, and decide the size of the
    119      1.1  jtc  * vectors at run time.
    120      1.1  jtc  */
    121      1.1  jtc typedef struct {
    122  1.1.1.1  cgd 	uch *ptr;		/* -> uch [csetsize] */
    123  1.1.1.1  cgd 	uch mask;		/* bit within array */
    124  1.1.1.1  cgd 	uch hash;		/* hash code */
    125      1.1  jtc 	size_t smultis;
    126      1.1  jtc 	char *multis;		/* -> char[smulti]  ab\0cd\0ef\0\0 */
    127      1.1  jtc } cset;
    128      1.1  jtc /* note that CHadd and CHsub are unsafe, and CHIN doesn't yield 0/1 */
    129  1.1.1.1  cgd #define	CHadd(cs, c)	((cs)->ptr[(uch)(c)] |= (cs)->mask, (cs)->hash += (c))
    130  1.1.1.1  cgd #define	CHsub(cs, c)	((cs)->ptr[(uch)(c)] &= ~(cs)->mask, (cs)->hash -= (c))
    131  1.1.1.1  cgd #define	CHIN(cs, c)	((cs)->ptr[(uch)(c)] & (cs)->mask)
    132  1.1.1.1  cgd #define	MCadd(p, cs, cp)	mcadd(p, cs, cp)	/* regcomp() internal fns */
    133  1.1.1.1  cgd #define	MCsub(p, cs, cp)	mcsub(p, cs, cp)
    134  1.1.1.1  cgd #define	MCin(p, cs, cp)	mcin(p, cs, cp)
    135      1.1  jtc 
    136      1.1  jtc /* stuff for character categories */
    137      1.1  jtc typedef unsigned char cat_t;
    138      1.1  jtc 
    139      1.1  jtc /*
    140      1.1  jtc  * main compiled-expression structure
    141      1.1  jtc  */
    142      1.1  jtc struct re_guts {
    143      1.1  jtc 	int magic;
    144      1.1  jtc #		define	MAGIC2	((('R'^0200)<<8)|'E')
    145      1.1  jtc 	sop *strip;		/* malloced area for strip */
    146      1.1  jtc 	int csetsize;		/* number of bits in a cset vector */
    147      1.1  jtc 	int ncsets;		/* number of csets in use */
    148      1.1  jtc 	cset *sets;		/* -> cset [ncsets] */
    149  1.1.1.1  cgd 	uch *setbits;		/* -> uch[csetsize][ncsets/CHAR_BIT] */
    150      1.1  jtc 	int cflags;		/* copy of regcomp() cflags argument */
    151      1.1  jtc 	sopno nstates;		/* = number of sops */
    152      1.1  jtc 	sopno firststate;	/* the initial OEND (normally 0) */
    153      1.1  jtc 	sopno laststate;	/* the final OEND */
    154      1.1  jtc 	int iflags;		/* internal flags */
    155      1.1  jtc #		define	USEBOL	01	/* used ^ */
    156      1.1  jtc #		define	USEEOL	02	/* used $ */
    157      1.1  jtc #		define	BAD	04	/* something wrong */
    158      1.1  jtc 	int nbol;		/* number of ^ used */
    159      1.1  jtc 	int neol;		/* number of $ used */
    160      1.1  jtc 	int ncategories;	/* how many character categories */
    161      1.1  jtc 	cat_t *categories;	/* ->catspace[-CHAR_MIN] */
    162      1.1  jtc 	char *must;		/* match must contain this string */
    163      1.1  jtc 	int mlen;		/* length of must */
    164      1.1  jtc 	size_t nsub;		/* copy of re_nsub */
    165      1.1  jtc 	int backrefs;		/* does it use back references? */
    166      1.1  jtc 	sopno nplus;		/* how deep does it nest +s? */
    167      1.1  jtc 	/* catspace must be last */
    168      1.1  jtc 	cat_t catspace[1];	/* actually [NC] */
    169      1.1  jtc };
    170      1.1  jtc 
    171      1.1  jtc /* misc utilities */
    172      1.1  jtc #define	OUT	(CHAR_MAX+1)	/* a non-character value */
    173  1.1.1.1  cgd #define	ISWORD(c)	(isalnum(c) || (c) == '_')
    174