Primiano Tucci | fd8240d | 2018-08-01 09:34:54 +0100 | [diff] [blame] | 1 | /* |
| 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 | |
| 26 | namespace perfetto { |
| 27 | |
| 28 | // static |
| 29 | constexpr int FtraceDataSource::kTypeId; |
| 30 | |
| 31 | FtraceDataSource::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 | |
| 41 | FtraceDataSource::~FtraceDataSource() { |
| 42 | if (controller_weak_) |
| 43 | controller_weak_->RemoveDataSource(this); |
| 44 | }; |
| 45 | |
Primiano Tucci | fd8240d | 2018-08-01 09:34:54 +0100 | [diff] [blame] | 46 | void FtraceDataSource::Initialize(FtraceConfigId config_id, |
| 47 | std::unique_ptr<EventFilter> event_filter) { |
Primiano Tucci | 8a0dc5d | 2018-10-02 12:51:11 +0100 | [diff] [blame] | 48 | PERFETTO_CHECK(config_id); |
Primiano Tucci | fd8240d | 2018-08-01 09:34:54 +0100 | [diff] [blame] | 49 | config_id_ = config_id; |
| 50 | event_filter_ = std::move(event_filter); |
Primiano Tucci | 8a0dc5d | 2018-10-02 12:51:11 +0100 | [diff] [blame] | 51 | } |
| 52 | |
| 53 | void 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 Tucci | fd8240d | 2018-08-01 09:34:54 +0100 | [diff] [blame] | 60 | DumpFtraceStats(&stats_before_); |
| 61 | } |
| 62 | |
| 63 | void FtraceDataSource::DumpFtraceStats(FtraceStats* stats) { |
| 64 | if (controller_weak_) |
| 65 | controller_weak_->DumpFtraceStats(stats); |
| 66 | } |
| 67 | |
Primiano Tucci | 50e9eda | 2018-11-20 10:52:35 +0100 | [diff] [blame] | 68 | void FtraceDataSource::Flush(FlushRequestID, std::function<void()> callback) { |
Primiano Tucci | fd8240d | 2018-08-01 09:34:54 +0100 | [diff] [blame] | 69 | // 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 Tucci | 50e9eda | 2018-11-20 10:52:35 +0100 | [diff] [blame] | 76 | writer_->Flush(callback); |
Primiano Tucci | fd8240d | 2018-08-01 09:34:54 +0100 | [diff] [blame] | 77 | } |
| 78 | |
| 79 | void 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 |