gnu_regex.h
上传用户:qunlip
上传日期:2007-01-04
资源大小:203k
文件大小:18k
源码类别:

代理服务器

开发平台:

Visual C++

  1. /* Definitions for data structures and routines for the regular
  2.    expression library, version 0.12.
  3.    Copyright (C) 1985, 1989, 1990, 1991, 1992, 1993 Free Software Foundation, Inc.
  4.    This program is free software; you can redistribute it and/or modify
  5.    it under the terms of the GNU General Public License as published by
  6.    the Free Software Foundation; either version 2, or (at your option)
  7.    any later version.
  8.    This program is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11.    GNU General Public License for more details.
  12.    You should have received a copy of the GNU General Public License
  13.    along with this program; if not, write to the Free Software
  14.    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  15. #ifndef __REGEXP_LIBRARY_H__
  16. #define __REGEXP_LIBRARY_H__
  17. /* POSIX says that <sys/types.h> must be included (by the caller) before
  18.    <regex.h>.  */
  19. #ifdef VMS
  20. /* VMS doesn't have `size_t' in <sys/types.h>, even though POSIX says it
  21.    should be there.  */
  22. #include <stddef.h>
  23. #endif
  24. #ifdef _WIN32
  25. /* Same for Microsoft Visual C++ */
  26. #include <stddef.h>
  27. #endif
  28. /* The following bits are used to determine the regexp syntax we
  29.    recognize.  The set/not-set meanings are chosen so that Emacs syntax
  30.    remains the value 0.  The bits are given in alphabetical order, and
  31.    the definitions shifted by one from the previous bit; thus, when we
  32.    add or remove a bit, only one other definition need change.  */
  33. typedef unsigned reg_syntax_t;
  34. /* If this bit is not set, then  inside a bracket expression is literal.
  35.    If set, then such a  quotes the following character.  */
  36. #define RE_BACKSLASH_ESCAPE_IN_LISTS (1)
  37. /* If this bit is not set, then + and ? are operators, and + and ? are
  38.      literals. 
  39.    If set, then + and ? are operators and + and ? are literals.  */
  40. #define RE_BK_PLUS_QM (RE_BACKSLASH_ESCAPE_IN_LISTS << 1)
  41. /* If this bit is set, then character classes are supported.  They are:
  42.      [:alpha:], [:upper:], [:lower:],  [:digit:], [:alnum:], [:xdigit:],
  43.      [:space:], [:print:], [:punct:], [:graph:], and [:cntrl:].
  44.    If not set, then character classes are not supported.  */
  45. #define RE_CHAR_CLASSES (RE_BK_PLUS_QM << 1)
  46. /* If this bit is set, then ^ and $ are always anchors (outside bracket
  47.      expressions, of course).
  48.    If this bit is not set, then it depends:
  49.         ^  is an anchor if it is at the beginning of a regular
  50.            expression or after an open-group or an alternation operator;
  51.         $  is an anchor if it is at the end of a regular expression, or
  52.            before a close-group or an alternation operator.  
  53.    This bit could be (re)combined with RE_CONTEXT_INDEP_OPS, because
  54.    POSIX draft 11.2 says that * etc. in leading positions is undefined.
  55.    We already implemented a previous draft which made those constructs
  56.    invalid, though, so we haven't changed the code back.  */
  57. #define RE_CONTEXT_INDEP_ANCHORS (RE_CHAR_CLASSES << 1)
  58. /* If this bit is set, then special characters are always special
  59.      regardless of where they are in the pattern.
  60.    If this bit is not set, then special characters are special only in
  61.      some contexts; otherwise they are ordinary.  Specifically, 
  62.      * + ? and intervals are only special when not after the beginning,
  63.      open-group, or alternation operator.  */
  64. #define RE_CONTEXT_INDEP_OPS (RE_CONTEXT_INDEP_ANCHORS << 1)
  65. /* If this bit is set, then *, +, ?, and { cannot be first in an re or
  66.      immediately after an alternation or begin-group operator.  */
  67. #define RE_CONTEXT_INVALID_OPS (RE_CONTEXT_INDEP_OPS << 1)
  68. /* If this bit is set, then . matches newline.
  69.    If not set, then it doesn't.  */
  70. #define RE_DOT_NEWLINE (RE_CONTEXT_INVALID_OPS << 1)
  71. /* If this bit is set, then . doesn't match NUL.
  72.    If not set, then it does.  */
  73. #define RE_DOT_NOT_NULL (RE_DOT_NEWLINE << 1)
  74. /* If this bit is set, nonmatching lists [^...] do not match newline.
  75.    If not set, they do.  */
  76. #define RE_HAT_LISTS_NOT_NEWLINE (RE_DOT_NOT_NULL << 1)
  77. /* If this bit is set, either {...} or {...} defines an
  78.      interval, depending on RE_NO_BK_BRACES. 
  79.    If not set, {, }, {, and } are literals.  */
  80. #define RE_INTERVALS (RE_HAT_LISTS_NOT_NEWLINE << 1)
  81. /* If this bit is set, +, ? and | aren't recognized as operators.
  82.    If not set, they are.  */
  83. #define RE_LIMITED_OPS (RE_INTERVALS << 1)
  84. /* If this bit is set, newline is an alternation operator.
  85.    If not set, newline is literal.  */
  86. #define RE_NEWLINE_ALT (RE_LIMITED_OPS << 1)
  87. /* If this bit is set, then `{...}' defines an interval, and { and }
  88.      are literals.
  89.   If not set, then `{...}' defines an interval.  */
  90. #define RE_NO_BK_BRACES (RE_NEWLINE_ALT << 1)
  91. /* If this bit is set, (...) defines a group, and ( and ) are literals.
  92.    If not set, (...) defines a group, and ( and ) are literals.  */
  93. #define RE_NO_BK_PARENS (RE_NO_BK_BRACES << 1)
  94. /* If this bit is set, then <digit> matches <digit>.
  95.    If not set, then <digit> is a back-reference.  */
  96. #define RE_NO_BK_REFS (RE_NO_BK_PARENS << 1)
  97. /* If this bit is set, then | is an alternation operator, and | is literal. 
  98.    If not set, then | is an alternation operator, and | is literal.  */
  99. #define RE_NO_BK_VBAR (RE_NO_BK_REFS << 1)
  100. /* If this bit is set, then an ending range point collating higher
  101.      than the starting range point, as in [z-a], is invalid.
  102.    If not set, then when ending range point collates higher than the
  103.      starting range point, the range is ignored.  */
  104. #define RE_NO_EMPTY_RANGES (RE_NO_BK_VBAR << 1)
  105. /* If this bit is set, then an unmatched ) is ordinary.
  106.    If not set, then an unmatched ) is invalid.  */
  107. #define RE_UNMATCHED_RIGHT_PAREN_ORD (RE_NO_EMPTY_RANGES << 1)
  108. /* This global variable defines the particular regexp syntax to use (for
  109.    some interfaces).  When a regexp is compiled, the syntax used is
  110.    stored in the pattern buffer, so changing this does not affect
  111.    already-compiled regexps.  */
  112. extern reg_syntax_t re_syntax_options;
  113. /* Define combinations of the above bits for the standard possibilities.
  114.    (The [[[ comments delimit what gets put into the Texinfo file, so
  115.    don't delete them!)  */ 
  116. /* [[[begin syntaxes]]] */
  117. #define RE_SYNTAX_EMACS 0
  118. #define RE_SYNTAX_AWK
  119.   (RE_BACKSLASH_ESCAPE_IN_LISTS | RE_DOT_NOT_NULL
  120.    | RE_NO_BK_PARENS            | RE_NO_BK_REFS
  121.    | RE_NO_BK_VBAR               | RE_NO_EMPTY_RANGES
  122.    | RE_UNMATCHED_RIGHT_PAREN_ORD)
  123. #define RE_SYNTAX_POSIX_AWK 
  124.   (RE_SYNTAX_POSIX_EXTENDED | RE_BACKSLASH_ESCAPE_IN_LISTS)
  125. #define RE_SYNTAX_GREP
  126.   (RE_BK_PLUS_QM              | RE_CHAR_CLASSES
  127.    | RE_HAT_LISTS_NOT_NEWLINE | RE_INTERVALS
  128.    | RE_NEWLINE_ALT)
  129. #define RE_SYNTAX_EGREP
  130.   (RE_CHAR_CLASSES        | RE_CONTEXT_INDEP_ANCHORS
  131.    | RE_CONTEXT_INDEP_OPS | RE_HAT_LISTS_NOT_NEWLINE
  132.    | RE_NEWLINE_ALT       | RE_NO_BK_PARENS
  133.    | RE_NO_BK_VBAR)
  134. #define RE_SYNTAX_POSIX_EGREP
  135.   (RE_SYNTAX_EGREP | RE_INTERVALS | RE_NO_BK_BRACES)
  136. /* P1003.2/D11.2, section 4.20.7.1, lines 5078ff.  */
  137. #define RE_SYNTAX_ED RE_SYNTAX_POSIX_BASIC
  138. #define RE_SYNTAX_SED RE_SYNTAX_POSIX_BASIC
  139. /* Syntax bits common to both basic and extended POSIX regex syntax.  */
  140. #define _RE_SYNTAX_POSIX_COMMON
  141.   (RE_CHAR_CLASSES | RE_DOT_NEWLINE      | RE_DOT_NOT_NULL
  142.    | RE_INTERVALS  | RE_NO_EMPTY_RANGES)
  143. #define RE_SYNTAX_POSIX_BASIC
  144.   (_RE_SYNTAX_POSIX_COMMON | RE_BK_PLUS_QM)
  145. /* Differs from ..._POSIX_BASIC only in that RE_BK_PLUS_QM becomes
  146.    RE_LIMITED_OPS, i.e., ? + | are not recognized.  Actually, this
  147.    isn't minimal, since other operators, such as `, aren't disabled.  */
  148. #define RE_SYNTAX_POSIX_MINIMAL_BASIC
  149.   (_RE_SYNTAX_POSIX_COMMON | RE_LIMITED_OPS)
  150. #define RE_SYNTAX_POSIX_EXTENDED
  151.   (_RE_SYNTAX_POSIX_COMMON | RE_CONTEXT_INDEP_ANCHORS
  152.    | RE_CONTEXT_INDEP_OPS  | RE_NO_BK_BRACES
  153.    | RE_NO_BK_PARENS       | RE_NO_BK_VBAR
  154.    | RE_UNMATCHED_RIGHT_PAREN_ORD)
  155. /* Differs from ..._POSIX_EXTENDED in that RE_CONTEXT_INVALID_OPS
  156.    replaces RE_CONTEXT_INDEP_OPS and RE_NO_BK_REFS is added.  */
  157. #define RE_SYNTAX_POSIX_MINIMAL_EXTENDED
  158.   (_RE_SYNTAX_POSIX_COMMON  | RE_CONTEXT_INDEP_ANCHORS
  159.    | RE_CONTEXT_INVALID_OPS | RE_NO_BK_BRACES
  160.    | RE_NO_BK_PARENS        | RE_NO_BK_REFS
  161.    | RE_NO_BK_VBAR     | RE_UNMATCHED_RIGHT_PAREN_ORD)
  162. /* [[[end syntaxes]]] */
  163. /* Maximum number of duplicates an interval can allow.  Some systems
  164.    (erroneously) define this in other header files, but we want our
  165.    value, so remove any previous define.  */
  166. #ifdef RE_DUP_MAX
  167. #undef RE_DUP_MAX
  168. #endif
  169. #define RE_DUP_MAX ((1 << 15) - 1) 
  170. /* POSIX `cflags' bits (i.e., information for `regcomp').  */
  171. /* If this bit is set, then use extended regular expression syntax.
  172.    If not set, then use basic regular expression syntax.  */
  173. #define REG_EXTENDED 1
  174. /* If this bit is set, then ignore case when matching.
  175.    If not set, then case is significant.  */
  176. #define REG_ICASE (REG_EXTENDED << 1)
  177.  
  178. /* If this bit is set, then anchors do not match at newline
  179.      characters in the string.
  180.    If not set, then anchors do match at newlines.  */
  181. #define REG_NEWLINE (REG_ICASE << 1)
  182. /* If this bit is set, then report only success or fail in regexec.
  183.    If not set, then returns differ between not matching and errors.  */
  184. #define REG_NOSUB (REG_NEWLINE << 1)
  185. /* POSIX `eflags' bits (i.e., information for regexec).  */
  186. /* If this bit is set, then the beginning-of-line operator doesn't match
  187.      the beginning of the string (presumably because it's not the
  188.      beginning of a line).
  189.    If not set, then the beginning-of-line operator does match the
  190.      beginning of the string.  */
  191. #define REG_NOTBOL 1
  192. /* Like REG_NOTBOL, except for the end-of-line.  */
  193. #define REG_NOTEOL (1 << 1)
  194. /* If any error codes are removed, changed, or added, update the
  195.    `re_error_msg' table in regex.c.  */
  196. typedef enum
  197. {
  198.   REG_NOERROR = 0, /* Success.  */
  199.   REG_NOMATCH, /* Didn't find a match (for regexec).  */
  200.   /* POSIX regcomp return error codes.  (In the order listed in the
  201.      standard.)  */
  202.   REG_BADPAT, /* Invalid pattern.  */
  203.   REG_ECOLLATE, /* Not implemented.  */
  204.   REG_ECTYPE, /* Invalid character class name.  */
  205.   REG_EESCAPE, /* Trailing backslash.  */
  206.   REG_ESUBREG, /* Invalid back reference.  */
  207.   REG_EBRACK, /* Unmatched left bracket.  */
  208.   REG_EPAREN, /* Parenthesis imbalance.  */ 
  209.   REG_EBRACE, /* Unmatched {.  */
  210.   REG_BADBR, /* Invalid contents of {}.  */
  211.   REG_ERANGE, /* Invalid range end.  */
  212.   REG_ESPACE, /* Ran out of memory.  */
  213.   REG_BADRPT, /* No preceding re for repetition op.  */
  214.   /* Error codes we've added.  */
  215.   REG_EEND, /* Premature end.  */
  216.   REG_ESIZE, /* Compiled pattern bigger than 2^16 bytes.  */
  217.   REG_ERPAREN /* Unmatched ) or ); not returned from regcomp.  */
  218. } reg_errcode_t;
  219. /* This data structure represents a compiled pattern.  Before calling
  220.    the pattern compiler, the fields `buffer', `allocated', `fastmap',
  221.    `translate', and `no_sub' can be set.  After the pattern has been
  222.    compiled, the `re_nsub' field is available.  All other fields are
  223.    private to the regex routines.  */
  224. struct re_pattern_buffer
  225. {
  226. /* [[[begin pattern_buffer]]] */
  227. /* Space that holds the compiled pattern.  It is declared as
  228.           `unsigned char *' because its elements are
  229.            sometimes used as array indexes.  */
  230.   unsigned char *buffer;
  231. /* Number of bytes to which `buffer' points.  */
  232.   unsigned long allocated;
  233. /* Number of bytes actually used in `buffer'.  */
  234.   unsigned long used;
  235.         /* Syntax setting with which the pattern was compiled.  */
  236.   reg_syntax_t syntax;
  237.         /* Pointer to a fastmap, if any, otherwise zero.  re_search uses
  238.            the fastmap, if there is one, to skip over impossible
  239.            starting points for matches.  */
  240.   char *fastmap;
  241.         /* Either a translate table to apply to all characters before
  242.            comparing them, or zero for no translation.  The translation
  243.            is applied to a pattern when it is compiled and to a string
  244.            when it is matched.  */
  245.   char *translate;
  246. /* Number of subexpressions found by the compiler.  */
  247.   size_t re_nsub;
  248.         /* Zero if this pattern cannot match the empty string, one else.
  249.            Well, in truth it's used only in `re_search_2', to see
  250.            whether or not we should use the fastmap, so we don't set
  251.            this absolutely perfectly; see `re_compile_fastmap' (the
  252.            `duplicate' case).  */
  253.   unsigned can_be_null : 1;
  254.         /* If REGS_UNALLOCATED, allocate space in the `regs' structure
  255.              for `max (RE_NREGS, re_nsub + 1)' groups.
  256.            If REGS_REALLOCATE, reallocate space if necessary.
  257.            If REGS_FIXED, use what's there.  */
  258. #define REGS_UNALLOCATED 0
  259. #define REGS_REALLOCATE 1
  260. #define REGS_FIXED 2
  261.   unsigned regs_allocated : 2;
  262.         /* Set to zero when `regex_compile' compiles a pattern; set to one
  263.            by `re_compile_fastmap' if it updates the fastmap.  */
  264.   unsigned fastmap_accurate : 1;
  265.         /* If set, `re_match_2' does not return information about
  266.            subexpressions.  */
  267.   unsigned no_sub : 1;
  268.         /* If set, a beginning-of-line anchor doesn't match at the
  269.            beginning of the string.  */ 
  270.   unsigned not_bol : 1;
  271.         /* Similarly for an end-of-line anchor.  */
  272.   unsigned not_eol : 1;
  273.         /* If true, an anchor at a newline matches.  */
  274.   unsigned newline_anchor : 1;
  275. /* [[[end pattern_buffer]]] */
  276. };
  277. typedef struct re_pattern_buffer regex_t;
  278. /* search.c (search_buffer) in Emacs needs this one opcode value.  It is
  279.    defined both in `regex.c' and here.  */
  280. #define RE_EXACTN_VALUE 1
  281. /* Type for byte offsets within the string.  POSIX mandates this.  */
  282. typedef int regoff_t;
  283. /* This is the structure we store register match data in.  See
  284.    regex.texinfo for a full description of what registers match.  */
  285. struct re_registers
  286. {
  287.   unsigned num_regs;
  288.   regoff_t *start;
  289.   regoff_t *end;
  290. };
  291. /* If `regs_allocated' is REGS_UNALLOCATED in the pattern buffer,
  292.    `re_match_2' returns information about at least this many registers
  293.    the first time a `regs' structure is passed.  */
  294. #ifndef RE_NREGS
  295. #define RE_NREGS 30
  296. #endif
  297. /* POSIX specification for registers.  Aside from the different names than
  298.    `re_registers', POSIX uses an array of structures, instead of a
  299.    structure of arrays.  */
  300. typedef struct
  301. {
  302.   regoff_t rm_so;  /* Byte offset from string's start to substring's start.  */
  303.   regoff_t rm_eo;  /* Byte offset from string's start to substring's end.  */
  304. } regmatch_t;
  305. /* Declarations for routines.  */
  306. /* To avoid duplicating every routine declaration -- once with a
  307.    prototype (if we are ANSI), and once without (if we aren't) -- we
  308.    use the following macro to declare argument types.  This
  309.    unfortunately clutters up the declarations a bit, but I think it's
  310.    worth it.  */
  311. #if __STDC__
  312. #define _RE_ARGS(args) args
  313. #else /* not __STDC__ */
  314. #define _RE_ARGS(args) ()
  315. #endif /* not __STDC__ */
  316. /* Sets the current default syntax to SYNTAX, and return the old syntax.
  317.    You can also simply assign to the `re_syntax_options' variable.  */
  318. extern reg_syntax_t re_set_syntax _RE_ARGS ((reg_syntax_t syntax));
  319. /* Compile the regular expression PATTERN, with length LENGTH
  320.    and syntax given by the global `re_syntax_options', into the buffer
  321.    BUFFER.  Return NULL if successful, and an error string if not.  */
  322. extern const char *re_compile_pattern
  323.   _RE_ARGS ((const char *pattern, int length,
  324.              struct re_pattern_buffer *buffer));
  325. /* Compile a fastmap for the compiled pattern in BUFFER; used to
  326.    accelerate searches.  Return 0 if successful and -2 if was an
  327.    internal error.  */
  328. extern int re_compile_fastmap _RE_ARGS ((struct re_pattern_buffer *buffer));
  329. /* Search in the string STRING (with length LENGTH) for the pattern
  330.    compiled into BUFFER.  Start searching at position START, for RANGE
  331.    characters.  Return the starting position of the match, -1 for no
  332.    match, or -2 for an internal error.  Also return register
  333.    information in REGS (if REGS and BUFFER->no_sub are nonzero).  */
  334. extern int re_search
  335.   _RE_ARGS ((struct re_pattern_buffer *buffer, const char *string,
  336.             int length, int start, int range, struct re_registers *regs));
  337. /* Like `re_search', but search in the concatenation of STRING1 and
  338.    STRING2.  Also, stop searching at index START + STOP.  */
  339. extern int re_search_2
  340.   _RE_ARGS ((struct re_pattern_buffer *buffer, const char *string1,
  341.              int length1, const char *string2, int length2,
  342.              int start, int range, struct re_registers *regs, int stop));
  343. /* Like `re_search', but return how many characters in STRING the regexp
  344.    in BUFFER matched, starting at position START.  */
  345. extern int re_match
  346.   _RE_ARGS ((struct re_pattern_buffer *buffer, const char *string,
  347.              int length, int start, struct re_registers *regs));
  348. /* Relates to `re_match' as `re_search_2' relates to `re_search'.  */
  349. extern int re_match_2 
  350.   _RE_ARGS ((struct re_pattern_buffer *buffer, const char *string1,
  351.              int length1, const char *string2, int length2,
  352.              int start, struct re_registers *regs, int stop));
  353. /* Set REGS to hold NUM_REGS registers, storing them in STARTS and
  354.    ENDS.  Subsequent matches using BUFFER and REGS will use this memory
  355.    for recording register information.  STARTS and ENDS must be
  356.    allocated with malloc, and must each be at least `NUM_REGS * sizeof
  357.    (regoff_t)' bytes long.
  358.    If NUM_REGS == 0, then subsequent matches should allocate their own
  359.    register data.
  360.    Unless this function is called, the first search or match using
  361.    PATTERN_BUFFER will allocate its own register data, without
  362.    freeing the old data.  */
  363. extern void re_set_registers
  364.   _RE_ARGS ((struct re_pattern_buffer *buffer, struct re_registers *regs,
  365.              unsigned num_regs, regoff_t *starts, regoff_t *ends));
  366. /* 4.2 bsd compatibility.  */
  367. extern char *re_comp _RE_ARGS ((const char *));
  368. extern int re_exec _RE_ARGS ((const char *));
  369. /* POSIX compatibility.  */
  370. extern int regcomp _RE_ARGS ((regex_t *preg, const char *pattern, int cflags));
  371. extern int regexec
  372.   _RE_ARGS ((const regex_t *preg, const char *string, size_t nmatch,
  373.              regmatch_t pmatch[], int eflags));
  374. extern size_t regerror
  375.   _RE_ARGS ((int errcode, const regex_t *preg, char *errbuf,
  376.              size_t errbuf_size));
  377. extern void regfree _RE_ARGS ((regex_t *preg));
  378. #endif /* not __REGEXP_LIBRARY_H__ */
  379. /*
  380. Local variables:
  381. make-backup-files: t
  382. version-control: t
  383. trim-versions-without-asking: nil
  384. End:
  385. */