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 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124
|
// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_UPDATER_APP_APP_SERVER_H_
#define CHROME_UPDATER_APP_APP_SERVER_H_
#include "base/functional/callback_forward.h"
#include "base/memory/scoped_refptr.h"
#include "base/sequence_checker.h"
#include "base/timer/timer.h"
#include "chrome/updater/app/app.h"
#include "chrome/updater/configurator.h"
#include "chrome/updater/external_constants.h"
#include "chrome/updater/prefs.h"
namespace updater {
class UpdateServiceInternal;
class GlobalPrefs;
class UpdateService;
// Returns true if the command line has the switch `--service update-internal`.
bool IsInternalService();
// AppServer runs as the updater server process. Multiple servers of different
// application versions can be run side-by-side. Each such server is called a
// "candidate". Exactly one candidate is "active" at any given time. Only the
// active candidate is permitted to mutate shared system state such as the
// global prefs file or versions of managed applications.
class AppServer : public App {
public:
AppServer();
protected:
~AppServer() override;
scoped_refptr<const ExternalConstants> external_constants() const {
return external_constants_;
}
scoped_refptr<const UpdaterPrefs> prefs() const { return prefs_; }
scoped_refptr<Configurator> config() const { return config_; }
void TaskStarted();
void TaskCompleted();
// Returns whether the process is (or recently was) idle.
bool IsIdle();
// Overrides of App.
void Uninitialize() override;
SEQUENCE_CHECKER(sequence_checker_);
private:
// Overrides of App.
[[nodiscard]] int Initialize() final;
void FirstTaskRun() final;
// Sets up the server to handle active version RPCs.
virtual void ActiveDuty(scoped_refptr<UpdateService> update_service) = 0;
// Sets up the server to handle internal service RPCs.
virtual void ActiveDutyInternal(
scoped_refptr<UpdateServiceInternal> update_service_internal) = 0;
// Sets up all non-side-by-side registration to point to the new version.
virtual bool SwapInNewVersion() = 0;
// As part of initialization, the server may detect and repair problems. This
// is called only for the active updater instance, and while the global prefs
// lock is held.
virtual void RepairUpdater(UpdaterScope scope, bool is_internal) = 0;
// Uninstalls this candidate version of the updater.
virtual void UninstallSelf() = 0;
// If true, this server will shut itself down after being idle for a period
// after completing a task.
virtual bool ShutdownIfIdleAfterTask() = 0;
// The server will call this method a short time after completing a task.
virtual void OnDelayedTaskComplete() = 0;
// As part of initialization, an AppServer must do a mode check to determine
// what mode of operation it should continue in. Possible modes include:
// - Qualify: this candidate is not yet qualified or active.
// - ActiveDuty: this candidate is the active candidate.
// - UninstallSelf: this candidate is older than the active candidate.
// - Shutdown: none of the above.
// If this candidate is already qualified but not yet active, or the state of
// the system is consistent with an incomplete swap, ModeCheck may have the
// side effect of promoting this candidate to the active candidate.
base::OnceClosure ModeCheck();
bool SwapVersions(GlobalPrefs* global_prefs,
scoped_refptr<LocalPrefs> local_prefs);
// Uninstalls the updater if it doesn't manage any apps, aside from itself.
void MaybeUninstall();
scoped_refptr<ExternalConstants> external_constants_ =
CreateExternalConstants();
base::OnceClosure first_task_;
scoped_refptr<UpdaterPrefs> prefs_;
scoped_refptr<Configurator> config_;
base::RepeatingTimer hang_timer_;
// If true, this version of the updater uninstalls itself during shutdown.
bool uninstall_self_ = false;
// The number of times the server has started, as read from global prefs.
int server_starts_ = 0;
// The number of currently running tasks.
int tasks_running_ = 0;
};
scoped_refptr<App> MakeAppServer();
} // namespace updater
#endif // CHROME_UPDATER_APP_APP_SERVER_H_
|