2014-10-31 18:17:05 +00:00
|
|
|
// Copyright (c) 2013 GitHub, Inc.
|
2014-04-25 09:49:37 +00:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
2013-04-12 01:46:58 +00:00
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2014-03-16 00:30:26 +00:00
|
|
|
#include "atom/browser/atom_browser_main_parts.h"
|
2013-04-12 01:46:58 +00:00
|
|
|
|
2018-09-13 00:25:56 +00:00
|
|
|
#include <utility>
|
|
|
|
|
2017-09-14 13:08:18 +00:00
|
|
|
#include "atom/browser/api/atom_api_app.h"
|
2015-06-24 06:36:05 +00:00
|
|
|
#include "atom/browser/api/trackable_object.h"
|
2014-03-16 00:30:26 +00:00
|
|
|
#include "atom/browser/atom_browser_client.h"
|
|
|
|
#include "atom/browser/atom_browser_context.h"
|
|
|
|
#include "atom/browser/browser.h"
|
2018-10-04 18:08:56 +00:00
|
|
|
#include "atom/browser/io_thread.h"
|
2014-07-28 08:00:15 +00:00
|
|
|
#include "atom/browser/javascript_environment.h"
|
2017-05-15 16:30:55 +00:00
|
|
|
#include "atom/browser/node_debugger.h"
|
2014-04-25 08:13:16 +00:00
|
|
|
#include "atom/common/api/atom_bindings.h"
|
2017-03-10 08:33:27 +00:00
|
|
|
#include "atom/common/asar/asar_util.h"
|
2014-03-16 00:30:26 +00:00
|
|
|
#include "atom/common/node_bindings.h"
|
2014-07-03 17:30:36 +00:00
|
|
|
#include "base/command_line.h"
|
2016-07-04 06:08:55 +00:00
|
|
|
#include "base/threading/thread_task_runner_handle.h"
|
2015-06-18 08:33:12 +00:00
|
|
|
#include "chrome/browser/browser_process.h"
|
2018-10-05 19:12:53 +00:00
|
|
|
#include "chrome/browser/icon_manager.h"
|
2018-10-04 18:08:56 +00:00
|
|
|
#include "chrome/browser/net/chrome_net_log_helper.h"
|
|
|
|
#include "components/net_log/chrome_net_log.h"
|
|
|
|
#include "components/net_log/net_export_file_writer.h"
|
2016-08-03 23:00:25 +00:00
|
|
|
#include "content/public/browser/child_process_security_policy.h"
|
2018-04-05 21:09:37 +00:00
|
|
|
#include "content/public/common/result_codes.h"
|
2018-04-12 09:53:49 +00:00
|
|
|
#include "content/public/common/service_manager_connection.h"
|
2018-10-01 20:00:53 +00:00
|
|
|
#include "electron/buildflags/buildflags.h"
|
2018-04-12 09:53:49 +00:00
|
|
|
#include "services/device/public/mojom/constants.mojom.h"
|
2018-10-04 18:08:56 +00:00
|
|
|
#include "services/network/public/cpp/network_switches.h"
|
2018-04-12 09:53:49 +00:00
|
|
|
#include "services/service_manager/public/cpp/connector.h"
|
2018-03-14 05:42:08 +00:00
|
|
|
#include "ui/base/idle/idle.h"
|
2017-12-16 09:21:29 +00:00
|
|
|
#include "ui/base/l10n/l10n_util.h"
|
2013-12-11 07:48:19 +00:00
|
|
|
|
2014-07-03 17:30:36 +00:00
|
|
|
#if defined(USE_X11)
|
2017-01-26 10:55:19 +00:00
|
|
|
#include "chrome/browser/ui/libgtkui/gtk_util.h"
|
2016-01-11 11:23:53 +00:00
|
|
|
#include "ui/events/devices/x11/touch_factory_x11.h"
|
2014-07-03 17:30:36 +00:00
|
|
|
#endif
|
|
|
|
|
2018-10-01 20:00:53 +00:00
|
|
|
#if BUILDFLAG(ENABLE_PDF_VIEWER)
|
2018-03-15 08:51:48 +00:00
|
|
|
#include "atom/browser/atom_web_ui_controller_factory.h"
|
2018-10-01 20:00:53 +00:00
|
|
|
#endif // BUILDFLAG(ENABLE_PDF_VIEWER)
|
2018-03-15 08:51:48 +00:00
|
|
|
|
2018-04-19 06:26:34 +00:00
|
|
|
#if defined(OS_MACOSX)
|
|
|
|
#include "atom/browser/ui/cocoa/views_delegate_mac.h"
|
2018-04-19 06:38:33 +00:00
|
|
|
#else
|
|
|
|
#include "brightray/browser/views/views_delegate.h"
|
2018-04-19 06:26:34 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
// Must be included after all other headers.
|
|
|
|
#include "atom/common/node_includes.h"
|
|
|
|
|
2013-04-12 01:46:58 +00:00
|
|
|
namespace atom {
|
|
|
|
|
2016-11-30 07:30:03 +00:00
|
|
|
namespace {
|
|
|
|
|
2018-04-18 01:55:30 +00:00
|
|
|
template <typename T>
|
2015-12-03 09:04:40 +00:00
|
|
|
void Erase(T* container, typename T::iterator iter) {
|
|
|
|
container->erase(iter);
|
|
|
|
}
|
|
|
|
|
2016-11-30 07:30:03 +00:00
|
|
|
} // namespace
|
|
|
|
|
2013-04-22 13:32:48 +00:00
|
|
|
// static
|
2016-07-10 09:52:28 +00:00
|
|
|
AtomBrowserMainParts* AtomBrowserMainParts::self_ = nullptr;
|
2013-04-22 13:32:48 +00:00
|
|
|
|
2018-10-04 18:08:56 +00:00
|
|
|
AtomBrowserMainParts::AtomBrowserMainParts(
|
|
|
|
const content::MainFunctionParams& params)
|
2015-06-18 08:33:12 +00:00
|
|
|
: fake_browser_process_(new BrowserProcess),
|
|
|
|
browser_(new Browser),
|
2017-03-08 08:33:44 +00:00
|
|
|
node_bindings_(NodeBindings::Create(NodeBindings::BROWSER)),
|
2017-03-10 08:07:51 +00:00
|
|
|
atom_bindings_(new AtomBindings(uv_default_loop())),
|
2018-10-04 18:08:56 +00:00
|
|
|
main_function_params_(params) {
|
2013-04-22 13:32:48 +00:00
|
|
|
DCHECK(!self_) << "Cannot have two AtomBrowserMainParts";
|
|
|
|
self_ = this;
|
2016-08-03 23:00:25 +00:00
|
|
|
// Register extension scheme as web safe scheme.
|
2018-04-18 01:55:30 +00:00
|
|
|
content::ChildProcessSecurityPolicy::GetInstance()->RegisterWebSafeScheme(
|
|
|
|
"chrome-extension");
|
2013-04-12 01:46:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
AtomBrowserMainParts::~AtomBrowserMainParts() {
|
2017-03-10 08:33:27 +00:00
|
|
|
asar::ClearArchives();
|
2016-03-14 04:59:31 +00:00
|
|
|
// Leak the JavascriptEnvironment on exit.
|
|
|
|
// This is to work around the bug that V8 would be waiting for background
|
|
|
|
// tasks to finish on exit, while somehow it waits forever in Electron, more
|
2018-04-18 01:55:30 +00:00
|
|
|
// about this can be found at
|
|
|
|
// https://github.com/electron/electron/issues/4767. On the other handle there
|
|
|
|
// is actually no need to gracefully shutdown V8 on exit in the main process,
|
|
|
|
// we already ensured all necessary resources get cleaned up, and it would
|
|
|
|
// make quitting faster.
|
2016-03-14 04:59:31 +00:00
|
|
|
ignore_result(js_env_.release());
|
2013-04-12 01:46:58 +00:00
|
|
|
}
|
|
|
|
|
2013-04-22 13:32:48 +00:00
|
|
|
// static
|
|
|
|
AtomBrowserMainParts* AtomBrowserMainParts::Get() {
|
|
|
|
DCHECK(self_);
|
|
|
|
return self_;
|
|
|
|
}
|
|
|
|
|
2015-11-06 10:27:13 +00:00
|
|
|
bool AtomBrowserMainParts::SetExitCode(int code) {
|
|
|
|
if (!exit_code_)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
*exit_code_ = code;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-12-10 02:09:59 +00:00
|
|
|
int AtomBrowserMainParts::GetExitCode() {
|
|
|
|
return exit_code_ != nullptr ? *exit_code_ : 0;
|
|
|
|
}
|
|
|
|
|
2018-03-30 13:24:55 +00:00
|
|
|
void AtomBrowserMainParts::RegisterDestructionCallback(
|
|
|
|
base::OnceClosure callback) {
|
2018-05-17 00:09:45 +00:00
|
|
|
// The destructors should be called in reversed order, so dependencies between
|
|
|
|
// JavaScript objects can be correctly resolved.
|
|
|
|
// For example WebContentsView => WebContents => Session.
|
|
|
|
destructors_.insert(destructors_.begin(), std::move(callback));
|
2015-06-24 09:58:12 +00:00
|
|
|
}
|
|
|
|
|
2018-04-05 21:09:37 +00:00
|
|
|
int AtomBrowserMainParts::PreEarlyInitialization() {
|
|
|
|
const int result = brightray::BrowserMainParts::PreEarlyInitialization();
|
2018-09-15 00:18:46 +00:00
|
|
|
if (result != service_manager::RESULT_CODE_NORMAL_EXIT)
|
2018-04-05 21:09:37 +00:00
|
|
|
return result;
|
|
|
|
|
2015-10-04 11:21:36 +00:00
|
|
|
#if defined(OS_POSIX)
|
|
|
|
HandleSIGCHLD();
|
|
|
|
#endif
|
2018-04-05 21:09:37 +00:00
|
|
|
|
2018-09-15 00:18:46 +00:00
|
|
|
return service_manager::RESULT_CODE_NORMAL_EXIT;
|
2015-10-04 11:21:36 +00:00
|
|
|
}
|
|
|
|
|
2013-04-13 10:39:09 +00:00
|
|
|
void AtomBrowserMainParts::PostEarlyInitialization() {
|
2013-04-13 15:05:13 +00:00
|
|
|
brightray::BrowserMainParts::PostEarlyInitialization();
|
|
|
|
|
2018-10-03 07:06:40 +00:00
|
|
|
// A workaround was previously needed because there was no ThreadTaskRunner
|
|
|
|
// set. If this check is failing we may need to re-add that workaround
|
|
|
|
DCHECK(base::ThreadTaskRunnerHandle::IsSet());
|
2015-10-22 06:56:57 +00:00
|
|
|
|
|
|
|
// The ProxyResolverV8 has setup a complete V8 environment, in order to
|
|
|
|
// avoid conflicts we only initialize our V8 environment after that.
|
2017-12-22 12:17:41 +00:00
|
|
|
js_env_.reset(new JavascriptEnvironment);
|
|
|
|
|
|
|
|
node_bindings_->Initialize();
|
|
|
|
|
|
|
|
// Create the global environment.
|
2018-01-06 15:58:24 +00:00
|
|
|
node::Environment* env = node_bindings_->CreateEnvironment(
|
|
|
|
js_env_->context(), js_env_->platform());
|
2017-12-22 12:17:41 +00:00
|
|
|
node_env_.reset(new NodeEnvironment(env));
|
|
|
|
|
|
|
|
// Enable support for v8 inspector
|
|
|
|
node_debugger_.reset(new NodeDebugger(env));
|
2018-09-04 09:15:17 +00:00
|
|
|
node_debugger_->Start();
|
2017-12-22 12:17:41 +00:00
|
|
|
|
|
|
|
// Add Electron extended APIs.
|
|
|
|
atom_bindings_->BindTo(js_env_->isolate(), env->process_object());
|
|
|
|
|
|
|
|
// Load everything.
|
|
|
|
node_bindings_->LoadEnvironment(env);
|
|
|
|
|
|
|
|
// Wrap the uv loop with global env.
|
|
|
|
node_bindings_->set_uv_env(env);
|
2018-08-03 00:53:54 +00:00
|
|
|
|
|
|
|
// We already initialized the feature list in
|
|
|
|
// brightray::BrowserMainParts::PreEarlyInitialization(), but
|
|
|
|
// the user JS script would not have had a chance to alter the command-line
|
|
|
|
// switches at that point. Lets reinitialize it here to pick up the
|
|
|
|
// command-line changes.
|
|
|
|
base::FeatureList::ClearInstanceForTesting();
|
|
|
|
brightray::BrowserMainParts::InitializeFeatureList();
|
2013-04-13 10:39:09 +00:00
|
|
|
}
|
|
|
|
|
2017-12-16 09:21:29 +00:00
|
|
|
int AtomBrowserMainParts::PreCreateThreads() {
|
2018-02-08 14:26:37 +00:00
|
|
|
const int result = brightray::BrowserMainParts::PreCreateThreads();
|
|
|
|
if (!result) {
|
|
|
|
fake_browser_process_->SetApplicationLocale(
|
|
|
|
brightray::BrowserClient::Get()->GetApplicationLocale());
|
|
|
|
}
|
2018-03-14 05:42:08 +00:00
|
|
|
|
2018-04-18 01:55:30 +00:00
|
|
|
#if defined(OS_MACOSX)
|
|
|
|
ui::InitIdleMonitor();
|
|
|
|
#endif
|
2018-03-14 05:42:08 +00:00
|
|
|
|
2018-10-04 18:08:56 +00:00
|
|
|
net_log_ = std::make_unique<net_log::ChromeNetLog>();
|
|
|
|
auto& command_line = main_function_params_.command_line;
|
|
|
|
// start net log trace if --log-net-log is passed in the command line.
|
|
|
|
if (command_line.HasSwitch(network::switches::kLogNetLog)) {
|
|
|
|
base::FilePath log_file =
|
|
|
|
command_line.GetSwitchValuePath(network::switches::kLogNetLog);
|
|
|
|
if (!log_file.empty()) {
|
|
|
|
net_log_->StartWritingToFile(
|
|
|
|
log_file, GetNetCaptureModeFromCommandLine(command_line),
|
|
|
|
command_line.GetCommandLineString(), std::string());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Initialize net log file exporter.
|
|
|
|
net_log_->net_export_file_writer()->Initialize();
|
|
|
|
|
|
|
|
// Manage global state of net and other IO thread related.
|
|
|
|
io_thread_ = std::make_unique<IOThread>(net_log_.get());
|
|
|
|
|
2018-02-08 14:26:37 +00:00
|
|
|
return result;
|
2017-12-16 09:21:29 +00:00
|
|
|
}
|
|
|
|
|
2018-10-04 18:08:56 +00:00
|
|
|
void AtomBrowserMainParts::PostDestroyThreads() {
|
|
|
|
brightray::BrowserMainParts::PostDestroyThreads();
|
|
|
|
io_thread_.reset();
|
|
|
|
}
|
|
|
|
|
2018-04-19 06:26:34 +00:00
|
|
|
void AtomBrowserMainParts::ToolkitInitialized() {
|
|
|
|
brightray::BrowserMainParts::ToolkitInitialized();
|
|
|
|
#if defined(OS_MACOSX)
|
|
|
|
views_delegate_.reset(new ViewsDelegateMac);
|
2018-04-19 06:38:33 +00:00
|
|
|
#else
|
|
|
|
views_delegate_.reset(new brightray::ViewsDelegate);
|
2018-04-19 06:26:34 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2013-05-02 12:09:19 +00:00
|
|
|
void AtomBrowserMainParts::PreMainMessageLoopRun() {
|
2016-06-24 05:45:31 +00:00
|
|
|
js_env_->OnMessageLoopCreated();
|
|
|
|
|
2014-08-04 12:50:05 +00: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();
|
|
|
|
|
2016-01-11 11:23:53 +00:00
|
|
|
#if defined(USE_X11)
|
|
|
|
ui::TouchFactory::SetTouchDeviceListFromCommandLine();
|
|
|
|
#endif
|
|
|
|
|
2014-10-17 04:41:40 +00:00
|
|
|
// Start idle gc.
|
2018-04-18 01:55:30 +00:00
|
|
|
gc_timer_.Start(FROM_HERE, base::TimeDelta::FromMinutes(1),
|
|
|
|
base::Bind(&v8::Isolate::LowMemoryNotification,
|
|
|
|
base::Unretained(js_env_->isolate())));
|
2014-10-17 04:41:40 +00:00
|
|
|
|
2018-10-01 20:00:53 +00:00
|
|
|
#if BUILDFLAG(ENABLE_PDF_VIEWER)
|
2017-01-17 14:23:13 +00:00
|
|
|
content::WebUIControllerFactory::RegisterFactory(
|
|
|
|
AtomWebUIControllerFactory::GetInstance());
|
2018-10-01 20:00:53 +00:00
|
|
|
#endif // BUILDFLAG(ENABLE_PDF_VIEWER)
|
2017-01-17 14:23:13 +00:00
|
|
|
|
2013-04-12 07:57:17 +00:00
|
|
|
brightray::BrowserMainParts::PreMainMessageLoopRun();
|
|
|
|
|
2014-07-03 17:30:36 +00:00
|
|
|
#if defined(USE_X11)
|
2017-01-26 10:55:19 +00:00
|
|
|
libgtkui::GtkInitFromCommandLine(*base::CommandLine::ForCurrentProcess());
|
2014-07-03 17:30:36 +00:00
|
|
|
#endif
|
|
|
|
|
2013-05-30 11:12:14 +00:00
|
|
|
#if !defined(OS_MACOSX)
|
2016-06-18 13:26:26 +00:00
|
|
|
// The corresponding call in macOS is in AtomApplicationDelegate.
|
2013-06-03 07:31:46 +00:00
|
|
|
Browser::Get()->WillFinishLaunching();
|
2018-06-18 07:32:55 +00:00
|
|
|
Browser::Get()->DidFinishLaunching(base::DictionaryValue());
|
2013-05-30 11:12:14 +00:00
|
|
|
#endif
|
2017-09-14 13:08:18 +00:00
|
|
|
|
2018-01-03 09:59:12 +00:00
|
|
|
// Notify observers that main thread message loop was initialized.
|
|
|
|
Browser::Get()->PreMainMessageLoopRun();
|
2013-04-12 07:57:17 +00:00
|
|
|
}
|
|
|
|
|
2015-11-06 10:27:13 +00:00
|
|
|
bool AtomBrowserMainParts::MainMessageLoopRun(int* result_code) {
|
|
|
|
exit_code_ = result_code;
|
|
|
|
return brightray::BrowserMainParts::MainMessageLoopRun(result_code);
|
|
|
|
}
|
|
|
|
|
2018-10-03 21:47:00 +00:00
|
|
|
void AtomBrowserMainParts::PreDefaultMainMessageLoopRun(
|
|
|
|
base::OnceClosure quit_closure) {
|
|
|
|
Browser::SetMainMessageLoopQuitClosure(std::move(quit_closure));
|
|
|
|
}
|
|
|
|
|
2015-10-04 11:21:36 +00:00
|
|
|
void AtomBrowserMainParts::PostMainMessageLoopStart() {
|
2015-10-04 12:08:19 +00:00
|
|
|
brightray::BrowserMainParts::PostMainMessageLoopStart();
|
2015-10-04 11:21:36 +00:00
|
|
|
#if defined(OS_POSIX)
|
|
|
|
HandleShutdownSignals();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2015-09-09 11:27:08 +00:00
|
|
|
void AtomBrowserMainParts::PostMainMessageLoopRun() {
|
|
|
|
brightray::BrowserMainParts::PostMainMessageLoopRun();
|
|
|
|
|
2016-06-24 05:45:31 +00:00
|
|
|
js_env_->OnMessageLoopDestroying();
|
|
|
|
|
2015-11-04 09:23:27 +00:00
|
|
|
#if defined(OS_MACOSX)
|
|
|
|
FreeAppDelegate();
|
|
|
|
#endif
|
|
|
|
|
2015-09-09 11:27:08 +00:00
|
|
|
// Make sure destruction callbacks are called before message loop is
|
|
|
|
// destroyed, otherwise some objects that need to be deleted on IO thread
|
|
|
|
// won't be freed.
|
2015-12-03 09:04:40 +00:00
|
|
|
// We don't use ranged for loop because iterators are getting invalided when
|
|
|
|
// the callback runs.
|
|
|
|
for (auto iter = destructors_.begin(); iter != destructors_.end();) {
|
2018-03-30 13:24:55 +00:00
|
|
|
base::OnceClosure callback = std::move(*iter);
|
|
|
|
if (!callback.is_null())
|
|
|
|
std::move(callback).Run();
|
2015-12-03 09:04:40 +00:00
|
|
|
++iter;
|
|
|
|
}
|
2015-09-09 11:27:08 +00:00
|
|
|
}
|
|
|
|
|
2018-04-12 09:53:49 +00:00
|
|
|
device::mojom::GeolocationControl*
|
|
|
|
AtomBrowserMainParts::GetGeolocationControl() {
|
|
|
|
if (geolocation_control_)
|
|
|
|
return geolocation_control_.get();
|
|
|
|
|
|
|
|
auto request = mojo::MakeRequest(&geolocation_control_);
|
|
|
|
if (!content::ServiceManagerConnection::GetForProcess())
|
|
|
|
return geolocation_control_.get();
|
|
|
|
|
|
|
|
service_manager::Connector* connector =
|
|
|
|
content::ServiceManagerConnection::GetForProcess()->GetConnector();
|
|
|
|
connector->BindInterface(device::mojom::kServiceName, std::move(request));
|
|
|
|
return geolocation_control_.get();
|
|
|
|
}
|
|
|
|
|
2018-10-05 19:12:53 +00:00
|
|
|
IconManager* AtomBrowserMainParts::GetIconManager() {
|
|
|
|
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
|
|
|
|
if (!icon_manager_.get())
|
|
|
|
icon_manager_.reset(new IconManager);
|
|
|
|
return icon_manager_.get();
|
|
|
|
}
|
|
|
|
|
2013-04-12 01:46:58 +00:00
|
|
|
} // namespace atom
|