PostgreSQL Source Code
git master
Loading...
Searching...
No Matches
write_manifest.h
Go to the documentation of this file.
1
/*-------------------------------------------------------------------------
2
*
3
* Write a new backup manifest.
4
*
5
* Portions Copyright (c) 1996-2026, PostgreSQL Global Development Group
6
* Portions Copyright (c) 1994, Regents of the University of California
7
*
8
* src/bin/pg_combinebackup/write_manifest.h
9
*
10
*-------------------------------------------------------------------------
11
*/
12
#ifndef WRITE_MANIFEST_H
13
#define WRITE_MANIFEST_H
14
15
#include "
common/checksum_helper.h
"
16
17
struct
manifest_wal_range
;
18
19
struct
manifest_writer
;
20
typedef
struct
manifest_writer
manifest_writer
;
21
22
extern
manifest_writer
*
create_manifest_writer
(
char
*
directory
,
23
uint64
system_identifier);
24
extern
void
add_file_to_manifest
(
manifest_writer
*
mwriter
,
25
const
char
*
manifest_path
,
26
uint64
size,
time_t
mtime
,
27
pg_checksum_type
checksum_type,
28
int
checksum_length,
29
uint8
*checksum_payload);
30
extern
void
finalize_manifest
(
manifest_writer
*
mwriter
,
31
struct
manifest_wal_range
*first_wal_range);
32
33
#endif
/* WRITE_MANIFEST_H */
uint8
uint8_t uint8
Definition
c.h:544
uint64
uint64_t uint64
Definition
c.h:547
checksum_helper.h
pg_checksum_type
pg_checksum_type
Definition
checksum_helper.h:30
fb
static int fb(int x)
Definition
preproc-init.c:92
manifest_wal_range
Definition
load_manifest.h:45
manifest_writer
Definition
write_manifest.c:28
finalize_manifest
void finalize_manifest(manifest_writer *mwriter, struct manifest_wal_range *first_wal_range)
Definition
write_manifest.c:142
create_manifest_writer
manifest_writer * create_manifest_writer(char *directory, uint64 system_identifier)
Definition
write_manifest.c:48
add_file_to_manifest
void add_file_to_manifest(manifest_writer *mwriter, const char *manifest_path, uint64 size, time_t mtime, pg_checksum_type checksum_type, int checksum_length, uint8 *checksum_payload)
Definition
write_manifest.c:76
directory
static const char * directory
Definition
zic.c:648
src
bin
pg_combinebackup
write_manifest.h
Generated on Sun Feb 1 2026 18:13:15 for PostgreSQL Source Code by
1.9.8