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 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_EXTENSIONS_UPDATER_EXTENSION_UPDATER_H_
#define CHROME_BROWSER_EXTENSIONS_UPDATER_EXTENSION_UPDATER_H_
#include <list>
#include <map>
#include <memory>
#include <set>
#include <stack>
#include <string>
#include "base/callback_forward.h"
#include "base/compiler_specific.h"
#include "base/files/file_path.h"
#include "base/macros.h"
#include "base/memory/weak_ptr.h"
#include "base/scoped_observer.h"
#include "base/time/time.h"
#include "base/timer/timer.h"
#include "content/public/browser/notification_observer.h"
#include "content/public/browser/notification_registrar.h"
#include "extensions/browser/extension_registry_observer.h"
#include "extensions/browser/updater/extension_downloader.h"
#include "extensions/browser/updater/extension_downloader_delegate.h"
#include "extensions/browser/updater/manifest_fetch_data.h"
#include "url/gurl.h"
class ExtensionServiceInterface;
class PrefService;
class Profile;
namespace extensions {
class ExtensionCache;
class ExtensionPrefs;
class ExtensionSet;
class ExtensionUpdaterTest;
// A class for doing auto-updates of installed Extensions. Used like this:
//
// ExtensionUpdater* updater = new ExtensionUpdater(my_extensions_service,
// extension_prefs,
// pref_service,
// profile,
// update_frequency_secs,
// downloader_factory);
// updater->Start();
// ....
// updater->Stop();
class ExtensionUpdater : public ExtensionDownloaderDelegate,
public content::NotificationObserver {
public:
typedef base::Closure FinishedCallback;
struct CheckParams {
// Creates a default CheckParams instance that checks for all extensions.
CheckParams();
~CheckParams();
// The set of extensions that should be checked for updates. If empty
// all extensions will be included in the update check.
std::list<std::string> ids;
// Normally extension updates get installed only when the extension is idle.
// Setting this to true causes any updates that are found to be installed
// right away.
bool install_immediately;
// Callback to call when the update check is complete. Can be null, if
// you're not interested in when this happens.
FinishedCallback callback;
};
// Holds a pointer to the passed |service|, using it for querying installed
// extensions and installing updated ones. The |frequency_seconds| parameter
// controls how often update checks are scheduled.
ExtensionUpdater(ExtensionServiceInterface* service,
ExtensionPrefs* extension_prefs,
PrefService* prefs,
Profile* profile,
int frequency_seconds,
ExtensionCache* cache,
const ExtensionDownloader::Factory& downloader_factory);
~ExtensionUpdater() override;
// Starts the updater running. Should be called at most once.
void Start();
// Stops the updater running, cancelling any outstanding update manifest and
// crx downloads. Does not cancel any in-progress installs.
void Stop();
// Posts a task to do an update check. Does nothing if there is
// already a pending task that has not yet run.
void CheckSoon();
// Starts an update check for the specified extension soon.
void CheckExtensionSoon(const std::string& extension_id,
const FinishedCallback& callback);
// Starts an update check right now, instead of waiting for the next
// regularly scheduled check or a pending check from CheckSoon().
void CheckNow(const CheckParams& params);
// Returns true iff CheckSoon() has been called but the update check
// hasn't been performed yet. This is used mostly by tests; calling
// code should just call CheckSoon().
bool WillCheckSoon() const;
// Overrides the extension cache with |extension_cache| for testing.
void SetExtensionCacheForTesting(ExtensionCache* extension_cache);
// Stop the timer to prevent scheduled updates for testing.
void StopTimerForTesting();
private:
friend class ExtensionUpdaterTest;
friend class ExtensionUpdaterFileHandler;
// FetchedCRXFile holds information about a CRX file we fetched to disk,
// but have not yet installed.
struct FetchedCRXFile {
FetchedCRXFile();
FetchedCRXFile(const CRXFileInfo& file,
bool file_ownership_passed,
const std::set<int>& request_ids,
const InstallCallback& callback);
FetchedCRXFile(const FetchedCRXFile& other);
~FetchedCRXFile();
CRXFileInfo info;
GURL download_url;
bool file_ownership_passed;
std::set<int> request_ids;
InstallCallback callback;
};
struct InProgressCheck {
InProgressCheck();
InProgressCheck(const InProgressCheck& other);
~InProgressCheck();
bool install_immediately;
FinishedCallback callback;
// The ids of extensions that have in-progress update checks.
std::list<std::string> in_progress_ids_;
};
// Ensure that we have a valid ExtensionDownloader instance referenced by
// |downloader|.
void EnsureDownloaderCreated();
// Computes when to schedule the first update check.
base::TimeDelta DetermineFirstCheckDelay();
// Sets the timer to call TimerFired after roughly |target_delay| from now.
// To help spread load evenly on servers, this method adds some random
// jitter. It also saves the scheduled time so it can be reloaded on
// browser restart.
void ScheduleNextCheck(const base::TimeDelta& target_delay);
// Add fetch records for extensions that are installed to the downloader,
// ignoring |pending_ids| so the extension isn't fetched again.
void AddToDownloader(const ExtensionSet* extensions,
const std::list<std::string>& pending_ids,
int request_id);
// BaseTimer::ReceiverMethod callback.
void TimerFired();
// Posted by CheckSoon().
void DoCheckSoon();
// Implementation of ExtensionDownloaderDelegate.
void OnExtensionDownloadFailed(const std::string& id,
Error error,
const PingResult& ping,
const std::set<int>& request_ids) override;
void OnExtensionDownloadFinished(const CRXFileInfo& file,
bool file_ownership_passed,
const GURL& download_url,
const std::string& version,
const PingResult& ping,
const std::set<int>& request_id,
const InstallCallback& callback) override;
bool GetPingDataForExtension(const std::string& id,
ManifestFetchData::PingData* ping_data) override;
std::string GetUpdateUrlData(const std::string& id) override;
bool IsExtensionPending(const std::string& id) override;
bool GetExtensionExistingVersion(const std::string& id,
std::string* version) override;
void UpdatePingData(const std::string& id, const PingResult& ping_result);
// Starts installing a crx file that has been fetched but not installed yet.
void MaybeInstallCRXFile();
// content::NotificationObserver implementation.
void Observe(int type,
const content::NotificationSource& source,
const content::NotificationDetails& details) override;
// Send a notification that update checks are starting.
void NotifyStarted();
// Send a notification if we're finished updating.
void NotifyIfFinished(int request_id);
void ExtensionCheckFinished(const std::string& extension_id,
const FinishedCallback& callback);
// Whether Start() has been called but not Stop().
bool alive_;
// Pointer back to the service that owns this ExtensionUpdater.
ExtensionServiceInterface* service_;
// A closure passed into the ExtensionUpdater to teach it how to construct
// new ExtensionDownloader instances.
const ExtensionDownloader::Factory downloader_factory_;
// Fetches the crx files for the extensions that have an available update.
std::unique_ptr<ExtensionDownloader> downloader_;
base::OneShotTimer timer_;
int frequency_seconds_;
bool will_check_soon_;
ExtensionPrefs* extension_prefs_;
PrefService* prefs_;
Profile* profile_;
std::map<int, InProgressCheck> requests_in_progress_;
int next_request_id_;
// Observes CRX installs we initiate.
content::NotificationRegistrar registrar_;
// True when a CrxInstaller is doing an install. Used in MaybeUpdateCrxFile()
// to keep more than one install from running at once.
bool crx_install_is_running_;
// Fetched CRX files waiting to be installed.
std::stack<FetchedCRXFile> fetched_crx_files_;
FetchedCRXFile current_crx_file_;
ExtensionCache* extension_cache_;
base::WeakPtrFactory<ExtensionUpdater> weak_ptr_factory_;
DISALLOW_COPY_AND_ASSIGN(ExtensionUpdater);
};
} // namespace extensions
#endif // CHROME_BROWSER_EXTENSIONS_UPDATER_EXTENSION_UPDATER_H_
|