2013-04-12 09:46:58 +08:00
|
|
|
// Copyright (c) 2013 GitHub, Inc. All rights reserved.
|
2014-04-25 17:49:37 +08:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
2013-04-12 09:46:58 +08:00
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2014-03-16 08:30:26 +08:00
|
|
|
#include "atom/browser/atom_browser_main_parts.h"
|
2013-04-12 09:46:58 +08:00
|
|
|
|
2014-03-16 08:30:26 +08:00
|
|
|
#include "atom/browser/atom_browser_client.h"
|
|
|
|
#include "atom/browser/atom_browser_context.h"
|
|
|
|
#include "atom/browser/browser.h"
|
2014-07-28 16:00:15 +08:00
|
|
|
#include "atom/browser/javascript_environment.h"
|
2014-08-19 23:36:26 +08:00
|
|
|
#include "atom/browser/node_debugger.h"
|
2014-04-25 16:13:16 +08:00
|
|
|
#include "atom/common/api/atom_bindings.h"
|
2014-03-16 08:30:26 +08:00
|
|
|
#include "atom/common/node_bindings.h"
|
2014-07-04 01:30:36 +08:00
|
|
|
#include "base/command_line.h"
|
2014-09-05 10:18:59 +08:00
|
|
|
#include "v8/include/v8-debug.h"
|
2013-12-11 15:48:19 +08:00
|
|
|
|
2014-07-04 01:30:36 +08:00
|
|
|
#if defined(USE_X11)
|
|
|
|
#include "chrome/browser/ui/libgtk2ui/gtk2_util.h"
|
|
|
|
#endif
|
|
|
|
|
2014-04-17 13:45:14 +08:00
|
|
|
#include "atom/common/node_includes.h"
|
2013-04-12 15:57:17 +08:00
|
|
|
|
2013-04-12 09:46:58 +08:00
|
|
|
namespace atom {
|
|
|
|
|
2013-04-22 21:32:48 +08:00
|
|
|
// static
|
|
|
|
AtomBrowserMainParts* AtomBrowserMainParts::self_ = NULL;
|
|
|
|
|
2013-04-13 18:39:09 +08:00
|
|
|
AtomBrowserMainParts::AtomBrowserMainParts()
|
2014-07-28 16:00:15 +08:00
|
|
|
: browser_(new Browser),
|
2014-06-30 14:16:16 +08:00
|
|
|
node_bindings_(NodeBindings::Create(true)),
|
2014-07-28 16:00:15 +08:00
|
|
|
atom_bindings_(new AtomBindings) {
|
2013-04-22 21:32:48 +08:00
|
|
|
DCHECK(!self_) << "Cannot have two AtomBrowserMainParts";
|
|
|
|
self_ = this;
|
2013-04-12 09:46:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
AtomBrowserMainParts::~AtomBrowserMainParts() {
|
|
|
|
}
|
|
|
|
|
2013-04-22 21:32:48 +08:00
|
|
|
// static
|
|
|
|
AtomBrowserMainParts* AtomBrowserMainParts::Get() {
|
|
|
|
DCHECK(self_);
|
|
|
|
return self_;
|
|
|
|
}
|
|
|
|
|
2013-04-16 00:25:08 +08:00
|
|
|
brightray::BrowserContext* AtomBrowserMainParts::CreateBrowserContext() {
|
|
|
|
return new AtomBrowserContext();
|
|
|
|
}
|
|
|
|
|
2013-04-13 18:39:09 +08:00
|
|
|
void AtomBrowserMainParts::PostEarlyInitialization() {
|
2013-04-13 23:05:13 +08:00
|
|
|
brightray::BrowserMainParts::PostEarlyInitialization();
|
|
|
|
|
2014-07-28 16:00:15 +08:00
|
|
|
// The ProxyResolverV8 has setup a complete V8 environment, in order to avoid
|
|
|
|
// conflicts we only initialize our V8 environment after that.
|
|
|
|
js_env_.reset(new JavascriptEnvironment);
|
|
|
|
|
2013-04-13 18:39:09 +08:00
|
|
|
node_bindings_->Initialize();
|
2013-04-14 15:36:48 +08:00
|
|
|
|
2014-08-19 23:36:26 +08:00
|
|
|
// Support the "--debug" switch.
|
2014-09-05 10:18:59 +08:00
|
|
|
node_debugger_.reset(new NodeDebugger(js_env_->isolate()));
|
2014-08-19 23:36:26 +08:00
|
|
|
|
2013-12-15 14:20:28 +08:00
|
|
|
// Create the global environment.
|
2014-07-28 16:00:15 +08:00
|
|
|
global_env = node_bindings_->CreateEnvironment(js_env_->context());
|
2013-12-17 21:55:56 +08:00
|
|
|
|
2014-09-05 10:18:59 +08:00
|
|
|
// Make sure node can get correct environment when debugging.
|
|
|
|
if (node_debugger_->IsRunning())
|
|
|
|
global_env->AssignToContext(v8::Debug::GetDebugContext());
|
|
|
|
|
2013-12-15 14:20:28 +08:00
|
|
|
// Add atom-shell extended APIs.
|
2014-07-28 16:00:15 +08:00
|
|
|
atom_bindings_->BindTo(js_env_->isolate(), global_env->process_object());
|
2013-04-13 18:39:09 +08:00
|
|
|
}
|
|
|
|
|
2013-05-02 20:09:19 +08:00
|
|
|
void AtomBrowserMainParts::PreMainMessageLoopRun() {
|
2014-08-04 20:50:05 +08:00
|
|
|
// Run user's main script before most things get initialized, so we can have
|
|
|
|
// a chance to setup everything.
|
|
|
|
node_bindings_->PrepareMessageLoop();
|
|
|
|
node_bindings_->RunMessageLoop();
|
|
|
|
|
2013-04-12 15:57:17 +08:00
|
|
|
brightray::BrowserMainParts::PreMainMessageLoopRun();
|
|
|
|
|
2014-07-04 01:30:36 +08:00
|
|
|
#if defined(USE_X11)
|
|
|
|
libgtk2ui::GtkInitFromCommandLine(*CommandLine::ForCurrentProcess());
|
|
|
|
#endif
|
|
|
|
|
2013-05-30 19:12:14 +08:00
|
|
|
#if !defined(OS_MACOSX)
|
|
|
|
// The corresponding call in OS X is in AtomApplicationDelegate.
|
2013-06-03 15:31:46 +08:00
|
|
|
Browser::Get()->WillFinishLaunching();
|
2013-05-30 19:12:14 +08:00
|
|
|
Browser::Get()->DidFinishLaunching();
|
|
|
|
#endif
|
2013-04-12 15:57:17 +08:00
|
|
|
}
|
|
|
|
|
2013-04-12 09:46:58 +08:00
|
|
|
} // namespace atom
|