electron/atom/browser/api/atom_api_content_tracing.cc

107 lines
3.5 KiB
C++
Raw Normal View History

// Copyright (c) 2014 GitHub, Inc.
2014-07-31 07:08:54 +00:00
// Use of this source code is governed by the MIT license that can be
// found in the LICENSE file.
#include <set>
2014-10-11 11:11:34 +00:00
#include <string>
2014-07-31 07:08:54 +00:00
#include "atom/common/native_mate_converters/callback.h"
2014-07-31 07:08:54 +00:00
#include "atom/common/native_mate_converters/file_path_converter.h"
#include "atom/common/native_mate_converters/value_converter.h"
2014-07-31 07:08:54 +00:00
#include "base/bind.h"
2015-08-04 20:12:57 +00:00
#include "base/files/file_util.h"
2014-07-31 07:08:54 +00:00
#include "content/public/browser/tracing_controller.h"
#include "native_mate/dictionary.h"
2016-09-06 08:24:37 +00:00
#include "atom/common/node_includes.h"
2014-07-31 07:08:54 +00:00
using content::TracingController;
namespace mate {
2018-04-18 01:55:30 +00:00
template <>
2015-09-02 07:16:49 +00:00
struct Converter<base::trace_event::TraceConfig> {
2014-07-31 07:08:54 +00:00
static bool FromV8(v8::Isolate* isolate,
2015-05-22 11:11:22 +00:00
v8::Local<v8::Value> val,
2015-09-02 07:16:49 +00:00
base::trace_event::TraceConfig* out) {
// (alexeykuzmin): A combination of "categoryFilter" and "traceOptions"
// has to be checked first because none of the fields
// in the `memory_dump_config` dict below are mandatory
// and we cannot check the config format.
2015-09-02 07:16:49 +00:00
Dictionary options;
if (ConvertFromV8(isolate, val, &options)) {
std::string category_filter, trace_options;
if (options.Get("categoryFilter", &category_filter) &&
options.Get("traceOptions", &trace_options)) {
*out = base::trace_event::TraceConfig(category_filter, trace_options);
return true;
}
}
base::DictionaryValue memory_dump_config;
if (ConvertFromV8(isolate, val, &memory_dump_config)) {
*out = base::trace_event::TraceConfig(memory_dump_config);
return true;
}
return false;
2014-10-11 11:11:34 +00:00
}
};
2014-07-31 07:08:54 +00:00
} // namespace mate
namespace {
2015-08-04 20:12:57 +00:00
using CompletionCallback = base::Callback<void(const base::FilePath&)>;
scoped_refptr<TracingController::TraceDataEndpoint> GetTraceDataEndpoint(
2018-04-18 01:55:30 +00:00
const base::FilePath& path,
const CompletionCallback& callback) {
2015-08-04 20:12:57 +00:00
base::FilePath result_file_path = path;
if (result_file_path.empty() && !base::CreateTemporaryFile(&result_file_path))
LOG(ERROR) << "Creating temporary file failed";
2018-04-18 01:55:30 +00:00
return TracingController::CreateFileEndpoint(
result_file_path, base::Bind(callback, result_file_path));
2015-08-04 20:12:57 +00:00
}
void StopRecording(const base::FilePath& path,
const CompletionCallback& callback) {
2016-03-08 14:28:53 +00:00
TracingController::GetInstance()->StopTracing(
GetTraceDataEndpoint(path, callback));
2015-08-04 20:12:57 +00:00
}
bool GetCategories(
const base::RepeatingCallback<void(const std::set<std::string>&)>&
callback) {
return TracingController::GetInstance()->GetCategories(
base::BindOnce(callback));
}
bool StartTracing(const base::trace_event::TraceConfig& trace_config,
const base::RepeatingCallback<void()>& callback) {
return TracingController::GetInstance()->StartTracing(
trace_config, base::BindOnce(callback));
}
bool GetTraceBufferUsage(
const base::RepeatingCallback<void(float, size_t)>& callback) {
return TracingController::GetInstance()->GetTraceBufferUsage(
base::BindOnce(callback));
}
2018-04-18 01:55:30 +00:00
void Initialize(v8::Local<v8::Object> exports,
v8::Local<v8::Value> unused,
v8::Local<v8::Context> context,
void* priv) {
2014-07-31 07:08:54 +00:00
mate::Dictionary dict(context->GetIsolate(), exports);
dict.SetMethod("getCategories", &GetCategories);
dict.SetMethod("startRecording", &StartTracing);
2015-08-04 20:12:57 +00:00
dict.SetMethod("stopRecording", &StopRecording);
dict.SetMethod("getTraceBufferUsage", &GetTraceBufferUsage);
2014-07-31 07:08:54 +00:00
}
} // namespace
NODE_BUILTIN_MODULE_CONTEXT_AWARE(atom_browser_content_tracing, Initialize)