blob: b87fa10eb3296af399d05cd6e591a2ff0b3d2965 [file] [log] [blame]
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/metrics/profiler/profiler_metrics_provider.h"
#include <ctype.h>
#include <string>
#include <vector>
#include "base/tracked_objects.h"
#include "components/metrics/metrics_log.h"
#include "components/nacl/common/nacl_process_type.h"
#include "components/variations/variations_associated_data.h"
#include "content/public/common/process_type.h"
using tracked_objects::ProcessDataSnapshot;
namespace metrics {
namespace {
ProfilerEventProto::TrackedObject::ProcessType AsProtobufProcessType(
int process_type) {
switch (process_type) {
case content::PROCESS_TYPE_BROWSER:
return ProfilerEventProto::TrackedObject::BROWSER;
case content::PROCESS_TYPE_RENDERER:
return ProfilerEventProto::TrackedObject::RENDERER;
case content::PROCESS_TYPE_PLUGIN:
return ProfilerEventProto::TrackedObject::PLUGIN;
case content::PROCESS_TYPE_UTILITY:
return ProfilerEventProto::TrackedObject::UTILITY;
case content::PROCESS_TYPE_ZYGOTE:
return ProfilerEventProto::TrackedObject::ZYGOTE;
case content::PROCESS_TYPE_SANDBOX_HELPER:
return ProfilerEventProto::TrackedObject::SANDBOX_HELPER;
case content::PROCESS_TYPE_GPU:
return ProfilerEventProto::TrackedObject::GPU;
case content::PROCESS_TYPE_PPAPI_PLUGIN:
return ProfilerEventProto::TrackedObject::PPAPI_PLUGIN;
case content::PROCESS_TYPE_PPAPI_BROKER:
return ProfilerEventProto::TrackedObject::PPAPI_BROKER;
case PROCESS_TYPE_NACL_LOADER:
return ProfilerEventProto::TrackedObject::NACL_LOADER;
case PROCESS_TYPE_NACL_BROKER:
return ProfilerEventProto::TrackedObject::NACL_BROKER;
default:
NOTREACHED();
return ProfilerEventProto::TrackedObject::UNKNOWN;
}
}
// Maps a thread name by replacing trailing sequence of digits with "*".
// Examples:
// 1. "BrowserBlockingWorker1/23857" => "BrowserBlockingWorker1/*"
// 2. "Chrome_IOThread" => "Chrome_IOThread"
std::string MapThreadName(const std::string& thread_name) {
size_t i = thread_name.length();
while (i > 0 && isdigit(thread_name[i - 1])) {
--i;
}
if (i == thread_name.length())
return thread_name;
return thread_name.substr(0, i) + '*';
}
// Normalizes a source filename (which is platform- and build-method-dependent)
// by extracting the last component of the full file name.
// Example: "c:\b\build\slave\win\build\src\chrome\app\chrome_main.cc" =>
// "chrome_main.cc".
std::string NormalizeFileName(const std::string& file_name) {
const size_t offset = file_name.find_last_of("\\/");
return offset != std::string::npos ? file_name.substr(offset + 1) : file_name;
}
void WriteProfilerData(const ProcessDataSnapshot& profiler_data,
int process_type,
ProfilerEventProto* performance_profile) {
for (std::vector<tracked_objects::TaskSnapshot>::const_iterator it =
profiler_data.tasks.begin();
it != profiler_data.tasks.end();
++it) {
const tracked_objects::DeathDataSnapshot& death_data = it->death_data;
ProfilerEventProto::TrackedObject* tracked_object =
performance_profile->add_tracked_object();
tracked_object->set_birth_thread_name_hash(
MetricsLog::Hash(MapThreadName(it->birth.thread_name)));
tracked_object->set_exec_thread_name_hash(
MetricsLog::Hash(MapThreadName(it->death_thread_name)));
tracked_object->set_source_file_name_hash(
MetricsLog::Hash(NormalizeFileName(
it->birth.location.file_name)));
tracked_object->set_source_function_name_hash(
MetricsLog::Hash(it->birth.location.function_name));
tracked_object->set_source_line_number(it->birth.location.line_number);
tracked_object->set_exec_count(death_data.count);
tracked_object->set_exec_time_total(death_data.run_duration_sum);
tracked_object->set_exec_time_sampled(death_data.run_duration_sample);
tracked_object->set_queue_time_total(death_data.queue_duration_sum);
tracked_object->set_queue_time_sampled(death_data.queue_duration_sample);
tracked_object->set_process_type(AsProtobufProcessType(process_type));
tracked_object->set_process_id(profiler_data.process_id);
}
}
bool SkipProfilerDataUpload() {
// If skip_profiler_data is set in experiment params then skip the uplaod.
std::string skip_profiler_data = variations::GetVariationParamValue(
"UMALogUploadInterval", "skip_profiler_data");
return skip_profiler_data == "true";
}
} // namespace
ProfilerMetricsProvider::ProfilerMetricsProvider() : has_profiler_data_(false) {
}
ProfilerMetricsProvider::~ProfilerMetricsProvider() {
}
void ProfilerMetricsProvider::ProvideGeneralMetrics(
ChromeUserMetricsExtension* uma_proto) {
if (!has_profiler_data_)
return;
DCHECK_EQ(tracked_objects::TIME_SOURCE_TYPE_WALL_TIME,
tracked_objects::GetTimeSourceType());
DCHECK_EQ(0, uma_proto->profiler_event_size());
ProfilerEventProto* profile = uma_proto->add_profiler_event();
profile->Swap(&profiler_event_cache_);
has_profiler_data_ = false;
}
void ProfilerMetricsProvider::RecordProfilerData(
const tracked_objects::ProcessDataSnapshot& process_data,
int process_type) {
if (SkipProfilerDataUpload())
return;
if (tracked_objects::GetTimeSourceType() !=
tracked_objects::TIME_SOURCE_TYPE_WALL_TIME) {
// We currently only support the default time source, wall clock time.
return;
}
has_profiler_data_ = true;
profiler_event_cache_.set_profile_type(ProfilerEventProto::STARTUP_PROFILE);
profiler_event_cache_.set_time_source(ProfilerEventProto::WALL_CLOCK_TIME);
WriteProfilerData(process_data, process_type, &profiler_event_cache_);
}
} // namespace metrics