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-14 07:36:48 +00:00
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2021-11-22 07:34:31 +00:00
|
|
|
#ifndef ELECTRON_SHELL_COMMON_API_ELECTRON_BINDINGS_H_
|
|
|
|
#define ELECTRON_SHELL_COMMON_API_ELECTRON_BINDINGS_H_
|
2013-04-14 07:36:48 +00:00
|
|
|
|
2014-08-20 04:57:40 +00:00
|
|
|
#include <list>
|
2018-09-13 00:25:56 +00:00
|
|
|
#include <memory>
|
2014-08-20 04:57:40 +00:00
|
|
|
|
2018-11-28 08:57:53 +00:00
|
|
|
#include "base/memory/scoped_refptr.h"
|
2017-05-05 09:38:51 +00:00
|
|
|
#include "base/process/process_metrics.h"
|
2020-09-14 00:53:50 +00:00
|
|
|
#include "shell/common/node_bindings.h"
|
2020-04-24 19:57:41 +00:00
|
|
|
#include "uv.h" // NOLINT(build/include_directory)
|
2014-08-20 04:57:40 +00:00
|
|
|
|
2024-07-22 09:31:32 +00:00
|
|
|
namespace base {
|
|
|
|
class FilePath;
|
|
|
|
}
|
|
|
|
|
2019-10-31 07:56:00 +00:00
|
|
|
namespace gin_helper {
|
|
|
|
class Arguments;
|
2018-11-28 16:08:17 +00:00
|
|
|
class Dictionary;
|
2024-07-29 17:42:57 +00:00
|
|
|
template <typename T>
|
|
|
|
class Promise;
|
2019-10-31 07:56:00 +00:00
|
|
|
} // namespace gin_helper
|
2018-11-28 16:08:17 +00:00
|
|
|
|
2018-11-28 08:57:53 +00:00
|
|
|
namespace memory_instrumentation {
|
|
|
|
class GlobalMemoryDump;
|
|
|
|
}
|
|
|
|
|
2014-08-20 04:57:40 +00:00
|
|
|
namespace node {
|
|
|
|
class Environment;
|
|
|
|
}
|
2013-04-14 07:36:48 +00:00
|
|
|
|
|
|
|
namespace electron {
|
|
|
|
|
2019-03-18 19:37:06 +00:00
|
|
|
class ElectronBindings {
|
2013-04-14 07:36:48 +00:00
|
|
|
public:
|
2019-03-18 19:37:06 +00:00
|
|
|
explicit ElectronBindings(uv_loop_t* loop);
|
|
|
|
virtual ~ElectronBindings();
|
2013-04-14 07:36:48 +00:00
|
|
|
|
2021-11-03 11:41:45 +00:00
|
|
|
// disable copy
|
|
|
|
ElectronBindings(const ElectronBindings&) = delete;
|
|
|
|
ElectronBindings& operator=(const ElectronBindings&) = delete;
|
|
|
|
|
2020-06-23 03:32:45 +00:00
|
|
|
// Add process._linkedBinding function, which behaves like process.binding
|
2019-03-18 19:37:06 +00:00
|
|
|
// but load native code from Electron instead.
|
2015-05-22 11:11:22 +00:00
|
|
|
void BindTo(v8::Isolate* isolate, v8::Local<v8::Object> process);
|
2013-04-17 12:05:43 +00:00
|
|
|
|
2017-03-02 07:50:15 +00:00
|
|
|
// Should be called when a node::Environment has been destroyed.
|
|
|
|
void EnvironmentDestroyed(node::Environment* env);
|
|
|
|
|
2018-11-28 16:08:17 +00:00
|
|
|
static void BindProcess(v8::Isolate* isolate,
|
2019-10-31 07:56:00 +00:00
|
|
|
gin_helper::Dictionary* process,
|
2018-11-28 16:08:17 +00:00
|
|
|
base::ProcessMetrics* metrics);
|
|
|
|
|
2016-12-02 02:19:57 +00:00
|
|
|
static void Crash();
|
2018-11-28 16:08:17 +00:00
|
|
|
|
2021-10-05 22:30:31 +00:00
|
|
|
static void DidReceiveMemoryDump(
|
|
|
|
v8::Global<v8::Context> context,
|
|
|
|
gin_helper::Promise<gin_helper::Dictionary> promise,
|
|
|
|
base::ProcessId target_pid,
|
|
|
|
bool success,
|
|
|
|
std::unique_ptr<memory_instrumentation::GlobalMemoryDump> dump);
|
|
|
|
|
2018-11-28 16:08:17 +00:00
|
|
|
private:
|
2017-05-01 12:08:41 +00:00
|
|
|
static void Hang();
|
2018-06-10 12:00:36 +00:00
|
|
|
static v8::Local<v8::Value> GetHeapStatistics(v8::Isolate* isolate);
|
2018-08-10 14:03:30 +00:00
|
|
|
static v8::Local<v8::Value> GetCreationTime(v8::Isolate* isolate);
|
2017-05-01 12:08:41 +00:00
|
|
|
static v8::Local<v8::Value> GetSystemMemoryInfo(v8::Isolate* isolate,
|
2019-10-31 07:56:00 +00:00
|
|
|
gin_helper::Arguments* args);
|
2018-11-28 08:57:53 +00:00
|
|
|
static v8::Local<v8::Promise> GetProcessMemoryInfo(v8::Isolate* isolate);
|
2019-05-30 09:50:35 +00:00
|
|
|
static v8::Local<v8::Value> GetBlinkMemoryInfo(v8::Isolate* isolate);
|
2018-08-21 18:05:45 +00:00
|
|
|
static v8::Local<v8::Value> GetCPUUsage(base::ProcessMetrics* metrics,
|
|
|
|
v8::Isolate* isolate);
|
2018-09-18 18:00:31 +00:00
|
|
|
static bool TakeHeapSnapshot(v8::Isolate* isolate,
|
|
|
|
const base::FilePath& file_path);
|
2016-10-12 16:33:28 +00:00
|
|
|
|
2014-08-20 04:57:40 +00:00
|
|
|
void ActivateUVLoop(v8::Isolate* isolate);
|
|
|
|
|
|
|
|
static void OnCallNextTick(uv_async_t* handle);
|
|
|
|
|
2020-09-14 00:53:50 +00:00
|
|
|
UvHandle<uv_async_t> call_next_tick_async_;
|
2014-08-20 04:57:40 +00:00
|
|
|
std::list<node::Environment*> pending_next_ticks_;
|
2017-05-05 09:38:51 +00:00
|
|
|
std::unique_ptr<base::ProcessMetrics> metrics_;
|
2013-04-14 07:36:48 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace electron
|
|
|
|
|
2021-11-22 07:34:31 +00:00
|
|
|
#endif // ELECTRON_SHELL_COMMON_API_ELECTRON_BINDINGS_H_
|