pgsql: Refactor creation of backup_label and backup history files - Mailing list pgsql-committers

From Michael Paquier
Subject pgsql: Refactor creation of backup_label and backup history files
Date
Msg-id E1ocdip-0021sH-Ve@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Refactor creation of backup_label and backup history files

This change simplifies some of the logic related to the generation and
creation of the backup_label and backup history files, which has become
unnecessarily complicated since the removal of the exclusive backup mode
in commit 39969e2.  The code was previously generating the contents of
these files as a string (start phase for the backup_label and stop phase
for the backup history file), one problem being that the contents of the
backup_label string were scanned to grab some of its internal contents
at the stop phase.

This commit changes the logic so as we store the data required to build
these files in an intermediate structure named BackupState.  The
backup_label file and backup history file strings are generated when
they are ready to be sent back to the client.  Both files are now
generated with the same code path.  While on it, this commit renames
some variables for clarity.

Two new files named xlogbackup.{c,h} are introduced in this commit, to
remove from xlog.c some of the logic around base backups.  Note that
more could be moved to this new set of files.

Author: Bharath Rupireddy, Michael Paquier
Reviewed-by: Fujii Masao
Discussion: https://postgr.es/m/CALj2ACXWwTDgJqCjdaPyfR7djwm6SrybGcrZyrvojzcsmt4FFw@mail.gmail.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/7d708093b7400327658a30d1aa1d5e284d37622c

Modified Files
--------------
src/backend/access/transam/Makefile     |   1 +
src/backend/access/transam/meson.build  |   1 +
src/backend/access/transam/xlog.c       | 221 +++++++++++---------------------
src/backend/access/transam/xlogbackup.c |  80 ++++++++++++
src/backend/access/transam/xlogfuncs.c  |  96 ++++++++------
src/backend/backup/basebackup.c         |  42 ++++--
src/include/access/xlog.h               |  10 +-
src/include/access/xlogbackup.h         |  42 ++++++
src/tools/pgindent/typedefs.list        |   1 +
9 files changed, 292 insertions(+), 202 deletions(-)


pgsql-committers by date:

Previous
From: Tom Lane
Date:
Subject: pgsql: Fix tupdesc lifespan bug with AfterTriggersTableData.storeslot.
Next
From: Amit Kapila
Date:
Subject: pgsql: Remove unused xid parameter.