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 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343
|
// 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.
#include "chrome/browser/browser_shutdown.h"
#include <map>
#include <string>
#include "base/bind.h"
#include "base/command_line.h"
#include "base/files/file_path.h"
#include "base/files/file_util.h"
#include "base/metrics/histogram.h"
#include "base/path_service.h"
#include "base/prefs/pref_registry_simple.h"
#include "base/prefs/pref_service.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/stringprintf.h"
#include "base/threading/thread.h"
#include "base/time/time.h"
#include "chrome/browser/about_flags.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/first_run/upgrade_util.h"
#include "chrome/browser/lifetime/application_lifetime.h"
#include "chrome/browser/profiles/profile_manager.h"
#include "chrome/common/chrome_paths.h"
#include "chrome/common/chrome_switches.h"
#include "chrome/common/crash_keys.h"
#include "chrome/common/pref_names.h"
#include "chrome/common/switch_utils.h"
#include "components/metrics/metrics_service.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/browser/render_process_host.h"
#if defined(OS_WIN)
#include "chrome/browser/browser_util_win.h"
#include "chrome/browser/first_run/upgrade_util_win.h"
#endif
#if defined(ENABLE_RLZ)
#include "chrome/browser/rlz/rlz.h"
#endif
#if defined(OS_CHROMEOS)
#include "chrome/browser/chromeos/boot_times_recorder.h"
#endif
#if defined(ENABLE_PRINT_PREVIEW)
#include "chrome/browser/service_process/service_process_control.h"
#endif
using base::Time;
using base::TimeDelta;
using content::BrowserThread;
namespace browser_shutdown {
namespace {
// Whether the browser is trying to quit (e.g., Quit chosen from menu).
bool g_trying_to_quit = false;
#if defined(OS_WIN)
upgrade_util::RelaunchMode g_relaunch_mode =
upgrade_util::RELAUNCH_MODE_DEFAULT;
#endif
Time* shutdown_started_ = NULL;
ShutdownType shutdown_type_ = NOT_VALID;
int shutdown_num_processes_;
int shutdown_num_processes_slow_;
const char kShutdownMsFile[] = "chrome_shutdown_ms.txt";
const char* ToShutdownTypeString(ShutdownType type) {
switch (type) {
case NOT_VALID:
NOTREACHED();
return "";
case WINDOW_CLOSE:
return "close";
case BROWSER_EXIT:
return "exit";
case END_SESSION:
return "end";
}
return "";
}
} // namespace
void RegisterPrefs(PrefRegistrySimple* registry) {
registry->RegisterIntegerPref(prefs::kShutdownType, NOT_VALID);
registry->RegisterIntegerPref(prefs::kShutdownNumProcesses, 0);
registry->RegisterIntegerPref(prefs::kShutdownNumProcessesSlow, 0);
}
ShutdownType GetShutdownType() {
return shutdown_type_;
}
void OnShutdownStarting(ShutdownType type) {
if (shutdown_type_ != NOT_VALID)
return;
base::debug::SetCrashKeyValue(crash_keys::kShutdownType,
ToShutdownTypeString(type));
#if !defined(OS_CHROMEOS)
// Start the shutdown tracing. Note that On ChromeOS we have started this
// already.
chrome::StartShutdownTracing();
#endif
shutdown_type_ = type;
// For now, we're only counting the number of renderer processes
// since we can't safely count the number of plugin processes from this
// thread, and we'd really like to avoid anything which might add further
// delays to shutdown time.
DCHECK(!shutdown_started_);
shutdown_started_ = new Time(Time::Now());
// Call FastShutdown on all of the RenderProcessHosts. This will be
// a no-op in some cases, so we still need to go through the normal
// shutdown path for the ones that didn't exit here.
shutdown_num_processes_ = 0;
shutdown_num_processes_slow_ = 0;
for (content::RenderProcessHost::iterator i(
content::RenderProcessHost::AllHostsIterator());
!i.IsAtEnd(); i.Advance()) {
++shutdown_num_processes_;
if (!i.GetCurrentValue()->FastShutdownIfPossible())
++shutdown_num_processes_slow_;
}
}
base::FilePath GetShutdownMsPath() {
base::FilePath shutdown_ms_file;
PathService::Get(chrome::DIR_USER_DATA, &shutdown_ms_file);
return shutdown_ms_file.AppendASCII(kShutdownMsFile);
}
bool ShutdownPreThreadsStop() {
#if defined(OS_CHROMEOS)
chromeos::BootTimesRecorder::Get()->AddLogoutTimeMarker(
"BrowserShutdownStarted", false);
#endif
#if defined(ENABLE_PRINT_PREVIEW)
// Shutdown the IPC channel to the service processes.
ServiceProcessControl::GetInstance()->Disconnect();
#endif // ENABLE_PRINT_PREVIEW
// WARNING: During logoff/shutdown (WM_ENDSESSION) we may not have enough
// time to get here. If you have something that *must* happen on end session,
// consider putting it in BrowserProcessImpl::EndSession.
PrefService* prefs = g_browser_process->local_state();
metrics::MetricsService* metrics = g_browser_process->metrics_service();
if (metrics)
metrics->RecordCompletedSessionEnd();
if (shutdown_type_ > NOT_VALID && shutdown_num_processes_ > 0) {
// Record the shutdown info so that we can put it into a histogram at next
// startup.
prefs->SetInteger(prefs::kShutdownType, shutdown_type_);
prefs->SetInteger(prefs::kShutdownNumProcesses, shutdown_num_processes_);
prefs->SetInteger(prefs::kShutdownNumProcessesSlow,
shutdown_num_processes_slow_);
}
// Check local state for the restart flag so we can restart the session below.
bool restart_last_session = false;
if (prefs->HasPrefPath(prefs::kRestartLastSessionOnShutdown)) {
restart_last_session =
prefs->GetBoolean(prefs::kRestartLastSessionOnShutdown);
prefs->ClearPref(prefs::kRestartLastSessionOnShutdown);
#if defined(OS_WIN)
if (restart_last_session) {
if (prefs->HasPrefPath(prefs::kRelaunchMode)) {
g_relaunch_mode = upgrade_util::RelaunchModeStringToEnum(
prefs->GetString(prefs::kRelaunchMode));
prefs->ClearPref(prefs::kRelaunchMode);
}
}
#endif
}
prefs->CommitPendingWrite();
#if defined(ENABLE_RLZ)
// Cleanup any statics created by RLZ. Must be done before NotificationService
// is destroyed.
RLZTracker::CleanupRlz();
#endif
return restart_last_session;
}
void ShutdownPostThreadsStop(bool restart_last_session) {
delete g_browser_process;
g_browser_process = NULL;
// crbug.com/95079 - This needs to happen after the browser process object
// goes away.
ProfileManager::NukeDeletedProfilesFromDisk();
#if defined(OS_CHROMEOS)
chromeos::BootTimesRecorder::Get()->AddLogoutTimeMarker("BrowserDeleted",
true);
#endif
#if defined(OS_WIN)
if (!browser_util::IsBrowserAlreadyRunning() &&
shutdown_type_ != browser_shutdown::END_SESSION) {
upgrade_util::SwapNewChromeExeIfPresent();
}
#endif
if (restart_last_session) {
#if !defined(OS_CHROMEOS)
// Make sure to relaunch the browser with the original command line plus
// the Restore Last Session flag. Note that Chrome can be launched (ie.
// through ShellExecute on Windows) with a switch argument terminator at
// the end (double dash, as described in b/1366444) plus a URL,
// which prevents us from appending to the command line directly (issue
// 46182). We therefore use GetSwitches to copy the command line (it stops
// at the switch argument terminator).
base::CommandLine old_cl(*base::CommandLine::ForCurrentProcess());
scoped_ptr<base::CommandLine> new_cl(
new base::CommandLine(old_cl.GetProgram()));
std::map<std::string, base::CommandLine::StringType> switches =
old_cl.GetSwitches();
// Remove the switches that shouldn't persist across restart.
about_flags::RemoveFlagsSwitches(&switches);
switches::RemoveSwitchesForAutostart(&switches);
// Append the old switches to the new command line.
for (
std::map<std::string, base::CommandLine::StringType>::const_iterator i =
switches.begin();
i != switches.end(); ++i) {
base::CommandLine::StringType switch_value = i->second;
if (!switch_value.empty())
new_cl->AppendSwitchNative(i->first, i->second);
else
new_cl->AppendSwitch(i->first);
}
#if defined(OS_WIN)
upgrade_util::RelaunchChromeWithMode(*new_cl.get(), g_relaunch_mode);
#else
upgrade_util::RelaunchChromeBrowser(*new_cl.get());
#endif // defined(OS_WIN)
#else
NOTIMPLEMENTED();
#endif // !defined(OS_CHROMEOS)
}
if (shutdown_type_ > NOT_VALID && shutdown_num_processes_ > 0) {
// Measure total shutdown time as late in the process as possible
// and then write it to a file to be read at startup.
// We can't use prefs since all services are shutdown at this point.
TimeDelta shutdown_delta = Time::Now() - *shutdown_started_;
std::string shutdown_ms =
base::Int64ToString(shutdown_delta.InMilliseconds());
int len = static_cast<int>(shutdown_ms.length()) + 1;
base::FilePath shutdown_ms_file = GetShutdownMsPath();
base::WriteFile(shutdown_ms_file, shutdown_ms.c_str(), len);
}
#if defined(OS_CHROMEOS)
chrome::NotifyAndTerminate(false);
#endif
}
void ReadLastShutdownFile(ShutdownType type,
int num_procs,
int num_procs_slow) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE));
base::FilePath shutdown_ms_file = GetShutdownMsPath();
std::string shutdown_ms_str;
int64 shutdown_ms = 0;
if (base::ReadFileToString(shutdown_ms_file, &shutdown_ms_str))
base::StringToInt64(shutdown_ms_str, &shutdown_ms);
base::DeleteFile(shutdown_ms_file, false);
if (type == NOT_VALID || shutdown_ms == 0 || num_procs == 0)
return;
const char* time_fmt = "Shutdown.%s.time";
const char* time_per_fmt = "Shutdown.%s.time_per_process";
std::string time;
std::string time_per;
if (type == WINDOW_CLOSE) {
time = base::StringPrintf(time_fmt, "window_close");
time_per = base::StringPrintf(time_per_fmt, "window_close");
} else if (type == BROWSER_EXIT) {
time = base::StringPrintf(time_fmt, "browser_exit");
time_per = base::StringPrintf(time_per_fmt, "browser_exit");
} else if (type == END_SESSION) {
time = base::StringPrintf(time_fmt, "end_session");
time_per = base::StringPrintf(time_per_fmt, "end_session");
} else {
NOTREACHED();
}
if (time.empty())
return;
// TODO(erikkay): change these to UMA histograms after a bit more testing.
UMA_HISTOGRAM_TIMES(time.c_str(),
TimeDelta::FromMilliseconds(shutdown_ms));
UMA_HISTOGRAM_TIMES(time_per.c_str(),
TimeDelta::FromMilliseconds(shutdown_ms / num_procs));
UMA_HISTOGRAM_COUNTS_100("Shutdown.renderers.total", num_procs);
UMA_HISTOGRAM_COUNTS_100("Shutdown.renderers.slow", num_procs_slow);
}
void ReadLastShutdownInfo() {
PrefService* prefs = g_browser_process->local_state();
ShutdownType type =
static_cast<ShutdownType>(prefs->GetInteger(prefs::kShutdownType));
int num_procs = prefs->GetInteger(prefs::kShutdownNumProcesses);
int num_procs_slow = prefs->GetInteger(prefs::kShutdownNumProcessesSlow);
// clear the prefs immediately so we don't pick them up on a future run
prefs->SetInteger(prefs::kShutdownType, NOT_VALID);
prefs->SetInteger(prefs::kShutdownNumProcesses, 0);
prefs->SetInteger(prefs::kShutdownNumProcessesSlow, 0);
// Read and delete the file on the file thread.
BrowserThread::PostTask(
BrowserThread::FILE, FROM_HERE,
base::Bind(&ReadLastShutdownFile, type, num_procs, num_procs_slow));
}
void SetTryingToQuit(bool quitting) {
g_trying_to_quit = quitting;
}
bool IsTryingToQuit() {
return g_trying_to_quit;
}
} // namespace browser_shutdown
|