study.c
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:11k
源码类别:

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: study.c,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/29 15:56:20  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.1
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*************************************************
  10. *      Perl-Compatible Regular Expressions       *
  11. *************************************************/
  12. /*
  13. This is a library of functions to support regular expressions whose syntax
  14. and semantics are as close as possible to those of the Perl 5 language. See
  15. the file Tech.Notes for some information on the internals.
  16. Written by: Philip Hazel <ph10@cam.ac.uk>
  17.            Copyright (c) 1997-2001 University of Cambridge
  18. -----------------------------------------------------------------------------
  19. Permission is granted to anyone to use this software for any purpose on any
  20. computer system, and to redistribute it freely, subject to the following
  21. restrictions:
  22. 1. This software is distributed in the hope that it will be useful,
  23.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  24.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  25. 2. The origin of this software must not be misrepresented, either by
  26.    explicit claim or by omission.
  27. 3. Altered versions must be plainly marked as such, and must not be
  28.    misrepresented as being the original software.
  29. 4. If PCRE is embedded in any software that is released under the GNU
  30.    General Purpose Licence (GPL), then the terms of that licence shall
  31.    supersede any condition above with which it is incompatible.
  32. -----------------------------------------------------------------------------
  33. */
  34. /* Include the internals header, which itself includes Standard C headers plus
  35. the external pcre header. */
  36. #include "pcre_internal.h"
  37. /*************************************************
  38. *      Set a bit and maybe its alternate case    *
  39. *************************************************/
  40. /* Given a character, set its bit in the table, and also the bit for the other
  41. version of a letter if we are caseless.
  42. Arguments:
  43.   start_bits    points to the bit map
  44.   c             is the character
  45.   caseless      the caseless flag
  46.   cd            the block with char table pointers
  47. Returns:        nothing
  48. */
  49. static void
  50. set_bit(uschar *start_bits, int c, BOOL caseless, compile_data *cd)
  51. {
  52. start_bits[c/8] |= (1 << (c&7));
  53. if (caseless && (cd->ctypes[c] & ctype_letter) != 0)
  54.   start_bits[cd->fcc[c]/8] |= (1 << (cd->fcc[c]&7));
  55. }
  56. /*************************************************
  57. *          Create bitmap of starting chars       *
  58. *************************************************/
  59. /* This function scans a compiled unanchored expression and attempts to build a
  60. bitmap of the set of initial characters. If it can't, it returns FALSE. As time
  61. goes by, we may be able to get more clever at doing this.
  62. Arguments:
  63.   code         points to an expression
  64.   start_bits   points to a 32-byte table, initialized to 0
  65.   caseless     the current state of the caseless flag
  66.   cd           the block with char table pointers
  67. Returns:       TRUE if table built, FALSE otherwise
  68. */
  69. static BOOL
  70. set_start_bits(const uschar *code, uschar *start_bits, BOOL caseless,
  71.   compile_data *cd)
  72. {
  73. register int c;
  74. /* This next statement and the later reference to dummy are here in order to
  75. trick the optimizer of the IBM C compiler for OS/2 into generating correct
  76. code. Apparently IBM isn't going to fix the problem, and we would rather not
  77. disable optimization (in this module it actually makes a big difference, and
  78. the pcre module can use all the optimization it can get). */
  79. volatile int dummy;
  80. do
  81.   {
  82.   const uschar *tcode = code + 3;
  83.   BOOL try_next = TRUE;
  84.   while (try_next)
  85.     {
  86.     /* If a branch starts with a bracket or a positive lookahead assertion,
  87.     recurse to set bits from within them. That's all for this branch. */
  88.     if ((int)*tcode >= OP_BRA || *tcode == OP_ASSERT)
  89.       {
  90.       if (!set_start_bits(tcode, start_bits, caseless, cd))
  91.         return FALSE;
  92.       try_next = FALSE;
  93.       }
  94.     else switch(*tcode)
  95.       {
  96.       default:
  97.       return FALSE;
  98.       /* Skip over extended extraction bracket number */
  99.       case OP_BRANUMBER:
  100.       tcode += 3;
  101.       break;
  102.       /* Skip over lookbehind and negative lookahead assertions */
  103.       case OP_ASSERT_NOT:
  104.       case OP_ASSERTBACK:
  105.       case OP_ASSERTBACK_NOT:
  106.       do tcode += (tcode[1] << 8) + tcode[2]; while (*tcode == OP_ALT);
  107.       tcode += 3;
  108.       break;
  109.       /* Skip over an option setting, changing the caseless flag */
  110.       case OP_OPT:
  111.       caseless = (tcode[1] & PCRE_CASELESS) != 0;
  112.       tcode += 2;
  113.       break;
  114.       /* BRAZERO does the bracket, but carries on. */
  115.       case OP_BRAZERO:
  116.       case OP_BRAMINZERO:
  117.       if (!set_start_bits(++tcode, start_bits, caseless, cd))
  118.         return FALSE;
  119.       dummy = 1;
  120.       do tcode += (tcode[1] << 8) + tcode[2]; while (*tcode == OP_ALT);
  121.       tcode += 3;
  122.       break;
  123.       /* Single-char * or ? sets the bit and tries the next item */
  124.       case OP_STAR:
  125.       case OP_MINSTAR:
  126.       case OP_QUERY:
  127.       case OP_MINQUERY:
  128.       set_bit(start_bits, tcode[1], caseless, cd);
  129.       tcode += 2;
  130.       break;
  131.       /* Single-char upto sets the bit and tries the next */
  132.       case OP_UPTO:
  133.       case OP_MINUPTO:
  134.       set_bit(start_bits, tcode[3], caseless, cd);
  135.       tcode += 4;
  136.       break;
  137.       /* At least one single char sets the bit and stops */
  138.       case OP_EXACT:       /* Fall through */
  139.       tcode++;
  140.       case OP_CHARS:       /* Fall through */
  141.       tcode++;
  142.       case OP_PLUS:
  143.       case OP_MINPLUS:
  144.       set_bit(start_bits, tcode[1], caseless, cd);
  145.       try_next = FALSE;
  146.       break;
  147.       /* Single character type sets the bits and stops */
  148.       case OP_NOT_DIGIT:
  149.       for (c = 0; c < 32; c++)
  150.         start_bits[c] |= ~cd->cbits[c+cbit_digit];
  151.       try_next = FALSE;
  152.       break;
  153.       case OP_DIGIT:
  154.       for (c = 0; c < 32; c++)
  155.         start_bits[c] |= cd->cbits[c+cbit_digit];
  156.       try_next = FALSE;
  157.       break;
  158.       case OP_NOT_WHITESPACE:
  159.       for (c = 0; c < 32; c++)
  160.         start_bits[c] |= ~cd->cbits[c+cbit_space];
  161.       try_next = FALSE;
  162.       break;
  163.       case OP_WHITESPACE:
  164.       for (c = 0; c < 32; c++)
  165.         start_bits[c] |= cd->cbits[c+cbit_space];
  166.       try_next = FALSE;
  167.       break;
  168.       case OP_NOT_WORDCHAR:
  169.       for (c = 0; c < 32; c++)
  170.         start_bits[c] |= ~cd->cbits[c+cbit_word];
  171.       try_next = FALSE;
  172.       break;
  173.       case OP_WORDCHAR:
  174.       for (c = 0; c < 32; c++)
  175.         start_bits[c] |= cd->cbits[c+cbit_word];
  176.       try_next = FALSE;
  177.       break;
  178.       /* One or more character type fudges the pointer and restarts, knowing
  179.       it will hit a single character type and stop there. */
  180.       case OP_TYPEPLUS:
  181.       case OP_TYPEMINPLUS:
  182.       tcode++;
  183.       break;
  184.       case OP_TYPEEXACT:
  185.       tcode += 3;
  186.       break;
  187.       /* Zero or more repeats of character types set the bits and then
  188.       try again. */
  189.       case OP_TYPEUPTO:
  190.       case OP_TYPEMINUPTO:
  191.       tcode += 2;               /* Fall through */
  192.       case OP_TYPESTAR:
  193.       case OP_TYPEMINSTAR:
  194.       case OP_TYPEQUERY:
  195.       case OP_TYPEMINQUERY:
  196.       switch(tcode[1])
  197.         {
  198.         case OP_NOT_DIGIT:
  199.         for (c = 0; c < 32; c++)
  200.           start_bits[c] |= ~cd->cbits[c+cbit_digit];
  201.         break;
  202.         case OP_DIGIT:
  203.         for (c = 0; c < 32; c++)
  204.           start_bits[c] |= cd->cbits[c+cbit_digit];
  205.         break;
  206.         case OP_NOT_WHITESPACE:
  207.         for (c = 0; c < 32; c++)
  208.           start_bits[c] |= ~cd->cbits[c+cbit_space];
  209.         break;
  210.         case OP_WHITESPACE:
  211.         for (c = 0; c < 32; c++)
  212.           start_bits[c] |= cd->cbits[c+cbit_space];
  213.         break;
  214.         case OP_NOT_WORDCHAR:
  215.         for (c = 0; c < 32; c++)
  216.           start_bits[c] |= ~cd->cbits[c+cbit_word];
  217.         break;
  218.         case OP_WORDCHAR:
  219.         for (c = 0; c < 32; c++)
  220.           start_bits[c] |= cd->cbits[c+cbit_word];
  221.         break;
  222.         }
  223.       tcode += 2;
  224.       break;
  225.       /* Character class: set the bits and either carry on or not,
  226.       according to the repeat count. */
  227.       case OP_CLASS:
  228.         {
  229.         tcode++;
  230.         for (c = 0; c < 32; c++) start_bits[c] |= tcode[c];
  231.         tcode += 32;
  232.         switch (*tcode)
  233.           {
  234.           case OP_CRSTAR:
  235.           case OP_CRMINSTAR:
  236.           case OP_CRQUERY:
  237.           case OP_CRMINQUERY:
  238.           tcode++;
  239.           break;
  240.           case OP_CRRANGE:
  241.           case OP_CRMINRANGE:
  242.           if (((tcode[1] << 8) + tcode[2]) == 0) tcode += 5;
  243.             else try_next = FALSE;
  244.           break;
  245.           default:
  246.           try_next = FALSE;
  247.           break;
  248.           }
  249.         }
  250.       break; /* End of class handling */
  251.       }      /* End of switch */
  252.     }        /* End of try_next loop */
  253.   code += (code[1] << 8) + code[2];   /* Advance to next branch */
  254.   }
  255. while (*code == OP_ALT);
  256. return TRUE;
  257. }
  258. /*************************************************
  259. *          Study a compiled expression           *
  260. *************************************************/
  261. /* This function is handed a compiled expression that it must study to produce
  262. information that will speed up the matching. It returns a pcre_extra block
  263. which then gets handed back to pcre_exec().
  264. Arguments:
  265.   re        points to the compiled expression
  266.   options   contains option bits
  267.   errorptr  points to where to place error messages;
  268.             set NULL unless error
  269. Returns:    pointer to a pcre_extra block,
  270.             NULL on error or if no optimization possible
  271. */
  272. pcre_extra *
  273. pcre_study(const pcre *external_re, int options, const char **errorptr)
  274. {
  275. uschar start_bits[32];
  276. real_pcre_extra *extra;
  277. const real_pcre *re = (const real_pcre *)external_re;
  278. compile_data compile_block;
  279. *errorptr = NULL;
  280. if (re == NULL || re->magic_number != MAGIC_NUMBER)
  281.   {
  282.   *errorptr = "argument is not a compiled regular expression";
  283.   return NULL;
  284.   }
  285. if ((options & ~PUBLIC_STUDY_OPTIONS) != 0)
  286.   {
  287.   *errorptr = "unknown or incorrect option bit(s) set";
  288.   return NULL;
  289.   }
  290. /* For an anchored pattern, or an unchored pattern that has a first char, or a
  291. multiline pattern that matches only at "line starts", no further processing at
  292. present. */
  293. if ((re->options & (PCRE_ANCHORED|PCRE_FIRSTSET|PCRE_STARTLINE)) != 0)
  294.   return NULL;
  295. /* Set the character tables in the block which is passed around */
  296. compile_block.lcc = re->tables + lcc_offset;
  297. compile_block.fcc = re->tables + fcc_offset;
  298. compile_block.cbits = re->tables + cbits_offset;
  299. compile_block.ctypes = re->tables + ctypes_offset;
  300. /* See if we can find a fixed set of initial characters for the pattern. */
  301. memset(start_bits, 0, 32 * sizeof(uschar));
  302. if (!set_start_bits(re->code, start_bits, (re->options & PCRE_CASELESS) != 0,
  303.   &compile_block)) return NULL;
  304. /* Get an "extra" block and put the information therein. */
  305. extra = (real_pcre_extra *)(pcre_malloc)(sizeof(real_pcre_extra));
  306. if (extra == NULL)
  307.   {
  308.   *errorptr = "failed to get memory";
  309.   return NULL;
  310.   }
  311. extra->options = PCRE_STUDY_MAPPED;
  312. memcpy(extra->start_bits, start_bits, sizeof(start_bits));
  313. return (pcre_extra *)extra;
  314. }
  315. /* End of study.c */