regex2.h
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:8k
源码类别:

数据库系统

开发平台:

Unix_Linux

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