1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
|
// *****************************************************************************
// * This file is part of the FreeFileSync project. It is distributed under *
// * GNU General Public License: https://www.gnu.org/licenses/gpl-3.0 *
// * Copyright (C) Zenju (zenju AT freefilesync DOT org) - All Rights Reserved *
// *****************************************************************************
#ifndef BATCH_STATUS_HANDLER_H_857390451451234566
#define BATCH_STATUS_HANDLER_H_857390451451234566
#include <zen/error_log.h>
#include "progress_indicator.h"
#include "../config.h"
#include "../status_handler.h"
namespace fff
{
//BatchStatusHandler(SyncProgressDialog) will internally process Window messages! disable GUI controls to avoid unexpected callbacks!
class BatchStatusHandler : public StatusHandler
{
public:
BatchStatusHandler(bool showProgress,
const std::wstring& jobName, //should not be empty for a batch job!
const std::chrono::system_clock::time_point& startTime,
bool ignoreErrors,
size_t autoRetryCount,
std::chrono::seconds autoRetryDelay,
const Zstring& soundFileSyncComplete,
const Zstring& soundFileAlertPending,
const zen::WindowLayout::Dimensions& dim,
bool autoCloseDialog,
PostBatchAction postBatchAction,
BatchErrorHandling batchErrorHandling); //noexcept!!
~BatchStatusHandler();
void initNewPhase (int itemsTotal, int64_t bytesTotal, ProcessPhase phaseID) override; //
void logMessage (const std::wstring& msg, MsgType type) override; //
void reportWarning (const std::wstring& msg, bool& warningActive) override; //throw CancelProcess
Response reportError (const ErrorInfo& errorInfo) override; //
void reportFatalError(const std::wstring& msg) override; //
ErrorStats getErrorStats() const override;
void updateDataProcessed(int itemsDelta, int64_t bytesDelta) override; //noexcept
void forceUiUpdateNoThrow() override; //
struct Result
{
ProcessSummary summary;
zen::SharedRef<zen::ErrorLog> errorLog;
};
Result prepareResult();
enum class FinalRequest
{
none,
switchGui,
shutdown
};
struct DlgOptions
{
zen::WindowLayout::Dimensions dim;
FinalRequest finalRequest;
};
DlgOptions showResult();
wxWindow* getWindowIfVisible();
private:
const std::wstring jobName_;
const std::chrono::system_clock::time_point startTime_;
const size_t autoRetryCount_;
const std::chrono::seconds autoRetryDelay_;
const Zstring soundFileSyncComplete_;
const Zstring soundFileAlertPending_;
SyncProgressDialog* progressDlg_; //managed to have the same lifetime as this handler!
zen::SharedRef<zen::ErrorLog> errorLog_ = zen::makeSharedRef<zen::ErrorLog>();
mutable Statistics::ErrorStats errorStatsBuf_{};
mutable size_t errorStatsRowsChecked_ = 0;
const BatchErrorHandling batchErrorHandling_;
bool switchToGuiRequested_ = false;
std::optional<TaskResult> syncResult_;
};
}
#endif //BATCH_STATUS_HANDLER_H_857390451451234566
|