1 // Copyright (c) 2011 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 #include "chrome/installer/util/google_update_settings.h"
7 #include "base/file_util.h"
8 #include "base/lazy_instance.h"
9 #include "base/path_service.h"
10 #include "base/strings/string_util.h"
11 #include "base/strings/utf_string_conversions.h"
12 #include "base/synchronization/lock.h"
13 #include "chrome/common/chrome_paths.h"
17 base::LazyInstance
<std::string
>::Leaky g_posix_client_id
=
18 LAZY_INSTANCE_INITIALIZER
;
19 base::LazyInstance
<base::Lock
>::Leaky g_posix_client_id_lock
=
20 LAZY_INSTANCE_INITIALIZER
;
22 // File name used in the user data dir to indicate consent.
23 const char kConsentToSendStats
[] = "Consent To Send Stats";
28 bool GoogleUpdateSettings::GetCollectStatsConsent() {
29 base::FilePath consent_file
;
30 PathService::Get(chrome::DIR_USER_DATA
, &consent_file
);
31 consent_file
= consent_file
.Append(kConsentToSendStats
);
33 if (!base::DirectoryExists(consent_file
.DirName()))
37 bool consented
= base::ReadFileToString(consent_file
, &tmp_guid
);
39 base::AutoLock
lock(g_posix_client_id_lock
.Get());
40 g_posix_client_id
.Get().assign(tmp_guid
);
46 bool GoogleUpdateSettings::SetCollectStatsConsent(bool consented
) {
47 base::FilePath consent_dir
;
48 PathService::Get(chrome::DIR_USER_DATA
, &consent_dir
);
49 if (!base::DirectoryExists(consent_dir
))
52 base::AutoLock
lock(g_posix_client_id_lock
.Get());
54 base::FilePath consent_file
= consent_dir
.AppendASCII(kConsentToSendStats
);
56 if ((!base::PathExists(consent_file
)) ||
57 (base::PathExists(consent_file
) && !g_posix_client_id
.Get().empty())) {
58 const char* c_str
= g_posix_client_id
.Get().c_str();
59 int size
= g_posix_client_id
.Get().size();
60 return base::WriteFile(consent_file
, c_str
, size
) == size
;
63 g_posix_client_id
.Get().clear();
64 return base::DeleteFile(consent_file
, false);
70 // TODO(gab): Implement storing/loading for all ClientInfo fields on POSIX.
71 scoped_ptr
<metrics::ClientInfo
> GoogleUpdateSettings::LoadMetricsClientInfo() {
72 scoped_ptr
<metrics::ClientInfo
> client_info(new metrics::ClientInfo
);
74 base::AutoLock
lock(g_posix_client_id_lock
.Get());
75 if (g_posix_client_id
.Get().empty())
76 return scoped_ptr
<metrics::ClientInfo
>();
77 client_info
->client_id
= g_posix_client_id
.Get();
79 return client_info
.Pass();
83 // TODO(gab): Implement storing/loading for all ClientInfo fields on POSIX.
84 void GoogleUpdateSettings::StoreMetricsClientInfo(
85 const metrics::ClientInfo
& client_info
) {
86 // Make sure that user has consented to send crashes.
87 if (!GoogleUpdateSettings::GetCollectStatsConsent())
91 // Since user has consented, write the metrics id to the file.
92 base::AutoLock
lock(g_posix_client_id_lock
.Get());
93 g_posix_client_id
.Get() = client_info
.client_id
;
95 GoogleUpdateSettings::SetCollectStatsConsent(true);
98 // GetLastRunTime and SetLastRunTime are not implemented for posix. Their
99 // current return values signal failure which the caller is designed to
103 int GoogleUpdateSettings::GetLastRunTime() {
108 bool GoogleUpdateSettings::SetLastRunTime() {