2022-07-03 18:44:58 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2022, Andreas Kling <kling@serenityos.org>
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
2024-04-12 21:15:09 +00:00
|
|
|
#include "Application.h"
|
2022-07-03 19:26:51 +00:00
|
|
|
#include "BrowserWindow.h"
|
2023-04-24 12:51:19 +00:00
|
|
|
#include "EventLoopImplementationQt.h"
|
2022-07-14 03:41:13 +00:00
|
|
|
#include "Settings.h"
|
2023-01-27 09:41:24 +00:00
|
|
|
#include "WebContentView.h"
|
2023-08-05 16:42:26 +00:00
|
|
|
#include <Ladybird/HelperProcess.h>
|
|
|
|
#include <Ladybird/Utilities.h>
|
2022-07-03 18:36:07 +00:00
|
|
|
#include <LibCore/ArgsParser.h>
|
2022-10-05 13:23:41 +00:00
|
|
|
#include <LibCore/EventLoop.h>
|
2023-08-02 08:27:58 +00:00
|
|
|
#include <LibCore/Process.h>
|
2022-10-24 09:18:22 +00:00
|
|
|
#include <LibCore/System.h>
|
2022-10-05 13:23:41 +00:00
|
|
|
#include <LibGfx/Font/FontDatabase.h>
|
2022-07-03 18:36:07 +00:00
|
|
|
#include <LibMain/Main.h>
|
2024-06-30 04:24:01 +00:00
|
|
|
#include <LibWebView/Application.h>
|
2024-04-26 21:23:20 +00:00
|
|
|
#include <LibWebView/ChromeProcess.h>
|
2024-03-26 00:29:14 +00:00
|
|
|
#include <LibWebView/ProcessManager.h>
|
2023-10-13 13:52:06 +00:00
|
|
|
#include <LibWebView/URL.h>
|
2022-07-03 18:36:07 +00:00
|
|
|
|
2024-04-04 20:13:14 +00:00
|
|
|
#if defined(AK_OS_MACOS)
|
|
|
|
# include <Ladybird/MachPortServer.h>
|
|
|
|
#endif
|
|
|
|
|
2023-08-02 17:52:59 +00:00
|
|
|
namespace Ladybird {
|
|
|
|
|
2024-07-14 16:29:33 +00:00
|
|
|
// FIXME: Find a place to put this declaration (and other helper functions).
|
|
|
|
bool is_using_dark_system_theme(QWidget&);
|
2023-08-02 17:52:59 +00:00
|
|
|
bool is_using_dark_system_theme(QWidget& widget)
|
|
|
|
{
|
|
|
|
// FIXME: Qt does not provide any method to query if the system is using a dark theme. We will have to implement
|
|
|
|
// platform-specific methods if we wish to have better detection. For now, this inspects if Qt is using a
|
|
|
|
// dark color for widget backgrounds using Rec. 709 luma coefficients.
|
|
|
|
// https://en.wikipedia.org/wiki/Rec._709#Luma_coefficients
|
|
|
|
|
|
|
|
auto color = widget.palette().color(widget.backgroundRole());
|
|
|
|
auto luma = 0.2126f * color.redF() + 0.7152f * color.greenF() + 0.0722f * color.blueF();
|
|
|
|
|
|
|
|
return luma <= 0.5f;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2022-07-03 18:36:07 +00:00
|
|
|
|
2022-10-24 09:18:22 +00:00
|
|
|
static ErrorOr<void> handle_attached_debugger()
|
|
|
|
{
|
|
|
|
#ifdef AK_OS_LINUX
|
|
|
|
// Let's ignore SIGINT if we're being debugged because GDB
|
|
|
|
// incorrectly forwards the signal to us even when it's set to
|
|
|
|
// "nopass". See https://sourceware.org/bugzilla/show_bug.cgi?id=9425
|
|
|
|
// for details.
|
2023-08-02 08:27:58 +00:00
|
|
|
if (TRY(Core::Process::is_being_debugged())) {
|
|
|
|
dbgln("Debugger is attached, ignoring SIGINT");
|
|
|
|
TRY(Core::System::signal(SIGINT, SIG_IGN));
|
2022-10-24 09:18:22 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
2022-07-03 18:36:07 +00:00
|
|
|
ErrorOr<int> serenity_main(Main::Arguments arguments)
|
|
|
|
{
|
2023-12-11 18:19:41 +00:00
|
|
|
AK::set_rich_debug_enabled(true);
|
|
|
|
|
2023-04-25 15:38:48 +00:00
|
|
|
Core::EventLoopManager::install(*new Ladybird::EventLoopManagerQt);
|
2022-10-05 13:23:41 +00:00
|
|
|
|
2024-07-30 18:01:05 +00:00
|
|
|
auto app = Ladybird::Application::create(arguments, ak_url_from_qstring(Ladybird::Settings::the()->new_tab_page()));
|
|
|
|
|
|
|
|
static_cast<Ladybird::EventLoopImplementationQt&>(Core::EventLoop::current().impl()).set_main_loop();
|
2022-10-24 09:18:22 +00:00
|
|
|
TRY(handle_attached_debugger());
|
|
|
|
|
2022-10-07 23:08:29 +00:00
|
|
|
platform_init();
|
|
|
|
|
2024-07-22 14:17:44 +00:00
|
|
|
auto chrome_process = TRY(WebView::ChromeProcess::create());
|
2024-07-30 18:01:05 +00:00
|
|
|
|
|
|
|
if (app->chrome_options().force_new_process == WebView::ForceNewProcess::No) {
|
|
|
|
auto disposition = TRY(chrome_process.connect(app->chrome_options().raw_urls, app->chrome_options().new_window));
|
|
|
|
|
|
|
|
if (disposition == WebView::ChromeProcess::ProcessDisposition::ExitProcess) {
|
|
|
|
outln("Opening in existing process");
|
|
|
|
return 0;
|
|
|
|
}
|
2024-04-26 21:23:20 +00:00
|
|
|
}
|
|
|
|
|
2024-07-30 18:01:05 +00:00
|
|
|
chrome_process.on_new_tab = [&](auto const& urls) {
|
|
|
|
auto& window = app->active_window();
|
2024-04-27 00:53:55 +00:00
|
|
|
for (size_t i = 0; i < urls.size(); ++i) {
|
|
|
|
window.new_tab_from_url(urls[i], (i == 0) ? Web::HTML::ActivateTab::Yes : Web::HTML::ActivateTab::No);
|
|
|
|
}
|
|
|
|
window.show();
|
|
|
|
window.activateWindow();
|
|
|
|
window.raise();
|
|
|
|
};
|
|
|
|
|
2024-07-30 18:01:05 +00:00
|
|
|
app->on_open_file = [&](auto file_url) {
|
|
|
|
auto& window = app->active_window();
|
2024-04-27 00:53:55 +00:00
|
|
|
window.view().load(file_url);
|
2024-04-26 21:23:20 +00:00
|
|
|
};
|
|
|
|
|
2024-04-04 20:13:14 +00:00
|
|
|
#if defined(AK_OS_MACOS)
|
|
|
|
auto mach_port_server = make<Ladybird::MachPortServer>();
|
|
|
|
set_mach_server_name(mach_port_server->server_port_name());
|
2024-07-30 18:01:05 +00:00
|
|
|
mach_port_server->on_receive_child_mach_port = [&app](auto pid, auto port) {
|
|
|
|
app->set_process_mach_port(pid, move(port));
|
2024-04-04 20:13:14 +00:00
|
|
|
};
|
2024-06-20 18:34:51 +00:00
|
|
|
mach_port_server->on_receive_backing_stores = [](Ladybird::MachPortServer::BackingStoresMessage message) {
|
2024-06-30 04:24:01 +00:00
|
|
|
if (auto view = WebView::WebContentClient::view_for_pid_and_page_id(message.pid, message.page_id); view.has_value())
|
|
|
|
view->did_allocate_iosurface_backing_stores(message.front_backing_store_id, move(message.front_backing_store_port), message.back_backing_store_id, move(message.back_backing_store_port));
|
2024-06-20 18:34:51 +00:00
|
|
|
};
|
2024-04-04 20:13:14 +00:00
|
|
|
#endif
|
|
|
|
|
2024-07-15 19:50:51 +00:00
|
|
|
copy_default_config_files(Ladybird::Settings::the()->directory());
|
|
|
|
|
2024-04-15 23:39:48 +00:00
|
|
|
// FIXME: Create an abstraction to re-spawn the RequestServer and re-hook up its client hooks to each tab on crash
|
2024-07-30 18:01:05 +00:00
|
|
|
if (app->web_content_options().use_lagom_networking == WebView::UseLagomNetworking::Yes) {
|
2024-07-06 02:41:07 +00:00
|
|
|
auto request_server_paths = TRY(get_paths_for_helper_process("RequestServer"sv));
|
2024-08-07 03:51:20 +00:00
|
|
|
auto requests_client = TRY(launch_request_server_process(request_server_paths, s_ladybird_resource_root));
|
|
|
|
app->request_server_client = move(requests_client);
|
2024-07-06 02:41:07 +00:00
|
|
|
}
|
2024-06-26 19:44:42 +00:00
|
|
|
|
2024-07-30 18:01:05 +00:00
|
|
|
TRY(app->initialize_image_decoder());
|
2023-12-01 17:18:40 +00:00
|
|
|
|
2024-04-27 00:53:55 +00:00
|
|
|
chrome_process.on_new_window = [&](auto const& urls) {
|
2024-09-05 22:19:51 +00:00
|
|
|
app->new_window(urls);
|
2024-04-26 21:23:20 +00:00
|
|
|
};
|
|
|
|
|
2024-09-05 22:19:51 +00:00
|
|
|
auto& window = app->new_window(app->chrome_options().urls);
|
2024-04-27 00:53:55 +00:00
|
|
|
window.setWindowTitle("Ladybird");
|
2023-11-13 19:45:38 +00:00
|
|
|
|
2023-05-29 09:05:30 +00:00
|
|
|
if (Ladybird::Settings::the()->is_maximized()) {
|
2023-08-09 10:23:32 +00:00
|
|
|
window.showMaximized();
|
|
|
|
} else {
|
2023-05-29 09:05:30 +00:00
|
|
|
auto last_position = Ladybird::Settings::the()->last_position();
|
2023-08-09 10:23:32 +00:00
|
|
|
if (last_position.has_value())
|
|
|
|
window.move(last_position.value());
|
2023-05-29 09:05:30 +00:00
|
|
|
window.resize(Ladybird::Settings::the()->last_size());
|
2023-08-09 10:23:32 +00:00
|
|
|
}
|
|
|
|
|
2022-07-03 18:36:07 +00:00
|
|
|
window.show();
|
|
|
|
|
2024-07-30 18:01:05 +00:00
|
|
|
return app->execute();
|
2022-07-03 18:36:07 +00:00
|
|
|
}
|