]> granicus.if.org Git - postgresql/commit
Simplify and document regex library's compact-NFA representation.
authorTom Lane <tgl@sss.pgh.pa.us>
Sat, 7 Jul 2012 21:39:50 +0000 (17:39 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Sat, 7 Jul 2012 21:39:50 +0000 (17:39 -0400)
commitc6aae3042be5249e672b731ebeb21875b5343010
treecc5a7b837854edb3573a915766377501a7ac949e
parenta184e4db83c80d28103774ced984c7790fbd44ba
Simplify and document regex library's compact-NFA representation.

The previous coding abused the first element of a cNFA state's arcs list
to hold a per-state flag bit, which was confusing, undocumented, and not
even particularly efficient.  Get rid of that in favor of a separate
"stflags" vector.  Since there's only one bit in use, I chose to allocate a
char per state; we could possibly replace this with a bitmap at some point,
but that would make accesses a little slower.  It's already about 8X
smaller than before, so let's not get overly tense.

Also document the representation better than it was before, which is to say
not at all.

This patch is a byproduct of investigations towards extracting a "fixed
prefix" string from the compact-NFA representation of regex patterns.
Might need to back-patch it if we decide to back-patch that fix, but for
now it's just code cleanup so I'll just put it in HEAD.
src/backend/regex/regc_nfa.c
src/backend/regex/regcomp.c
src/backend/regex/rege_dfa.c
src/include/regex/regguts.h