init
This commit is contained in:
104
db_include/regex/regcustom.h
Executable file
104
db_include/regex/regcustom.h
Executable file
@@ -0,0 +1,104 @@
|
||||
/*
|
||||
* Copyright (c) 1998, 1999 Henry Spencer. All rights reserved.
|
||||
*
|
||||
* Development of this software was funded, in part, by Cray Research Inc.,
|
||||
* UUNET Communications Services Inc., Sun Microsystems Inc., and Scriptics
|
||||
* Corporation, none of whom are responsible for the results. The author
|
||||
* thanks all of them.
|
||||
*
|
||||
* Redistribution and use in source and binary forms -- with or without
|
||||
* modification -- are permitted for any purpose, provided that
|
||||
* redistributions in source form retain this entire copyright notice and
|
||||
* indicate the origin and nature of any modifications.
|
||||
*
|
||||
* I'd appreciate being given credit for this package in the documentation
|
||||
* of software which uses it, but that is not a requirement.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
|
||||
* AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
|
||||
* HENRY SPENCER BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
||||
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
||||
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
|
||||
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
||||
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*
|
||||
* src/include/regex/regcustom.h
|
||||
*/
|
||||
|
||||
/* headers if any */
|
||||
|
||||
/*
|
||||
* It's against Postgres coding conventions to include postgres.h in a
|
||||
* header file, but we allow the violation here because the regexp library
|
||||
* files specifically intend this file to supply application-dependent
|
||||
* headers, and are careful to include this file before anything else.
|
||||
*/
|
||||
#include "postgres.h"
|
||||
|
||||
#include <ctype.h>
|
||||
#include <limits.h>
|
||||
|
||||
/*
|
||||
* towlower() and friends should be in <wctype.h>, but some pre-C99 systems
|
||||
* declare them in <wchar.h>, so include that too.
|
||||
*/
|
||||
#include <wchar.h>
|
||||
#ifdef HAVE_WCTYPE_H
|
||||
#include <wctype.h>
|
||||
#endif
|
||||
|
||||
#include "mb/pg_wchar.h"
|
||||
|
||||
#include "miscadmin.h" /* needed by rcancelrequested/rstacktoodeep */
|
||||
|
||||
|
||||
/* overrides for regguts.h definitions, if any */
|
||||
#define FUNCPTR(name, args) (*name) args
|
||||
#define MALLOC(n) malloc(n)
|
||||
#define FREE(p) free(VS(p))
|
||||
#define REALLOC(p,n) realloc(VS(p),n)
|
||||
#define assert(x) Assert(x)
|
||||
|
||||
/* internal character type and related */
|
||||
typedef pg_wchar chr; /* the type itself */
|
||||
typedef unsigned uchr; /* unsigned type that will hold a chr */
|
||||
|
||||
#define CHR(c) ((unsigned char) (c)) /* turn char literal into chr literal */
|
||||
#define DIGITVAL(c) ((c)-'0') /* turn chr digit into its value */
|
||||
#define CHRBITS 32 /* bits in a chr; must not use sizeof */
|
||||
#define CHR_MIN 0x00000000 /* smallest and largest chr; the value */
|
||||
#define CHR_MAX 0x7ffffffe /* CHR_MAX-CHR_MIN+1 must fit in an int, and
|
||||
* CHR_MAX+1 must fit in a chr variable */
|
||||
|
||||
/*
|
||||
* Check if a chr value is in range. Ideally we'd just write this as
|
||||
* ((c) >= CHR_MIN && (c) <= CHR_MAX)
|
||||
* However, if chr is unsigned and CHR_MIN is zero, the first part of that
|
||||
* is a no-op, and certain overly-nannyish compilers give warnings about it.
|
||||
* So we leave that out here. If you want to make chr signed and/or CHR_MIN
|
||||
* not zero, redefine this macro as above. Callers should assume that the
|
||||
* macro may multiply evaluate its argument, even though it does not today.
|
||||
*/
|
||||
#define CHR_IS_IN_RANGE(c) ((c) <= CHR_MAX)
|
||||
|
||||
/*
|
||||
* MAX_SIMPLE_CHR is the cutoff between "simple" and "complicated" processing
|
||||
* in the color map logic. It should usually be chosen high enough to ensure
|
||||
* that all common characters are <= MAX_SIMPLE_CHR. However, very large
|
||||
* values will be counterproductive since they cause more regex setup time.
|
||||
* Also, small values can be helpful for testing the high-color-map logic
|
||||
* with plain old ASCII input.
|
||||
*/
|
||||
#define MAX_SIMPLE_CHR 0x7FF /* suitable value for Unicode */
|
||||
|
||||
/* functions operating on chr */
|
||||
#define iscalnum(x) pg_wc_isalnum(x)
|
||||
#define iscalpha(x) pg_wc_isalpha(x)
|
||||
#define iscdigit(x) pg_wc_isdigit(x)
|
||||
#define iscspace(x) pg_wc_isspace(x)
|
||||
|
||||
/* and pick up the standard header */
|
||||
#include "regex.h"
|
||||
87
db_include/regex/regerrs.h
Executable file
87
db_include/regex/regerrs.h
Executable file
@@ -0,0 +1,87 @@
|
||||
/*
|
||||
* src/include/regex/regerrs.h
|
||||
*/
|
||||
|
||||
{
|
||||
REG_OKAY, "REG_OKAY", "no errors detected"
|
||||
},
|
||||
|
||||
{
|
||||
REG_NOMATCH, "REG_NOMATCH", "failed to match"
|
||||
},
|
||||
|
||||
{
|
||||
REG_BADPAT, "REG_BADPAT", "invalid regexp (reg version 0.8)"
|
||||
},
|
||||
|
||||
{
|
||||
REG_ECOLLATE, "REG_ECOLLATE", "invalid collating element"
|
||||
},
|
||||
|
||||
{
|
||||
REG_ECTYPE, "REG_ECTYPE", "invalid character class"
|
||||
},
|
||||
|
||||
{
|
||||
REG_EESCAPE, "REG_EESCAPE", "invalid escape \\ sequence"
|
||||
},
|
||||
|
||||
{
|
||||
REG_ESUBREG, "REG_ESUBREG", "invalid backreference number"
|
||||
},
|
||||
|
||||
{
|
||||
REG_EBRACK, "REG_EBRACK", "brackets [] not balanced"
|
||||
},
|
||||
|
||||
{
|
||||
REG_EPAREN, "REG_EPAREN", "parentheses () not balanced"
|
||||
},
|
||||
|
||||
{
|
||||
REG_EBRACE, "REG_EBRACE", "braces {} not balanced"
|
||||
},
|
||||
|
||||
{
|
||||
REG_BADBR, "REG_BADBR", "invalid repetition count(s)"
|
||||
},
|
||||
|
||||
{
|
||||
REG_ERANGE, "REG_ERANGE", "invalid character range"
|
||||
},
|
||||
|
||||
{
|
||||
REG_ESPACE, "REG_ESPACE", "out of memory"
|
||||
},
|
||||
|
||||
{
|
||||
REG_BADRPT, "REG_BADRPT", "quantifier operand invalid"
|
||||
},
|
||||
|
||||
{
|
||||
REG_ASSERT, "REG_ASSERT", "\"cannot happen\" -- you found a bug"
|
||||
},
|
||||
|
||||
{
|
||||
REG_INVARG, "REG_INVARG", "invalid argument to regex function"
|
||||
},
|
||||
|
||||
{
|
||||
REG_MIXED, "REG_MIXED", "character widths of regex and string differ"
|
||||
},
|
||||
|
||||
{
|
||||
REG_BADOPT, "REG_BADOPT", "invalid embedded option"
|
||||
},
|
||||
|
||||
{
|
||||
REG_ETOOBIG, "REG_ETOOBIG", "regular expression is too complex"
|
||||
},
|
||||
|
||||
{
|
||||
REG_ECOLORS, "REG_ECOLORS", "too many colors"
|
||||
},
|
||||
|
||||
{
|
||||
REG_CANCEL, "REG_CANCEL", "operation cancelled"
|
||||
},
|
||||
186
db_include/regex/regex.h
Executable file
186
db_include/regex/regex.h
Executable file
@@ -0,0 +1,186 @@
|
||||
#ifndef _REGEX_H_
|
||||
#define _REGEX_H_ /* never again */
|
||||
/*
|
||||
* regular expressions
|
||||
*
|
||||
* Copyright (c) 1998, 1999 Henry Spencer. All rights reserved.
|
||||
*
|
||||
* Development of this software was funded, in part, by Cray Research Inc.,
|
||||
* UUNET Communications Services Inc., Sun Microsystems Inc., and Scriptics
|
||||
* Corporation, none of whom are responsible for the results. The author
|
||||
* thanks all of them.
|
||||
*
|
||||
* Redistribution and use in source and binary forms -- with or without
|
||||
* modification -- are permitted for any purpose, provided that
|
||||
* redistributions in source form retain this entire copyright notice and
|
||||
* indicate the origin and nature of any modifications.
|
||||
*
|
||||
* I'd appreciate being given credit for this package in the documentation
|
||||
* of software which uses it, but that is not a requirement.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
|
||||
* AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
|
||||
* HENRY SPENCER BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
||||
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
||||
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
|
||||
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
||||
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*
|
||||
* src/include/regex/regex.h
|
||||
*/
|
||||
|
||||
/*
|
||||
* Add your own defines, if needed, here.
|
||||
*/
|
||||
#include "mb/pg_wchar.h"
|
||||
|
||||
/*
|
||||
* interface types etc.
|
||||
*/
|
||||
|
||||
/*
|
||||
* regoff_t has to be large enough to hold either off_t or ssize_t,
|
||||
* and must be signed; it's only a guess that long is suitable.
|
||||
*/
|
||||
typedef long regoff_t;
|
||||
|
||||
/*
|
||||
* other interface types
|
||||
*/
|
||||
|
||||
/* the biggie, a compiled RE (or rather, a front end to same) */
|
||||
typedef struct
|
||||
{
|
||||
int re_magic; /* magic number */
|
||||
size_t re_nsub; /* number of subexpressions */
|
||||
long re_info; /* bitmask of the following flags: */
|
||||
#define REG_UBACKREF 000001 /* has back-reference (\n) */
|
||||
#define REG_ULOOKAROUND 000002 /* has lookahead/lookbehind constraint */
|
||||
#define REG_UBOUNDS 000004 /* has bounded quantifier ({m,n}) */
|
||||
#define REG_UBRACES 000010 /* has { that doesn't begin a quantifier */
|
||||
#define REG_UBSALNUM 000020 /* has backslash-alphanumeric in non-ARE */
|
||||
#define REG_UPBOTCH 000040 /* has unmatched right paren in ERE (legal
|
||||
* per spec, but that was a mistake) */
|
||||
#define REG_UBBS 000100 /* has backslash within bracket expr */
|
||||
#define REG_UNONPOSIX 000200 /* has any construct that extends POSIX */
|
||||
#define REG_UUNSPEC 000400 /* has any case disallowed by POSIX, e.g.
|
||||
* an empty branch */
|
||||
#define REG_UUNPORT 001000 /* has numeric character code dependency */
|
||||
#define REG_ULOCALE 002000 /* has locale dependency */
|
||||
#define REG_UEMPTYMATCH 004000 /* can match a zero-length string */
|
||||
#define REG_UIMPOSSIBLE 010000 /* provably cannot match anything */
|
||||
#define REG_USHORTEST 020000 /* has non-greedy quantifier */
|
||||
int re_csize; /* sizeof(character) */
|
||||
char *re_endp; /* backward compatibility kludge */
|
||||
Oid re_collation; /* Collation that defines LC_CTYPE behavior */
|
||||
/* the rest is opaque pointers to hidden innards */
|
||||
char *re_guts; /* `char *' is more portable than `void *' */
|
||||
char *re_fns;
|
||||
} regex_t;
|
||||
|
||||
/* result reporting (may acquire more fields later) */
|
||||
typedef struct
|
||||
{
|
||||
regoff_t rm_so; /* start of substring */
|
||||
regoff_t rm_eo; /* end of substring */
|
||||
} regmatch_t;
|
||||
|
||||
/* supplementary control and reporting */
|
||||
typedef struct
|
||||
{
|
||||
regmatch_t rm_extend; /* see REG_EXPECT */
|
||||
} rm_detail_t;
|
||||
|
||||
|
||||
|
||||
/*
|
||||
* regex compilation flags
|
||||
*/
|
||||
#define REG_BASIC 000000 /* BREs (convenience) */
|
||||
#define REG_EXTENDED 000001 /* EREs */
|
||||
#define REG_ADVF 000002 /* advanced features in EREs */
|
||||
#define REG_ADVANCED 000003 /* AREs (which are also EREs) */
|
||||
#define REG_QUOTE 000004 /* no special characters, none */
|
||||
#define REG_NOSPEC REG_QUOTE /* historical synonym */
|
||||
#define REG_ICASE 000010 /* ignore case */
|
||||
#define REG_NOSUB 000020 /* don't care about subexpressions */
|
||||
#define REG_EXPANDED 000040 /* expanded format, white space & comments */
|
||||
#define REG_NLSTOP 000100 /* \n doesn't match . or [^ ] */
|
||||
#define REG_NLANCH 000200 /* ^ matches after \n, $ before */
|
||||
#define REG_NEWLINE 000300 /* newlines are line terminators */
|
||||
#define REG_PEND 000400 /* ugh -- backward-compatibility hack */
|
||||
#define REG_EXPECT 001000 /* report details on partial/limited matches */
|
||||
#define REG_BOSONLY 002000 /* temporary kludge for BOS-only matches */
|
||||
#define REG_DUMP 004000 /* none of your business :-) */
|
||||
#define REG_FAKE 010000 /* none of your business :-) */
|
||||
#define REG_PROGRESS 020000 /* none of your business :-) */
|
||||
|
||||
|
||||
|
||||
/*
|
||||
* regex execution flags
|
||||
*/
|
||||
#define REG_NOTBOL 0001 /* BOS is not BOL */
|
||||
#define REG_NOTEOL 0002 /* EOS is not EOL */
|
||||
#define REG_STARTEND 0004 /* backward compatibility kludge */
|
||||
#define REG_FTRACE 0010 /* none of your business */
|
||||
#define REG_MTRACE 0020 /* none of your business */
|
||||
#define REG_SMALL 0040 /* none of your business */
|
||||
|
||||
|
||||
/*
|
||||
* error reporting
|
||||
* Be careful if modifying the list of error codes -- the table used by
|
||||
* regerror() is generated automatically from this file!
|
||||
*/
|
||||
#define REG_OKAY 0 /* no errors detected */
|
||||
#define REG_NOMATCH 1 /* failed to match */
|
||||
#define REG_BADPAT 2 /* invalid regexp */
|
||||
#define REG_ECOLLATE 3 /* invalid collating element */
|
||||
#define REG_ECTYPE 4 /* invalid character class */
|
||||
#define REG_EESCAPE 5 /* invalid escape \ sequence */
|
||||
#define REG_ESUBREG 6 /* invalid backreference number */
|
||||
#define REG_EBRACK 7 /* brackets [] not balanced */
|
||||
#define REG_EPAREN 8 /* parentheses () not balanced */
|
||||
#define REG_EBRACE 9 /* braces {} not balanced */
|
||||
#define REG_BADBR 10 /* invalid repetition count(s) */
|
||||
#define REG_ERANGE 11 /* invalid character range */
|
||||
#define REG_ESPACE 12 /* out of memory */
|
||||
#define REG_BADRPT 13 /* quantifier operand invalid */
|
||||
#define REG_ASSERT 15 /* "can't happen" -- you found a bug */
|
||||
#define REG_INVARG 16 /* invalid argument to regex function */
|
||||
#define REG_MIXED 17 /* character widths of regex and string differ */
|
||||
#define REG_BADOPT 18 /* invalid embedded option */
|
||||
#define REG_ETOOBIG 19 /* regular expression is too complex */
|
||||
#define REG_ECOLORS 20 /* too many colors */
|
||||
#define REG_CANCEL 21 /* operation cancelled */
|
||||
/* two specials for debugging and testing */
|
||||
#define REG_ATOI 101 /* convert error-code name to number */
|
||||
#define REG_ITOA 102 /* convert error-code number to name */
|
||||
/* non-error result codes for pg_regprefix */
|
||||
#define REG_PREFIX (-1) /* identified a common prefix */
|
||||
#define REG_EXACT (-2) /* identified an exact match */
|
||||
|
||||
|
||||
|
||||
/*
|
||||
* the prototypes for exported functions
|
||||
*/
|
||||
|
||||
/* regcomp.c */
|
||||
extern int pg_regcomp(regex_t *, const pg_wchar *, size_t, int, Oid);
|
||||
extern int pg_regexec(regex_t *, const pg_wchar *, size_t, size_t, rm_detail_t *, size_t, regmatch_t[], int);
|
||||
extern int pg_regprefix(regex_t *, pg_wchar **, size_t *);
|
||||
extern void pg_regfree(regex_t *);
|
||||
extern size_t pg_regerror(int, const regex_t *, char *, size_t);
|
||||
|
||||
/* regexp.c */
|
||||
extern regex_t *RE_compile_and_cache(text *text_re, int cflags, Oid collation);
|
||||
extern bool RE_compile_and_execute(text *text_re, char *dat, int dat_len,
|
||||
int cflags, Oid collation,
|
||||
int nmatch, regmatch_t *pmatch);
|
||||
|
||||
#endif /* _REGEX_H_ */
|
||||
61
db_include/regex/regexport.h
Executable file
61
db_include/regex/regexport.h
Executable file
@@ -0,0 +1,61 @@
|
||||
/*-------------------------------------------------------------------------
|
||||
*
|
||||
* regexport.h
|
||||
* Declarations for exporting info about a regex's NFA (nondeterministic
|
||||
* finite automaton)
|
||||
*
|
||||
* The functions declared here provide accessors to extract the NFA state
|
||||
* graph and color character sets of a successfully-compiled regex.
|
||||
*
|
||||
* An NFA contains one or more states, numbered 0..N-1. There is an initial
|
||||
* state, as well as a final state --- reaching the final state denotes
|
||||
* successful matching of an input string. Each state except the final one
|
||||
* has some out-arcs that lead to successor states, each arc being labeled
|
||||
* with a color that represents one or more concrete character codes.
|
||||
* (The colors of a state's out-arcs need not be distinct, since this is an
|
||||
* NFA not a DFA.) There are also "pseudocolors" representing start/end of
|
||||
* line and start/end of string. Colors are numbered 0..C-1, but note that
|
||||
* color 0 is "white" (all unused characters) and can generally be ignored.
|
||||
*
|
||||
* Portions Copyright (c) 2013-2021, PostgreSQL Global Development Group
|
||||
* Portions Copyright (c) 1998, 1999 Henry Spencer
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* src/include/regex/regexport.h
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
#ifndef _REGEXPORT_H_
|
||||
#define _REGEXPORT_H_
|
||||
|
||||
#include "regex/regex.h"
|
||||
|
||||
/* These macros must match corresponding ones in regguts.h: */
|
||||
#define COLOR_WHITE 0 /* color for chars not appearing in regex */
|
||||
#define COLOR_RAINBOW (-2) /* represents all colors except pseudocolors */
|
||||
|
||||
/* information about one arc of a regex's NFA */
|
||||
typedef struct
|
||||
{
|
||||
int co; /* label (character-set color) of arc */
|
||||
int to; /* next state number */
|
||||
} regex_arc_t;
|
||||
|
||||
|
||||
/* Functions for gathering information about NFA states and arcs */
|
||||
extern int pg_reg_getnumstates(const regex_t *regex);
|
||||
extern int pg_reg_getinitialstate(const regex_t *regex);
|
||||
extern int pg_reg_getfinalstate(const regex_t *regex);
|
||||
extern int pg_reg_getnumoutarcs(const regex_t *regex, int st);
|
||||
extern void pg_reg_getoutarcs(const regex_t *regex, int st,
|
||||
regex_arc_t *arcs, int arcs_len);
|
||||
|
||||
/* Functions for gathering information about colors */
|
||||
extern int pg_reg_getnumcolors(const regex_t *regex);
|
||||
extern int pg_reg_colorisbegin(const regex_t *regex, int co);
|
||||
extern int pg_reg_colorisend(const regex_t *regex, int co);
|
||||
extern int pg_reg_getnumcharacters(const regex_t *regex, int co);
|
||||
extern void pg_reg_getcharacters(const regex_t *regex, int co,
|
||||
pg_wchar *chars, int chars_len);
|
||||
|
||||
#endif /* _REGEXPORT_H_ */
|
||||
546
db_include/regex/regguts.h
Executable file
546
db_include/regex/regguts.h
Executable file
@@ -0,0 +1,546 @@
|
||||
/*
|
||||
* Internal interface definitions, etc., for the reg package
|
||||
*
|
||||
* Copyright (c) 1998, 1999 Henry Spencer. All rights reserved.
|
||||
*
|
||||
* Development of this software was funded, in part, by Cray Research Inc.,
|
||||
* UUNET Communications Services Inc., Sun Microsystems Inc., and Scriptics
|
||||
* Corporation, none of whom are responsible for the results. The author
|
||||
* thanks all of them.
|
||||
*
|
||||
* Redistribution and use in source and binary forms -- with or without
|
||||
* modification -- are permitted for any purpose, provided that
|
||||
* redistributions in source form retain this entire copyright notice and
|
||||
* indicate the origin and nature of any modifications.
|
||||
*
|
||||
* I'd appreciate being given credit for this package in the documentation
|
||||
* of software which uses it, but that is not a requirement.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
|
||||
* AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
|
||||
* HENRY SPENCER BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
||||
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
||||
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
|
||||
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
||||
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*
|
||||
* src/include/regex/regguts.h
|
||||
*/
|
||||
|
||||
|
||||
|
||||
/*
|
||||
* Environmental customization. It should not (I hope) be necessary to
|
||||
* alter the file you are now reading -- regcustom.h should handle it all,
|
||||
* given care here and elsewhere.
|
||||
*/
|
||||
#include "regcustom.h"
|
||||
|
||||
|
||||
|
||||
/*
|
||||
* Things that regcustom.h might override.
|
||||
*/
|
||||
|
||||
/* assertions */
|
||||
#ifndef assert
|
||||
#ifndef REG_DEBUG
|
||||
#define NDEBUG /* no assertions */
|
||||
#endif
|
||||
#include <assert.h>
|
||||
#endif
|
||||
|
||||
/* voids */
|
||||
#ifndef DISCARD
|
||||
#define DISCARD void /* for throwing values away */
|
||||
#endif
|
||||
#ifndef VS
|
||||
#define VS(x) ((void *)(x)) /* cast something to generic ptr */
|
||||
#endif
|
||||
|
||||
/* function-pointer declarator */
|
||||
#ifndef FUNCPTR
|
||||
#define FUNCPTR(name, args) (*(name)) args
|
||||
#endif
|
||||
|
||||
/* memory allocation */
|
||||
#ifndef MALLOC
|
||||
#define MALLOC(n) malloc(n)
|
||||
#endif
|
||||
#ifndef REALLOC
|
||||
#define REALLOC(p, n) realloc(VS(p), n)
|
||||
#endif
|
||||
#ifndef FREE
|
||||
#define FREE(p) free(VS(p))
|
||||
#endif
|
||||
|
||||
/* want size of a char in bits, and max value in bounded quantifiers */
|
||||
#ifndef _POSIX2_RE_DUP_MAX
|
||||
#define _POSIX2_RE_DUP_MAX 255 /* normally from <limits.h> */
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
/*
|
||||
* misc
|
||||
*/
|
||||
|
||||
#define NOTREACHED 0
|
||||
|
||||
#define DUPMAX _POSIX2_RE_DUP_MAX
|
||||
#define DUPINF (DUPMAX+1)
|
||||
|
||||
#define REMAGIC 0xfed7 /* magic number for main struct */
|
||||
|
||||
/* Type codes for lookaround constraints */
|
||||
#define LATYPE_AHEAD_POS 03 /* positive lookahead */
|
||||
#define LATYPE_AHEAD_NEG 02 /* negative lookahead */
|
||||
#define LATYPE_BEHIND_POS 01 /* positive lookbehind */
|
||||
#define LATYPE_BEHIND_NEG 00 /* negative lookbehind */
|
||||
#define LATYPE_IS_POS(la) ((la) & 01)
|
||||
#define LATYPE_IS_AHEAD(la) ((la) & 02)
|
||||
|
||||
|
||||
/*
|
||||
* debugging facilities
|
||||
*/
|
||||
#ifdef REG_DEBUG
|
||||
/* FDEBUG does finite-state tracing */
|
||||
#define FDEBUG(arglist) { if (v->eflags®_FTRACE) printf arglist; }
|
||||
/* MDEBUG does higher-level tracing */
|
||||
#define MDEBUG(arglist) { if (v->eflags®_MTRACE) printf arglist; }
|
||||
#else
|
||||
#define FDEBUG(arglist) {}
|
||||
#define MDEBUG(arglist) {}
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
/*
|
||||
* bitmap manipulation
|
||||
*/
|
||||
#define UBITS (CHAR_BIT * sizeof(unsigned))
|
||||
#define BSET(uv, sn) ((uv)[(sn)/UBITS] |= (unsigned)1 << ((sn)%UBITS))
|
||||
#define ISBSET(uv, sn) ((uv)[(sn)/UBITS] & ((unsigned)1 << ((sn)%UBITS)))
|
||||
|
||||
|
||||
/*
|
||||
* known character classes
|
||||
*/
|
||||
enum char_classes
|
||||
{
|
||||
CC_ALNUM, CC_ALPHA, CC_ASCII, CC_BLANK, CC_CNTRL, CC_DIGIT, CC_GRAPH,
|
||||
CC_LOWER, CC_PRINT, CC_PUNCT, CC_SPACE, CC_UPPER, CC_XDIGIT, CC_WORD
|
||||
};
|
||||
|
||||
#define NUM_CCLASSES 14
|
||||
|
||||
|
||||
/*
|
||||
* As soon as possible, we map chrs into equivalence classes -- "colors" --
|
||||
* which are of much more manageable number.
|
||||
*
|
||||
* To further reduce the number of arcs in NFAs and DFAs, we also have a
|
||||
* special RAINBOW "color" that can be assigned to an arc. This is not a
|
||||
* real color, in that it has no entry in color maps.
|
||||
*/
|
||||
typedef short color; /* colors of characters */
|
||||
|
||||
#define MAX_COLOR 32767 /* max color (must fit in 'color' datatype) */
|
||||
#define COLORLESS (-1) /* impossible color */
|
||||
#define RAINBOW (-2) /* represents all colors except pseudocolors */
|
||||
#define WHITE 0 /* default color, parent of all others */
|
||||
/* Note: various places in the code know that WHITE is zero */
|
||||
|
||||
|
||||
/*
|
||||
* Per-color data structure for the compile-time color machinery
|
||||
*
|
||||
* If "sub" is not NOSUB then it is the number of the color's current
|
||||
* subcolor, i.e. we are in process of dividing this color (character
|
||||
* equivalence class) into two colors. See src/backend/regex/README for
|
||||
* discussion of subcolors.
|
||||
*
|
||||
* Currently-unused colors have the FREECOL bit set and are linked into a
|
||||
* freelist using their "sub" fields, but only if their color numbers are
|
||||
* less than colormap.max. Any array entries beyond "max" are just garbage.
|
||||
*/
|
||||
struct colordesc
|
||||
{
|
||||
int nschrs; /* number of simple chars of this color */
|
||||
int nuchrs; /* number of upper map entries of this color */
|
||||
color sub; /* open subcolor, if any; or free-chain ptr */
|
||||
#define NOSUB COLORLESS /* value of "sub" when no open subcolor */
|
||||
struct arc *arcs; /* chain of all arcs of this color */
|
||||
chr firstchr; /* simple char first assigned to this color */
|
||||
int flags; /* bitmask of the following flags: */
|
||||
#define FREECOL 01 /* currently free */
|
||||
#define PSEUDO 02 /* pseudocolor, no real chars */
|
||||
#define COLMARK 04 /* temporary marker used in some functions */
|
||||
};
|
||||
|
||||
#define UNUSEDCOLOR(cd) ((cd)->flags & FREECOL)
|
||||
|
||||
/*
|
||||
* The color map itself
|
||||
*
|
||||
* This struct holds both data used only at compile time, and the chr to
|
||||
* color mapping information, used at both compile and run time. The latter
|
||||
* is the bulk of the space, so it's not really worth separating out the
|
||||
* compile-only portion.
|
||||
*
|
||||
* Ideally, the mapping data would just be an array of colors indexed by
|
||||
* chr codes; but for large character sets that's impractical. Fortunately,
|
||||
* common characters have smaller codes, so we can use a simple array for chr
|
||||
* codes up to MAX_SIMPLE_CHR, and do something more complex for codes above
|
||||
* that, without much loss of performance. The "something more complex" is a
|
||||
* 2-D array of color entries, where row indexes correspond to individual chrs
|
||||
* or chr ranges that have been mentioned in the regex (with row zero
|
||||
* representing all other chrs), and column indexes correspond to different
|
||||
* sets of locale-dependent character classes such as "isalpha". The
|
||||
* classbits[k] entry is zero if we do not care about the k'th character class
|
||||
* in this regex, and otherwise it is the bit to be OR'd into the column index
|
||||
* if the character in question is a member of that class. We find the color
|
||||
* of a high-valued chr by identifying which colormaprange it is in to get
|
||||
* the row index (use row zero if it's in none of them), identifying which of
|
||||
* the interesting cclasses it's in to get the column index, and then indexing
|
||||
* into the 2-D hicolormap array.
|
||||
*
|
||||
* The colormapranges are required to be nonempty, nonoverlapping, and to
|
||||
* appear in increasing chr-value order.
|
||||
*/
|
||||
|
||||
typedef struct colormaprange
|
||||
{
|
||||
chr cmin; /* range represents cmin..cmax inclusive */
|
||||
chr cmax;
|
||||
int rownum; /* row index in hicolormap array (>= 1) */
|
||||
} colormaprange;
|
||||
|
||||
struct colormap
|
||||
{
|
||||
int magic;
|
||||
#define CMMAGIC 0x876
|
||||
struct vars *v; /* for compile error reporting */
|
||||
size_t ncds; /* allocated length of colordescs array */
|
||||
size_t max; /* highest color number currently in use */
|
||||
color free; /* beginning of free chain (if non-0) */
|
||||
struct colordesc *cd; /* pointer to array of colordescs */
|
||||
#define CDEND(cm) (&(cm)->cd[(cm)->max + 1])
|
||||
|
||||
/* mapping data for chrs <= MAX_SIMPLE_CHR: */
|
||||
color *locolormap; /* simple array indexed by chr code */
|
||||
|
||||
/* mapping data for chrs > MAX_SIMPLE_CHR: */
|
||||
int classbits[NUM_CCLASSES]; /* see comment above */
|
||||
int numcmranges; /* number of colormapranges */
|
||||
colormaprange *cmranges; /* ranges of high chrs */
|
||||
color *hicolormap; /* 2-D array of color entries */
|
||||
int maxarrayrows; /* number of array rows allocated */
|
||||
int hiarrayrows; /* number of array rows in use */
|
||||
int hiarraycols; /* number of array columns (2^N) */
|
||||
|
||||
/* If we need up to NINLINECDS, we store them here to save a malloc */
|
||||
#define NINLINECDS ((size_t) 10)
|
||||
struct colordesc cdspace[NINLINECDS];
|
||||
};
|
||||
|
||||
/* fetch color for chr; beware of multiple evaluation of c argument */
|
||||
#define GETCOLOR(cm, c) \
|
||||
((c) <= MAX_SIMPLE_CHR ? (cm)->locolormap[(c) - CHR_MIN] : pg_reg_getcolor(cm, c))
|
||||
|
||||
|
||||
/*
|
||||
* Interface definitions for locale-interface functions in regc_locale.c.
|
||||
*/
|
||||
|
||||
/*
|
||||
* Representation of a set of characters. chrs[] represents individual
|
||||
* code points, ranges[] represents ranges in the form min..max inclusive.
|
||||
*
|
||||
* If the cvec represents a locale-specific character class, eg [[:alpha:]],
|
||||
* then the chrs[] and ranges[] arrays contain only members of that class
|
||||
* up to MAX_SIMPLE_CHR (inclusive). cclasscode is set to regc_locale.c's
|
||||
* code for the class, rather than being -1 as it is in an ordinary cvec.
|
||||
*
|
||||
* Note that in cvecs gotten from newcvec() and intended to be freed by
|
||||
* freecvec(), both arrays of chrs are after the end of the struct, not
|
||||
* separately malloc'd; so chrspace and rangespace are effectively immutable.
|
||||
*/
|
||||
struct cvec
|
||||
{
|
||||
int nchrs; /* number of chrs */
|
||||
int chrspace; /* number of chrs allocated in chrs[] */
|
||||
chr *chrs; /* pointer to vector of chrs */
|
||||
int nranges; /* number of ranges (chr pairs) */
|
||||
int rangespace; /* number of ranges allocated in ranges[] */
|
||||
chr *ranges; /* pointer to vector of chr pairs */
|
||||
int cclasscode; /* value of "enum classes", or -1 */
|
||||
};
|
||||
|
||||
|
||||
/*
|
||||
* definitions for NFA internal representation
|
||||
*/
|
||||
struct state;
|
||||
|
||||
struct arc
|
||||
{
|
||||
int type; /* 0 if free, else an NFA arc type code */
|
||||
color co; /* color the arc matches (possibly RAINBOW) */
|
||||
struct state *from; /* where it's from */
|
||||
struct state *to; /* where it's to */
|
||||
struct arc *outchain; /* link in *from's outs chain or free chain */
|
||||
struct arc *outchainRev; /* back-link in *from's outs chain */
|
||||
#define freechain outchain /* we do not maintain "freechainRev" */
|
||||
struct arc *inchain; /* link in *to's ins chain */
|
||||
struct arc *inchainRev; /* back-link in *to's ins chain */
|
||||
/* these fields are not used when co == RAINBOW: */
|
||||
struct arc *colorchain; /* link in color's arc chain */
|
||||
struct arc *colorchainRev; /* back-link in color's arc chain */
|
||||
};
|
||||
|
||||
struct arcbatch
|
||||
{ /* for bulk allocation of arcs */
|
||||
struct arcbatch *next; /* chain link */
|
||||
size_t narcs; /* number of arcs allocated in this arcbatch */
|
||||
struct arc a[FLEXIBLE_ARRAY_MEMBER];
|
||||
};
|
||||
#define ARCBATCHSIZE(n) ((n) * sizeof(struct arc) + offsetof(struct arcbatch, a))
|
||||
/* first batch will have FIRSTABSIZE arcs; then double it until MAXABSIZE */
|
||||
#define FIRSTABSIZE 64
|
||||
#define MAXABSIZE 1024
|
||||
|
||||
struct state
|
||||
{
|
||||
int no; /* state number, zero and up; or FREESTATE */
|
||||
#define FREESTATE (-1)
|
||||
char flag; /* marks special states */
|
||||
int nins; /* number of inarcs */
|
||||
int nouts; /* number of outarcs */
|
||||
struct arc *ins; /* chain of inarcs */
|
||||
struct arc *outs; /* chain of outarcs */
|
||||
struct state *tmp; /* temporary for traversal algorithms */
|
||||
struct state *next; /* chain for traversing all live states */
|
||||
/* the "next" field is also used to chain free states together */
|
||||
struct state *prev; /* back-link in chain of all live states */
|
||||
};
|
||||
|
||||
struct statebatch
|
||||
{ /* for bulk allocation of states */
|
||||
struct statebatch *next; /* chain link */
|
||||
size_t nstates; /* number of states allocated in this batch */
|
||||
struct state s[FLEXIBLE_ARRAY_MEMBER];
|
||||
};
|
||||
#define STATEBATCHSIZE(n) ((n) * sizeof(struct state) + offsetof(struct statebatch, s))
|
||||
/* first batch will have FIRSTSBSIZE states; then double it until MAXSBSIZE */
|
||||
#define FIRSTSBSIZE 32
|
||||
#define MAXSBSIZE 1024
|
||||
|
||||
struct nfa
|
||||
{
|
||||
struct state *pre; /* pre-initial state */
|
||||
struct state *init; /* initial state */
|
||||
struct state *final; /* final state */
|
||||
struct state *post; /* post-final state */
|
||||
int nstates; /* for numbering states */
|
||||
struct state *states; /* chain of live states */
|
||||
struct state *slast; /* tail of the chain */
|
||||
struct state *freestates; /* chain of free states */
|
||||
struct arc *freearcs; /* chain of free arcs */
|
||||
struct statebatch *lastsb; /* chain of statebatches */
|
||||
struct arcbatch *lastab; /* chain of arcbatches */
|
||||
size_t lastsbused; /* number of states consumed from *lastsb */
|
||||
size_t lastabused; /* number of arcs consumed from *lastab */
|
||||
struct colormap *cm; /* the color map */
|
||||
color bos[2]; /* colors, if any, assigned to BOS and BOL */
|
||||
color eos[2]; /* colors, if any, assigned to EOS and EOL */
|
||||
int flags; /* flags to pass forward to cNFA */
|
||||
int minmatchall; /* min number of chrs to match, if matchall */
|
||||
int maxmatchall; /* max number of chrs to match, or DUPINF */
|
||||
struct vars *v; /* simplifies compile error reporting */
|
||||
struct nfa *parent; /* parent NFA, if any */
|
||||
};
|
||||
|
||||
|
||||
|
||||
/*
|
||||
* definitions for compacted NFA
|
||||
*
|
||||
* The main space savings in a compacted NFA is from making the arcs as small
|
||||
* as possible. We store only the transition color and next-state number for
|
||||
* each arc. The list of out arcs for each state is an array beginning at
|
||||
* cnfa.states[statenumber], and terminated by a dummy carc struct with
|
||||
* co == COLORLESS.
|
||||
*
|
||||
* The non-dummy carc structs are of two types: plain arcs and LACON arcs.
|
||||
* Plain arcs just store the transition color number as "co". LACON arcs
|
||||
* store the lookaround constraint number plus cnfa.ncolors as "co". LACON
|
||||
* arcs can be distinguished from plain by testing for co >= cnfa.ncolors.
|
||||
*
|
||||
* Note that in a plain arc, "co" can be RAINBOW; since that's negative,
|
||||
* it doesn't break the rule about how to recognize LACON arcs.
|
||||
*
|
||||
* We have special markings for "trivial" NFAs that can match any string
|
||||
* (possibly with limits on the number of characters therein). In such a
|
||||
* case, flags & MATCHALL is set (and HASLACONS can't be set). Then the
|
||||
* fields minmatchall and maxmatchall give the minimum and maximum numbers
|
||||
* of characters to match. For example, ".*" produces minmatchall = 0
|
||||
* and maxmatchall = DUPINF, while ".+" produces minmatchall = 1 and
|
||||
* maxmatchall = DUPINF.
|
||||
*/
|
||||
struct carc
|
||||
{
|
||||
color co; /* COLORLESS is list terminator */
|
||||
int to; /* next-state number */
|
||||
};
|
||||
|
||||
struct cnfa
|
||||
{
|
||||
int nstates; /* number of states */
|
||||
int ncolors; /* number of colors (max color in use + 1) */
|
||||
int flags; /* bitmask of the following flags: */
|
||||
#define HASLACONS 01 /* uses lookaround constraints */
|
||||
#define MATCHALL 02 /* matches all strings of a range of lengths */
|
||||
int pre; /* setup state number */
|
||||
int post; /* teardown state number */
|
||||
color bos[2]; /* colors, if any, assigned to BOS and BOL */
|
||||
color eos[2]; /* colors, if any, assigned to EOS and EOL */
|
||||
char *stflags; /* vector of per-state flags bytes */
|
||||
#define CNFA_NOPROGRESS 01 /* flag bit for a no-progress state */
|
||||
struct carc **states; /* vector of pointers to outarc lists */
|
||||
/* states[n] are pointers into a single malloc'd array of arcs */
|
||||
struct carc *arcs; /* the area for the lists */
|
||||
/* these fields are used only in a MATCHALL NFA (else they're -1): */
|
||||
int minmatchall; /* min number of chrs to match */
|
||||
int maxmatchall; /* max number of chrs to match, or DUPINF */
|
||||
};
|
||||
|
||||
/*
|
||||
* When debugging, it's helpful if an un-filled CNFA is all-zeroes.
|
||||
* In production, though, we only require nstates to be zero.
|
||||
*/
|
||||
#ifdef REG_DEBUG
|
||||
#define ZAPCNFA(cnfa) memset(&(cnfa), 0, sizeof(cnfa))
|
||||
#else
|
||||
#define ZAPCNFA(cnfa) ((cnfa).nstates = 0)
|
||||
#endif
|
||||
#define NULLCNFA(cnfa) ((cnfa).nstates == 0)
|
||||
|
||||
/*
|
||||
* This symbol limits the transient heap space used by the regex compiler,
|
||||
* and thereby also the maximum complexity of NFAs that we'll deal with.
|
||||
* Currently we only count NFA states and arcs against this; the other
|
||||
* transient data is generally not large enough to notice compared to those.
|
||||
* Note that we do not charge anything for the final output data structures
|
||||
* (the compacted NFA and the colormap).
|
||||
* The scaling here is based on an empirical measurement that very large
|
||||
* NFAs tend to have about 4 arcs/state.
|
||||
*/
|
||||
#ifndef REG_MAX_COMPILE_SPACE
|
||||
#define REG_MAX_COMPILE_SPACE \
|
||||
(500000 * (sizeof(struct state) + 4 * sizeof(struct arc)))
|
||||
#endif
|
||||
|
||||
/*
|
||||
* subexpression tree
|
||||
*
|
||||
* "op" is one of:
|
||||
* '=' plain regex without interesting substructure (implemented as DFA)
|
||||
* 'b' back-reference (has no substructure either)
|
||||
* '(' no-op capture node: captures the match of its single child
|
||||
* '.' concatenation: matches a match for first child, then second child
|
||||
* '|' alternation: matches a match for any of its children
|
||||
* '*' iteration: matches some number of matches of its single child
|
||||
*
|
||||
* An alternation node can have any number of children (but at least two),
|
||||
* linked through their sibling fields.
|
||||
*
|
||||
* A concatenation node must have exactly two children. It might be useful
|
||||
* to support more, but that would complicate the executor. Note that it is
|
||||
* the first child's greediness that determines the node's preference for
|
||||
* where to split a match.
|
||||
*
|
||||
* Note: when a backref is directly quantified, we stick the min/max counts
|
||||
* into the backref rather than plastering an iteration node on top. This is
|
||||
* for efficiency: there is no need to search for possible division points.
|
||||
*/
|
||||
struct subre
|
||||
{
|
||||
char op; /* see type codes above */
|
||||
char flags;
|
||||
#define LONGER 01 /* prefers longer match */
|
||||
#define SHORTER 02 /* prefers shorter match */
|
||||
#define MIXED 04 /* mixed preference below */
|
||||
#define CAP 010 /* capturing parens here or below */
|
||||
#define BACKR 020 /* back reference here or below */
|
||||
#define INUSE 0100 /* in use in final tree */
|
||||
#define NOPROP 03 /* bits which may not propagate up */
|
||||
#define LMIX(f) ((f)<<2) /* LONGER -> MIXED */
|
||||
#define SMIX(f) ((f)<<1) /* SHORTER -> MIXED */
|
||||
#define UP(f) (((f)&~NOPROP) | (LMIX(f) & SMIX(f) & MIXED))
|
||||
#define MESSY(f) ((f)&(MIXED|CAP|BACKR))
|
||||
#define PREF(f) ((f)&NOPROP)
|
||||
#define PREF2(f1, f2) ((PREF(f1) != 0) ? PREF(f1) : PREF(f2))
|
||||
#define COMBINE(f1, f2) (UP((f1)|(f2)) | PREF2(f1, f2))
|
||||
char latype; /* LATYPE code, if lookaround constraint */
|
||||
int id; /* ID of subre (1..ntree-1) */
|
||||
int capno; /* if capture node, subno to capture into */
|
||||
int backno; /* if backref node, subno it refers to */
|
||||
short min; /* min repetitions for iteration or backref */
|
||||
short max; /* max repetitions for iteration or backref */
|
||||
struct subre *child; /* first child, if any (also freelist chain) */
|
||||
struct subre *sibling; /* next child of same parent, if any */
|
||||
struct state *begin; /* outarcs from here... */
|
||||
struct state *end; /* ...ending in inarcs here */
|
||||
struct cnfa cnfa; /* compacted NFA, if any */
|
||||
struct subre *chain; /* for bookkeeping and error cleanup */
|
||||
};
|
||||
|
||||
|
||||
|
||||
/*
|
||||
* table of function pointers for generic manipulation functions
|
||||
* A regex_t's re_fns points to one of these.
|
||||
*/
|
||||
struct fns
|
||||
{
|
||||
void FUNCPTR(free, (regex_t *));
|
||||
int FUNCPTR(cancel_requested, (void));
|
||||
int FUNCPTR(stack_too_deep, (void));
|
||||
};
|
||||
|
||||
#define CANCEL_REQUESTED(re) \
|
||||
((*((struct fns *) (re)->re_fns)->cancel_requested) ())
|
||||
|
||||
#define STACK_TOO_DEEP(re) \
|
||||
((*((struct fns *) (re)->re_fns)->stack_too_deep) ())
|
||||
|
||||
|
||||
/*
|
||||
* the insides of a regex_t, hidden behind a void *
|
||||
*/
|
||||
struct guts
|
||||
{
|
||||
int magic;
|
||||
#define GUTSMAGIC 0xfed9
|
||||
int cflags; /* copy of compile flags */
|
||||
long info; /* copy of re_info */
|
||||
size_t nsub; /* copy of re_nsub */
|
||||
struct subre *tree;
|
||||
struct cnfa search; /* for fast preliminary search */
|
||||
int ntree; /* number of subre's, plus one */
|
||||
struct colormap cmap;
|
||||
int FUNCPTR(compare, (const chr *, const chr *, size_t));
|
||||
struct subre *lacons; /* lookaround-constraint vector */
|
||||
int nlacons; /* size of lacons[]; note that only slots
|
||||
* numbered 1 .. nlacons-1 are used */
|
||||
};
|
||||
|
||||
|
||||
/* prototypes for functions that are exported from regcomp.c to regexec.c */
|
||||
extern void pg_set_regex_collation(Oid collation);
|
||||
extern color pg_reg_getcolor(struct colormap *cm, chr c);
|
||||
Reference in New Issue
Block a user