Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(9048)

Unified Diff: chrome/chrome_watcher/chrome_watcher_main.cc

Issue 811603003: Add a console control handler chrome_watcher.dll. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@base_process
Patch Set: Address Greg's nits. Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | components/browser_watcher/exit_code_watcher_win.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/chrome_watcher/chrome_watcher_main.cc
diff --git a/chrome/chrome_watcher/chrome_watcher_main.cc b/chrome/chrome_watcher/chrome_watcher_main.cc
index 6d35d0c9f4463f54b90aa678119dcb81eb72c299..0eb644c5e26e9ebcc236f85baf1f4fbe5a06b9a9 100644
--- a/chrome/chrome_watcher/chrome_watcher_main.cc
+++ b/chrome/chrome_watcher/chrome_watcher_main.cc
@@ -8,6 +8,7 @@
#include "base/command_line.h"
#include "base/logging_win.h"
#include "base/process/process.h"
+#include "base/synchronization/waitable_event.h"
#include "base/template_util.h"
#include "components/browser_watcher/exit_code_watcher_win.h"
#include "components/browser_watcher/exit_funnel_win.h"
@@ -21,6 +22,34 @@ const GUID kChromeWatcherTraceProviderName = {
0x7fe69228, 0x633e, 0x4f06,
{ 0x80, 0xc1, 0x52, 0x7f, 0xea, 0x23, 0xe3, 0xa7 } };
+// The data shared from the main function to the console handler.
+struct HandlerData {
+ HandlerData() : handler_done(true /* manual_reset */,
+ false /* initially_signaled */) {
+ }
+
+ base::WaitableEvent handler_done;
+ base::ProcessHandle process;
+ const base::char16* registry_path;
+};
+
+HandlerData *g_handler_data = nullptr;
+
+BOOL CALLBACK ConsoleCtrlHandler(DWORD ctl_type) {
+ if (g_handler_data && ctl_type == CTRL_LOGOFF_EVENT) {
+ // Record the watcher logoff event in the browser's exit funnel.
+ browser_watcher::ExitFunnel funnel;
+ funnel.Init(g_handler_data->registry_path, g_handler_data->process);
+ funnel.RecordEvent(L"WatcherLogoff");
+
+ // Release the main function.
+ g_handler_data->handler_done.Signal();
+ }
+
+ // Fall through to the next handler in turn.
+ return FALSE;
+}
+
} // namespace
// The main entry point to the watcher, declared as extern "C" to avoid name
@@ -29,7 +58,7 @@ extern "C" int WatcherMain(const base::char16* registry_path) {
// The exit manager is in charge of calling the dtors of singletons.
base::AtExitManager exit_manager;
// Initialize the commandline singleton from the environment.
- base::CommandLine::Init(0, NULL);
+ base::CommandLine::Init(0, nullptr);
logging::LogEventProvider::Initialize(kChromeWatcherTraceProviderName);
@@ -44,6 +73,14 @@ extern "C" int WatcherMain(const base::char16* registry_path) {
// Attempt to wait on our parent process, and record its exit status.
if (exit_code_watcher.ParseArguments(
*base::CommandLine::ForCurrentProcess())) {
+ // Set up a console control handler, and provide it the data it needs
+ // to record into the browser's exit funnel.
+ HandlerData data;
+ data.process = exit_code_watcher.process().Handle();
+ data.registry_path = registry_path;
+ g_handler_data = &data;
+ ::SetConsoleCtrlHandler(&ConsoleCtrlHandler, TRUE /* Add */);
+
// Wait on the process.
exit_code_watcher.WaitForExit();
@@ -51,6 +88,22 @@ extern "C" int WatcherMain(const base::char16* registry_path) {
funnel.Init(registry_path, exit_code_watcher.process().Handle());
funnel.RecordEvent(L"BrowserExit");
+ // Chrome/content exit codes are currently in the range of 0-28.
+ // Anything outside this range is strange, so watch harder.
+ int exit_code = exit_code_watcher.exit_code();
+ if (exit_code < 0 || exit_code > 28) {
+ // Wait for a max of 30 seconds to see whether we get notified of logoff.
+ data.handler_done.TimedWait(base::TimeDelta::FromSeconds(30));
+ }
+
+ // Remove the console control handler.
+ // There is a potential race here, where the handler might be executing
+ // already as we fall through here. Hopefully SetConsoleCtrlHandler is
+ // synchronizing against handler execution, for there's no other way to
+ // close the race. Thankfully we'll just get snuffed out, as this is logoff.
+ ::SetConsoleCtrlHandler(&ConsoleCtrlHandler, FALSE /* Add */);
+ g_handler_data = nullptr;
+
ret = 0;
}
« no previous file with comments | « no previous file | components/browser_watcher/exit_code_watcher_win.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698