electron/atom/common/api/atom_bindings.h

59 lines
1.6 KiB
C
Raw Normal View History

// 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
// found in the LICENSE file.
2014-03-16 08:58:59 +08:00
#ifndef ATOM_COMMON_API_ATOM_BINDINGS_H_
#define ATOM_COMMON_API_ATOM_BINDINGS_H_
#include <list>
2016-03-08 23:28:53 +09:00
#include "base/macros.h"
#include "base/process/process_metrics.h"
2014-04-22 11:01:37 +08:00
#include "base/strings/string16.h"
#include "native_mate/arguments.h"
#include "v8/include/v8.h"
#include "vendor/node/deps/uv/include/uv.h"
namespace node {
class Environment;
}
namespace atom {
class AtomBindings {
public:
explicit AtomBindings(uv_loop_t* loop);
virtual ~AtomBindings();
2014-06-29 03:41:22 +00:00
// Add process.atomBinding function, which behaves like process.binding but
2016-09-16 15:57:07 -07:00
// load native code from Electron instead.
2015-05-22 19:11:22 +08:00
void BindTo(v8::Isolate* isolate, v8::Local<v8::Object> process);
// Should be called when a node::Environment has been destroyed.
void EnvironmentDestroyed(node::Environment* env);
2016-10-12 09:33:28 -07:00
static void Log(const base::string16& message);
static void Crash();
static void Hang();
static v8::Local<v8::Value> GetProcessMemoryInfo(v8::Isolate* isolate);
static v8::Local<v8::Value> GetSystemMemoryInfo(v8::Isolate* isolate,
mate::Arguments* args);
v8::Local<v8::Value> GetCPUUsage(v8::Isolate* isolate);
static v8::Local<v8::Value> GetIOCounters(v8::Isolate* isolate);
2016-10-12 09:33:28 -07:00
private:
void ActivateUVLoop(v8::Isolate* isolate);
static void OnCallNextTick(uv_async_t* handle);
uv_async_t call_next_tick_async_;
std::list<node::Environment*> pending_next_ticks_;
std::unique_ptr<base::ProcessMetrics> metrics_;
DISALLOW_COPY_AND_ASSIGN(AtomBindings);
};
} // namespace atom
2014-03-16 08:58:59 +08:00
#endif // ATOM_COMMON_API_ATOM_BINDINGS_H_