diff options
author | Robert Haas <rhaas@postgresql.org> | 2022-08-10 14:03:09 -0400 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2022-08-10 14:03:09 -0400 |
commit | f88798c098d2afd5223e1ca5c9d107cc18864fcc (patch) | |
tree | cd38f288a93c749cca5f3cfe5467c84a35514438 /src/include/backup/backup_manifest.h | |
parent | ad3e07c156544f31d02e55e95ba7954ea87a2ee8 (diff) |
Move basebackup code to new directory src/backend/backup
Reviewed by David Steele and Justin Pryzby
Discussion: http://postgr.es/m/CA+TgmoafqboATDSoXHz8VLrSwK_MDhjthK4hEpYjqf9_1Fmczw%40mail.gmail.com
Diffstat (limited to 'src/include/backup/backup_manifest.h')
-rw-r--r-- | src/include/backup/backup_manifest.h | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/src/include/backup/backup_manifest.h b/src/include/backup/backup_manifest.h new file mode 100644 index 00000000000..b15f0fa2ec6 --- /dev/null +++ b/src/include/backup/backup_manifest.h @@ -0,0 +1,54 @@ +/*------------------------------------------------------------------------- + * + * backup_manifest.h + * Routines for generating a backup manifest. + * + * Portions Copyright (c) 2010-2022, PostgreSQL Global Development Group + * + * src/include/backup/backup_manifest.h + * + *------------------------------------------------------------------------- + */ +#ifndef BACKUP_MANIFEST_H +#define BACKUP_MANIFEST_H + +#include "backup/basebackup_sink.h" +#include "common/checksum_helper.h" +#include "pgtime.h" +#include "storage/buffile.h" + +typedef enum manifest_option +{ + MANIFEST_OPTION_YES, + MANIFEST_OPTION_NO, + MANIFEST_OPTION_FORCE_ENCODE +} backup_manifest_option; + +typedef struct backup_manifest_info +{ + BufFile *buffile; + pg_checksum_type checksum_type; + pg_cryptohash_ctx *manifest_ctx; + uint64 manifest_size; + bool force_encode; + bool first_file; + bool still_checksumming; +} backup_manifest_info; + +extern void InitializeBackupManifest(backup_manifest_info *manifest, + backup_manifest_option want_manifest, + pg_checksum_type manifest_checksum_type); +extern void AddFileToBackupManifest(backup_manifest_info *manifest, + const char *spcoid, + const char *pathname, size_t size, + pg_time_t mtime, + pg_checksum_context *checksum_ctx); +extern void AddWALInfoToBackupManifest(backup_manifest_info *manifest, + XLogRecPtr startptr, + TimeLineID starttli, XLogRecPtr endptr, + TimeLineID endtli); + +extern void SendBackupManifest(backup_manifest_info *manifest, bbsink *sink); +extern void FreeBackupManifest(backup_manifest_info *manifest); + +#endif |