blob: 9e35791ae3bff1aef27a551588216b273cc21075 [file] [log] [blame]
/*
* Copyright (C) 2017 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.
*/
/*******************************************************************************
* AUTOGENERATED - DO NOT EDIT
*******************************************************************************
* This file has been generated from the protobuf message
* perfetto/config/data_source_config.proto
* by
* ../../tools/proto_to_cpp/proto_to_cpp.cc.
* If you need to make changes here, change the .proto file and then run
* ./tools/gen_tracing_cpp_headers_from_protos
*/
#ifndef INCLUDE_PERFETTO_TRACING_CORE_DATA_SOURCE_CONFIG_H_
#define INCLUDE_PERFETTO_TRACING_CORE_DATA_SOURCE_CONFIG_H_
#include <stdint.h>
#include <string>
#include <type_traits>
#include <vector>
#include "perfetto/base/export.h"
#include "perfetto/tracing/core/android_log_config.h"
#include "perfetto/tracing/core/android_power_config.h"
#include "perfetto/tracing/core/chrome_config.h"
#include "perfetto/tracing/core/ftrace_config.h"
#include "perfetto/tracing/core/heapprofd_config.h"
#include "perfetto/tracing/core/inode_file_config.h"
#include "perfetto/tracing/core/process_stats_config.h"
#include "perfetto/tracing/core/sys_stats_config.h"
#include "perfetto/tracing/core/test_config.h"
// Forward declarations for protobuf types.
namespace perfetto {
namespace protos {
class DataSourceConfig;
class FtraceConfig;
class ChromeConfig;
class InodeFileConfig;
class InodeFileConfig_MountPointMappingEntry;
class ProcessStatsConfig;
class SysStatsConfig;
class HeapprofdConfig;
class HeapprofdConfig_ContinuousDumpConfig;
class AndroidPowerConfig;
class AndroidLogConfig;
class TestConfig;
class TestConfig_DummyFields;
} // namespace protos
} // namespace perfetto
namespace perfetto {
class PERFETTO_EXPORT DataSourceConfig {
public:
DataSourceConfig();
~DataSourceConfig();
DataSourceConfig(DataSourceConfig&&) noexcept;
DataSourceConfig& operator=(DataSourceConfig&&);
DataSourceConfig(const DataSourceConfig&);
DataSourceConfig& operator=(const DataSourceConfig&);
bool operator==(const DataSourceConfig&) const;
bool operator!=(const DataSourceConfig& other) const {
return !(*this == other);
}
// Conversion methods from/to the corresponding protobuf types.
void FromProto(const perfetto::protos::DataSourceConfig&);
void ToProto(perfetto::protos::DataSourceConfig*) const;
const std::string& name() const { return name_; }
void set_name(const std::string& value) { name_ = value; }
uint32_t target_buffer() const { return target_buffer_; }
void set_target_buffer(uint32_t value) { target_buffer_ = value; }
uint32_t trace_duration_ms() const { return trace_duration_ms_; }
void set_trace_duration_ms(uint32_t value) { trace_duration_ms_ = value; }
bool enable_extra_guardrails() const { return enable_extra_guardrails_; }
void set_enable_extra_guardrails(bool value) {
enable_extra_guardrails_ = value;
}
uint64_t tracing_session_id() const { return tracing_session_id_; }
void set_tracing_session_id(uint64_t value) { tracing_session_id_ = value; }
const FtraceConfig& ftrace_config() const { return ftrace_config_; }
FtraceConfig* mutable_ftrace_config() { return &ftrace_config_; }
const ChromeConfig& chrome_config() const { return chrome_config_; }
ChromeConfig* mutable_chrome_config() { return &chrome_config_; }
const InodeFileConfig& inode_file_config() const {
return inode_file_config_;
}
InodeFileConfig* mutable_inode_file_config() { return &inode_file_config_; }
const ProcessStatsConfig& process_stats_config() const {
return process_stats_config_;
}
ProcessStatsConfig* mutable_process_stats_config() {
return &process_stats_config_;
}
const SysStatsConfig& sys_stats_config() const { return sys_stats_config_; }
SysStatsConfig* mutable_sys_stats_config() { return &sys_stats_config_; }
const HeapprofdConfig& heapprofd_config() const { return heapprofd_config_; }
HeapprofdConfig* mutable_heapprofd_config() { return &heapprofd_config_; }
const AndroidPowerConfig& android_power_config() const {
return android_power_config_;
}
AndroidPowerConfig* mutable_android_power_config() {
return &android_power_config_;
}
const AndroidLogConfig& android_log_config() const {
return android_log_config_;
}
AndroidLogConfig* mutable_android_log_config() {
return &android_log_config_;
}
const std::string& legacy_config() const { return legacy_config_; }
void set_legacy_config(const std::string& value) { legacy_config_ = value; }
const TestConfig& for_testing() const { return for_testing_; }
TestConfig* mutable_for_testing() { return &for_testing_; }
private:
std::string name_ = {};
uint32_t target_buffer_ = {};
uint32_t trace_duration_ms_ = {};
bool enable_extra_guardrails_ = {};
uint64_t tracing_session_id_ = {};
FtraceConfig ftrace_config_ = {};
ChromeConfig chrome_config_ = {};
InodeFileConfig inode_file_config_ = {};
ProcessStatsConfig process_stats_config_ = {};
SysStatsConfig sys_stats_config_ = {};
HeapprofdConfig heapprofd_config_ = {};
AndroidPowerConfig android_power_config_ = {};
AndroidLogConfig android_log_config_ = {};
std::string legacy_config_ = {};
TestConfig for_testing_ = {};
// Allows to preserve unknown protobuf fields for compatibility
// with future versions of .proto files.
std::string unknown_fields_;
};
} // namespace perfetto
#endif // INCLUDE_PERFETTO_TRACING_CORE_DATA_SOURCE_CONFIG_H_