Index: chrome/browser/performance_monitor/startup_timer.cc |
diff --git a/chrome/browser/performance_monitor/startup_timer.cc b/chrome/browser/performance_monitor/startup_timer.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..e4d849a3ece95e1801dbf4af7cd49cc6260b8587 |
--- /dev/null |
+++ b/chrome/browser/performance_monitor/startup_timer.cc |
@@ -0,0 +1,134 @@ |
+// 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/performance_monitor/startup_timer.h" |
+ |
+#include "base/bind.h" |
+#include "base/logging.h" |
+#include "base/string_number_conversions.h" |
+#include "chrome/browser/performance_monitor/database.h" |
+#include "chrome/browser/performance_monitor/performance_monitor.h" |
+#include "chrome/common/chrome_notification_types.h" |
+#include "content/public/browser/browser_thread.h" |
+#include "content/public/browser/notification_details.h" |
+#include "content/public/browser/notification_service.h" |
+#include "content/public/browser/notification_source.h" |
+#include "content/public/browser/notification_types.h" |
+ |
+namespace performance_monitor { |
+ |
+namespace { |
+// Needed because Database::AddMetric is overloaded, so base::Bind doesn't work. |
+void AddMetricToDatabaseOnBackgroundThread(Database* database, |
+ MetricType metric, |
+ std::string value) { |
+ database->AddMetric(metric, value); |
+} |
+ |
+} // namespace |
+ |
+// static |
+StartupTimer* StartupTimer::g_startup_timer_ = NULL; |
+ |
+StartupTimer::StartupTimer() : startup_begin_(base::TimeTicks::Now()), |
+ startup_type_(STARTUP_NORMAL), |
+ performance_monitor_initialized_(false) { |
+ CHECK(!g_startup_timer_); |
+ g_startup_timer_ = this; |
+ registrar_.Add(this, chrome::NOTIFICATION_PERFORMANCE_MONITOR_INITIALIZED, |
+ content::NotificationService::AllSources()); |
+} |
+ |
+StartupTimer::~StartupTimer() { |
+ DCHECK(this == g_startup_timer_); |
+ g_startup_timer_ = NULL; |
+} |
+ |
+bool StartupTimer::SignalStartupComplete(StartupType startup_type) { |
+ startup_type_ = startup_type; |
+ if (elapsed_startup_time_ != base::TimeDelta()) |
+ return false; |
+ |
+ elapsed_startup_time_ = |
+ base::TimeTicks::Now() - total_pause_ - startup_begin_; |
+ |
+ if (performance_monitor_initialized_) |
+ InsertElapsedStartupTime(); |
+ |
+ return true; |
+} |
+ |
+// static |
+bool StartupTimer::PauseTimer() { |
+ return g_startup_timer_->PauseTimerImpl(); |
+} |
+ |
+bool StartupTimer::PauseTimerImpl() { |
+ if (pause_started_ != base::TimeTicks()) |
+ return false; |
+ |
+ pause_started_ = base::TimeTicks::Now(); |
+ return true; |
+} |
+ |
+// static |
+bool StartupTimer::UnpauseTimer() { |
+ return g_startup_timer_->UnpauseTimerImpl(); |
+} |
+ |
+bool StartupTimer::UnpauseTimerImpl() { |
+ if (pause_started_ == base::TimeTicks()) |
+ return false; |
+ |
+ total_pause_ += base::TimeTicks::Now() - pause_started_; |
+ pause_started_ = base::TimeTicks(); |
+ return true; |
+} |
+ |
+void StartupTimer::Observe(int type, |
+ const content::NotificationSource& source, |
+ const content::NotificationDetails& details) { |
+ CHECK(type == chrome::NOTIFICATION_PERFORMANCE_MONITOR_INITIALIZED); |
+ performance_monitor_initialized_ = true; |
+ if (elapsed_startup_time_ != base::TimeDelta()) |
+ InsertElapsedStartupTime(); |
+ if (elapsed_session_restore_time_ != base::TimeDelta()) |
+ InsertElapsedSessionRestoreTime(); |
+} |
+ |
+// static |
+void StartupTimer::SetElapsedSessionRestoreTime( |
+ const base::TimeDelta& elapsed_session_restore_time) { |
+ g_startup_timer_->elapsed_session_restore_time_ = |
+ elapsed_session_restore_time; |
+ |
+ if (g_startup_timer_->performance_monitor_initialized_) |
+ g_startup_timer_->InsertElapsedSessionRestoreTime(); |
+} |
+ |
+void StartupTimer::InsertElapsedStartupTime() { |
+ content::BrowserThread::PostBlockingPoolSequencedTask( |
+ Database::kDatabaseSequenceToken, |
+ FROM_HERE, |
+ base::Bind( |
+ &AddMetricToDatabaseOnBackgroundThread, |
+ base::Unretained(PerformanceMonitor::GetInstance()->database()), |
+ startup_type_ == STARTUP_NORMAL ? METRIC_STARTUP_TIME |
+ : METRIC_TEST_STARTUP_TIME, |
+ base::Int64ToString(elapsed_startup_time_.ToInternalValue()))); |
+} |
+ |
+void StartupTimer::InsertElapsedSessionRestoreTime() { |
+ content::BrowserThread::PostBlockingPoolSequencedTask( |
+ Database::kDatabaseSequenceToken, |
+ FROM_HERE, |
+ base::Bind( |
+ &AddMetricToDatabaseOnBackgroundThread, |
+ base::Unretained(PerformanceMonitor::GetInstance()->database()), |
+ METRIC_SESSION_RESTORE_TIME, |
+ base::Int64ToString( |
+ elapsed_session_restore_time_.ToInternalValue()))); |
+} |
+ |
+} // namespace performance_monitor |