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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: pcre_internal.h,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/29 15:56:04  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.2
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*************************************************
  10. *      Perl-Compatible Regular Expressions       *
  11. *************************************************/
  12. /* This is a library of functions to support regular expressions whose syntax
  13. and semantics are as close as possible to those of the Perl 5 language. See
  14. the file Tech.Notes for some information on the internals.
  15. Written by: Philip Hazel <ph10@cam.ac.uk>
  16.            Copyright (c) 1997-2001 University of Cambridge
  17. -----------------------------------------------------------------------------
  18. Permission is granted to anyone to use this software for any purpose on any
  19. computer system, and to redistribute it freely, subject to the following
  20. restrictions:
  21. 1. This software is distributed in the hope that it will be useful,
  22.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  23.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  24. 2. The origin of this software must not be misrepresented, either by
  25.    explicit claim or by omission.
  26. 3. Altered versions must be plainly marked as such, and must not be
  27.    misrepresented as being the original software.
  28. 4. If PCRE is embedded in any software that is released under the GNU
  29.    General Purpose Licence (GPL), then the terms of that licence shall
  30.    supersede any condition above with which it is incompatible.
  31. -----------------------------------------------------------------------------
  32. */
  33. /* This header contains definitions that are shared between the different
  34. modules, but which are not relevant to the outside. */
  35. #include "pcre_config.h"
  36. /* To cope with SunOS4 and other systems that lack memmove() but have bcopy(),
  37. define a macro for memmove() if HAVE_MEMMOVE is false, provided that HAVE_BCOPY
  38. is set. Otherwise, include an emulating function for those systems that have
  39. neither (there some non-Unix environments where this is the case). This assumes
  40. that all calls to memmove are moving strings upwards in store, which is the
  41. case in PCRE. */
  42. #if ! HAVE_MEMMOVE
  43. #  undef  memmove        /* some systems may have a macro */
  44. #  if HAVE_BCOPY
  45. #    define memmove(a, b, c) bcopy(b, a, c)
  46. #  else
  47. void *
  48. pcre_memmove(unsigned char *dest, const unsigned char *src, size_t n)
  49. {
  50.     int i;
  51.     dest += n;
  52.     src += n;
  53.     for (i = 0; i < n; ++i) *(--dest) =  *(--src);
  54. }
  55. #    define memmove(a, b, c) pcre_memmove(a, b, c)
  56. #  endif
  57. #endif
  58. /* Standard C headers plus the external interface definition */
  59. #include <ctype.h>
  60. #include <limits.h>
  61. #include <stddef.h>
  62. #include <stdio.h>
  63. #include <stdlib.h>
  64. #include <string.h>
  65. #include <util/regexp/pcre.h>
  66. /* In case there is no definition of offsetof() provided - though any proper
  67. Standard C system should have one. */
  68. #ifndef offsetof
  69. #  define offsetof(p_type,field) ((size_t)&(((p_type *)0)->field))
  70. #endif
  71. /* These are the public options that can change during matching. */
  72. #define PCRE_IMS (PCRE_CASELESS|PCRE_MULTILINE|PCRE_DOTALL)
  73. /* Private options flags start at the most significant end of the four bytes,
  74. but skip the top bit so we can use ints for convenience without getting tangled
  75. with negative values. The public options defined in pcre.h start at the least
  76. significant end. Make sure they don't overlap, though now that we have expanded
  77. to four bytes there is plenty of space. */
  78. #define PCRE_FIRSTSET      0x40000000  /* first_char is set */
  79. #define PCRE_REQCHSET      0x20000000  /* req_char is set */
  80. #define PCRE_STARTLINE     0x10000000  /* start after n for multiline */
  81. #define PCRE_INGROUP       0x08000000  /* compiling inside a group */
  82. #define PCRE_ICHANGED      0x04000000  /* i option changes within regex */
  83. /* Options for the "extra" block produced by pcre_study(). */
  84. #define PCRE_STUDY_MAPPED   0x01     /* a map of starting chars exists */
  85. /* Masks for identifying the public options which are permitted at compile
  86. time, run time or study time, respectively. */
  87. #define PUBLIC_OPTIONS 
  88.   (PCRE_CASELESS|PCRE_EXTENDED|PCRE_ANCHORED|PCRE_MULTILINE| 
  89.    PCRE_DOTALL|PCRE_DOLLAR_ENDONLY|PCRE_EXTRA|PCRE_UNGREEDY|PCRE_UTF8)
  90. #define PUBLIC_EXEC_OPTIONS 
  91.   (PCRE_ANCHORED|PCRE_NOTBOL|PCRE_NOTEOL|PCRE_NOTEMPTY)
  92. #define PUBLIC_STUDY_OPTIONS 0   /* None defined */
  93. /* Magic number to provide a small check against being handed junk. */
  94. #define MAGIC_NUMBER  0x50435245UL   /* 'PCRE' */
  95. /* Miscellaneous definitions */
  96. typedef int BOOL;
  97. #define FALSE   0
  98. #define TRUE    1
  99. /* Escape items that are just an encoding of a particular data value. Note that
  100. ESC_N is defined as yet another macro, which is set in config.h to either n
  101. (the default) or r (which some people want). */
  102. #ifndef ESC_E
  103. #  define ESC_E 27
  104. #endif
  105. #ifndef ESC_F
  106. #  define ESC_F 'f'
  107. #endif
  108. #ifndef ESC_N
  109. #  define ESC_N NEWLINE
  110. #endif
  111. #ifndef ESC_R
  112. #  define ESC_R 'r'
  113. #endif
  114. #ifndef ESC_T
  115. #  define ESC_T 't'
  116. #endif
  117. /* These are escaped items that aren't just an encoding of a particular data
  118. value such as n. They must have non-zero values, as check_escape() returns
  119. their negation. Also, they must appear in the same order as in the opcode
  120. definitions below, up to ESC_z. The final one must be ESC_REF as subsequent
  121. values are used for 1, 2, 3, etc. There is a test in the code for an escape
  122. greater than ESC_b and less than ESC_Z to detect the types that may be
  123. repeated. If any new escapes are put in-between that don't consume a character,
  124. that code will have to change. */
  125. enum { ESC_A = 1, ESC_B, ESC_b, ESC_D, ESC_d, ESC_S, ESC_s, ESC_W, ESC_w,
  126.        ESC_Z, ESC_z, ESC_REF };
  127. /* Opcode table: OP_BRA must be last, as all values >= it are used for brackets
  128. that extract substrings. Starting from 1 (i.e. after OP_END), the values up to
  129. OP_EOD must correspond in order to the list of escapes immediately above. */
  130. enum {
  131.     OP_END,            /* End of pattern */
  132.     
  133.     /* Values corresponding to backslashed metacharacters */
  134.     
  135.     OP_SOD,            /* Start of data: A */
  136.     OP_NOT_WORD_BOUNDARY,  /* B */
  137.     OP_WORD_BOUNDARY,  /* b */
  138.     OP_NOT_DIGIT,      /* D */
  139.     OP_DIGIT,          /* d */
  140.     OP_NOT_WHITESPACE, /* S */
  141.     OP_WHITESPACE,     /* s */
  142.     OP_NOT_WORDCHAR,   /* W */
  143.     OP_WORDCHAR,       /* w */
  144.     OP_EODN,           /* End of data or n at end of data: Z. */
  145.     OP_EOD,            /* End of data: z */
  146.     
  147.     OP_OPT,            /* Set runtime options */
  148.     OP_CIRC,           /* Start of line - varies with multiline switch */
  149.     OP_DOLL,           /* End of line - varies with multiline switch */
  150.     OP_ANY,            /* Match any character */
  151.     OP_CHARS,          /* Match string of characters */
  152.     OP_NOT,            /* Match anything but the following char */
  153.     
  154.     OP_STAR,           /* The maximizing and minimizing versions of */
  155.     OP_MINSTAR,        /* all these opcodes must come in pairs, with */
  156.     OP_PLUS,           /* the minimizing one second. */
  157.     OP_MINPLUS,        /* This first set applies to single characters */
  158.     OP_QUERY,
  159.     OP_MINQUERY,
  160.     OP_UPTO,           /* From 0 to n matches */
  161.     OP_MINUPTO,
  162.     OP_EXACT,          /* Exactly n matches */
  163.     OP_NOTSTAR,        /* The maximizing and minimizing versions of */
  164.     OP_NOTMINSTAR,     /* all these opcodes must come in pairs, with */
  165.     OP_NOTPLUS,        /* the minimizing one second. */
  166.     OP_NOTMINPLUS,     /* This first set applies to "not" single characters */
  167.     OP_NOTQUERY,
  168.     OP_NOTMINQUERY,
  169.     OP_NOTUPTO,        /* From 0 to n matches */
  170.     OP_NOTMINUPTO,
  171.     OP_NOTEXACT,       /* Exactly n matches */
  172.     
  173.     OP_TYPESTAR,       /* The maximizing and minimizing versions of */
  174.     OP_TYPEMINSTAR,    /* all these opcodes must come in pairs, with */
  175.     OP_TYPEPLUS,       /* the minimizing one second. These codes must */
  176.     OP_TYPEMINPLUS,    /* be in exactly the same order as those above. */
  177.     OP_TYPEQUERY,      /* This set applies to character types such as d */
  178.     OP_TYPEMINQUERY,
  179.     OP_TYPEUPTO,       /* From 0 to n matches */
  180.     OP_TYPEMINUPTO,
  181.     OP_TYPEEXACT,      /* Exactly n matches */
  182.     
  183.     OP_CRSTAR,         /* The maximizing and minimizing versions of */
  184.     OP_CRMINSTAR,      /* all these opcodes must come in pairs, with */
  185.     OP_CRPLUS,         /* the minimizing one second. These codes must */
  186.     OP_CRMINPLUS,      /* be in exactly the same order as those above. */
  187.     OP_CRQUERY,        /* These are for character classes and back refs */
  188.     OP_CRMINQUERY,
  189.     OP_CRRANGE,        /* These are different to the three seta above. */
  190.     OP_CRMINRANGE,
  191.     
  192.     OP_CLASS,          /* Match a character class */
  193.     OP_REF,            /* Match a back reference */
  194.     OP_RECURSE,        /* Match this pattern recursively */
  195.     
  196.     OP_ALT,            /* Start of alternation */
  197.     OP_KET,            /* End of group that doesn't have an unbounded repeat */
  198.     OP_KETRMAX,        /* These two must remain together and in this */
  199.     OP_KETRMIN,        /* order. They are for groups the repeat for ever. */
  200.     
  201.     /* The assertions must come before ONCE and COND */
  202.     
  203.     OP_ASSERT,         /* Positive lookahead */
  204.     OP_ASSERT_NOT,     /* Negative lookahead */
  205.     OP_ASSERTBACK,     /* Positive lookbehind */
  206.     OP_ASSERTBACK_NOT, /* Negative lookbehind */
  207.     OP_REVERSE,        /* Move pointer back - used in lookbehind assertions */
  208.     
  209.     /* ONCE and COND must come after the assertions, with ONCE first,
  210.     as there's a test for >= ONCE for a subpattern that isn't an assertion. */
  211.     
  212.     OP_ONCE,           /* Once matched, don't back up into the subpattern */
  213.     OP_COND,           /* Conditional group */
  214.     OP_CREF,           /* Used to hold an extraction string number (cond ref)*/
  215.     
  216.     OP_BRAZERO,        /* These two must remain together and in this */
  217.     OP_BRAMINZERO,     /* order. */
  218.     
  219.     OP_BRANUMBER,      /* Used for extracting brackets whose number is greater
  220.                           than can fit into an opcode. */
  221.     
  222.     OP_BRA             /* This and greater values are used for brackets that
  223.                           extract substrings up to a basic limit. After that,
  224.                           use is made of OP_BRANUMBER. */
  225. };
  226. /* The highest extraction number before we have to start using additional
  227. bytes. (Originally PCRE didn't have support for extraction counts highter than
  228. this number.) The value is limited by the number of opcodes left after OP_BRA,
  229. i.e. 255 - OP_BRA. We actually set it a bit lower to leave room for additional
  230. opcodes. */
  231. #define EXTRACT_BASIC_MAX  150
  232. /* The texts of compile-time error messages are defined as macros here so that
  233. they can be accessed by the POSIX wrapper and converted into error codes.  Yes,
  234. I could have used error codes in the first place, but didn't feel like changing
  235. just to accommodate the POSIX wrapper. */
  236. #define ERR1  "\ at end of pattern"
  237. #define ERR2  "\c at end of pattern"
  238. #define ERR3  "unrecognized character follows \"
  239. #define ERR4  "numbers out of order in {} quantifier"
  240. #define ERR5  "number too big in {} quantifier"
  241. #define ERR6  "missing terminating ] for character class"
  242. #define ERR7  "invalid escape sequence in character class"
  243. #define ERR8  "range out of order in character class"
  244. #define ERR9  "nothing to repeat"
  245. #define ERR10 "operand of unlimited repeat could match the empty string"
  246. #define ERR11 "internal error: unexpected repeat"
  247. #define ERR12 "unrecognized character after (?"
  248. #define ERR13 "unused error"
  249. #define ERR14 "missing )"
  250. #define ERR15 "back reference to non-existent subpattern"
  251. #define ERR16 "erroffset passed as NULL"
  252. #define ERR17 "unknown option bit(s) set"
  253. #define ERR18 "missing ) after comment"
  254. #define ERR19 "parentheses nested too deeply"
  255. #define ERR20 "regular expression too large"
  256. #define ERR21 "failed to get memory"
  257. #define ERR22 "unmatched parentheses"
  258. #define ERR23 "internal error: code overflow"
  259. #define ERR24 "unrecognized character after (?<"
  260. #define ERR25 "lookbehind assertion is not fixed length"
  261. #define ERR26 "malformed number after (?("
  262. #define ERR27 "conditional group contains more than two branches"
  263. #define ERR28 "assertion expected after (?("
  264. #define ERR29 "(?p must be followed by )"
  265. #define ERR30 "unknown POSIX class name"
  266. #define ERR31 "POSIX collating elements are not supported"
  267. #define ERR32 "this version of PCRE is not compiled with PCRE_UTF8 support"
  268. #define ERR33 "characters with values > 255 are not yet supported in classes"
  269. #define ERR34 "character value in \x{...} sequence is too large"
  270. #define ERR35 "invalid condition (?(0)"
  271. /* All character handling must be done as unsigned characters. Otherwise there
  272. are problems with top-bit-set characters and functions such as isspace().
  273. However, we leave the interface to the outside world as char *, because that
  274. should make things easier for callers. We define a short type for unsigned char
  275. to save lots of typing. I tried "uchar", but it causes problems on Digital
  276. Unix, where it is defined in sys/types, so use "uschar" instead. */
  277. typedef unsigned char uschar;
  278. /* The real format of the start of the pcre block; the actual code vector
  279. runs on as long as necessary after the end. */
  280. typedef struct real_pcre {
  281.     unsigned long int magic_number;
  282.     size_t size;
  283.     const unsigned char *tables;
  284.     unsigned long int options;
  285.     unsigned short int top_bracket;
  286.     unsigned short int top_backref;
  287.     uschar first_char;
  288.     uschar req_char;
  289.     uschar code[1];
  290. } real_pcre;
  291. /* The real format of the extra block returned by pcre_study(). */
  292. typedef struct real_pcre_extra {
  293.     uschar options;
  294.     uschar start_bits[32];
  295. } real_pcre_extra;
  296. /* Structure for passing "static" information around between the functions
  297.    doing the compiling, so that they are thread-safe. */
  298. typedef struct compile_data {
  299.     const uschar *lcc;            /* Points to lower casing table */
  300.     const uschar *fcc;            /* Points to case-flipping table */
  301.     const uschar *cbits;          /* Points to character type table */
  302.     const uschar *ctypes;         /* Points to table of type maps */
  303. } compile_data;
  304. /* Structure for passing "static" information around between the functions
  305.    doing the matching, so that they are thread-safe. */
  306. typedef struct match_data {
  307.     int    errorcode;             /* As it says */
  308.     int   *offset_vector;         /* Offset vector */
  309.     int    offset_end;            /* One past the end */
  310.     int    offset_max;            /* The maximum usable for return data */
  311.     const uschar *lcc;            /* Points to lower casing table */
  312.     const uschar *ctypes;         /* Points to table of type maps */
  313.     BOOL   offset_overflow;       /* Set if too many extractions */
  314.     BOOL   notbol;                /* NOTBOL flag */
  315.     BOOL   noteol;                /* NOTEOL flag */
  316.     BOOL   utf8;                  /* UTF8 flag */
  317.     BOOL   endonly;               /* Dollar not before final n */
  318.     BOOL   notempty;              /* Empty string match not wanted */
  319.     const uschar *start_pattern;  /* For use when recursing */
  320.     const uschar *start_subject;  /* Start of the subject string */
  321.     const uschar *end_subject;    /* End of the subject string */
  322.     const uschar *start_match;    /* Start of this match attempt */
  323.     const uschar *end_match_ptr;  /* Subject position at end match */
  324.     int    end_offset_top;        /* Highwater mark at end of match */
  325. } match_data;
  326. /* Bit definitions for entries in the pcre_ctypes table. */
  327. #define ctype_space   0x01
  328. #define ctype_letter  0x02
  329. #define ctype_digit   0x04
  330. #define ctype_xdigit  0x08
  331. #define ctype_word    0x10   /* alphameric or '_' */
  332. #define ctype_meta    0x80   /* regexp meta char or zero (end pattern) */
  333. /* Offsets for the bitmap tables in pcre_cbits. Each table contains a set
  334.  of bits for a class map. Some classes are built by combining these tables. */
  335. #define cbit_space     0      /* [:space:] or s */
  336. #define cbit_xdigit   32      /* [:xdigit:] */
  337. #define cbit_digit    64      /* [:digit:] or d */
  338. #define cbit_upper    96      /* [:upper:] */
  339. #define cbit_lower   128      /* [:lower:] */
  340. #define cbit_word    160      /* [:word:] or w */
  341. #define cbit_graph   192      /* [:graph:] */
  342. #define cbit_print   224      /* [:print:] */
  343. #define cbit_punct   256      /* [:punct:] */
  344. #define cbit_cntrl   288      /* [:cntrl:] */
  345. #define cbit_length  320      /* Length of the cbits table */
  346. /* Offsets of the various tables from the base tables pointer, and
  347.    total length. */
  348. #define lcc_offset      0
  349. #define fcc_offset    256
  350. #define cbits_offset  512
  351. #define ctypes_offset (cbits_offset + cbit_length)
  352. #define tables_length (ctypes_offset + 256)
  353. /* End of internal.h */