AUI Framework  develop
Cross-platform base for C++ UI apps
Loading...
Searching...
No Matches
AUpdater.h
    1// AUI Framework - Declarative UI toolkit for modern C++20
    2// Copyright (C) 2020-2025 Alex2772 and Contributors
    3//
    4// SPDX-License-Identifier: MPL-2.0
    5//
    6// This Source Code Form is subject to the terms of the Mozilla Public
    7// License, v. 2.0. If a copy of the MPL was not distributed with this
    8// file, You can obtain one at http://mozilla.org/MPL/2.0/.
    9
   10#pragma once
   11
   12#include <AUI/Common/AObject.h>
   13#include <AUI/Common/AStringVector.h>
   14#include <AUI/Common/AProperty.h>
   15#include <AUI/Thread/AAsyncHolder.h>
   16#include "AUI/IO/APath.h"
   17#include "AUI/Thread/AFuture.h"
   18#include <AUI/Platform/AProcess.h>
   19
   30class API_AUI_UPDATER AUpdater : public AObject {
   31public:
   36    struct InstallCmdline {
   44
   49    };
   50
   57        APath selfProcessExePath = AProcess::self()->getPathToExecutable();
   58
   62        APath updaterDir;
   63
   68        APath originExe;
   69    };
   70
   71    AUpdater();
   72    ~AUpdater() override = default;
   73
   79    virtual void handlePostUpdateCleanup();
   80
  106    virtual void handleStartup(const AStringVector& applicationArguments);
  107
  159    virtual void applyUpdateAndRestart();
  160
  164    struct StatusIdle {};
  165
  170
  174    struct StatusDownloading {
  175        mutable AProperty<aui::float_within_0_1> progress;
  176    };
  177
  182    struct StatusNotAvailable {};
  183
  188        InstallCmdline installCmdline;
  189    };
  190
  208
  214    void checkForUpdates();
  215
  221    void downloadUpdate();
  222
  223    [[nodiscard]]
  224    const AOptional<AString>& getLastDeploymentError() const noexcept { return mLastDeploymentError; }
  225
  231    static bool isAvailable();
  232
  233protected:
  238
  246
  257    virtual void triggerUpdateOnStartup();
  258
  269    virtual AFuture<void> downloadUpdateImpl(const APath& unpackedUpdateDir) = 0;
  270
  275
  281    void downloadAndUnpack(AString downloadUrl, const APath& unpackedUpdateDir);
  282
  288    void reportDownloadedPercentage(aui::float_within_0_1 progress);
  289
  297    virtual AString getModuleName() const;
  298
  307
  311    virtual APath getTempWorkDir() const;
  312
  318    virtual APath getUnpackedUpdateDir() const;
  319
  333
  339    virtual void saveCmdline(const InstallCmdline& cmdline) const;
  340
  344    virtual void handleWaitForProcess(uint32_t pid);
  345
  350
  356    virtual void deployUpdate(const APath& source, const APath& destination);
  357
  364
  370
  371private:
  375    AOptional<AString> mLastDeploymentError;
  376};
Holds a set of futures keeping them valid.
Definition AAsyncHolder.h:31
Represents a value that will be available at some point in the future.
Definition AFuture.h:621
Utility wrapper implementing the stack-allocated (fast) optional idiom.
Definition AOptional.h:33
An add-on to AString with functions for working with the path.
Definition APath.h:128
static _< AProcess > self()
An AVector with string-related functions.
Definition AStringVector.h:22
Represents a Unicode character string.
Definition AString.h:38
virtual AString getModuleName() const
Returns a module name of your (your_app_name or your_app_name.exe, without a leading path).
virtual void applyUpdateAndRestart()
Deploy the downloaded update.
AProperty< std::any > status
State of the updater.
Definition AUpdater.h:207
AAsyncHolder mAsync
Holder for async operations.
Definition AUpdater.h:237
void reportDownloadedPercentage(aui::float_within_0_1 progress)
Being called by downloadUpdateImpl, reports download percentage to status.
virtual AFuture< void > downloadUpdateImpl(const APath &unpackedUpdateDir)=0
Performs update delivery to the specified directory.
virtual void handlePostUpdateCleanup()
Performs post update cleanup routines.
void reportReadyToApplyAndRestart(InstallCmdline cmdline)
Dumps InstallCmdline to temporary download directory, indicating that an update is ready to install....
virtual AOptional< InstallCmdline > loadInstallCmdline() const
Restores install command line state, if any.
virtual void triggerUpdateOnStartup()
Triggers update routine.
virtual AVector< AString > injectWaitForMyPid(AVector< AString > args)
Injects –aui-updater-wait-for-process=THIS_PROCESS_PID as the first argument.
static bool isAvailable()
Checks that updater functionality is available.
virtual void handleStartup(const AStringVector &applicationArguments)
Performs a pre-application AUpdater routine.
virtual APath getTempWorkDir() const
Working directory for AUpdater. By default, points to some path in TEMP.
virtual AFuture< void > checkForUpdatesImpl()=0
Check for updates user's implementation.
virtual APath getInstallationDirectory(const GetInstallationDirectoryContext &context)
Retrieves installation directory based on given context.
virtual APath getUnpackedUpdateDir() const
The path where the update is unpacked to.
virtual void handleWaitForProcess(uint32_t pid)
Handles –aui-updater-wait-for-process.
virtual void saveCmdline(const InstallCmdline &cmdline) const
Saves install command line to restore state when application is restarted.
virtual void deployUpdate(const APath &source, const APath &destination)
Deploys update by recursively copying (moving) files from source dir to destination dir.
void checkForUpdates()
Sets status to StatusCheckingForUpdates and calls checkForUpdatesImpl, implemented by user.
InstallCmdline makeDefaultInstallationCmdline() const
Constructs InstallCmdline with default arguments.
void downloadUpdate()
Sets status to StatusDownloading and calls downloadUpdateImpl, implemented by user.
void downloadAndUnpack(AString downloadUrl, const APath &unpackedUpdateDir)
Typical download and unpack implementation.
virtual void cleanupUnpackedUpdateDirBeforeDownloading()
called by AUpdater::downloadUpdate before downloading update to cleanup AUpdater::getUnpackedUpdateDi...
A std::vector with AUI extensions.
Definition AVector.h:39
Basic easy-to-use property implementation containing T.
Definition AProperty.h:30
Context for AUpdater::getInstallationDirectory.
Definition AUpdater.h:53
APath selfProcessExePath
Self process exe. Typically AProcess::self()->getPathToExecutable().
Definition AUpdater.h:57
APath originExe
The path to executable who invoked the installation process. Typically full path to the original exe ...
Definition AUpdater.h:68
APath updaterDir
Updater dir. Typically parent of selfProcessExePath.
Definition AUpdater.h:62
Data required to launch installation child process.
Definition AUpdater.h:36
APath installerExecutable
Absolute path to installer executable.
Definition AUpdater.h:43
AVector< AString > installerArguments
Arguments passed to installer.
Definition AUpdater.h:48
Checking for updates.
Definition AUpdater.h:169
Downloading state.
Definition AUpdater.h:174
Idling.
Definition AUpdater.h:164
AUpdater::isAvailable() evaluated to false.
Definition AUpdater.h:182
Waiting to applyUpdateAndRestart call state.
Definition AUpdater.h:187