blob: e68e60df5de9554eacfd551340be199b60ed28ac [file] [log] [blame]
// 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.
#ifndef CHROME_BROWSER_CHROMEOS_SYSTEM_LOGS_DEBUG_DAEMON_LOG_SOURCE_H_
#define CHROME_BROWSER_CHROMEOS_SYSTEM_LOGS_DEBUG_DAEMON_LOG_SOURCE_H_
#include <map>
#include <string>
#include <vector>
#include "base/memory/weak_ptr.h"
#include "chrome/browser/chromeos/system_logs/system_logs_fetcher_base.h"
namespace chromeos {
// Gathers log data from Debug Daemon.
class DebugDaemonLogSource : public SystemLogsSource {
public:
explicit DebugDaemonLogSource(bool scrub);
virtual ~DebugDaemonLogSource();
// SystemLogsSource override:
// Fetches logs from the daemon over dbus. After the fetch is complete, the
// results will be forwarded to the request supplied to the constructor and
// this instance will free itself.
virtual void Fetch(const SysLogsSourceCallback& callback) OVERRIDE;
private:
typedef std::map<std::string, std::string> KeyValueMap;
// Callbacks for the 5 different dbus calls to debugd.
void OnGetRoutes(bool succeeded, const std::vector<std::string>& routes);
void OnGetNetworkStatus(bool succeeded, const std::string& status);
void OnGetModemStatus(bool succeeded, const std::string& status);
void OnGetWiMaxStatus(bool succeeded, const std::string& status);
void OnGetLogs(bool succeeded,
const KeyValueMap& logs);
void OnGetUserLogFiles(bool succeeded,
const KeyValueMap& logs);
// Read the contents of the specified user logs files and adds it to
// the response.
void ReadUserLogFiles(const KeyValueMap& user_log_files);
// Sends the data to the callback_ when all the requests are completed
void RequestCompleted();
scoped_ptr<SystemLogsResponse> response_;
SysLogsSourceCallback callback_;
int num_pending_requests_;
bool scrub_;
base::WeakPtrFactory<DebugDaemonLogSource> weak_ptr_factory_;
DISALLOW_COPY_AND_ASSIGN(DebugDaemonLogSource);
};
} // namespace chromeos
#endif // CHROME_BROWSER_CHROMEOS_SYSTEM_LOGS_DEBUG_DAEMON_LOG_SOURCE_H_