| // Copyright 2016 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_METRICS_PERF_PERF_OUTPUT_H_ |
| #define CHROME_BROWSER_METRICS_PERF_PERF_OUTPUT_H_ |
| |
| #include <memory> |
| #include <string> |
| #include <vector> |
| |
| #include "base/memory/ref_counted.h" |
| #include "base/memory/weak_ptr.h" |
| #include "base/sequence_checker.h" |
| #include "base/time/time.h" |
| #include "chromeos/dbus/dbus_method_call_status.h" |
| #include "chromeos/dbus/pipe_reader.h" |
| #include "third_party/abseil-cpp/absl/types/optional.h" |
| |
| namespace chromeos { |
| class DebugDaemonClient; |
| } // namespace chromeos |
| |
| namespace metrics { |
| |
| // Class for handling getting output from perf over DBus. Manages the |
| // asynchronous DBus call and retrieving data from quipper over a pipe. |
| class PerfOutputCall { |
| public: |
| // Called once GetPerfOutput() is complete, or an error occurred. |
| // The callback may delete this object. |
| // The argument is one of: |
| // - Output from "perf record", in PerfDataProto format, OR |
| // - The empty string if there was an error. |
| // The output is transferred to |perf_stdout|. |
| using DoneCallback = base::OnceCallback<void(std::string perf_stdout)>; |
| |
| PerfOutputCall(chromeos::DebugDaemonClient* debug_daemon_client, |
| base::TimeDelta duration, |
| const std::vector<std::string>& perf_args, |
| DoneCallback callback); |
| virtual ~PerfOutputCall(); |
| |
| // Stop() is made virtual for mocks in testing. |
| virtual void Stop(); |
| |
| protected: |
| // Exposed for mocking in unit test. |
| PerfOutputCall(); |
| |
| private: |
| // Internal callbacks. |
| void OnIOComplete(absl::optional<std::string> data); |
| void OnGetPerfOutput(absl::optional<uint64_t> result); |
| |
| void StopImpl(); |
| |
| // A non-retaining pointer to the DebugDaemonClient instance. |
| chromeos::DebugDaemonClient* debug_daemon_client_; |
| |
| // Used to capture perf data written to a pipe. |
| std::unique_ptr<chromeos::PipeReader> perf_data_pipe_reader_; |
| |
| // Saved arguments. |
| base::TimeDelta duration_; |
| std::vector<std::string> perf_args_; |
| DoneCallback done_callback_; |
| |
| // Whether Stop() is called before OnGetPerfOutput() has returned the session |
| // ID. If true (meaning Stop() is called very soon after we request perf |
| // output), the stop request will be sent out after we have the session ID to |
| // stop the perf session. |
| bool pending_stop_; |
| absl::optional<uint64_t> perf_session_id_; |
| |
| SEQUENCE_CHECKER(sequence_checker_); |
| |
| // To pass around the "this" pointer across threads safely. |
| base::WeakPtrFactory<PerfOutputCall> weak_factory_{this}; |
| |
| DISALLOW_COPY_AND_ASSIGN(PerfOutputCall); |
| }; |
| |
| } // namespace metrics |
| |
| #endif // CHROME_BROWSER_METRICS_PERF_PERF_OUTPUT_H_ |