diff options
author | Michael Paquier <michael@paquier.xyz> | 2022-11-30 09:34:32 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2022-11-30 09:34:32 +0900 |
commit | d18655cc037a811b936971e99af4a2427a9739d6 (patch) | |
tree | de108fcf50b34b04b0ebe35b4981c3e789aaad56 /src/bin/pg_basebackup/pg_receivewal.c | |
parent | d74a366aa2fa3f11fc4fbd1b2817ac252f6f9ba4 (diff) |
Refactor code parsing compression option values (-Z/--compress)
This commit moves the code in charge of deparsing the method and detail
strings fed later to parse_compress_specification() to a common routine,
where the backward-compatible case of only an integer being found (N
= 0 => "none", N > 1 => gzip at level N) is handled.
Note that this has a side-effect for pg_basebackup, as we now attempt to
detect "server-" and "client-" before checking for the integer-only
pre-14 grammar, where values like server-N and client-N (without the
follow-up detail string) are now valid rather than failing because of an
unsupported method name. Past grammars are still handled the same way,
but these flavors are now authorized, and would now switch to consider N
= 0 as no compression and N > 1 as gzip with the compression level used
as N, with the caller still controlling if the compression method should
be done server-side, client-side or is unspecified. The documentation
of pg_basebackup is updated to reflect that.
This benefits other code paths that would like to rely on the same logic
as pg_basebackup and pg_receivewal with option values used for
compression specifications, one area discussed lately being pg_dump.
Author: Georgios Kokolatos, Michael Paquier
Discussion: https://postgr.es/m/O4mutIrCES8ZhlXJiMvzsivT7ztAMja2lkdL1LJx6O5f22I2W8PBIeLKz7mDLwxHoibcnRAYJXm1pH4tyUNC4a8eDzLn22a6Pb1S74Niexg=@pm.me
Diffstat (limited to 'src/bin/pg_basebackup/pg_receivewal.c')
-rw-r--r-- | src/bin/pg_basebackup/pg_receivewal.c | 61 |
1 files changed, 0 insertions, 61 deletions
diff --git a/src/bin/pg_basebackup/pg_receivewal.c b/src/bin/pg_basebackup/pg_receivewal.c index 63207ca025e..c7a46b8a2ab 100644 --- a/src/bin/pg_basebackup/pg_receivewal.c +++ b/src/bin/pg_basebackup/pg_receivewal.c @@ -57,8 +57,6 @@ static XLogRecPtr endpos = InvalidXLogRecPtr; static void usage(void); -static void parse_compress_options(char *option, char **algorithm, - char **detail); static DIR *get_destination_dir(char *dest_folder); static void close_destination_dir(DIR *dest_dir, char *dest_folder); static XLogRecPtr FindStreamingStart(uint32 *tli); @@ -109,65 +107,6 @@ usage(void) printf(_("%s home page: <%s>\n"), PACKAGE_NAME, PACKAGE_URL); } -/* - * Basic parsing of a value specified for -Z/--compress - * - * The parsing consists of a METHOD:DETAIL string fed later on to a more - * advanced routine in charge of proper validation checks. This only extracts - * METHOD and DETAIL. If only an integer is found, the method is implied by - * the value specified. - */ -static void -parse_compress_options(char *option, char **algorithm, char **detail) -{ - char *sep; - char *endp; - long result; - - /* - * Check whether the compression specification consists of a bare integer. - * - * For backward-compatibility, assume "none" if the integer found is zero - * and "gzip" otherwise. - */ - result = strtol(option, &endp, 10); - if (*endp == '\0') - { - if (result == 0) - { - *algorithm = pstrdup("none"); - *detail = NULL; - } - else - { - *algorithm = pstrdup("gzip"); - *detail = pstrdup(option); - } - return; - } - - /* - * Check whether there is a compression detail following the algorithm - * name. - */ - sep = strchr(option, ':'); - if (sep == NULL) - { - *algorithm = pstrdup(option); - *detail = NULL; - } - else - { - char *alg; - - alg = palloc((sep - option) + 1); - memcpy(alg, option, sep - option); - alg[sep - option] = '\0'; - - *algorithm = alg; - *detail = pstrdup(sep + 1); - } -} /* * Check if the filename looks like a WAL file, letting caller know if this |