29faf71a6e1255fe9ade272d0abb185008779f70
[platform/framework/web/crosswalk.git] / src / chrome / browser / extensions / updater / extension_updater.h
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_EXTENSIONS_UPDATER_EXTENSION_UPDATER_H_
6 #define CHROME_BROWSER_EXTENSIONS_UPDATER_EXTENSION_UPDATER_H_
7
8 #include <list>
9 #include <map>
10 #include <set>
11 #include <stack>
12 #include <string>
13
14 #include "base/callback_forward.h"
15 #include "base/compiler_specific.h"
16 #include "base/files/file_path.h"
17 #include "base/gtest_prod_util.h"
18 #include "base/memory/scoped_ptr.h"
19 #include "base/memory/weak_ptr.h"
20 #include "base/scoped_observer.h"
21 #include "base/time/time.h"
22 #include "base/timer/timer.h"
23 #include "chrome/browser/extensions/updater/extension_downloader.h"
24 #include "chrome/browser/extensions/updater/extension_downloader_delegate.h"
25 #include "chrome/browser/extensions/updater/manifest_fetch_data.h"
26 #include "content/public/browser/notification_observer.h"
27 #include "content/public/browser/notification_registrar.h"
28 #include "extensions/browser/extension_registry_observer.h"
29 #include "url/gurl.h"
30
31 class ExtensionServiceInterface;
32 class PrefService;
33 class Profile;
34
35 namespace content {
36 class BrowserContext;
37 }
38
39 namespace extensions {
40
41 class ExtensionCache;
42 class ExtensionPrefs;
43 class ExtensionRegistry;
44 class ExtensionSet;
45 class ExtensionUpdaterTest;
46
47 // A class for doing auto-updates of installed Extensions. Used like this:
48 //
49 // ExtensionUpdater* updater = new ExtensionUpdater(my_extensions_service,
50 //                                                  extension_prefs,
51 //                                                  pref_service,
52 //                                                  profile,
53 //                                                  update_frequency_secs,
54 //                                                  downloader_factory);
55 // updater->Start();
56 // ....
57 // updater->Stop();
58 class ExtensionUpdater : public ExtensionDownloaderDelegate,
59                          public ExtensionRegistryObserver,
60                          public content::NotificationObserver {
61  public:
62   typedef base::Closure FinishedCallback;
63
64   struct CheckParams {
65     // Creates a default CheckParams instance that checks for all extensions.
66     CheckParams();
67     ~CheckParams();
68
69     // The set of extensions that should be checked for updates. If empty
70     // all extensions will be included in the update check.
71     std::list<std::string> ids;
72
73     // Normally extension updates get installed only when the extension is idle.
74     // Setting this to true causes any updates that are found to be installed
75     // right away.
76     bool install_immediately;
77
78     // Callback to call when the update check is complete. Can be null, if
79     // you're not interested in when this happens.
80     FinishedCallback callback;
81   };
82
83   // Holds a pointer to the passed |service|, using it for querying installed
84   // extensions and installing updated ones. The |frequency_seconds| parameter
85   // controls how often update checks are scheduled.
86   ExtensionUpdater(ExtensionServiceInterface* service,
87                    ExtensionPrefs* extension_prefs,
88                    PrefService* prefs,
89                    Profile* profile,
90                    int frequency_seconds,
91                    ExtensionCache* cache,
92                    const ExtensionDownloader::Factory& downloader_factory);
93
94   virtual ~ExtensionUpdater();
95
96   // Starts the updater running.  Should be called at most once.
97   void Start();
98
99   // Stops the updater running, cancelling any outstanding update manifest and
100   // crx downloads. Does not cancel any in-progress installs.
101   void Stop();
102
103   // Posts a task to do an update check.  Does nothing if there is
104   // already a pending task that has not yet run.
105   void CheckSoon();
106
107   // Starts an update check for the specified extension soon. If a check
108   // is already running, or finished too recently without an update being
109   // installed, this method returns false and the check won't be scheduled.
110   bool CheckExtensionSoon(const std::string& extension_id,
111                           const FinishedCallback& callback);
112
113   // Starts an update check right now, instead of waiting for the next
114   // regularly scheduled check or a pending check from CheckSoon().
115   void CheckNow(const CheckParams& params);
116
117   // Returns true iff CheckSoon() has been called but the update check
118   // hasn't been performed yet.  This is used mostly by tests; calling
119   // code should just call CheckSoon().
120   bool WillCheckSoon() const;
121
122   // Changes the params that are used for the automatic periodic update checks,
123   // as well as for explicit calls to CheckSoon.
124   void set_default_check_params(const CheckParams& params) {
125     default_params_ = params;
126   }
127
128  private:
129   friend class ExtensionUpdaterTest;
130   friend class ExtensionUpdaterFileHandler;
131
132   // FetchedCRXFile holds information about a CRX file we fetched to disk,
133   // but have not yet installed.
134   struct FetchedCRXFile {
135     FetchedCRXFile();
136     FetchedCRXFile(const std::string& id,
137                    const base::FilePath& path,
138                    bool file_ownership_passed,
139                    const std::set<int>& request_ids);
140     ~FetchedCRXFile();
141
142     std::string extension_id;
143     base::FilePath path;
144     bool file_ownership_passed;
145     std::set<int> request_ids;
146   };
147
148   struct InProgressCheck {
149     InProgressCheck();
150     ~InProgressCheck();
151
152     bool install_immediately;
153     FinishedCallback callback;
154     // The ids of extensions that have in-progress update checks.
155     std::list<std::string> in_progress_ids_;
156   };
157
158   struct ThrottleInfo;
159
160   // Ensure that we have a valid ExtensionDownloader instance referenced by
161   // |downloader|.
162   void EnsureDownloaderCreated();
163
164   // Computes when to schedule the first update check.
165   base::TimeDelta DetermineFirstCheckDelay();
166
167   // Sets the timer to call TimerFired after roughly |target_delay| from now.
168   // To help spread load evenly on servers, this method adds some random
169   // jitter. It also saves the scheduled time so it can be reloaded on
170   // browser restart.
171   void ScheduleNextCheck(const base::TimeDelta& target_delay);
172
173   // Add fetch records for extensions that are installed to the downloader,
174   // ignoring |pending_ids| so the extension isn't fetched again.
175   void AddToDownloader(const ExtensionSet* extensions,
176                        const std::list<std::string>& pending_ids,
177                        int request_id);
178
179   // BaseTimer::ReceiverMethod callback.
180   void TimerFired();
181
182   // Posted by CheckSoon().
183   void DoCheckSoon();
184
185   // Implementation of ExtensionDownloaderDelegate.
186   virtual void OnExtensionDownloadFailed(
187       const std::string& id,
188       Error error,
189       const PingResult& ping,
190       const std::set<int>& request_ids) OVERRIDE;
191
192   virtual void OnExtensionDownloadFinished(
193       const std::string& id,
194       const base::FilePath& path,
195       bool file_ownership_passed,
196       const GURL& download_url,
197       const std::string& version,
198       const PingResult& ping,
199       const std::set<int>& request_id) OVERRIDE;
200
201   // Implementation of ExtensionRegistryObserver.
202   virtual void OnExtensionWillBeInstalled(
203       content::BrowserContext* browser_context,
204       const Extension* extension,
205       bool is_update,
206       bool from_ephemeral,
207       const std::string& old_name) OVERRIDE;
208
209   virtual bool GetPingDataForExtension(
210       const std::string& id,
211       ManifestFetchData::PingData* ping_data) OVERRIDE;
212
213   virtual std::string GetUpdateUrlData(const std::string& id) OVERRIDE;
214
215   virtual bool IsExtensionPending(const std::string& id) OVERRIDE;
216
217   virtual bool GetExtensionExistingVersion(const std::string& id,
218                                            std::string* version) OVERRIDE;
219
220   void UpdatePingData(const std::string& id, const PingResult& ping_result);
221
222   // Starts installing a crx file that has been fetched but not installed yet.
223   void MaybeInstallCRXFile();
224
225   // content::NotificationObserver implementation.
226   virtual void Observe(int type,
227                        const content::NotificationSource& source,
228                        const content::NotificationDetails& details) OVERRIDE;
229
230   // Send a notification that update checks are starting.
231   void NotifyStarted();
232
233   // Send a notification if we're finished updating.
234   void NotifyIfFinished(int request_id);
235
236   void ExtensionCheckFinished(const std::string& extension_id,
237                               const FinishedCallback& callback);
238
239   // Whether Start() has been called but not Stop().
240   bool alive_;
241
242   base::WeakPtrFactory<ExtensionUpdater> weak_ptr_factory_;
243
244   // Pointer back to the service that owns this ExtensionUpdater.
245   ExtensionServiceInterface* service_;
246
247   // A closure passed into the ExtensionUpdater to teach it how to construct
248   // new ExtensionDownloader instances.
249   const ExtensionDownloader::Factory downloader_factory_;
250
251   // Fetches the crx files for the extensions that have an available update.
252   scoped_ptr<ExtensionDownloader> downloader_;
253
254   base::OneShotTimer<ExtensionUpdater> timer_;
255   int frequency_seconds_;
256   bool will_check_soon_;
257
258   ExtensionPrefs* extension_prefs_;
259   PrefService* prefs_;
260   Profile* profile_;
261
262   std::map<int, InProgressCheck> requests_in_progress_;
263   int next_request_id_;
264
265   // Observes CRX installs we initiate.
266   content::NotificationRegistrar registrar_;
267
268   ScopedObserver<ExtensionRegistry, ExtensionRegistryObserver>
269       extension_registry_observer_;
270
271   // True when a CrxInstaller is doing an install.  Used in MaybeUpdateCrxFile()
272   // to keep more than one install from running at once.
273   bool crx_install_is_running_;
274
275   // Fetched CRX files waiting to be installed.
276   std::stack<FetchedCRXFile> fetched_crx_files_;
277   FetchedCRXFile current_crx_file_;
278
279   CheckParams default_params_;
280
281   ExtensionCache* extension_cache_;
282
283   // Keeps track of when an extension tried to update itself, so we can throttle
284   // checks to prevent too many requests from being made.
285   std::map<std::string, ThrottleInfo> throttle_info_;
286
287   DISALLOW_COPY_AND_ASSIGN(ExtensionUpdater);
288 };
289
290 }  // namespace extensions
291
292 #endif  // CHROME_BROWSER_EXTENSIONS_UPDATER_EXTENSION_UPDATER_H_