blob: 0272cd408a24dc9dc3afe76076d7c1929ccb2a65 [file] [log] [blame]
Primiano Tuccifd8240d2018-08-01 09:34:54 +01001/*
2 * Copyright (C) 2018 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "src/traced/probes/ftrace/ftrace_data_source.h"
18
19#include "src/traced/probes/ftrace/cpu_reader.h"
20#include "src/traced/probes/ftrace/ftrace_controller.h"
21
22#include "perfetto/trace/ftrace/ftrace_event_bundle.pbzero.h"
23#include "perfetto/trace/ftrace/ftrace_stats.pbzero.h"
24#include "perfetto/trace/trace_packet.pbzero.h"
25
26namespace perfetto {
27
28// static
29constexpr int FtraceDataSource::kTypeId;
30
31FtraceDataSource::FtraceDataSource(
32 base::WeakPtr<FtraceController> controller_weak,
33 TracingSessionID session_id,
34 const FtraceConfig& config,
35 std::unique_ptr<TraceWriter> writer)
36 : ProbesDataSource(session_id, kTypeId),
37 config_(config),
38 writer_(std::move(writer)),
39 controller_weak_(std::move(controller_weak)){};
40
41FtraceDataSource::~FtraceDataSource() {
42 if (controller_weak_)
43 controller_weak_->RemoveDataSource(this);
44};
45
Primiano Tuccifd8240d2018-08-01 09:34:54 +010046void FtraceDataSource::Initialize(FtraceConfigId config_id,
47 std::unique_ptr<EventFilter> event_filter) {
Primiano Tucci8a0dc5d2018-10-02 12:51:11 +010048 PERFETTO_CHECK(config_id);
Primiano Tuccifd8240d2018-08-01 09:34:54 +010049 config_id_ = config_id;
50 event_filter_ = std::move(event_filter);
Primiano Tucci8a0dc5d2018-10-02 12:51:11 +010051}
52
53void FtraceDataSource::Start() {
54 FtraceController* ftrace = controller_weak_.get();
55 if (!ftrace)
56 return;
57 PERFETTO_CHECK(config_id_); // Must be initialized at this point.
58 if (!ftrace->StartDataSource(this))
59 return;
Primiano Tuccifd8240d2018-08-01 09:34:54 +010060 DumpFtraceStats(&stats_before_);
61}
62
63void FtraceDataSource::DumpFtraceStats(FtraceStats* stats) {
64 if (controller_weak_)
65 controller_weak_->DumpFtraceStats(stats);
66}
67
Primiano Tucci50e9eda2018-11-20 10:52:35 +010068void FtraceDataSource::Flush(FlushRequestID, std::function<void()> callback) {
Primiano Tuccifd8240d2018-08-01 09:34:54 +010069 // TODO(primiano): this still doesn't flush data from the kernel ftrace
70 // buffers (see b/73886018). We should do that and delay the
71 // NotifyFlushComplete() until the ftrace data has been drained from the
72 // kernel ftrace buffer and written in the SMB.
73 if (!writer_)
74 return;
75 WriteStats();
Primiano Tucci50e9eda2018-11-20 10:52:35 +010076 writer_->Flush(callback);
Primiano Tuccifd8240d2018-08-01 09:34:54 +010077}
78
79void FtraceDataSource::WriteStats() {
80 {
81 auto before_packet = writer_->NewTracePacket();
82 auto out = before_packet->set_ftrace_stats();
83 out->set_phase(protos::pbzero::FtraceStats_Phase_START_OF_TRACE);
84 stats_before_.Write(out);
85 }
86 {
87 FtraceStats stats_after{};
88 DumpFtraceStats(&stats_after);
89 auto after_packet = writer_->NewTracePacket();
90 auto out = after_packet->set_ftrace_stats();
91 out->set_phase(protos::pbzero::FtraceStats_Phase_END_OF_TRACE);
92 stats_after.Write(out);
93 }
94}
95
96} // namespace perfetto