regexec.c
上传用户:weiyuanprp
上传日期:2020-05-20
资源大小:1169k
文件大小:6k
源码类别:

传真(Fax)编程

开发平台:

C/C++

  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.  * @(#)regexec.c 8.3 (Berkeley) 3/20/94
  38.  */
  39. #if defined(LIBC_SCCS) && !defined(lint)
  40. static char sccsid[] = "@(#)regexec.c 8.3 (Berkeley) 3/20/94";
  41. #endif /* LIBC_SCCS and not lint */
  42. /*
  43.  * the outer shell of regexec()
  44.  *
  45.  * This file includes engine.c *twice*, after muchos fiddling with the
  46.  * macros that code uses.  This lets the same code operate on two different
  47.  * representations for state sets.
  48.  */
  49. #include <sys/types.h>
  50. #include <stdio.h>
  51. #include <stdlib.h>
  52. #include <string.h>
  53. #include <limits.h>
  54. #include <ctype.h>
  55. #include <regex.h>
  56. #include "utils.h"
  57. #include "regex2.h"
  58. #ifndef NDEBUG
  59. static int nope = 0; /* for use in asserts; shuts lint up */
  60. #endif
  61. /* macros for manipulating states, small version */
  62. #define states long
  63. #define states1 states /* for later use in regexec() decision */
  64. #define CLEAR(v) ((v) = 0)
  65. #define SET0(v, n) ((v) &= ~(1 << (n)))
  66. #define SET1(v, n) ((v) |= 1 << (n))
  67. #define ISSET(v, n) ((v) & (1 << (n)))
  68. #define ASSIGN(d, s) ((d) = (s))
  69. #define EQ(a, b) ((a) == (b))
  70. #define STATEVARS int dummy /* dummy version */
  71. #define STATESETUP(m, n) /* nothing */
  72. #define STATETEARDOWN(m) /* nothing */
  73. #define SETUP(v) ((v) = 0)
  74. #define onestate int
  75. #define INIT(o, n) ((o) = (unsigned)1 << (n))
  76. #define INC(o) ((o) <<= 1)
  77. #define ISSTATEIN(v, o) ((v) & (o))
  78. /* some abbreviations; note that some of these know variable names! */
  79. /* do "if I'm here, I can also be there" etc without branches */
  80. #define FWD(dst, src, n) ((dst) |= ((unsigned)(src)&(here)) << (n))
  81. #define BACK(dst, src, n) ((dst) |= ((unsigned)(src)&(here)) >> (n))
  82. #define ISSETBACK(v, n) ((v) & ((unsigned)here >> (n)))
  83. /* function names */
  84. #define SNAMES /* engine.c looks after details */
  85. #include "engine.c"
  86. /* now undo things */
  87. #undef states
  88. #undef CLEAR
  89. #undef SET0
  90. #undef SET1
  91. #undef ISSET
  92. #undef ASSIGN
  93. #undef EQ
  94. #undef STATEVARS
  95. #undef STATESETUP
  96. #undef STATETEARDOWN
  97. #undef SETUP
  98. #undef onestate
  99. #undef INIT
  100. #undef INC
  101. #undef ISSTATEIN
  102. #undef FWD
  103. #undef BACK
  104. #undef ISSETBACK
  105. #undef SNAMES
  106. /* macros for manipulating states, large version */
  107. #define states char *
  108. #define CLEAR(v) memset(v, 0, m->g->nstates)
  109. #define SET0(v, n) ((v)[n] = 0)
  110. #define SET1(v, n) ((v)[n] = 1)
  111. #define ISSET(v, n) ((v)[n])
  112. #define ASSIGN(d, s) memcpy(d, s, m->g->nstates)
  113. #define EQ(a, b) (memcmp(a, b, m->g->nstates) == 0)
  114. #define STATEVARS int vn; char *space
  115. #define STATESETUP(m, nv) { (m)->space = malloc((nv)*(m)->g->nstates); 
  116. if ((m)->space == NULL) return(REG_ESPACE); 
  117. (m)->vn = 0; }
  118. #define STATETEARDOWN(m) { free((m)->space); }
  119. #define SETUP(v) ((v) = &m->space[m->vn++ * m->g->nstates])
  120. #define onestate int
  121. #define INIT(o, n) ((o) = (n))
  122. #define INC(o) ((o)++)
  123. #define ISSTATEIN(v, o) ((v)[o])
  124. /* some abbreviations; note that some of these know variable names! */
  125. /* do "if I'm here, I can also be there" etc without branches */
  126. #define FWD(dst, src, n) ((dst)[here+(n)] |= (src)[here])
  127. #define BACK(dst, src, n) ((dst)[here-(n)] |= (src)[here])
  128. #define ISSETBACK(v, n) ((v)[here - (n)])
  129. /* function names */
  130. #define LNAMES /* flag */
  131. #include "engine.c"
  132. /*
  133.  - regexec - interface for matching
  134.  = extern int regexec(const regex_t *, const char *, size_t, 
  135.  = regmatch_t [], int);
  136.  = #define REG_NOTBOL 00001
  137.  = #define REG_NOTEOL 00002
  138.  = #define REG_STARTEND 00004
  139.  = #define REG_TRACE 00400 // tracing of execution
  140.  = #define REG_LARGE 01000 // force large representation
  141.  = #define REG_BACKR 02000 // force use of backref code
  142.  *
  143.  * We put this here so we can exploit knowledge of the state representation
  144.  * when choosing which matcher to call.  Also, by this point the matchers
  145.  * have been prototyped.
  146.  */
  147. int /* 0 success, REG_NOMATCH failure */
  148. regexec(preg, string, nmatch, pmatch, eflags)
  149. const regex_t *preg;
  150. const char *string;
  151. size_t nmatch;
  152. regmatch_t pmatch[];
  153. int eflags;
  154. {
  155. register struct re_guts *g = preg->re_g;
  156. #ifdef REDEBUG
  157. # define GOODFLAGS(f) (f)
  158. #else
  159. # define GOODFLAGS(f) ((f)&(REG_NOTBOL|REG_NOTEOL|REG_STARTEND))
  160. #endif
  161. if (preg->re_magic != MAGIC1 || g->magic != MAGIC2)
  162. return(REG_BADPAT);
  163. assert(!(g->iflags&BAD));
  164. if (g->iflags&BAD) /* backstop for no-debug case */
  165. return(REG_BADPAT);
  166. eflags = GOODFLAGS(eflags);
  167. if (g->nstates <= CHAR_BIT*sizeof(states1) && !(eflags&REG_LARGE))
  168. return(smatcher(g, (char *)string, nmatch, pmatch, eflags));
  169. else
  170. return(lmatcher(g, (char *)string, nmatch, pmatch, eflags));
  171. }