mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 22:02:44 +00:00 
			
		
		
		
	 02edd240ae
			
		
	
	
		02edd240ae
		
	
	
	
	
		
			
			Instead of spawning these processes from the WebContent process, we now create them in the Browser chrome. Part 1/N of "all processes are owned by the chrome".
		
			
				
	
	
		
			73 lines
		
	
	
	
		
			2.8 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			73 lines
		
	
	
	
		
			2.8 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2023, Andrew Kaster <akaster@serenityos.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #include <Ladybird/FontPlugin.h>
 | |
| #include <Ladybird/HelperProcess.h>
 | |
| #include <Ladybird/Utilities.h>
 | |
| #include <LibCore/ArgsParser.h>
 | |
| #include <LibCore/EventLoop.h>
 | |
| #include <LibCore/LocalServer.h>
 | |
| #include <LibCore/StandardPaths.h>
 | |
| #include <LibCore/System.h>
 | |
| #include <LibFileSystem/FileSystem.h>
 | |
| #include <LibIPC/SingleServer.h>
 | |
| #include <LibMain/Main.h>
 | |
| #include <LibWeb/Bindings/MainThreadVM.h>
 | |
| #include <LibWeb/Loader/GeneratedPagesLoader.h>
 | |
| #include <LibWeb/Loader/ResourceLoader.h>
 | |
| #include <LibWeb/Platform/EventLoopPlugin.h>
 | |
| #include <LibWeb/Platform/EventLoopPluginSerenity.h>
 | |
| #include <LibWeb/Platform/FontPluginSerenity.h>
 | |
| #include <LibWeb/WebSockets/WebSocket.h>
 | |
| #include <LibWebView/RequestServerAdapter.h>
 | |
| #include <LibWebView/WebSocketClientAdapter.h>
 | |
| #include <WebWorker/ConnectionFromClient.h>
 | |
| 
 | |
| static ErrorOr<void> initialize_lagom_networking();
 | |
| 
 | |
| ErrorOr<int> serenity_main(Main::Arguments arguments)
 | |
| {
 | |
|     AK::set_rich_debug_enabled(true);
 | |
| 
 | |
|     int fd_passing_socket { -1 };
 | |
|     StringView serenity_resource_root;
 | |
| 
 | |
|     Core::ArgsParser args_parser;
 | |
|     args_parser.add_option(fd_passing_socket, "File descriptor of the fd passing socket", "fd-passing-socket", 'c', "fd-passing-socket");
 | |
|     args_parser.add_option(serenity_resource_root, "Absolute path to directory for serenity resources", "serenity-resource-root", 'r', "serenity-resource-root");
 | |
|     args_parser.parse(arguments);
 | |
| 
 | |
|     platform_init();
 | |
| 
 | |
|     Web::Platform::EventLoopPlugin::install(*new Web::Platform::EventLoopPluginSerenity);
 | |
|     Core::EventLoop event_loop;
 | |
| 
 | |
|     Web::Platform::FontPlugin::install(*new Web::Platform::FontPluginSerenity);
 | |
| 
 | |
|     TRY(initialize_lagom_networking());
 | |
| 
 | |
|     VERIFY(fd_passing_socket >= 0);
 | |
| 
 | |
|     TRY(Web::Bindings::initialize_main_thread_vm());
 | |
| 
 | |
|     auto client = TRY(IPC::take_over_accepted_client_from_system_server<WebWorker::ConnectionFromClient>());
 | |
|     client->set_fd_passing_socket(TRY(Core::LocalSocket::adopt_fd(fd_passing_socket)));
 | |
| 
 | |
|     return event_loop.exec();
 | |
| }
 | |
| 
 | |
| static ErrorOr<void> initialize_lagom_networking()
 | |
| {
 | |
|     auto candidate_request_server_paths = TRY(get_paths_for_helper_process("RequestServer"sv));
 | |
|     auto request_server_client = TRY(launch_request_server_process(candidate_request_server_paths, s_serenity_resource_root));
 | |
|     Web::ResourceLoader::initialize(TRY(WebView::RequestServerAdapter::try_create(move(request_server_client))));
 | |
| 
 | |
|     auto candidate_web_socket_paths = TRY(get_paths_for_helper_process("WebSocket"sv));
 | |
|     auto web_socket_client = TRY(launch_web_socket_process(candidate_web_socket_paths, s_serenity_resource_root));
 | |
|     Web::WebSockets::WebSocketClientManager::initialize(TRY(WebView::WebSocketClientManagerAdapter::try_create(move(web_socket_client))));
 | |
| 
 | |
|     return {};
 | |
| }
 |