2014-10-31 18:17:05 +00:00
|
|
|
// Copyright (c) 2013 GitHub, Inc.
|
2014-04-25 09:49:37 +00:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
2013-04-21 06:53:26 +00:00
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/common/api/electron_bindings.h"
|
2013-04-21 06:53:26 +00:00
|
|
|
|
2014-08-20 04:57:40 +00:00
|
|
|
#include <algorithm>
|
2016-08-26 22:30:02 +00:00
|
|
|
#include <string>
|
2018-11-28 08:57:53 +00:00
|
|
|
#include <utility>
|
|
|
|
#include <vector>
|
2014-03-16 01:13:06 +00:00
|
|
|
|
2023-05-30 08:28:43 +00:00
|
|
|
#include "base/containers/contains.h"
|
2014-03-16 01:37:04 +00:00
|
|
|
#include "base/logging.h"
|
2019-01-09 23:16:29 +00:00
|
|
|
#include "base/process/process.h"
|
2018-11-28 08:57:53 +00:00
|
|
|
#include "base/process/process_handle.h"
|
2018-04-11 10:33:09 +00:00
|
|
|
#include "base/process/process_metrics_iocounters.h"
|
2019-01-09 20:14:47 +00:00
|
|
|
#include "base/system/sys_info.h"
|
2018-11-02 12:32:33 +00:00
|
|
|
#include "chrome/common/chrome_version.h"
|
2019-06-19 21:31:55 +00:00
|
|
|
#include "electron/electron_version.h"
|
2018-11-28 08:57:53 +00:00
|
|
|
#include "services/resource_coordinator/public/cpp/memory_instrumentation/global_memory_dump.h"
|
|
|
|
#include "services/resource_coordinator/public/cpp/memory_instrumentation/memory_instrumentation.h"
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/browser/browser.h"
|
|
|
|
#include "shell/common/application_info.h"
|
2019-10-31 07:56:00 +00:00
|
|
|
#include "shell/common/gin_converters/file_path_converter.h"
|
2019-09-08 15:10:18 +00:00
|
|
|
#include "shell/common/gin_helper/dictionary.h"
|
2020-06-17 17:08:10 +00:00
|
|
|
#include "shell/common/gin_helper/microtasks_scope.h"
|
2019-11-01 06:10:32 +00:00
|
|
|
#include "shell/common/gin_helper/promise.h"
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/common/heap_snapshot.h"
|
|
|
|
#include "shell/common/node_includes.h"
|
2023-04-20 00:27:02 +00:00
|
|
|
#include "shell/common/process_util.h"
|
2022-11-17 19:59:23 +00:00
|
|
|
#include "shell/common/thread_restrictions.h"
|
2019-05-30 09:50:35 +00:00
|
|
|
#include "third_party/blink/renderer/platform/heap/process_heap.h" // nogncheck
|
2018-11-28 08:57:53 +00:00
|
|
|
|
2013-04-21 06:53:26 +00:00
|
|
|
namespace electron {
|
|
|
|
|
2019-03-18 19:37:06 +00:00
|
|
|
ElectronBindings::ElectronBindings(uv_loop_t* loop) {
|
2020-09-14 00:53:50 +00:00
|
|
|
uv_async_init(loop, call_next_tick_async_.get(), OnCallNextTick);
|
|
|
|
call_next_tick_async_.get()->data = this;
|
2017-05-05 09:38:51 +00:00
|
|
|
metrics_ = base::ProcessMetrics::CreateCurrentProcessMetrics();
|
2014-04-22 03:01:37 +00:00
|
|
|
}
|
|
|
|
|
2021-06-04 04:16:13 +00:00
|
|
|
ElectronBindings::~ElectronBindings() = default;
|
2014-04-22 03:01:37 +00:00
|
|
|
|
2018-11-28 16:08:17 +00:00
|
|
|
// static
|
2019-03-18 19:37:06 +00:00
|
|
|
void ElectronBindings::BindProcess(v8::Isolate* isolate,
|
2019-10-31 07:56:00 +00:00
|
|
|
gin_helper::Dictionary* process,
|
2019-03-18 19:37:06 +00:00
|
|
|
base::ProcessMetrics* metrics) {
|
2018-11-28 16:08:17 +00:00
|
|
|
// These bindings are shared between sandboxed & unsandboxed renderers
|
|
|
|
process->SetMethod("crash", &Crash);
|
|
|
|
process->SetMethod("hang", &Hang);
|
|
|
|
process->SetMethod("getCreationTime", &GetCreationTime);
|
|
|
|
process->SetMethod("getHeapStatistics", &GetHeapStatistics);
|
2019-05-30 09:50:35 +00:00
|
|
|
process->SetMethod("getBlinkMemoryInfo", &GetBlinkMemoryInfo);
|
2023-04-20 00:27:02 +00:00
|
|
|
if (electron::IsBrowserProcess()) {
|
2021-10-05 22:30:31 +00:00
|
|
|
process->SetMethod("getProcessMemoryInfo", &GetProcessMemoryInfo);
|
|
|
|
}
|
2018-11-28 16:08:17 +00:00
|
|
|
process->SetMethod("getSystemMemoryInfo", &GetSystemMemoryInfo);
|
2019-02-18 12:59:48 +00:00
|
|
|
process->SetMethod("getSystemVersion",
|
|
|
|
&base::SysInfo::OperatingSystemVersion);
|
2018-11-28 16:08:17 +00:00
|
|
|
process->SetMethod("getIOCounters", &GetIOCounters);
|
2019-04-30 00:40:39 +00:00
|
|
|
process->SetMethod("getCPUUsage",
|
|
|
|
base::BindRepeating(&ElectronBindings::GetCPUUsage,
|
|
|
|
base::Unretained(metrics)));
|
2018-11-28 16:08:17 +00:00
|
|
|
|
2022-11-14 20:46:52 +00:00
|
|
|
#if IS_MAS_BUILD()
|
2018-11-28 16:08:17 +00:00
|
|
|
process->SetReadOnly("mas", true);
|
|
|
|
#endif
|
|
|
|
|
2022-02-10 02:58:52 +00:00
|
|
|
#if BUILDFLAG(IS_WIN)
|
2018-11-28 16:08:17 +00:00
|
|
|
if (IsRunningInDesktopBridge())
|
|
|
|
process->SetReadOnly("windowsStore", true);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2019-03-18 19:37:06 +00:00
|
|
|
void ElectronBindings::BindTo(v8::Isolate* isolate,
|
|
|
|
v8::Local<v8::Object> process) {
|
2019-10-31 07:56:00 +00:00
|
|
|
gin_helper::Dictionary dict(isolate, process);
|
2018-11-28 16:08:17 +00:00
|
|
|
BindProcess(isolate, &dict, metrics_.get());
|
|
|
|
|
2018-09-18 18:00:31 +00:00
|
|
|
dict.SetMethod("takeHeapSnapshot", &TakeHeapSnapshot);
|
2022-02-10 02:58:52 +00:00
|
|
|
#if BUILDFLAG(IS_POSIX)
|
2018-09-15 00:20:32 +00:00
|
|
|
dict.SetMethod("setFdLimit", &base::IncreaseFdLimitTo);
|
2015-08-29 15:14:52 +00:00
|
|
|
#endif
|
2019-04-30 00:40:39 +00:00
|
|
|
dict.SetMethod("activateUvLoop",
|
|
|
|
base::BindRepeating(&ElectronBindings::ActivateUVLoop,
|
|
|
|
base::Unretained(this)));
|
2014-04-22 03:01:37 +00:00
|
|
|
|
2019-10-31 07:56:00 +00:00
|
|
|
gin_helper::Dictionary versions;
|
2014-10-02 15:48:17 +00:00
|
|
|
if (dict.Get("versions", &versions)) {
|
2019-06-17 20:37:55 +00:00
|
|
|
versions.SetReadOnly(ELECTRON_PROJECT_NAME, ELECTRON_VERSION_STRING);
|
2018-11-08 14:28:06 +00:00
|
|
|
versions.SetReadOnly("chrome", CHROME_VERSION_STRING);
|
2014-10-02 15:48:17 +00:00
|
|
|
}
|
2014-04-22 03:01:37 +00:00
|
|
|
}
|
|
|
|
|
2019-03-18 19:37:06 +00:00
|
|
|
void ElectronBindings::EnvironmentDestroyed(node::Environment* env) {
|
2018-04-18 01:55:30 +00:00
|
|
|
auto it =
|
|
|
|
std::find(pending_next_ticks_.begin(), pending_next_ticks_.end(), env);
|
2017-03-02 07:50:15 +00:00
|
|
|
if (it != pending_next_ticks_.end())
|
|
|
|
pending_next_ticks_.erase(it);
|
|
|
|
}
|
|
|
|
|
2019-03-18 19:37:06 +00:00
|
|
|
void ElectronBindings::ActivateUVLoop(v8::Isolate* isolate) {
|
2014-08-20 04:57:40 +00:00
|
|
|
node::Environment* env = node::Environment::GetCurrent(isolate);
|
2023-05-30 08:28:43 +00:00
|
|
|
if (base::Contains(pending_next_ticks_, env))
|
2014-08-20 04:57:40 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
pending_next_ticks_.push_back(env);
|
2020-09-14 00:53:50 +00:00
|
|
|
uv_async_send(call_next_tick_async_.get());
|
2014-08-20 04:57:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// static
|
2019-03-18 19:37:06 +00:00
|
|
|
void ElectronBindings::OnCallNextTick(uv_async_t* handle) {
|
2020-10-26 18:56:31 +00:00
|
|
|
auto* self = static_cast<ElectronBindings*>(handle->data);
|
2020-10-27 17:22:24 +00:00
|
|
|
for (auto* env : self->pending_next_ticks_) {
|
2019-10-31 07:56:00 +00:00
|
|
|
gin_helper::Locker locker(env->isolate());
|
2018-03-09 07:14:24 +00:00
|
|
|
v8::Context::Scope context_scope(env->context());
|
2020-06-17 22:57:12 +00:00
|
|
|
v8::HandleScope handle_scope(env->isolate());
|
2020-12-15 19:39:25 +00:00
|
|
|
node::CallbackScope scope(env->isolate(), v8::Object::New(env->isolate()),
|
|
|
|
{0, 0});
|
2014-08-20 04:57:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
self->pending_next_ticks_.clear();
|
|
|
|
}
|
|
|
|
|
2016-12-12 22:35:59 +00:00
|
|
|
// static
|
2019-03-18 19:37:06 +00:00
|
|
|
void ElectronBindings::Crash() {
|
2019-07-29 18:36:16 +00:00
|
|
|
volatile int* zero = nullptr;
|
|
|
|
*zero = 0;
|
2016-12-02 02:19:57 +00:00
|
|
|
}
|
|
|
|
|
2017-05-01 12:08:41 +00:00
|
|
|
// static
|
2019-03-18 19:37:06 +00:00
|
|
|
void ElectronBindings::Hang() {
|
2017-05-01 12:08:41 +00:00
|
|
|
for (;;)
|
2021-11-24 08:45:59 +00:00
|
|
|
base::PlatformThread::Sleep(base::Seconds(1));
|
2017-05-01 12:08:41 +00:00
|
|
|
}
|
|
|
|
|
2018-06-10 12:00:36 +00:00
|
|
|
// static
|
2019-03-18 19:37:06 +00:00
|
|
|
v8::Local<v8::Value> ElectronBindings::GetHeapStatistics(v8::Isolate* isolate) {
|
2018-06-10 12:00:36 +00:00
|
|
|
v8::HeapStatistics v8_heap_stats;
|
|
|
|
isolate->GetHeapStatistics(&v8_heap_stats);
|
|
|
|
|
2023-08-21 01:43:41 +00:00
|
|
|
auto dict = gin_helper::Dictionary::CreateEmpty(isolate);
|
2018-06-10 12:00:36 +00:00
|
|
|
dict.Set("totalHeapSize",
|
|
|
|
static_cast<double>(v8_heap_stats.total_heap_size() >> 10));
|
|
|
|
dict.Set(
|
|
|
|
"totalHeapSizeExecutable",
|
|
|
|
static_cast<double>(v8_heap_stats.total_heap_size_executable() >> 10));
|
|
|
|
dict.Set("totalPhysicalSize",
|
|
|
|
static_cast<double>(v8_heap_stats.total_physical_size() >> 10));
|
|
|
|
dict.Set("totalAvailableSize",
|
|
|
|
static_cast<double>(v8_heap_stats.total_available_size() >> 10));
|
|
|
|
dict.Set("usedHeapSize",
|
|
|
|
static_cast<double>(v8_heap_stats.used_heap_size() >> 10));
|
|
|
|
dict.Set("heapSizeLimit",
|
|
|
|
static_cast<double>(v8_heap_stats.heap_size_limit() >> 10));
|
|
|
|
dict.Set("mallocedMemory",
|
|
|
|
static_cast<double>(v8_heap_stats.malloced_memory() >> 10));
|
|
|
|
dict.Set("peakMallocedMemory",
|
|
|
|
static_cast<double>(v8_heap_stats.peak_malloced_memory() >> 10));
|
|
|
|
dict.Set("doesZapGarbage",
|
|
|
|
static_cast<bool>(v8_heap_stats.does_zap_garbage()));
|
|
|
|
|
|
|
|
return dict.GetHandle();
|
|
|
|
}
|
|
|
|
|
2018-08-10 14:03:30 +00:00
|
|
|
// static
|
2019-03-18 19:37:06 +00:00
|
|
|
v8::Local<v8::Value> ElectronBindings::GetCreationTime(v8::Isolate* isolate) {
|
2019-01-09 23:16:29 +00:00
|
|
|
auto timeValue = base::Process::Current().CreationTime();
|
2018-08-10 14:03:30 +00:00
|
|
|
if (timeValue.is_null()) {
|
|
|
|
return v8::Null(isolate);
|
|
|
|
}
|
|
|
|
double jsTime = timeValue.ToJsTime();
|
|
|
|
return v8::Number::New(isolate, jsTime);
|
|
|
|
}
|
|
|
|
|
2017-05-01 12:08:41 +00:00
|
|
|
// static
|
2019-03-18 19:37:06 +00:00
|
|
|
v8::Local<v8::Value> ElectronBindings::GetSystemMemoryInfo(
|
|
|
|
v8::Isolate* isolate,
|
2019-10-31 07:56:00 +00:00
|
|
|
gin_helper::Arguments* args) {
|
2017-05-01 12:08:41 +00:00
|
|
|
base::SystemMemoryInfoKB mem_info;
|
|
|
|
if (!base::GetSystemMemoryInfo(&mem_info)) {
|
|
|
|
args->ThrowError("Unable to retrieve system memory information");
|
|
|
|
return v8::Undefined(isolate);
|
|
|
|
}
|
|
|
|
|
2023-08-21 01:43:41 +00:00
|
|
|
auto dict = gin_helper::Dictionary::CreateEmpty(isolate);
|
2017-05-01 12:08:41 +00:00
|
|
|
dict.Set("total", mem_info.total);
|
2017-06-28 15:25:07 +00:00
|
|
|
|
|
|
|
// See Chromium's "base/process/process_metrics.h" for an explanation.
|
|
|
|
int free =
|
2022-02-10 02:58:52 +00:00
|
|
|
#if BUILDFLAG(IS_WIN)
|
2017-06-28 15:25:07 +00:00
|
|
|
mem_info.avail_phys;
|
|
|
|
#else
|
|
|
|
mem_info.free;
|
|
|
|
#endif
|
|
|
|
dict.Set("free", free);
|
2017-05-01 12:08:41 +00:00
|
|
|
|
|
|
|
// NB: These return bogus values on macOS
|
2022-02-10 02:58:52 +00:00
|
|
|
#if !BUILDFLAG(IS_MAC)
|
2017-05-01 12:08:41 +00:00
|
|
|
dict.Set("swapTotal", mem_info.swap_total);
|
|
|
|
dict.Set("swapFree", mem_info.swap_free);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return dict.GetHandle();
|
|
|
|
}
|
|
|
|
|
2018-11-28 08:57:53 +00:00
|
|
|
// static
|
2019-03-18 19:37:06 +00:00
|
|
|
v8::Local<v8::Promise> ElectronBindings::GetProcessMemoryInfo(
|
2018-11-28 08:57:53 +00:00
|
|
|
v8::Isolate* isolate) {
|
2023-04-20 00:27:02 +00:00
|
|
|
CHECK(electron::IsBrowserProcess());
|
2019-11-01 06:10:32 +00:00
|
|
|
gin_helper::Promise<gin_helper::Dictionary> promise(isolate);
|
2019-02-21 12:32:44 +00:00
|
|
|
v8::Local<v8::Promise> handle = promise.GetHandle();
|
2018-11-28 08:57:53 +00:00
|
|
|
|
2021-10-05 22:30:31 +00:00
|
|
|
if (!Browser::Get()->is_ready()) {
|
2019-02-21 12:32:44 +00:00
|
|
|
promise.RejectWithErrorMessage(
|
2018-11-28 08:57:53 +00:00
|
|
|
"Memory Info is available only after app ready");
|
2019-02-21 12:32:44 +00:00
|
|
|
return handle;
|
2018-11-28 08:57:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
v8::Global<v8::Context> context(isolate, isolate->GetCurrentContext());
|
|
|
|
memory_instrumentation::MemoryInstrumentation::GetInstance()
|
2019-02-21 12:32:44 +00:00
|
|
|
->RequestGlobalDumpForPid(
|
|
|
|
base::GetCurrentProcId(), std::vector<std::string>(),
|
2019-03-18 19:37:06 +00:00
|
|
|
base::BindOnce(&ElectronBindings::DidReceiveMemoryDump,
|
2021-10-05 22:30:31 +00:00
|
|
|
std::move(context), std::move(promise),
|
|
|
|
base::GetCurrentProcId()));
|
2019-02-21 12:32:44 +00:00
|
|
|
return handle;
|
2018-11-28 08:57:53 +00:00
|
|
|
}
|
|
|
|
|
2019-05-30 09:50:35 +00:00
|
|
|
// static
|
|
|
|
v8::Local<v8::Value> ElectronBindings::GetBlinkMemoryInfo(
|
|
|
|
v8::Isolate* isolate) {
|
|
|
|
auto allocated = blink::ProcessHeap::TotalAllocatedObjectSize();
|
|
|
|
auto total = blink::ProcessHeap::TotalAllocatedSpace();
|
|
|
|
|
2023-08-21 01:43:41 +00:00
|
|
|
auto dict = gin_helper::Dictionary::CreateEmpty(isolate);
|
2019-05-30 09:50:35 +00:00
|
|
|
dict.Set("allocated", static_cast<double>(allocated >> 10));
|
|
|
|
dict.Set("total", static_cast<double>(total >> 10));
|
|
|
|
return dict.GetHandle();
|
|
|
|
}
|
|
|
|
|
2018-11-28 08:57:53 +00:00
|
|
|
// static
|
2019-03-18 19:37:06 +00:00
|
|
|
void ElectronBindings::DidReceiveMemoryDump(
|
2019-02-21 12:32:44 +00:00
|
|
|
v8::Global<v8::Context> context,
|
2019-11-01 06:10:32 +00:00
|
|
|
gin_helper::Promise<gin_helper::Dictionary> promise,
|
2021-10-05 22:30:31 +00:00
|
|
|
base::ProcessId target_pid,
|
2018-11-28 08:57:53 +00:00
|
|
|
bool success,
|
|
|
|
std::unique_ptr<memory_instrumentation::GlobalMemoryDump> global_dump) {
|
2019-02-21 12:32:44 +00:00
|
|
|
v8::Isolate* isolate = promise.isolate();
|
2018-11-28 08:57:53 +00:00
|
|
|
v8::HandleScope handle_scope(isolate);
|
2023-01-11 16:59:32 +00:00
|
|
|
v8::Local<v8::Context> local_context =
|
|
|
|
v8::Local<v8::Context>::New(isolate, context);
|
|
|
|
gin_helper::MicrotasksScope microtasks_scope(
|
|
|
|
isolate, local_context->GetMicrotaskQueue(), true);
|
|
|
|
v8::Context::Scope context_scope(local_context);
|
2018-11-28 08:57:53 +00:00
|
|
|
|
|
|
|
if (!success) {
|
2019-02-21 12:32:44 +00:00
|
|
|
promise.RejectWithErrorMessage("Failed to create memory dump");
|
2018-11-28 08:57:53 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool resolved = false;
|
|
|
|
for (const memory_instrumentation::GlobalMemoryDump::ProcessDump& dump :
|
|
|
|
global_dump->process_dumps()) {
|
2021-10-05 22:30:31 +00:00
|
|
|
if (target_pid == dump.pid()) {
|
2023-08-21 01:43:41 +00:00
|
|
|
auto dict = gin_helper::Dictionary::CreateEmpty(isolate);
|
2018-11-28 08:57:53 +00:00
|
|
|
const auto& osdump = dump.os_dump();
|
2022-02-10 02:58:52 +00:00
|
|
|
#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_WIN)
|
2018-11-28 08:57:53 +00:00
|
|
|
dict.Set("residentSet", osdump.resident_set_kb);
|
|
|
|
#endif
|
|
|
|
dict.Set("private", osdump.private_footprint_kb);
|
|
|
|
dict.Set("shared", osdump.shared_footprint_kb);
|
2019-11-01 06:10:32 +00:00
|
|
|
promise.Resolve(dict);
|
2018-11-28 08:57:53 +00:00
|
|
|
resolved = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!resolved) {
|
2019-02-21 12:32:44 +00:00
|
|
|
promise.RejectWithErrorMessage(
|
2018-11-28 08:57:53 +00:00
|
|
|
R"(Failed to find current process memory details in memory dump)");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-21 18:05:45 +00:00
|
|
|
// static
|
2019-03-18 19:37:06 +00:00
|
|
|
v8::Local<v8::Value> ElectronBindings::GetCPUUsage(
|
|
|
|
base::ProcessMetrics* metrics,
|
|
|
|
v8::Isolate* isolate) {
|
2023-08-21 01:43:41 +00:00
|
|
|
auto dict = gin_helper::Dictionary::CreateEmpty(isolate);
|
2017-05-04 21:48:37 +00:00
|
|
|
int processor_count = base::SysInfo::NumberOfProcessors();
|
|
|
|
dict.Set("percentCPUUsage",
|
2018-08-21 18:05:45 +00:00
|
|
|
metrics->GetPlatformIndependentCPUUsage() / processor_count);
|
2017-10-03 17:21:31 +00:00
|
|
|
|
|
|
|
// NB: This will throw NOTIMPLEMENTED() on Windows
|
|
|
|
// For backwards compatibility, we'll return 0
|
2022-02-10 02:58:52 +00:00
|
|
|
#if !BUILDFLAG(IS_WIN)
|
2018-08-21 18:05:45 +00:00
|
|
|
dict.Set("idleWakeupsPerSecond", metrics->GetIdleWakeupsPerSecond());
|
2017-10-03 17:21:31 +00:00
|
|
|
#else
|
|
|
|
dict.Set("idleWakeupsPerSecond", 0);
|
|
|
|
#endif
|
2017-05-04 21:48:37 +00:00
|
|
|
|
|
|
|
return dict.GetHandle();
|
|
|
|
}
|
|
|
|
|
|
|
|
// static
|
2019-03-18 19:37:06 +00:00
|
|
|
v8::Local<v8::Value> ElectronBindings::GetIOCounters(v8::Isolate* isolate) {
|
2018-06-18 07:32:55 +00:00
|
|
|
auto metrics = base::ProcessMetrics::CreateCurrentProcessMetrics();
|
2017-05-04 21:48:37 +00:00
|
|
|
base::IoCounters io_counters;
|
2023-08-21 01:43:41 +00:00
|
|
|
auto dict = gin_helper::Dictionary::CreateEmpty(isolate);
|
2017-05-04 21:48:37 +00:00
|
|
|
|
|
|
|
if (metrics->GetIOCounters(&io_counters)) {
|
|
|
|
dict.Set("readOperationCount", io_counters.ReadOperationCount);
|
|
|
|
dict.Set("writeOperationCount", io_counters.WriteOperationCount);
|
|
|
|
dict.Set("otherOperationCount", io_counters.OtherOperationCount);
|
|
|
|
dict.Set("readTransferCount", io_counters.ReadTransferCount);
|
|
|
|
dict.Set("writeTransferCount", io_counters.WriteTransferCount);
|
|
|
|
dict.Set("otherTransferCount", io_counters.OtherTransferCount);
|
|
|
|
}
|
|
|
|
|
|
|
|
return dict.GetHandle();
|
|
|
|
}
|
|
|
|
|
2018-09-18 18:00:31 +00:00
|
|
|
// static
|
2019-03-18 19:37:06 +00:00
|
|
|
bool ElectronBindings::TakeHeapSnapshot(v8::Isolate* isolate,
|
|
|
|
const base::FilePath& file_path) {
|
2022-11-17 19:59:23 +00:00
|
|
|
ScopedAllowBlockingForElectron allow_blocking;
|
2018-09-18 18:00:31 +00:00
|
|
|
|
|
|
|
base::File file(file_path,
|
|
|
|
base::File::FLAG_CREATE_ALWAYS | base::File::FLAG_WRITE);
|
|
|
|
|
|
|
|
return electron::TakeHeapSnapshot(isolate, &file);
|
|
|
|
}
|
|
|
|
|
2013-04-21 06:53:26 +00:00
|
|
|
} // namespace electron
|