regexec.c
上传用户:nvosite88
上传日期:2007-01-17
资源大小:4983k
文件大小:7k
源码类别:

VxWorks

开发平台:

C/C++

  1. /* regexec.c - regular expression handling */
  2. /*
  3. modification history
  4. --------------------
  5. 01e,13apr98,wmd  rename regexec to wtxRegExec for hosts.
  6. 01f,23mar98,fle  warnings eradication
  7. 01e,02mar98,pcn  Removed warnings.
  8. 01d,30sep96,elp  put in share, adapted to be compiled on target side
  9.  (SPR# 6775).
  10. 01c,10jul96,pad   undefined redefinition of malloc (AIX specific).
  11. 01b,20mar95,p_m   moved #include "host.h" on top of includes list, this is
  12.   necessary on Windows platforms.       
  13.                   changed #include <regex.h> to #include "regex.h".
  14. 01a,10jan95,jcf   created.
  15. */
  16. /*
  17. DESCRIPTION
  18. This library is *not* the original BSD distribution.  Though the changes
  19. were completely cosmetic (file naming, and such), the user of this library
  20. is forewarned.
  21. AUTHOR: Henry Spencer
  22. */
  23. /*-
  24.  * Copyright (c) 1992, 1993, 1994 Henry Spencer.
  25.  * Copyright (c) 1992, 1993, 1994
  26.  * The Regents of the University of California.  All rights reserved.
  27.  *
  28.  * This code is derived from software contributed to Berkeley by
  29.  * Henry Spencer.
  30.  *
  31.  * Redistribution and use in source and binary forms, with or without
  32.  * modification, are permitted provided that the following conditions
  33.  * are met:
  34.  * 1. Redistributions of source code must retain the above copyright
  35.  *    notice, this list of conditions and the following disclaimer.
  36.  * 2. Redistributions in binary form must reproduce the above copyright
  37.  *    notice, this list of conditions and the following disclaimer in the
  38.  *    documentation and/or other materials provided with the distribution.
  39.  * 3. All advertising materials mentioning features or use of this software
  40.  *    must display the following acknowledgement:
  41.  * This product includes software developed by the University of
  42.  * California, Berkeley and its contributors.
  43.  * 4. Neither the name of the University nor the names of its contributors
  44.  *    may be used to endorse or promote products derived from this software
  45.  *    without specific prior written permission.
  46.  *
  47.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  48.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  49.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  50.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  51.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  52.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  53.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  54.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  55.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  56.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  57.  * SUCH DAMAGE.
  58.  *
  59.  * @(#)regexec.c 8.3 (Berkeley) 3/20/94
  60.  */
  61. #if defined(LIBC_SCCS) && !defined(lint)
  62. static char sccsid[] = "@(#)regexec.c 8.3 (Berkeley) 3/20/94";
  63. #endif /* LIBC_SCCS and not lint */
  64. /*
  65.  * the outer shell of regexec()
  66.  *
  67.  * This file includes regcore.c *twice*, after muchos fiddling with the
  68.  * macros that code uses.  This lets the same code operate on two different
  69.  * representations for state sets.
  70.  */
  71. #ifdef HOST
  72. #include "host.h"
  73. #if defined(RS6000_AIX4) || defined (RS6000_AIX3)
  74. #undef malloc
  75. #endif
  76. #include <sys/types.h>
  77. #include <stdio.h>
  78. #include <stdlib.h>
  79. #include <string.h>
  80. #include <limits.h>
  81. #include <ctype.h>
  82. #else
  83. #include "vxWorks.h"
  84. #include "stdio.h"
  85. #include "string.h"
  86. #include "ctype.h"
  87. #include "limits.h"
  88. #include "stdlib.h"
  89. #endif /* HOST */
  90. #include "regex.h"
  91. #include "regex2.h"
  92. static int nope = 0; /* for use in asserts; shuts lint up */
  93. /* macros for manipulating states, small version */
  94. #define states long
  95. #define states1 states /* for later use in regexec() decision */
  96. #define CLEAR(v) ((v) = 0)
  97. #define SET0(v, n) ((v) &= ~(1 << (n)))
  98. #define SET1(v, n) ((v) |= 1 << (n))
  99. #define ISSET(v, n) ((v) & (1 << (n)))
  100. #define ASSIGN(d, s) ((d) = (s))
  101. #define EQ(a, b) ((a) == (b))
  102. #define STATEVARS int dummy /* dummy version */
  103. #define STATESETUP(m, n) /* nothing */
  104. #define STATETEARDOWN(m) /* nothing */
  105. #define SETUP(v) ((v) = 0)
  106. #define onestate int
  107. #define INIT(o, n) ((o) = (unsigned)1 << (n))
  108. #define INC(o) ((o) <<= 1)
  109. #define ISSTATEIN(v, o) ((v) & (o))
  110. /* some abbreviations; note that some of these know variable names! */
  111. /* do "if I'm here, I can also be there" etc without branches */
  112. #define FWD(dst, src, n) ((dst) |= ((unsigned)(src)&(here)) << (n))
  113. #define BACK(dst, src, n) ((dst) |= ((unsigned)(src)&(here)) >> (n))
  114. #define ISSETBACK(v, n) ((v) & ((unsigned)here >> (n)))
  115. /* function names */
  116. #define SNAMES /* regcore.c looks after details */
  117. #include "regcore.c"
  118. /* now undo things */
  119. #undef states
  120. #undef CLEAR
  121. #undef SET0
  122. #undef SET1
  123. #undef ISSET
  124. #undef ASSIGN
  125. #undef EQ
  126. #undef STATEVARS
  127. #undef STATESETUP
  128. #undef STATETEARDOWN
  129. #undef SETUP
  130. #undef onestate
  131. #undef INIT
  132. #undef INC
  133. #undef ISSTATEIN
  134. #undef FWD
  135. #undef BACK
  136. #undef ISSETBACK
  137. #undef SNAMES
  138. /* macros for manipulating states, large version */
  139. #define states char *
  140. #define CLEAR(v) memset(v, 0, m->g->nstates)
  141. #define SET0(v, n) ((v)[n] = 0)
  142. #define SET1(v, n) ((v)[n] = 1)
  143. #define ISSET(v, n) ((v)[n])
  144. #define ASSIGN(d, s) memcpy(d, s, m->g->nstates)
  145. #define EQ(a, b) (memcmp(a, b, m->g->nstates) == 0)
  146. #define STATEVARS int vn; char *space
  147. #define STATESETUP(m, nv) { (m)->space = malloc((nv)*(m)->g->nstates); 
  148. if ((m)->space == NULL) return(REG_ESPACE); 
  149. (m)->vn = 0; }
  150. #define STATETEARDOWN(m) { free((m)->space); }
  151. #define SETUP(v) ((v) = &m->space[m->vn++ * m->g->nstates])
  152. #define onestate int
  153. #define INIT(o, n) ((o) = (n))
  154. #define INC(o) ((o)++)
  155. #define ISSTATEIN(v, o) ((v)[o])
  156. /* some abbreviations; note that some of these know variable names! */
  157. /* do "if I'm here, I can also be there" etc without branches */
  158. #define FWD(dst, src, n) ((dst)[here+(n)] |= (src)[here])
  159. #define BACK(dst, src, n) ((dst)[here-(n)] |= (src)[here])
  160. #define ISSETBACK(v, n) ((v)[here - (n)])
  161. /* function names */
  162. #define LNAMES /* flag */
  163. #include "regcore.c"
  164. /*
  165.  - regexec - interface for matching
  166.  = extern int regexec(const regex_t *, const char *, size_t, 
  167.  = regmatch_t [], int);
  168.  = #define REG_NOTBOL 00001
  169.  = #define REG_NOTEOL 00002
  170.  = #define REG_STARTEND 00004
  171.  = #define REG_TRACE 00400 // tracing of execution
  172.  = #define REG_LARGE 01000 // force large representation
  173.  = #define REG_BACKR 02000 // force use of backref code
  174.  *
  175.  * We put this here so we can exploit knowledge of the state representation
  176.  * when choosing which matcher to call.  Also, by this point the matchers
  177.  * have been prototyped.
  178.  */
  179. int /* 0 success, REG_NOMATCH failure */
  180. #ifdef HOST
  181. wtxRegExec(preg, string, nmatch, pmatch, eflags)
  182. #else
  183. regexec(preg, string, nmatch, pmatch, eflags)
  184. #endif
  185. const regex_t *preg;
  186. const char *string;
  187. size_t nmatch;
  188. regmatch_t pmatch[];
  189. int eflags;
  190. {
  191. register struct re_guts *g = preg->re_g;
  192. #ifdef REDEBUG
  193. # define GOODFLAGS(f) (f)
  194. #else
  195. # define GOODFLAGS(f) ((f)&(REG_NOTBOL|REG_NOTEOL|REG_STARTEND))
  196. #endif
  197. nope = 0; /* XXX jcf: remove warning */
  198. if (preg->re_magic != MAGIC1 || g->magic != MAGIC2)
  199. return(REG_BADPAT);
  200. assert(!(g->iflags&BAD));
  201. if (g->iflags&BAD) /* backstop for no-debug case */
  202. return(REG_BADPAT);
  203. eflags = GOODFLAGS(eflags);
  204. if ( (int) g->nstates <= (int) (CHAR_BIT*sizeof (states1)) &&
  205.     ! (eflags&REG_LARGE))
  206. return(smatcher(g, (char *)string, nmatch, pmatch, eflags));
  207. else
  208. return(lmatcher(g, (char *)string, nmatch, pmatch, eflags));
  209. }