blob: 8d44a840f7c382ee41de8ee0f7d129fb295bc054 [file]
/*
* Copyright (C) 2019 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_TRACE_PROCESSOR_STORAGE_METADATA_H_
#define SRC_TRACE_PROCESSOR_STORAGE_METADATA_H_
#include <stddef.h>
#include "src/trace_processor/types/variadic.h"
namespace perfetto {
namespace trace_processor {
namespace metadata {
// Scope of a metadata item defines its association within a potentially
// multi-machine/multi-trace merged session.
#define PERFETTO_TP_METADATA_SCOPES(F) \
F(kGlobal, "global"), F(kTrace, "trace"), F(kMachine, "machine"), \
F(kMachineAndTrace, "machine_and_trace")
// Compile time list of metadata items.
//
// Classification Reasoning:
// - kGlobal: Properties intrinsic to the entire merged trace or TP state.
// - kTrace: Properties of the logical session/experiment or a specific data
// container (file).
// - kMachine: Static hardware/OS properties of a device (e.g. SDK version).
// - kMachineAndTrace: Execution data for a specific machine in a specific
// session.
//
// clang-format off
#define PERFETTO_TP_METADATA(F) \
F(trace_time_clock_id, KeyType::kSingle, Variadic::kInt, Scope::kGlobal), \
F(all_data_source_flushed_ns, KeyType::kMulti, Variadic::kInt, Scope::kMachineAndTrace), \
F(all_data_source_started_ns, KeyType::kSingle, Variadic::kInt, Scope::kMachineAndTrace), \
F(ftrace_latest_data_start_ns, KeyType::kSingle, Variadic::kInt, Scope::kMachineAndTrace), \
F(ftrace_setup_errors, KeyType::kMulti, Variadic::kString, Scope::kMachineAndTrace), \
F(slow_start_data_source, KeyType::kMulti, Variadic::kString, Scope::kMachineAndTrace), \
F(tracing_disabled_ns, KeyType::kSingle, Variadic::kInt, Scope::kMachineAndTrace), \
F(tracing_started_ns, KeyType::kSingle, Variadic::kInt, Scope::kMachineAndTrace), \
F(android_profile_boot_classpath, KeyType::kSingle, Variadic::kInt, Scope::kTrace), \
F(android_profile_system_server, KeyType::kSingle, Variadic::kInt, Scope::kTrace), \
F(benchmark_description, KeyType::kSingle, Variadic::kString, Scope::kTrace), \
F(benchmark_had_failures, KeyType::kSingle, Variadic::kInt, Scope::kTrace), \
F(benchmark_label, KeyType::kSingle, Variadic::kString, Scope::kTrace), \
F(benchmark_name, KeyType::kSingle, Variadic::kString, Scope::kTrace), \
F(benchmark_start_time_us, KeyType::kSingle, Variadic::kInt, Scope::kTrace), \
F(benchmark_story_name, KeyType::kSingle, Variadic::kString, Scope::kTrace), \
F(benchmark_story_run_index, KeyType::kSingle, Variadic::kInt, Scope::kTrace), \
F(benchmark_story_run_time_us, KeyType::kSingle, Variadic::kInt, Scope::kTrace), \
F(benchmark_story_tags, KeyType::kMulti, Variadic::kString, Scope::kTrace), \
F(range_of_interest_start_us, KeyType::kSingle, Variadic::kInt, Scope::kTrace), \
F(statsd_triggering_subscription_id, KeyType::kSingle, Variadic::kInt, Scope::kTrace), \
F(trace_config_pbtxt, KeyType::kSingle, Variadic::kString, Scope::kTrace), \
F(trace_size_bytes, KeyType::kSingle, Variadic::kInt, Scope::kTrace), \
F(trace_trigger, KeyType::kSingle, Variadic::kString, Scope::kTrace), \
F(trace_type, KeyType::kSingle, Variadic::kString, Scope::kTrace), \
F(trace_uuid, KeyType::kSingle, Variadic::kString, Scope::kTrace), \
F(unique_session_name, KeyType::kSingle, Variadic::kString, Scope::kTrace), \
F(ui_state, KeyType::kSingle, Variadic::kString, Scope::kTrace), \
F(android_build_fingerprint, KeyType::kSingle, Variadic::kString, Scope::kMachine), \
F(android_device_manufacturer, KeyType::kSingle, Variadic::kString, Scope::kMachine), \
F(android_guest_soc_model, KeyType::kSingle, Variadic::kString, Scope::kMachine), \
F(android_hardware_revision, KeyType::kSingle, Variadic::kString, Scope::kMachine), \
F(android_incremental_build, KeyType::kSingle, Variadic::kString, Scope::kMachine), \
F(android_ram_model, KeyType::kSingle, Variadic::kString, Scope::kMachine), \
F(android_sdk_version, KeyType::kSingle, Variadic::kInt, Scope::kMachine), \
F(android_serial_console, KeyType::kSingle, Variadic::kString, Scope::kMachine), \
F(android_soc_model, KeyType::kSingle, Variadic::kString, Scope::kMachine), \
F(android_storage_model, KeyType::kSingle, Variadic::kString, Scope::kMachine), \
F(system_machine, KeyType::kSingle, Variadic::kString, Scope::kMachine), \
F(system_name, KeyType::kSingle, Variadic::kString, Scope::kMachine), \
F(system_ram_bytes, KeyType::kSingle, Variadic::kInt, Scope::kMachine), \
F(system_ram_gb, KeyType::kSingle, Variadic::kInt, Scope::kMachine), \
F(system_release, KeyType::kSingle, Variadic::kString, Scope::kMachine), \
F(system_version, KeyType::kSingle, Variadic::kString, Scope::kMachine), \
F(tracing_service_version, KeyType::kSingle, Variadic::kString, Scope::kMachine), \
F(timezone_off_mins, KeyType::kSingle, Variadic::kInt, Scope::kMachine)
// clang-format on
// Compile time list of metadata items.
// clang-format off
#define PERFETTO_TP_METADATA_KEY_TYPES(F) \
F(kSingle, "single"), \
F(kMulti, "multi")
// clang-format
#if defined(__GNUC__) || defined(__clang__)
#if defined(__clang__)
#pragma clang diagnostic push
// Fix 'error: #pragma system_header ignored in main file' for clang in Google3.
#pragma clang diagnostic ignored "-Wpragma-system-header-outside-header"
#endif
// Ignore GCC warning about a missing argument for a variadic macro parameter.
#pragma GCC system_header
#if defined(__clang__)
#pragma clang diagnostic pop
#endif
#endif
#define PERFETTO_TP_META_TYPE_ENUM(varname, ...) varname
enum class KeyType : size_t {
PERFETTO_TP_METADATA_KEY_TYPES(PERFETTO_TP_META_TYPE_ENUM),
kNumKeyTypes,
};
#define PERFETTO_TP_META_TYPE_NAME(_, name, ...) name
constexpr char const* kKeyTypeNames[] = {
PERFETTO_TP_METADATA_KEY_TYPES(PERFETTO_TP_META_TYPE_NAME)
};
#define PERFETTO_TP_META_SCOPE_ENUM(varname, ...) varname
enum class Scope : size_t {
PERFETTO_TP_METADATA_SCOPES(PERFETTO_TP_META_SCOPE_ENUM),
kNumScopes,
};
#define PERFETTO_TP_META_SCOPE_NAME(_, name, ...) name
constexpr char const* kScopeNames[] = {
PERFETTO_TP_METADATA_SCOPES(PERFETTO_TP_META_SCOPE_NAME)};
// Declares an enum of literals (one for each item). The enum values of each
// literal corresponds to the string index in the arrays below.
#define PERFETTO_TP_META_ENUM(name, ...) name
enum KeyId : size_t {
PERFETTO_TP_METADATA(PERFETTO_TP_META_ENUM),
kNumKeys
};
// The code below declares an array for each property:
// name, key type, value type.
#define PERFETTO_TP_META_NAME(name, ...) #name
constexpr char const* kNames[] = {
PERFETTO_TP_METADATA(PERFETTO_TP_META_NAME)};
#define PERFETTO_TP_META_KEYTYPE(_, type, ...) type
constexpr KeyType kKeyTypes[] = {
PERFETTO_TP_METADATA(PERFETTO_TP_META_KEYTYPE)};
#define PERFETTO_TP_META_VALUETYPE(_, __, type, ...) type
constexpr Variadic::Type kValueTypes[] = {
PERFETTO_TP_METADATA(PERFETTO_TP_META_VALUETYPE)};
#define PERFETTO_TP_META_SCOPE(_, __, ___, scope, ...) scope
constexpr Scope kScopes[] = {PERFETTO_TP_METADATA(PERFETTO_TP_META_SCOPE)};
} // namespace metadata
} // namespace trace_processor
} // namespace perfetto
#endif // SRC_TRACE_PROCESSOR_STORAGE_METADATA_H_