Enable MSVC warning for unused locals.
[chromium-blink-merge.git] / chrome / installer / util / google_update_settings.h
blobbc66431129f48a4ba1c117a0e35294f02c8a87ad
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.
5 #ifndef CHROME_INSTALLER_UTIL_GOOGLE_UPDATE_SETTINGS_H_
6 #define CHROME_INSTALLER_UTIL_GOOGLE_UPDATE_SETTINGS_H_
8 #include <string>
10 #include "base/basictypes.h"
11 #include "base/memory/scoped_ptr.h"
12 #include "base/strings/string16.h"
13 #include "base/time/time.h"
14 #include "base/version.h"
15 #include "chrome/installer/util/util_constants.h"
16 #include "components/metrics/client_info.h"
18 class AppRegistrationData;
19 class BrowserDistribution;
21 namespace installer {
22 class ChannelInfo;
23 class InstallationState;
26 // This class provides accessors to the Google Update 'ClientState' information
27 // that recorded when the user downloads the chrome installer. It is
28 // google_update.exe responsibility to write the initial values.
29 class GoogleUpdateSettings {
30 public:
31 // Update policy constants defined by Google Update; do not change these.
32 enum UpdatePolicy {
33 UPDATES_DISABLED = 0,
34 AUTOMATIC_UPDATES = 1,
35 MANUAL_UPDATES_ONLY = 2,
36 AUTO_UPDATES_ONLY = 3,
37 UPDATE_POLICIES_COUNT
40 static const wchar_t kPoliciesKey[];
41 static const wchar_t kUpdatePolicyValue[];
42 static const wchar_t kUpdateOverrideValuePrefix[];
43 static const wchar_t kCheckPeriodOverrideMinutes[];
44 static const int kCheckPeriodOverrideMinutesDefault;
45 static const int kCheckPeriodOverrideMinutesMax;
46 static const GoogleUpdateSettings::UpdatePolicy kDefaultUpdatePolicy;
48 // Defines product data that is tracked/used by Google Update.
49 struct ProductData {
50 // The currently installed version.
51 std::string version;
52 // The time that Google Update last updated this product. (This means
53 // either running an updater successfully, or doing an update check that
54 // results in no update available.)
55 base::Time last_success;
56 // The result reported by the most recent run of an installer/updater.
57 int last_result;
58 // The error code, if any, reported by the most recent run of an
59 // installer or updater. This is typically platform independent.
60 int last_error_code;
61 // The extra error code, if any, reported by the most recent run of
62 // an installer or updater. This is typically an error code specific
63 // to the platform -- i.e. on Windows, it will be a Win32 HRESULT.
64 int last_extra_code;
67 // Returns true if this install is system-wide, false if it is per-user.
68 static bool IsSystemInstall();
70 // Returns whether the user has given consent to collect UMA data and send
71 // crash dumps to Google. This information is collected by the web server
72 // used to download the chrome installer.
73 static bool GetCollectStatsConsent();
75 // Sets the user consent to send UMA and crash dumps to Google. Returns
76 // false if the setting could not be recorded.
77 static bool SetCollectStatsConsent(bool consented);
79 #if defined(OS_WIN)
80 // Returns whether the user has given consent to collect UMA data and send
81 // crash dumps to Google. This information is collected by the web server
82 // used to download the chrome installer.
83 static bool GetCollectStatsConsentAtLevel(bool system_install);
85 // Sets the user consent to send UMA and crash dumps to Google. Returns
86 // false if the setting could not be recorded.
87 static bool SetCollectStatsConsentAtLevel(bool system_install,
88 bool consented);
89 #endif
91 // Returns the metrics client info backed up in the registry. NULL
92 // if-and-only-if the client_id couldn't be retrieved (failure to retrieve
93 // other fields only makes them keep their default value). A non-null return
94 // will NEVER contain an empty client_id field.
95 static scoped_ptr<metrics::ClientInfo> LoadMetricsClientInfo();
97 // Stores a backup of the metrics client info in the registry. Storing a
98 // |client_info| with an empty client id will effectively void the backup.
99 static void StoreMetricsClientInfo(const metrics::ClientInfo& client_info);
101 // Sets the machine-wide EULA consented flag required on OEM installs.
102 // Returns false if the setting could not be recorded.
103 static bool SetEULAConsent(const installer::InstallationState& machine_state,
104 BrowserDistribution* dist,
105 bool consented);
107 // Returns the last time chrome was run in days. It uses a recorded value
108 // set by SetLastRunTime(). Returns -1 if the value was not found or if
109 // the value is corrupted.
110 static int GetLastRunTime();
112 // Stores the time that this function was last called using an encoded
113 // form of the system local time. Retrieve the time using GetLastRunTime().
114 // Returns false if the value could not be stored.
115 static bool SetLastRunTime();
117 // Removes the storage used by SetLastRunTime() and SetLastRunTime(). Returns
118 // false if the operation failed. Returns true if the storage was freed or
119 // if it never existed in the first place.
120 static bool RemoveLastRunTime();
122 // Returns in |browser| the browser used to download chrome as recorded
123 // Google Update. Returns false if the information is not available.
124 static bool GetBrowser(base::string16* browser);
126 // Returns in |language| the language selected by the user when downloading
127 // chrome. This information is collected by the web server used to download
128 // the chrome installer. Returns false if the information is not available.
129 static bool GetLanguage(base::string16* language);
131 // Returns in |brand| the RLZ brand code or distribution tag that has been
132 // assigned to a partner. Returns false if the information is not available.
134 // NOTE: This function is Windows only. If the code you are writing is not
135 // specifically for Windows, prefer calling google_brand::GetBrand().
136 static bool GetBrand(base::string16* brand);
138 // Returns in |brand| the RLZ reactivation brand code or distribution tag
139 // that has been assigned to a partner for reactivating a dormant chrome
140 // install. Returns false if the information is not available.
142 // NOTE: This function is Windows only. If the code you are writing is not
143 // specifically for Windows, prefer calling
144 // google_brand::GetReactivationBrand().
145 static bool GetReactivationBrand(base::string16* brand);
147 // Returns in |client| the google_update client field, which is currently
148 // used to track experiments. Returns false if the entry does not exist.
149 static bool GetClient(base::string16* client);
151 // Sets the google_update client field. Unlike GetClient() this is set only
152 // for the current user. Returns false if the operation failed.
153 static bool SetClient(const base::string16& client);
155 // Returns in 'client' the RLZ referral available for some distribution
156 // partners. This value does not exist for most chrome or chromium installs.
157 static bool GetReferral(base::string16* referral);
159 // Overwrites the current value of the referral with an empty string. Returns
160 // true if this operation succeeded.
161 static bool ClearReferral();
163 // Set did_run "dr" in the client state value for app specified by
164 // |app_reg_data|. This is used to measure active users. Returns false if
165 // registry write fails.
166 static bool UpdateDidRunStateForApp(const AppRegistrationData& app_reg_data,
167 bool did_run);
169 // Convenience routine: UpdateDidRunStateForApp() specialized for the current
170 // BrowserDistribution, and also updates Chrome Binary's did_run if the
171 // current distribution is multi-install.
172 static bool UpdateDidRunState(bool did_run, bool system_level);
174 // Returns only the channel name: "" (stable), "dev", "beta", "canary", or
175 // "unknown" if unknown. This value will not be modified by "-m" for a
176 // multi-install. See kChromeChannel* in util_constants.h
177 static base::string16 GetChromeChannel(bool system_install);
179 // Return a human readable modifier for the version string, e.g.
180 // the channel (dev, beta, stable). Returns true if this operation succeeded,
181 // on success, channel contains one of "", "unknown", "dev" or "beta" (unless
182 // it is a multi-install product, in which case it will return "m",
183 // "unknown-m", "dev-m", or "beta-m").
184 static bool GetChromeChannelAndModifiers(bool system_install,
185 base::string16* channel);
187 // This method changes the Google Update "ap" value to move the installation
188 // on to or off of one of the recovery channels.
189 // - If incremental installer fails we append a magic string ("-full"), if
190 // it is not present already, so that Google Update server next time will send
191 // full installer to update Chrome on the local machine
192 // - If we are currently running full installer, we remove this magic
193 // string (if it is present) regardless of whether installer failed or not.
194 // There is no fall-back for full installer :)
195 // - Unconditionally remove "-multifail" since we haven't crashed.
196 // |state_key| should be obtained via InstallerState::state_key().
197 static void UpdateInstallStatus(bool system_install,
198 installer::ArchiveType archive_type,
199 int install_return_code,
200 const base::string16& product_guid);
202 // This method updates the value for Google Update "ap" key for Chrome
203 // based on whether we are doing incremental install (or not) and whether
204 // the install succeeded.
205 // - If install worked, remove the magic string (if present).
206 // - If incremental installer failed, append a magic string (if
207 // not present already).
208 // - If full installer failed, still remove this magic
209 // string (if it is present already).
211 // archive_type: tells whether this is incremental install or not.
212 // install_return_code: if 0, means installation was successful.
213 // value: current value of Google Update "ap" key.
214 // Returns true if |value| is modified.
215 static bool UpdateGoogleUpdateApKey(installer::ArchiveType archive_type,
216 int install_return_code,
217 installer::ChannelInfo* value);
219 // This method updates the values that report how many profiles are in use
220 // and how many of those are signed-in.
221 static void UpdateProfileCounts(int profiles_active, int profiles_signedin);
223 // For system-level installs, we need to be able to communicate the results
224 // of the Toast Experiments back to Google Update. The problem is just that
225 // the experiment is run in the context of the user, which doesn't have
226 // write access to the HKLM key that Google Update expects the results in.
227 // However, when we are about to switch contexts from system to user, we can
228 // duplicate the handle to the registry key and pass it (through handle
229 // inheritance) to the newly created child process that is launched as the
230 // user, allowing the child process to write to the key, with the
231 // WriteGoogleUpdateSystemClientKey function below.
232 static int DuplicateGoogleUpdateSystemClientKey();
234 // Takes a |handle| to a registry key and writes |value| string into the
235 // specified |key|. See DuplicateGoogleUpdateSystemClientKey for details.
236 static bool WriteGoogleUpdateSystemClientKey(int handle,
237 const base::string16& key,
238 const base::string16& value);
240 // Returns the effective update policy for |app_guid| as dictated by
241 // Group Policy settings. |is_overridden|, if non-NULL, is populated with
242 // true if an app-specific policy override is in force, or false otherwise.
243 static UpdatePolicy GetAppUpdatePolicy(const base::string16& app_guid,
244 bool* is_overridden);
246 // Returns true if the app indicated by |app_guid| should be updated
247 // automatically by Google Update based on current autoupdate settings. This
248 // is distinct from GetAppUpdatePolicy which checks only a subset of things
249 // that can cause an app not to update.
250 static bool AreAutoupdatesEnabled(const base::string16& app_guid);
252 // Attempts to reenable auto-updates for |app_guid| by removing
253 // any group policy settings that would block updates from occurring. This is
254 // a superset of the things checked by GetAppUpdatePolicy() as
255 // GetAppUpdatePolicy() does not check Omaha's AutoUpdateCheckPeriodMinutes
256 // setting which will be reset by this method. Will need to be called from an
257 // elevated process since those settings live in HKLM. Returns true if there
258 // is a reasonable belief that updates are not disabled by policy when this
259 // method returns, false otherwise. Note that for Chromium builds, this
260 // returns true since Chromium is assumed not to autoupdate.
261 static bool ReenableAutoupdatesForApp(const base::string16& app_guid);
263 // Records UMA stats about Chrome's update policy.
264 static void RecordChromeUpdatePolicyHistograms();
266 // Returns Google Update's uninstall command line, or an empty string if none
267 // is found.
268 static base::string16 GetUninstallCommandLine(bool system_install);
270 // Returns the version of Google Update that is installed.
271 static Version GetGoogleUpdateVersion(bool system_install);
273 // Returns the time at which Google Update last started an automatic update
274 // check, or the null time if this information isn't available.
275 static base::Time GetGoogleUpdateLastStartedAU(bool system_install);
277 // Returns the time at which Google Update last successfully contacted Google
278 // servers and got a valid check response, or the null time if this
279 // information isn't available.
280 static base::Time GetGoogleUpdateLastChecked(bool system_install);
282 // Returns detailed update data for a product being managed by Google Update.
283 // Returns true if the |version| and |last_updated| fields in |data|
284 // are modified. The other items are considered optional.
285 static bool GetUpdateDetailForApp(bool system_install,
286 const wchar_t* app_guid,
287 ProductData* data);
289 // Returns product data for Google Update. (Equivalent to calling
290 // GetUpdateDetailForAppGuid with the app guid for Google Update itself.)
291 static bool GetUpdateDetailForGoogleUpdate(bool system_install,
292 ProductData* data);
294 // Returns product data for the current product. (Equivalent to calling
295 // GetUpdateDetailForApp with the app guid stored in BrowserDistribution.)
296 static bool GetUpdateDetail(bool system_install, ProductData* data);
298 // Sets |experiment_labels| as the Google Update experiment_labels value in
299 // the ClientState key for this Chrome product, if appropriate. If
300 // |experiment_labels| is empty, this will delete the value instead. This will
301 // return true if the label was successfully set (or deleted), false otherwise
302 // (even if the label does not need to be set for this particular distribution
303 // type).
304 static bool SetExperimentLabels(bool system_install,
305 const base::string16& experiment_labels);
307 // Reads the Google Update experiment_labels value in the ClientState key for
308 // this Chrome product and writes it into |experiment_labels|. If the key or
309 // value does not exist, |experiment_labels| will be set to the empty string.
310 // If this distribution of Chrome does not set the experiment_labels value,
311 // this will do nothing to |experiment_labels|. This will return true if the
312 // label did not exist, or was successfully read.
313 static bool ReadExperimentLabels(bool system_install,
314 base::string16* experiment_labels);
316 private:
317 DISALLOW_IMPLICIT_CONSTRUCTORS(GoogleUpdateSettings);
320 #endif // CHROME_INSTALLER_UTIL_GOOGLE_UPDATE_SETTINGS_H_