electron/common/node_bindings.cc

60 lines
1.6 KiB
C++
Raw Normal View History

2013-04-13 10:39:09 +00:00
// Copyright (c) 2013 GitHub, Inc. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "common/node_bindings.h"
#include "base/command_line.h"
2013-04-13 13:10:41 +00:00
#include "base/files/file_path.h"
2013-04-13 10:39:09 +00:00
#include "base/logging.h"
#include "v8/include/v8.h"
#include "vendor/node/src/node.h"
#include "vendor/node/src/node_internals.h"
namespace atom {
2013-04-13 13:10:41 +00:00
NodeBindings::NodeBindings(bool is_browser)
: is_browser_(is_browser) {
2013-04-13 10:39:09 +00:00
}
NodeBindings::~NodeBindings() {
}
void NodeBindings::Initialize() {
CommandLine::StringVector str_argv = CommandLine::ForCurrentProcess()->argv();
// Convert string vector to char* array.
std::vector<char*> argv(str_argv.size(), NULL);
2013-04-13 13:10:41 +00:00
for (size_t i = 0; i < str_argv.size(); ++i)
2013-04-13 10:39:09 +00:00
argv[i] = const_cast<char*>(str_argv[i].c_str());
// Open node's error reporting system for browser process.
node::g_standalone_mode = is_browser_;
2013-04-13 10:39:09 +00:00
// Init node.
node::Init(argv.size(), &argv[0]);
v8::V8::Initialize();
// Load node.js.
v8::HandleScope scope;
node::g_context = v8::Context::New();
{
v8::Context::Scope context_scope(node::g_context);
v8::Handle<v8::Object> process = node::SetupProcessObject(
argv.size(), &argv[0]);
2013-04-13 13:10:41 +00:00
// Tell node.js we are in browser or renderer.
v8::Handle<v8::String> type =
is_browser_ ? v8::String::New("browser") : v8::String::New("renderer");
process->Set(v8::String::New("__atom_type"), type);
2013-04-13 10:39:09 +00:00
}
}
2013-04-13 13:10:41 +00:00
void NodeBindings::Load() {
v8::HandleScope scope;
v8::Context::Scope context_scope(node::g_context);
node::Load(node::process);
}
2013-04-13 13:10:41 +00:00
} // namespace atom