pgsql: bootstrap: pure parser and reentrant scanner

Started by Peter Eisentrautover 1 year ago1 messagescomitters
Jump to latest
#1Peter Eisentraut
peter_e@gmx.net

bootstrap: pure parser and reentrant scanner

Use the flex %option reentrant and the bison option %pure-parser to
make the generated scanner and parser pure, reentrant, and
thread-safe.

Make the generated scanner use palloc() etc. instead of malloc() etc.

For the bootstrap scanner and parser, reentrancy and memory management
aren't that important, but we make this change here anyway so that all
the scanners and parsers in the backend use a similar set of options
and APIs.

Reviewed-by: Heikki Linnakangas <hlinnaka@iki.fi>
Reviewed-by: Andreas Karlsson <andreas@proxel.se>
Discussion: /messages/by-id/eb6faeac-2a8a-4b69-9189-c33c520e5b7b@eisentraut.org

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/3e4bacb171001644583ac14e29ae1b09ce818c92

Modified Files
--------------
src/backend/bootstrap/bootparse.y | 9 ++--
src/backend/bootstrap/bootscanner.l | 91 +++++++++++++++++++++++++------------
src/backend/bootstrap/bootstrap.c | 6 ++-
src/include/bootstrap/bootstrap.h | 12 +++--
4 files changed, 80 insertions(+), 38 deletions(-)