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 #include "chrome/browser/browser_shutdown.h"
10 #include "base/bind.h"
11 #include "base/command_line.h"
12 #include "base/file_util.h"
13 #include "base/files/file_path.h"
14 #include "base/metrics/histogram.h"
15 #include "base/path_service.h"
16 #include "base/prefs/pref_registry_simple.h"
17 #include "base/prefs/pref_service.h"
18 #include "base/strings/string_number_conversions.h"
19 #include "base/strings/stringprintf.h"
20 #include "base/threading/thread.h"
21 #include "base/time/time.h"
22 #include "chrome/browser/about_flags.h"
23 #include "chrome/browser/browser_process.h"
24 #include "chrome/browser/first_run/upgrade_util.h"
25 #include "chrome/browser/jankometer.h"
26 #include "chrome/browser/lifetime/application_lifetime.h"
27 #include "chrome/browser/metrics/metrics_service.h"
28 #include "chrome/browser/profiles/profile_manager.h"
29 #include "chrome/browser/service_process/service_process_control.h"
30 #include "chrome/common/chrome_paths.h"
31 #include "chrome/common/chrome_switches.h"
32 #include "chrome/common/crash_keys.h"
33 #include "chrome/common/pref_names.h"
34 #include "chrome/common/switch_utils.h"
35 #include "content/public/browser/browser_thread.h"
36 #include "content/public/browser/render_process_host.h"
39 #include "chrome/browser/browser_util_win.h"
40 #include "chrome/browser/first_run/upgrade_util_win.h"
43 #if defined(ENABLE_RLZ)
44 #include "chrome/browser/rlz/rlz.h"
47 #if defined(OS_CHROMEOS)
48 #include "chrome/browser/chromeos/boot_times_loader.h"
52 using base::TimeDelta
;
53 using content::BrowserThread
;
55 namespace browser_shutdown
{
58 // Whether the browser is trying to quit (e.g., Quit chosen from menu).
59 bool g_trying_to_quit
= false;
62 upgrade_util::RelaunchMode g_relaunch_mode
=
63 upgrade_util::RELAUNCH_MODE_DEFAULT
;
66 Time
* shutdown_started_
= NULL
;
67 ShutdownType shutdown_type_
= NOT_VALID
;
68 int shutdown_num_processes_
;
69 int shutdown_num_processes_slow_
;
71 const char kShutdownMsFile
[] = "chrome_shutdown_ms.txt";
73 const char* ToShutdownTypeString(ShutdownType type
) {
90 void RegisterPrefs(PrefRegistrySimple
* registry
) {
91 registry
->RegisterIntegerPref(prefs::kShutdownType
, NOT_VALID
);
92 registry
->RegisterIntegerPref(prefs::kShutdownNumProcesses
, 0);
93 registry
->RegisterIntegerPref(prefs::kShutdownNumProcessesSlow
, 0);
96 ShutdownType
GetShutdownType() {
97 return shutdown_type_
;
100 void OnShutdownStarting(ShutdownType type
) {
101 if (shutdown_type_
!= NOT_VALID
)
103 base::debug::SetCrashKeyValue(crash_keys::kShutdownType
,
104 ToShutdownTypeString(type
));
105 #if !defined(OS_CHROMEOS)
106 // Start the shutdown tracing. Note that On ChromeOS we have started this
108 chrome::StartShutdownTracing();
111 shutdown_type_
= type
;
112 // For now, we're only counting the number of renderer processes
113 // since we can't safely count the number of plugin processes from this
114 // thread, and we'd really like to avoid anything which might add further
115 // delays to shutdown time.
116 DCHECK(!shutdown_started_
);
117 shutdown_started_
= new Time(Time::Now());
119 // Call FastShutdown on all of the RenderProcessHosts. This will be
120 // a no-op in some cases, so we still need to go through the normal
121 // shutdown path for the ones that didn't exit here.
122 shutdown_num_processes_
= 0;
123 shutdown_num_processes_slow_
= 0;
124 for (content::RenderProcessHost::iterator
i(
125 content::RenderProcessHost::AllHostsIterator());
126 !i
.IsAtEnd(); i
.Advance()) {
127 ++shutdown_num_processes_
;
128 if (!i
.GetCurrentValue()->FastShutdownIfPossible())
129 ++shutdown_num_processes_slow_
;
133 base::FilePath
GetShutdownMsPath() {
134 base::FilePath shutdown_ms_file
;
135 PathService::Get(chrome::DIR_USER_DATA
, &shutdown_ms_file
);
136 return shutdown_ms_file
.AppendASCII(kShutdownMsFile
);
139 bool ShutdownPreThreadsStop() {
140 #if defined(OS_CHROMEOS)
141 chromeos::BootTimesLoader::Get()->AddLogoutTimeMarker(
142 "BrowserShutdownStarted", false);
145 // Shutdown the IPC channel to the service processes.
146 ServiceProcessControl::GetInstance()->Disconnect();
148 // WARNING: During logoff/shutdown (WM_ENDSESSION) we may not have enough
149 // time to get here. If you have something that *must* happen on end session,
150 // consider putting it in BrowserProcessImpl::EndSession.
151 PrefService
* prefs
= g_browser_process
->local_state();
153 MetricsService
* metrics
= g_browser_process
->metrics_service();
155 metrics
->RecordCompletedSessionEnd();
157 if (shutdown_type_
> NOT_VALID
&& shutdown_num_processes_
> 0) {
158 // Record the shutdown info so that we can put it into a histogram at next
160 prefs
->SetInteger(prefs::kShutdownType
, shutdown_type_
);
161 prefs
->SetInteger(prefs::kShutdownNumProcesses
, shutdown_num_processes_
);
162 prefs
->SetInteger(prefs::kShutdownNumProcessesSlow
,
163 shutdown_num_processes_slow_
);
166 // Check local state for the restart flag so we can restart the session below.
167 bool restart_last_session
= false;
168 if (prefs
->HasPrefPath(prefs::kRestartLastSessionOnShutdown
)) {
169 restart_last_session
=
170 prefs
->GetBoolean(prefs::kRestartLastSessionOnShutdown
);
171 prefs
->ClearPref(prefs::kRestartLastSessionOnShutdown
);
173 if (restart_last_session
) {
174 if (prefs
->HasPrefPath(prefs::kRelaunchMode
)) {
175 g_relaunch_mode
= upgrade_util::RelaunchModeStringToEnum(
176 prefs
->GetString(prefs::kRelaunchMode
));
177 prefs
->ClearPref(prefs::kRelaunchMode
);
183 prefs
->CommitPendingWrite();
185 #if defined(ENABLE_RLZ)
186 // Cleanup any statics created by RLZ. Must be done before NotificationService
188 RLZTracker::CleanupRlz();
191 return restart_last_session
;
194 void ShutdownPostThreadsStop(bool restart_last_session
) {
195 // The jank'o'meter requires that the browser process has been destroyed
196 // before calling UninstallJankometer().
197 delete g_browser_process
;
198 g_browser_process
= NULL
;
200 // crbug.com/95079 - This needs to happen after the browser process object
202 ProfileManager::NukeDeletedProfilesFromDisk();
204 #if defined(OS_CHROMEOS)
205 chromeos::BootTimesLoader::Get()->AddLogoutTimeMarker("BrowserDeleted",
209 // Uninstall Jank-O-Meter here after the IO thread is no longer running.
210 UninstallJankometer();
213 if (!browser_util::IsBrowserAlreadyRunning() &&
214 shutdown_type_
!= browser_shutdown::END_SESSION
) {
215 upgrade_util::SwapNewChromeExeIfPresent();
219 if (restart_last_session
) {
220 #if !defined(OS_CHROMEOS)
221 // Make sure to relaunch the browser with the original command line plus
222 // the Restore Last Session flag. Note that Chrome can be launched (ie.
223 // through ShellExecute on Windows) with a switch argument terminator at
224 // the end (double dash, as described in b/1366444) plus a URL,
225 // which prevents us from appending to the command line directly (issue
226 // 46182). We therefore use GetSwitches to copy the command line (it stops
227 // at the switch argument terminator).
228 CommandLine
old_cl(*CommandLine::ForCurrentProcess());
229 scoped_ptr
<CommandLine
> new_cl(new CommandLine(old_cl
.GetProgram()));
230 std::map
<std::string
, CommandLine::StringType
> switches
=
231 old_cl
.GetSwitches();
232 // Remove the switches that shouldn't persist across restart.
233 about_flags::RemoveFlagsSwitches(&switches
);
234 switches::RemoveSwitchesForAutostart(&switches
);
235 // Append the old switches to the new command line.
236 for (std::map
<std::string
, CommandLine::StringType
>::const_iterator i
=
237 switches
.begin(); i
!= switches
.end(); ++i
) {
238 CommandLine::StringType switch_value
= i
->second
;
239 if (!switch_value
.empty())
240 new_cl
->AppendSwitchNative(i
->first
, i
->second
);
242 new_cl
->AppendSwitch(i
->first
);
246 upgrade_util::RelaunchChromeWithMode(*new_cl
.get(), g_relaunch_mode
);
248 upgrade_util::RelaunchChromeBrowser(*new_cl
.get());
249 #endif // defined(OS_WIN)
253 #endif // !defined(OS_CHROMEOS)
256 if (shutdown_type_
> NOT_VALID
&& shutdown_num_processes_
> 0) {
257 // Measure total shutdown time as late in the process as possible
258 // and then write it to a file to be read at startup.
259 // We can't use prefs since all services are shutdown at this point.
260 TimeDelta shutdown_delta
= Time::Now() - *shutdown_started_
;
261 std::string shutdown_ms
=
262 base::Int64ToString(shutdown_delta
.InMilliseconds());
263 int len
= static_cast<int>(shutdown_ms
.length()) + 1;
264 base::FilePath shutdown_ms_file
= GetShutdownMsPath();
265 base::WriteFile(shutdown_ms_file
, shutdown_ms
.c_str(), len
);
268 #if defined(OS_CHROMEOS)
269 chrome::NotifyAndTerminate(false);
273 void ReadLastShutdownFile(ShutdownType type
,
275 int num_procs_slow
) {
276 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE));
278 base::FilePath shutdown_ms_file
= GetShutdownMsPath();
279 std::string shutdown_ms_str
;
280 int64 shutdown_ms
= 0;
281 if (base::ReadFileToString(shutdown_ms_file
, &shutdown_ms_str
))
282 base::StringToInt64(shutdown_ms_str
, &shutdown_ms
);
283 base::DeleteFile(shutdown_ms_file
, false);
285 if (type
== NOT_VALID
|| shutdown_ms
== 0 || num_procs
== 0)
288 const char* time_fmt
= "Shutdown.%s.time";
289 const char* time_per_fmt
= "Shutdown.%s.time_per_process";
291 std::string time_per
;
292 if (type
== WINDOW_CLOSE
) {
293 time
= base::StringPrintf(time_fmt
, "window_close");
294 time_per
= base::StringPrintf(time_per_fmt
, "window_close");
295 } else if (type
== BROWSER_EXIT
) {
296 time
= base::StringPrintf(time_fmt
, "browser_exit");
297 time_per
= base::StringPrintf(time_per_fmt
, "browser_exit");
298 } else if (type
== END_SESSION
) {
299 time
= base::StringPrintf(time_fmt
, "end_session");
300 time_per
= base::StringPrintf(time_per_fmt
, "end_session");
308 // TODO(erikkay): change these to UMA histograms after a bit more testing.
309 UMA_HISTOGRAM_TIMES(time
.c_str(),
310 TimeDelta::FromMilliseconds(shutdown_ms
));
311 UMA_HISTOGRAM_TIMES(time_per
.c_str(),
312 TimeDelta::FromMilliseconds(shutdown_ms
/ num_procs
));
313 UMA_HISTOGRAM_COUNTS_100("Shutdown.renderers.total", num_procs
);
314 UMA_HISTOGRAM_COUNTS_100("Shutdown.renderers.slow", num_procs_slow
);
317 void ReadLastShutdownInfo() {
318 PrefService
* prefs
= g_browser_process
->local_state();
320 static_cast<ShutdownType
>(prefs
->GetInteger(prefs::kShutdownType
));
321 int num_procs
= prefs
->GetInteger(prefs::kShutdownNumProcesses
);
322 int num_procs_slow
= prefs
->GetInteger(prefs::kShutdownNumProcessesSlow
);
323 // clear the prefs immediately so we don't pick them up on a future run
324 prefs
->SetInteger(prefs::kShutdownType
, NOT_VALID
);
325 prefs
->SetInteger(prefs::kShutdownNumProcesses
, 0);
326 prefs
->SetInteger(prefs::kShutdownNumProcessesSlow
, 0);
328 // Read and delete the file on the file thread.
329 BrowserThread::PostTask(
330 BrowserThread::FILE, FROM_HERE
,
331 base::Bind(&ReadLastShutdownFile
, type
, num_procs
, num_procs_slow
));
334 void SetTryingToQuit(bool quitting
) {
335 g_trying_to_quit
= quitting
;
338 bool IsTryingToQuit() {
339 return g_trying_to_quit
;
342 } // namespace browser_shutdown