2013-04-12 01:46:58 +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 "browser/atom_browser_main_parts.h"
|
|
|
|
|
2013-08-03 07:58:59 +00:00
|
|
|
#include "base/power_monitor/power_monitor.h"
|
2013-04-21 06:53:26 +00:00
|
|
|
#include "browser/api/atom_browser_bindings.h"
|
2013-04-22 13:32:48 +00:00
|
|
|
#include "browser/atom_browser_client.h"
|
2013-04-15 16:25:08 +00:00
|
|
|
#include "browser/atom_browser_context.h"
|
2013-05-02 15:43:23 +00:00
|
|
|
#include "browser/browser.h"
|
2013-04-13 10:39:09 +00:00
|
|
|
#include "common/node_bindings.h"
|
2013-09-29 07:06:29 +00:00
|
|
|
#include "net/proxy/proxy_resolver_v8.h"
|
2013-04-17 12:05:43 +00:00
|
|
|
#include "vendor/node/src/node.h"
|
2013-04-14 07:36:48 +00:00
|
|
|
#include "vendor/node/src/node_internals.h"
|
2013-04-12 07:57:17 +00:00
|
|
|
|
2013-04-12 01:46:58 +00:00
|
|
|
namespace atom {
|
|
|
|
|
2013-04-22 13:32:48 +00:00
|
|
|
// static
|
|
|
|
AtomBrowserMainParts* AtomBrowserMainParts::self_ = NULL;
|
|
|
|
|
2013-04-13 10:39:09 +00:00
|
|
|
AtomBrowserMainParts::AtomBrowserMainParts()
|
2013-04-21 06:53:26 +00:00
|
|
|
: atom_bindings_(new AtomBrowserBindings),
|
2013-05-02 15:43:23 +00:00
|
|
|
browser_(new Browser),
|
2013-07-22 08:05:35 +00:00
|
|
|
node_bindings_(NodeBindings::Create(true)) {
|
2013-04-22 13:32:48 +00:00
|
|
|
DCHECK(!self_) << "Cannot have two AtomBrowserMainParts";
|
|
|
|
self_ = this;
|
2013-04-12 01:46:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
AtomBrowserMainParts::~AtomBrowserMainParts() {
|
|
|
|
}
|
|
|
|
|
2013-04-22 13:32:48 +00:00
|
|
|
// static
|
|
|
|
AtomBrowserMainParts* AtomBrowserMainParts::Get() {
|
|
|
|
DCHECK(self_);
|
|
|
|
return self_;
|
|
|
|
}
|
|
|
|
|
2013-04-15 16:25:08 +00:00
|
|
|
brightray::BrowserContext* AtomBrowserMainParts::CreateBrowserContext() {
|
|
|
|
return new AtomBrowserContext();
|
|
|
|
}
|
|
|
|
|
2013-04-13 10:39:09 +00:00
|
|
|
void AtomBrowserMainParts::PostEarlyInitialization() {
|
2013-04-13 15:05:13 +00:00
|
|
|
brightray::BrowserMainParts::PostEarlyInitialization();
|
|
|
|
|
2013-08-03 07:58:59 +00:00
|
|
|
#if defined(OS_MACOSX)
|
|
|
|
base::PowerMonitor::AllocateSystemIOPorts();
|
|
|
|
#endif
|
|
|
|
|
2013-04-13 10:39:09 +00:00
|
|
|
node_bindings_->Initialize();
|
2013-04-14 07:36:48 +00:00
|
|
|
|
2013-04-18 15:50:47 +00:00
|
|
|
// Wrap whole process in one global context.
|
|
|
|
node::g_context->Enter();
|
|
|
|
|
2013-04-14 07:36:48 +00:00
|
|
|
atom_bindings_->BindTo(node::process);
|
|
|
|
|
|
|
|
node_bindings_->Load();
|
2013-04-17 12:05:43 +00:00
|
|
|
|
|
|
|
atom_bindings_->AfterLoad();
|
2013-04-13 10:39:09 +00:00
|
|
|
}
|
|
|
|
|
2013-05-02 12:09:19 +00:00
|
|
|
void AtomBrowserMainParts::PreMainMessageLoopRun() {
|
2013-04-13 15:05:13 +00:00
|
|
|
node_bindings_->PrepareMessageLoop();
|
|
|
|
|
2013-04-12 07:57:17 +00:00
|
|
|
brightray::BrowserMainParts::PreMainMessageLoopRun();
|
|
|
|
|
2013-04-17 12:05:43 +00:00
|
|
|
{
|
|
|
|
v8::HandleScope scope;
|
|
|
|
v8::Context::Scope context_scope(node::g_context);
|
2013-04-12 07:57:17 +00:00
|
|
|
|
2013-04-17 12:05:43 +00:00
|
|
|
v8::Handle<v8::Value> args;
|
|
|
|
node::MakeCallback(atom_bindings_->browser_main_parts(),
|
|
|
|
"preMainMessageLoopRun",
|
|
|
|
0, &args);
|
|
|
|
}
|
2013-04-12 07:57:17 +00:00
|
|
|
|
2013-04-17 12:05:43 +00:00
|
|
|
node_bindings_->RunMessageLoop();
|
2013-05-30 11:12:14 +00:00
|
|
|
|
2013-09-20 10:32:05 +00:00
|
|
|
// Make sure the url request job factory is created before the
|
|
|
|
// will-finish-launching event.
|
|
|
|
static_cast<content::BrowserContext*>(AtomBrowserContext::Get())->
|
|
|
|
GetRequestContext();
|
|
|
|
|
2013-05-30 11:12:14 +00:00
|
|
|
#if !defined(OS_MACOSX)
|
|
|
|
// The corresponding call in OS X is in AtomApplicationDelegate.
|
2013-06-03 07:31:46 +00:00
|
|
|
Browser::Get()->WillFinishLaunching();
|
2013-05-30 11:12:14 +00:00
|
|
|
Browser::Get()->DidFinishLaunching();
|
|
|
|
#endif
|
2013-04-12 07:57:17 +00:00
|
|
|
}
|
|
|
|
|
2013-09-29 07:06:29 +00:00
|
|
|
int AtomBrowserMainParts::PreCreateThreads() {
|
2013-10-02 12:43:30 +00:00
|
|
|
// TODO(zcbenz): Calling CreateIsolate() on Windows when updated to Chrome30.
|
2013-09-29 07:06:29 +00:00
|
|
|
net::ProxyResolverV8::RememberDefaultIsolate();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-04-12 01:46:58 +00:00
|
|
|
} // namespace atom
|