PostgreSQL Source Code  git master
pg_backup.h
Go to the documentation of this file.
1 /*-------------------------------------------------------------------------
2  *
3  * pg_backup.h
4  *
5  * Public interface to the pg_dump archiver routines.
6  *
7  * See the headers to pg_restore for more details.
8  *
9  * Copyright (c) 2000, Philip Warner
10  * Rights are granted to use this software in any way so long
11  * as this notice is not removed.
12  *
13  * The author is not responsible for loss or damages that may
14  * result from its use.
15  *
16  *
17  * IDENTIFICATION
18  * src/bin/pg_dump/pg_backup.h
19  *
20  *-------------------------------------------------------------------------
21  */
22 
23 #ifndef PG_BACKUP_H
24 #define PG_BACKUP_H
25 
26 #include "common/compression.h"
27 #include "common/file_utils.h"
28 #include "fe_utils/simple_list.h"
29 #include "libpq-fe.h"
30 
31 
32 typedef enum trivalue
33 {
38 
39 typedef enum _archiveFormat
40 {
43  archTar = 3,
44  archNull = 4,
47 
48 typedef enum _archiveMode
49 {
54 
55 typedef enum _teSection
56 {
57  SECTION_NONE = 1, /* comments, ACLs, etc; can be anywhere */
58  SECTION_PRE_DATA, /* stuff to be processed before data */
59  SECTION_DATA, /* table data, large objects, LO comments */
60  SECTION_POST_DATA, /* stuff to be processed after data */
62 
63 /* We need one enum entry per prepared query in pg_dump */
65 {
77  NUM_PREP_QUERIES /* must be last */
78 };
79 
80 /* Parameters needed by ConnectDatabase; same for dump and restore */
81 typedef struct _connParams
82 {
83  /* These fields record the actual command line parameters */
84  char *dbname; /* this may be a connstring! */
85  char *pgport;
86  char *pghost;
87  char *username;
89  /* If not NULL, this overrides the dbname obtained from command line */
90  /* (but *only* the DB name, not anything else in the connstring) */
93 
94 typedef struct _restoreOptions
95 {
96  int createDB; /* Issue commands to create the database */
97  int noOwner; /* Don't try to match original object owner */
98  int noTableAm; /* Don't issue table-AM-related commands */
99  int noTablespace; /* Don't issue tablespace-related commands */
100  int disable_triggers; /* disable triggers during data-only
101  * restore */
102  int use_setsessauth; /* Use SET SESSION AUTHORIZATION commands
103  * instead of OWNER TO */
104  char *superuser; /* Username to use as superuser */
105  char *use_role; /* Issue SET ROLE to this */
108  int dump_inserts; /* 0 = COPY, otherwise rows per INSERT */
111  int no_comments; /* Skip comments */
112  int no_publications; /* Skip publication entries */
113  int no_security_labels; /* Skip security label entries */
114  int no_subscriptions; /* Skip subscription entries */
116 
117  const char *filename;
118  int dataOnly;
121  int verbose;
122  int aclsSkip;
123  const char *lockWaitTimeout;
125 
127  char *tocFile;
128  int format;
129  char *formatName;
130 
131  int selTypes;
132  int selIndex;
135  int selTable;
142 
143  int useDB;
144  ConnParams cparams; /* parameters to use if useDB */
145 
149  * compression */
150  int suppressDumpWarnings; /* Suppress output of WARNING entries
151  * to stderr */
152 
153  bool single_txn; /* restore all TOCs in one transaction */
154  int txn_size; /* restore this many TOCs per txn, if > 0 */
155 
156  bool *idWanted; /* array showing which dump IDs to emit */
158  int sequence_data; /* dump sequence data even in schema-only mode */
161 
162 typedef struct _dumpOptions
163 {
165 
167 
168  /* various user-settable parameters */
170  bool dataOnly;
171  int dumpSections; /* bitmask of chosen sections */
172  bool aclsSkip;
173  const char *lockWaitTimeout;
174  int dump_inserts; /* 0 = COPY, otherwise rows per INSERT */
175 
176  /* flags for various command-line long options */
193 
194  /* default, if no "inclusion" switches appear, is to dump everything */
196 
199  bool outputLOs;
203 
204  int sequence_data; /* dump sequence data even in schema-only mode */
207 
208 /*
209  * We may want to have some more user-readable data, but in the mean
210  * time this gives us some abstraction and type checking.
211  */
212 typedef struct Archive
213 {
214  DumpOptions *dopt; /* options, if dumping */
215  RestoreOptions *ropt; /* options, if restoring */
216 
217  int verbose;
218  char *remoteVersionStr; /* server's version string */
219  int remoteVersion; /* same in numeric form */
220  bool isStandby; /* is server a standby node */
221 
222  int minRemoteVersion; /* allowable range */
224 
225  int numWorkers; /* number of parallel processes */
226  char *sync_snapshot_id; /* sync snapshot id for parallel operation */
227 
228  /* info needed for string escaping */
229  int encoding; /* libpq code for client_encoding */
230  bool std_strings; /* standard_conforming_strings */
231 
232  /* other important stuff */
233  char *searchpath; /* search_path to set during restore */
234  char *use_role; /* Issue SET ROLE to this */
235 
236  /* error handling */
237  bool exit_on_error; /* whether to exit on SQL errors... */
238  int n_errors; /* number of errors (if no die) */
239 
240  /* prepared-query status */
241  bool *is_prepared; /* indexed by enum _dumpPreparedQueries */
242 
243  /* The rest is private */
245 
246 
247 /*
248  * pg_dump uses two different mechanisms for identifying database objects:
249  *
250  * CatalogId represents an object by the tableoid and oid of its defining
251  * entry in the system catalogs. We need this to interpret pg_depend entries,
252  * for instance.
253  *
254  * DumpId is a simple sequential integer counter assigned as dumpable objects
255  * are identified during a pg_dump run. We use DumpId internally in preference
256  * to CatalogId for two reasons: it's more compact, and we can assign DumpIds
257  * to "objects" that don't have a separate CatalogId. For example, it is
258  * convenient to consider a table, its data, and its ACL as three separate
259  * dumpable "objects" with distinct DumpIds --- this lets us reason about the
260  * order in which to dump these things.
261  */
262 
263 typedef struct
264 {
265  /* Note: this struct must not contain any unused bytes */
268 } CatalogId;
269 
270 typedef int DumpId;
271 
272 #define InvalidDumpId 0
273 
274 /*
275  * Function pointer prototypes for assorted callback methods.
276  */
277 
278 typedef int (*DataDumperPtr) (Archive *AH, const void *userArg);
279 
280 typedef void (*SetupWorkerPtrType) (Archive *AH);
281 
282 /*
283  * Main archiver interface.
284  */
285 
286 extern void ConnectDatabase(Archive *AHX,
287  const ConnParams *cparams,
288  bool isReconnect);
289 extern void DisconnectDatabase(Archive *AHX);
290 extern PGconn *GetConnection(Archive *AHX);
291 
292 /* Called to write *data* to the archive */
293 extern void WriteData(Archive *AHX, const void *data, size_t dLen);
294 
295 extern int StartLO(Archive *AHX, Oid oid);
296 extern int EndLO(Archive *AHX, Oid oid);
297 
298 extern void CloseArchive(Archive *AHX);
299 
300 extern void SetArchiveOptions(Archive *AH, DumpOptions *dopt, RestoreOptions *ropt);
301 
302 extern void ProcessArchiveRestoreOptions(Archive *AHX);
303 
304 extern void RestoreArchive(Archive *AHX);
305 
306 /* Open an existing archive */
307 extern Archive *OpenArchive(const char *FileSpec, const ArchiveFormat fmt);
308 
309 /* Create a new archive */
310 extern Archive *CreateArchive(const char *FileSpec, const ArchiveFormat fmt,
311  const pg_compress_specification compression_spec,
312  bool dosync, ArchiveMode mode,
315 
316 /* The --list option */
317 extern void PrintTOCSummary(Archive *AHX);
318 
319 extern RestoreOptions *NewRestoreOptions(void);
320 
321 extern DumpOptions *NewDumpOptions(void);
322 extern void InitDumpOptions(DumpOptions *opts);
324 
325 /* Rearrange and filter TOC entries */
326 extern void SortTocFromFile(Archive *AHX);
327 
328 /* Convenience functions used only when writing DATA */
329 extern void archputs(const char *s, Archive *AH);
330 extern int archprintf(Archive *AH, const char *fmt,...) pg_attribute_printf(2, 3);
331 
332 #define appendStringLiteralAH(buf,str,AH) \
333  appendStringLiteral(buf, str, (AH)->encoding, (AH)->std_strings)
334 
335 #endif /* PG_BACKUP_H */
#define pg_attribute_printf(f, a)
Definition: c.h:191
DataDirSyncMethod
Definition: file_utils.h:28
static DataDirSyncMethod sync_method
Definition: initdb.c:170
static void const char * fmt
static AmcheckOptions opts
Definition: pg_amcheck.c:111
void ConnectDatabase(Archive *AHX, const ConnParams *cparams, bool isReconnect)
Definition: pg_backup_db.c:110
_teSection
Definition: pg_backup.h:56
@ SECTION_NONE
Definition: pg_backup.h:57
@ SECTION_POST_DATA
Definition: pg_backup.h:60
@ SECTION_PRE_DATA
Definition: pg_backup.h:58
@ SECTION_DATA
Definition: pg_backup.h:59
int DumpId
Definition: pg_backup.h:270
int EndLO(Archive *AHX, Oid oid)
void ProcessArchiveRestoreOptions(Archive *AHX)
void(* SetupWorkerPtrType)(Archive *AH)
Definition: pg_backup.h:280
RestoreOptions * NewRestoreOptions(void)
int StartLO(Archive *AHX, Oid oid)
Archive * CreateArchive(const char *FileSpec, const ArchiveFormat fmt, const pg_compress_specification compression_spec, bool dosync, ArchiveMode mode, SetupWorkerPtrType setupDumpWorker, DataDirSyncMethod sync_method)
enum _archiveFormat ArchiveFormat
PGconn * GetConnection(Archive *AHX)
Definition: pg_backup_db.c:254
struct Archive Archive
void CloseArchive(Archive *AHX)
struct _connParams ConnParams
void SortTocFromFile(Archive *AHX)
_archiveMode
Definition: pg_backup.h:49
@ archModeWrite
Definition: pg_backup.h:51
@ archModeAppend
Definition: pg_backup.h:50
@ archModeRead
Definition: pg_backup.h:52
_dumpPreparedQueries
Definition: pg_backup.h:65
@ PREPQUERY_DUMPFUNC
Definition: pg_backup.h:71
@ PREPQUERY_DUMPTABLEATTACH
Definition: pg_backup.h:74
@ PREPQUERY_DUMPBASETYPE
Definition: pg_backup.h:67
@ PREPQUERY_DUMPRANGETYPE
Definition: pg_backup.h:73
@ PREPQUERY_DUMPOPR
Definition: pg_backup.h:72
@ PREPQUERY_DUMPDOMAIN
Definition: pg_backup.h:69
@ NUM_PREP_QUERIES
Definition: pg_backup.h:77
@ PREPQUERY_DUMPCOMPOSITETYPE
Definition: pg_backup.h:68
@ PREPQUERY_DUMPAGG
Definition: pg_backup.h:66
@ PREPQUERY_GETCOLUMNACLS
Definition: pg_backup.h:75
@ PREPQUERY_GETDOMAINCONSTRAINTS
Definition: pg_backup.h:76
@ PREPQUERY_DUMPENUMTYPE
Definition: pg_backup.h:70
trivalue
Definition: pg_backup.h:33
@ TRI_YES
Definition: pg_backup.h:36
@ TRI_DEFAULT
Definition: pg_backup.h:34
@ TRI_NO
Definition: pg_backup.h:35
int archprintf(Archive *AH, const char *fmt,...) pg_attribute_printf(2
struct _restoreOptions RestoreOptions
void PrintTOCSummary(Archive *AHX)
void SetArchiveOptions(Archive *AH, DumpOptions *dopt, RestoreOptions *ropt)
DumpOptions * NewDumpOptions(void)
void DisconnectDatabase(Archive *AHX)
Definition: pg_backup_db.c:225
void RestoreArchive(Archive *AHX)
void archputs(const char *s, Archive *AH)
enum _teSection teSection
struct _dumpOptions DumpOptions
enum _archiveMode ArchiveMode
_archiveFormat
Definition: pg_backup.h:40
@ archUnknown
Definition: pg_backup.h:41
@ archTar
Definition: pg_backup.h:43
@ archCustom
Definition: pg_backup.h:42
@ archDirectory
Definition: pg_backup.h:45
@ archNull
Definition: pg_backup.h:44
Archive * OpenArchive(const char *FileSpec, const ArchiveFormat fmt)
void InitDumpOptions(DumpOptions *opts)
DumpOptions * dumpOptionsFromRestoreOptions(RestoreOptions *ropt)
void WriteData(Archive *AHX, const void *data, size_t dLen)
int(* DataDumperPtr)(Archive *AH, const void *userArg)
Definition: pg_backup.h:278
static PgChecksumMode mode
Definition: pg_checksums.c:56
const void * data
static bool dosync
Definition: pg_dump.c:103
static void setupDumpWorker(Archive *AH)
Definition: pg_dump.c:1351
unsigned int Oid
Definition: postgres_ext.h:31
int minRemoteVersion
Definition: pg_backup.h:222
int remoteVersion
Definition: pg_backup.h:219
char * remoteVersionStr
Definition: pg_backup.h:218
DumpOptions * dopt
Definition: pg_backup.h:214
bool * is_prepared
Definition: pg_backup.h:241
bool exit_on_error
Definition: pg_backup.h:237
char * searchpath
Definition: pg_backup.h:233
bool isStandby
Definition: pg_backup.h:220
int maxRemoteVersion
Definition: pg_backup.h:223
int n_errors
Definition: pg_backup.h:238
bool std_strings
Definition: pg_backup.h:230
int numWorkers
Definition: pg_backup.h:225
int encoding
Definition: pg_backup.h:229
char * use_role
Definition: pg_backup.h:234
char * sync_snapshot_id
Definition: pg_backup.h:226
int verbose
Definition: pg_backup.h:217
RestoreOptions * ropt
Definition: pg_backup.h:215
Oid tableoid
Definition: pg_backup.h:266
char * override_dbname
Definition: pg_backup.h:91
char * pgport
Definition: pg_backup.h:85
char * pghost
Definition: pg_backup.h:86
trivalue promptPassword
Definition: pg_backup.h:88
char * username
Definition: pg_backup.h:87
char * dbname
Definition: pg_backup.h:84
bool dataOnly
Definition: pg_backup.h:170
int dump_inserts
Definition: pg_backup.h:174
int no_toast_compression
Definition: pg_backup.h:184
int column_inserts
Definition: pg_backup.h:178
bool dontOutputLOs
Definition: pg_backup.h:200
int use_setsessauth
Definition: pg_backup.h:190
int outputCreateDB
Definition: pg_backup.h:198
bool include_everything
Definition: pg_backup.h:195
int sequence_data
Definition: pg_backup.h:204
int disable_dollar_quoting
Definition: pg_backup.h:177
bool outputLOs
Definition: pg_backup.h:199
int no_comments
Definition: pg_backup.h:180
int serializable_deferrable
Definition: pg_backup.h:186
int outputNoTableAm
Definition: pg_backup.h:188
int enable_row_security
Definition: pg_backup.h:191
char * outputSuperuser
Definition: pg_backup.h:202
int dumpSections
Definition: pg_backup.h:171
int no_security_labels
Definition: pg_backup.h:181
int no_unlogged_table_data
Definition: pg_backup.h:185
int no_publications
Definition: pg_backup.h:182
ConnParams cparams
Definition: pg_backup.h:164
const char * lockWaitTimeout
Definition: pg_backup.h:173
int no_subscriptions
Definition: pg_backup.h:183
bool aclsSkip
Definition: pg_backup.h:172
int load_via_partition_root
Definition: pg_backup.h:192
int outputClean
Definition: pg_backup.h:197
int do_nothing
Definition: pg_backup.h:205
int outputNoTablespaces
Definition: pg_backup.h:189
int disable_triggers
Definition: pg_backup.h:187
int outputNoOwner
Definition: pg_backup.h:201
bool schemaOnly
Definition: pg_backup.h:169
int binary_upgrade
Definition: pg_backup.h:166
SimpleStringList schemaExcludeNames
Definition: pg_backup.h:139
int include_everything
Definition: pg_backup.h:124
bool * idWanted
Definition: pg_backup.h:156
int suppressDumpWarnings
Definition: pg_backup.h:150
ConnParams cparams
Definition: pg_backup.h:144
SimpleStringList functionNames
Definition: pg_backup.h:137
char * use_role
Definition: pg_backup.h:105
SimpleStringList tableNames
Definition: pg_backup.h:141
SimpleStringList indexNames
Definition: pg_backup.h:136
pg_compress_specification compression_spec
Definition: pg_backup.h:148
int no_subscriptions
Definition: pg_backup.h:114
SimpleStringList triggerNames
Definition: pg_backup.h:140
int disable_dollar_quoting
Definition: pg_backup.h:107
char * formatName
Definition: pg_backup.h:129
SimpleStringList schemaNames
Definition: pg_backup.h:138
const char * filename
Definition: pg_backup.h:117
int no_security_labels
Definition: pg_backup.h:113
char * tocFile
Definition: pg_backup.h:127
char * superuser
Definition: pg_backup.h:104
const char * lockWaitTimeout
Definition: pg_backup.h:123
int enable_row_security
Definition: pg_backup.h:157
int disable_triggers
Definition: pg_backup.h:100
int noDataForFailedTables
Definition: pg_backup.h:146
trivalue
Definition: vacuumlo.c:35
ArchiveMode
Definition: xlog.h:62