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