d663b4eaee
* chore: fix cpplint 'include_what_you_use' warnings Typically by including <memory>, <utility> etc. * chore: fix 'static/global string constant' warning Use C style strings instead of std::string. Style guide forbids non-trivial static / global variables. https://google.github.io/styleguide/cppguide.html#Static_and_Global_Variables /home/charles/electron/electron-gn/src/electron/script/cpplint.js * refactor: remove global string variables. Fix 'global string variables are not permitted' linter warnings by using the base::NoDestructor<> wrapper to make it explicit that these variables are never destroyed. The style guide's take on globals with nontrivial destructors: https://google.github.io/styleguide/cppguide.html#Static_and_Global_Variables * fix: initializer error introduced in last commit * fix: remove WIP file that was included by accident * fix: include order * fix: include order * fix: include order * fix: include order, again
61 lines
1.8 KiB
C++
61 lines
1.8 KiB
C++
// Copyright (c) 2013 GitHub, Inc.
|
|
// Use of this source code is governed by the MIT license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#ifndef ATOM_COMMON_API_ATOM_BINDINGS_H_
|
|
#define ATOM_COMMON_API_ATOM_BINDINGS_H_
|
|
|
|
#include <list>
|
|
#include <memory>
|
|
|
|
#include "base/macros.h"
|
|
#include "base/process/process_metrics.h"
|
|
#include "base/strings/string16.h"
|
|
#include "native_mate/arguments.h"
|
|
#include "uv.h" // NOLINT(build/include)
|
|
#include "v8/include/v8.h"
|
|
|
|
namespace node {
|
|
class Environment;
|
|
}
|
|
|
|
namespace atom {
|
|
|
|
class AtomBindings {
|
|
public:
|
|
explicit AtomBindings(uv_loop_t* loop);
|
|
virtual ~AtomBindings();
|
|
|
|
// Add process.atomBinding function, which behaves like process.binding but
|
|
// load native code from Electron instead.
|
|
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);
|
|
|
|
static void Log(const base::string16& message);
|
|
static void Crash();
|
|
static void Hang();
|
|
static v8::Local<v8::Value> GetHeapStatistics(v8::Isolate* isolate);
|
|
static v8::Local<v8::Value> GetCreationTime(v8::Isolate* isolate);
|
|
static v8::Local<v8::Value> GetSystemMemoryInfo(v8::Isolate* isolate,
|
|
mate::Arguments* args);
|
|
static v8::Local<v8::Value> GetCPUUsage(base::ProcessMetrics* metrics,
|
|
v8::Isolate* isolate);
|
|
static v8::Local<v8::Value> GetIOCounters(v8::Isolate* isolate);
|
|
|
|
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
|
|
|
|
#endif // ATOM_COMMON_API_ATOM_BINDINGS_H_
|