mirror of
https://github.com/pgbackrest/pgbackrest.git
synced 2025-03-03 14:52:21 +02:00
There are already enough files to warrant a separate directory and more are coming. Also remove extraneous includes.
323 lines
12 KiB
C
323 lines
12 KiB
C
/***********************************************************************************************************************************
|
|
Main
|
|
***********************************************************************************************************************************/
|
|
#include "build.auto.h"
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <unistd.h>
|
|
|
|
#include "command/annotate/annotate.h"
|
|
#include "command/archive/get/get.h"
|
|
#include "command/archive/push/push.h"
|
|
#include "command/backup/backup.h"
|
|
#include "command/check/check.h"
|
|
#include "command/command.h"
|
|
#include "command/control/start.h"
|
|
#include "command/control/stop.h"
|
|
#include "command/exit.h"
|
|
#include "command/expire/expire.h"
|
|
#include "command/help/help.h"
|
|
#include "command/info/info.h"
|
|
#include "command/local/local.h"
|
|
#include "command/manifest/manifest.h"
|
|
#include "command/remote/remote.h"
|
|
#include "command/repo/create.h"
|
|
#include "command/repo/get.h"
|
|
#include "command/repo/ls.h"
|
|
#include "command/repo/put.h"
|
|
#include "command/repo/rm.h"
|
|
#include "command/restore/restore.h"
|
|
#include "command/server/ping.h"
|
|
#include "command/server/server.h"
|
|
#include "command/stanza/create.h"
|
|
#include "command/stanza/delete.h"
|
|
#include "command/stanza/upgrade.h"
|
|
#include "command/verify/verify.h"
|
|
#include "common/debug.h"
|
|
#include "common/io/fdRead.h"
|
|
#include "common/io/fdWrite.h"
|
|
#include "common/stat.h"
|
|
#include "config/config.h"
|
|
#include "config/load.h"
|
|
#include "postgres/interface.h"
|
|
#include "protocol/helper.h"
|
|
#include "storage/azure/helper.h"
|
|
#include "storage/cifs/helper.h"
|
|
#include "storage/gcs/helper.h"
|
|
#include "storage/helper.h"
|
|
#include "storage/s3/helper.h"
|
|
#include "version.h"
|
|
|
|
/***********************************************************************************************************************************
|
|
Include automatically generated help data
|
|
***********************************************************************************************************************************/
|
|
#include "command/help/help.auto.c.inc"
|
|
|
|
int
|
|
main(int argListSize, const char *argList[])
|
|
{
|
|
// Set stack trace and mem context error cleanup handlers
|
|
static const ErrorHandlerFunction errorHandlerList[] = {stackTraceClean, memContextClean};
|
|
errorHandlerSet(errorHandlerList, LENGTH_OF(errorHandlerList));
|
|
|
|
// Set storage helpers
|
|
static const StorageHelper storageHelperList[] =
|
|
{
|
|
STORAGE_AZURE_HELPER,
|
|
STORAGE_CIFS_HELPER,
|
|
STORAGE_GCS_HELPER,
|
|
STORAGE_S3_HELPER,
|
|
STORAGE_END_HELPER
|
|
};
|
|
|
|
storageHelperInit(storageHelperList);
|
|
|
|
FUNCTION_LOG_BEGIN(logLevelDebug);
|
|
FUNCTION_LOG_PARAM(INT, argListSize);
|
|
FUNCTION_LOG_PARAM(CHARPY, argList);
|
|
FUNCTION_LOG_END();
|
|
|
|
// Initialize command with the start time
|
|
cmdInit();
|
|
|
|
// Initialize statistics collector
|
|
statInit();
|
|
|
|
// Initialize exit handler
|
|
exitInit();
|
|
|
|
// Process commands
|
|
volatile int result = 0;
|
|
volatile bool error = false;
|
|
|
|
TRY_BEGIN()
|
|
{
|
|
// Load the configuration
|
|
// -------------------------------------------------------------------------------------------------------------------------
|
|
cfgLoad((unsigned int)argListSize, argList);
|
|
ConfigCommandRole commandRole = cfgCommandRole();
|
|
|
|
// Display help
|
|
// -------------------------------------------------------------------------------------------------------------------------
|
|
if (cfgCommandHelp())
|
|
{
|
|
cmdHelp(BUF(helpData, sizeof(helpData)));
|
|
}
|
|
// Local role
|
|
// -------------------------------------------------------------------------------------------------------------------------
|
|
else if (commandRole == cfgCmdRoleLocal)
|
|
{
|
|
String *name = strNewFmt(PROTOCOL_SERVICE_LOCAL "-%s", strZ(cfgOptionDisplay(cfgOptProcess)));
|
|
|
|
cmdLocal(
|
|
protocolServerNew(
|
|
name, PROTOCOL_SERVICE_LOCAL_STR, ioFdReadNewOpen(name, STDIN_FILENO, cfgOptionUInt64(cfgOptProtocolTimeout)),
|
|
ioFdWriteNewOpen(name, STDOUT_FILENO, cfgOptionUInt64(cfgOptProtocolTimeout))));
|
|
}
|
|
// Remote role
|
|
// -------------------------------------------------------------------------------------------------------------------------
|
|
else if (commandRole == cfgCmdRoleRemote)
|
|
{
|
|
String *name = strNewFmt(PROTOCOL_SERVICE_REMOTE "-%s", strZ(cfgOptionDisplay(cfgOptProcess)));
|
|
|
|
cmdRemote(
|
|
protocolServerNew(
|
|
name, PROTOCOL_SERVICE_REMOTE_STR, ioFdReadNewOpen(name, STDIN_FILENO, cfgOptionUInt64(cfgOptProtocolTimeout)),
|
|
ioFdWriteNewOpen(name, STDOUT_FILENO, cfgOptionUInt64(cfgOptProtocolTimeout))));
|
|
}
|
|
else
|
|
{
|
|
switch (cfgCommand())
|
|
{
|
|
// Annotate command
|
|
// -----------------------------------------------------------------------------------------------------------------
|
|
case cfgCmdAnnotate:
|
|
cmdAnnotate();
|
|
break;
|
|
|
|
// Archive get command
|
|
// -----------------------------------------------------------------------------------------------------------------
|
|
case cfgCmdArchiveGet:
|
|
{
|
|
if (commandRole == cfgCmdRoleAsync)
|
|
cmdArchiveGetAsync();
|
|
else
|
|
result = cmdArchiveGet();
|
|
|
|
break;
|
|
}
|
|
|
|
// Archive push command
|
|
// -----------------------------------------------------------------------------------------------------------------
|
|
case cfgCmdArchivePush:
|
|
{
|
|
if (commandRole == cfgCmdRoleAsync)
|
|
cmdArchivePushAsync();
|
|
else
|
|
cmdArchivePush();
|
|
|
|
break;
|
|
}
|
|
|
|
// Backup command
|
|
// -----------------------------------------------------------------------------------------------------------------
|
|
case cfgCmdBackup:
|
|
{
|
|
// Run backup
|
|
cmdBackup();
|
|
|
|
if (cfgOptionBool(cfgOptExpireAuto))
|
|
{
|
|
// Switch to expire command
|
|
cmdEnd(0, NULL);
|
|
cfgCommandSet(cfgCmdExpire, cfgCmdRoleMain);
|
|
cfgLoadLogFile();
|
|
cmdBegin();
|
|
|
|
// Null out any backup percent complete value in the backup lock file
|
|
lockWriteDataP(lockTypeBackup);
|
|
|
|
// Run expire
|
|
cmdExpire();
|
|
}
|
|
|
|
break;
|
|
}
|
|
|
|
// Check command
|
|
// -----------------------------------------------------------------------------------------------------------------
|
|
case cfgCmdCheck:
|
|
cmdCheck();
|
|
break;
|
|
|
|
// Expire command
|
|
// -----------------------------------------------------------------------------------------------------------------
|
|
case cfgCmdExpire:
|
|
cmdExpire();
|
|
break;
|
|
|
|
// Help command
|
|
// -----------------------------------------------------------------------------------------------------------------
|
|
case cfgCmdHelp:
|
|
case cfgCmdNone:
|
|
THROW(AssertError, "'help' and 'none' commands should have been handled already");
|
|
|
|
// Info command
|
|
// -----------------------------------------------------------------------------------------------------------------
|
|
case cfgCmdInfo:
|
|
cmdInfo();
|
|
break;
|
|
|
|
// Manifest command
|
|
// -----------------------------------------------------------------------------------------------------------------
|
|
case cfgCmdManifest:
|
|
cmdManifest();
|
|
break;
|
|
|
|
// Repository create command
|
|
// -----------------------------------------------------------------------------------------------------------------
|
|
case cfgCmdRepoCreate:
|
|
cmdRepoCreate();
|
|
break;
|
|
|
|
// Repository get file command
|
|
// -----------------------------------------------------------------------------------------------------------------
|
|
case cfgCmdRepoGet:
|
|
result = cmdStorageGet();
|
|
break;
|
|
|
|
// Repository list paths/files command
|
|
// -----------------------------------------------------------------------------------------------------------------
|
|
case cfgCmdRepoLs:
|
|
cmdStorageList();
|
|
break;
|
|
|
|
// Repository put file command
|
|
// -----------------------------------------------------------------------------------------------------------------
|
|
case cfgCmdRepoPut:
|
|
cmdStoragePut();
|
|
break;
|
|
|
|
// Repository remove paths/files command
|
|
// -----------------------------------------------------------------------------------------------------------------
|
|
case cfgCmdRepoRm:
|
|
cmdStorageRemove();
|
|
break;
|
|
|
|
// Server command
|
|
// -----------------------------------------------------------------------------------------------------------------
|
|
case cfgCmdServer:
|
|
cmdServer((unsigned int)argListSize, argList);
|
|
break;
|
|
|
|
// Server ping command
|
|
// -----------------------------------------------------------------------------------------------------------------
|
|
case cfgCmdServerPing:
|
|
cmdServerPing();
|
|
break;
|
|
|
|
// Restore command
|
|
// -----------------------------------------------------------------------------------------------------------------
|
|
case cfgCmdRestore:
|
|
cmdRestore();
|
|
break;
|
|
|
|
// Stanza create command
|
|
// -----------------------------------------------------------------------------------------------------------------
|
|
case cfgCmdStanzaCreate:
|
|
cmdStanzaCreate();
|
|
break;
|
|
|
|
// Stanza delete command
|
|
// -----------------------------------------------------------------------------------------------------------------
|
|
case cfgCmdStanzaDelete:
|
|
cmdStanzaDelete();
|
|
break;
|
|
|
|
// Stanza upgrade command
|
|
// -----------------------------------------------------------------------------------------------------------------
|
|
case cfgCmdStanzaUpgrade:
|
|
cmdStanzaUpgrade();
|
|
break;
|
|
|
|
// Start command
|
|
// -----------------------------------------------------------------------------------------------------------------
|
|
case cfgCmdStart:
|
|
cmdStart();
|
|
break;
|
|
|
|
// Stop command
|
|
// -----------------------------------------------------------------------------------------------------------------
|
|
case cfgCmdStop:
|
|
cmdStop();
|
|
break;
|
|
|
|
// Verify command
|
|
// -----------------------------------------------------------------------------------------------------------------
|
|
case cfgCmdVerify:
|
|
cmdVerify();
|
|
break;
|
|
|
|
// Display version
|
|
// -----------------------------------------------------------------------------------------------------------------
|
|
case cfgCmdVersion:
|
|
printf(PROJECT_NAME " " PROJECT_VERSION "\n");
|
|
fflush(stdout);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
CATCH_FATAL()
|
|
{
|
|
error = true;
|
|
result = exitSafe(result, true, 0);
|
|
}
|
|
TRY_END();
|
|
|
|
// Free protocol objects
|
|
protocolFree();
|
|
|
|
FUNCTION_LOG_RETURN(INT, error ? result : exitSafe(result, false, 0));
|
|
}
|