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

Unified Diff: chrome/browser/chromeos/system_logs/single_debug_daemon_log_source.cc

Issue 2955463002: Add log source to read from one DebugDaemon log (Closed)
Patch Set: Rebased: updated to latest DebugDaemonClient; Browser thread bundle Created 3 years, 6 months 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
Index: chrome/browser/chromeos/system_logs/single_debug_daemon_log_source.cc
diff --git a/chrome/browser/chromeos/system_logs/single_debug_daemon_log_source.cc b/chrome/browser/chromeos/system_logs/single_debug_daemon_log_source.cc
new file mode 100644
index 0000000000000000000000000000000000000000..f22b5712d52f58f89ab0f03431302311cf64f188
--- /dev/null
+++ b/chrome/browser/chromeos/system_logs/single_debug_daemon_log_source.cc
@@ -0,0 +1,68 @@
+// Copyright 2017 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/chromeos/system_logs/single_debug_daemon_log_source.h"
+
+#include "base/bind.h"
+#include "chromeos/dbus/dbus_thread_manager.h"
+#include "chromeos/dbus/debug_daemon_client.h"
+#include "components/feedback/anonymizer_tool.h"
+#include "content/public/browser/browser_thread.h"
+
+namespace system_logs {
+
+namespace {
+
+using SupportedSource = SingleDebugDaemonLogSource::SupportedSource;
+
+// Converts a logs source type to the corresponding debugd log name.
+std::string GetLogName(SupportedSource source_type) {
+ switch (source_type) {
+ case SupportedSource::kModetest:
+ return "modetest";
+ case SupportedSource::kLsusb:
+ return "lsusb";
+ }
+ NOTREACHED();
+ return "";
+}
+
+} // namespace
+
+SingleDebugDaemonLogSource::SingleDebugDaemonLogSource(
+ SupportedSource source_type)
+ : SystemLogsSource(GetLogName(source_type)), weak_ptr_factory_(this) {}
+
+SingleDebugDaemonLogSource::~SingleDebugDaemonLogSource() {}
+
+void SingleDebugDaemonLogSource::Fetch(const SysLogsSourceCallback& callback) {
+ DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
+ DCHECK(!callback.is_null());
+
+ chromeos::DebugDaemonClient* client =
+ chromeos::DBusThreadManager::Get()->GetDebugDaemonClient();
+
+ client->GetLog(
+ source_name(),
+ base::Bind(&SingleDebugDaemonLogSource::OnFetchComplete,
+ weak_ptr_factory_.GetWeakPtr(), source_name(), callback));
+}
+
+void SingleDebugDaemonLogSource::OnFetchComplete(
+ const std::string& log_name,
+ const SysLogsSourceCallback& callback,
+ bool success,
+ const std::string& result) const {
+ // |result| and |response| are the same type, but |result| is passed in from
+ // DebugDaemonClient, which does not use the SystemLogsResponse alias.
+ SystemLogsResponse response;
+ // Return an empty result if the call to GetLog() failed.
+ std::string final_result;
+ if (success)
+ response.emplace(log_name, feedback::AnonymizerTool().Anonymize(result));
+
+ callback.Run(&response);
+}
+
+} // namespace system_logs

Powered by Google App Engine
This is Rietveld 408576698