electron/atom/browser/api/atom_api_content_tracing.cc

76 lines
2.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/file_path_converter.h"
#include "base/bind.h"
#include "content/public/browser/tracing_controller.h"
#include "native_mate/callback.h"
2014-07-31 07:08:54 +00:00
#include "native_mate/dictionary.h"
#include "atom/common/node_includes.h"
using content::TracingController;
namespace mate {
template<>
2015-04-21 10:56:08 +00:00
struct Converter<base::trace_event::CategoryFilter> {
2014-07-31 07:08:54 +00:00
static bool FromV8(v8::Isolate* isolate,
v8::Handle<v8::Value> val,
2015-04-21 10:56:08 +00:00
base::trace_event::CategoryFilter* out) {
2014-10-11 11:11:34 +00:00
std::string filter;
if (!ConvertFromV8(isolate, val, &filter))
2014-07-31 07:08:54 +00:00
return false;
2015-04-21 10:56:08 +00:00
*out = base::trace_event::CategoryFilter(filter);
2014-07-31 07:08:54 +00:00
return true;
}
};
2014-10-11 11:11:34 +00:00
template<>
2015-04-21 10:56:08 +00:00
struct Converter<base::trace_event::TraceOptions> {
2014-10-11 11:11:34 +00:00
static bool FromV8(v8::Isolate* isolate,
v8::Handle<v8::Value> val,
2015-04-21 10:56:08 +00:00
base::trace_event::TraceOptions* out) {
2014-10-11 11:11:34 +00:00
std::string options;
if (!ConvertFromV8(isolate, val, &options))
return false;
return out->SetFromString(options);
}
};
2014-07-31 07:08:54 +00:00
} // namespace mate
namespace {
void Initialize(v8::Handle<v8::Object> exports, v8::Handle<v8::Value> unused,
v8::Handle<v8::Context> context, void* priv) {
2015-03-10 23:02:22 +00:00
auto controller = base::Unretained(TracingController::GetInstance());
2014-07-31 07:08:54 +00:00
mate::Dictionary dict(context->GetIsolate(), exports);
dict.SetMethod("getCategories", base::Bind(
2015-03-10 23:02:22 +00:00
&TracingController::GetCategories, controller));
2014-07-31 07:08:54 +00:00
dict.SetMethod("startRecording", base::Bind(
2015-03-10 23:02:22 +00:00
&TracingController::EnableRecording, controller));
2014-07-31 07:08:54 +00:00
dict.SetMethod("stopRecording", base::Bind(
2015-03-10 23:02:22 +00:00
&TracingController::DisableRecording, controller, nullptr));
2014-07-31 07:08:54 +00:00
dict.SetMethod("startMonitoring", base::Bind(
2015-03-10 23:02:22 +00:00
&TracingController::EnableMonitoring, controller));
2014-07-31 07:08:54 +00:00
dict.SetMethod("stopMonitoring", base::Bind(
2015-03-10 23:02:22 +00:00
&TracingController::DisableMonitoring, controller));
2014-07-31 07:08:54 +00:00
dict.SetMethod("captureMonitoringSnapshot", base::Bind(
2015-03-10 23:02:22 +00:00
&TracingController::CaptureMonitoringSnapshot, controller, nullptr));
dict.SetMethod("getTraceBufferUsage", base::Bind(
&TracingController::GetTraceBufferUsage, controller));
2014-07-31 07:08:54 +00:00
dict.SetMethod("setWatchEvent", base::Bind(
2015-03-10 23:02:22 +00:00
&TracingController::SetWatchEvent, controller));
2014-07-31 07:08:54 +00:00
dict.SetMethod("cancelWatchEvent", base::Bind(
2015-03-10 23:02:22 +00:00
&TracingController::CancelWatchEvent, controller));
2014-07-31 07:08:54 +00:00
}
} // namespace
NODE_MODULE_CONTEXT_AWARE_BUILTIN(atom_browser_content_tracing, Initialize)