/* * Copyright (C) 2018 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef SRC_TRACED_PROBES_FTRACE_FTRACE_DATA_SOURCE_H_ #define SRC_TRACED_PROBES_FTRACE_FTRACE_DATA_SOURCE_H_ #include #include #include #include #include #include #include "perfetto/ext/base/scoped_file.h" #include "perfetto/ext/base/weak_ptr.h" #include "perfetto/ext/tracing/core/basic_types.h" #include "perfetto/ext/tracing/core/trace_writer.h" #include "perfetto/protozero/message_handle.h" #include "src/traced/probes/ftrace/ftrace_config_utils.h" #include "src/traced/probes/ftrace/ftrace_metadata.h" #include "src/traced/probes/ftrace/ftrace_stats.h" #include "src/traced/probes/probes_data_source.h" namespace perfetto { class FtraceController; class ProcessStatsDataSource; class InodeFileDataSource; struct FtraceDataSourceConfig; namespace protos { namespace pbzero { class FtraceEventBundle; } // namespace pbzero } // namespace protos // This class handles the state for one particular tracing session involving // ftrace. There can be several concurrent tracing sessions involving ftrace // and this class is essentially the building block used to multiplex them. // This class is instantiated by ProbesProducer. ProbesProducer also owns the // FtraceController. class FtraceDataSource : public ProbesDataSource { public: static const ProbesDataSource::Descriptor descriptor; FtraceDataSource(base::WeakPtr, TracingSessionID, const FtraceConfig&, std::unique_ptr); ~FtraceDataSource() override; // Called by FtraceController soon after ProbesProducer creates the data // source, to inject ftrace dependencies. void Initialize(FtraceConfigId, const FtraceDataSourceConfig* parsing_config); // ProbesDataSource implementation. void Start() override; // Flushes the ftrace buffers into the userspace trace buffers and writes // also ftrace stats. void Flush(FlushRequestID, std::function callback) override; void OnFtraceFlushComplete(FlushRequestID); FtraceConfigId config_id() const { return config_id_; } const FtraceConfig& config() const { return config_; } const FtraceDataSourceConfig* parsing_config() const { return parsing_config_; } FtraceMetadata* mutable_metadata() { return &metadata_; } TraceWriter* trace_writer() { return writer_.get(); } private: FtraceDataSource(const FtraceDataSource&) = delete; FtraceDataSource& operator=(const FtraceDataSource&) = delete; void WriteStats(); void DumpFtraceStats(FtraceStats*); const FtraceConfig config_; FtraceMetadata metadata_; FtraceStats stats_before_ = {}; std::map> pending_flushes_; // -- Fields initialized by the Initialize() call: FtraceConfigId config_id_ = 0; std::unique_ptr writer_; base::WeakPtr controller_weak_; // Muxer-held state for parsing ftrace according to this data source's // configuration. Not the raw FtraceConfig proto (held by |config_|). const FtraceDataSourceConfig* parsing_config_; // -- End of fields set by Initialize(). }; } // namespace perfetto #endif // SRC_TRACED_PROBES_FTRACE_FTRACE_DATA_SOURCE_H_