| 
									
										
										
										
											2020-06-17 17:31:42 +02:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Copyright (c) 2020, Andreas Kling <kling@serenityos.org> | 
					
						
							|  |  |  |  * All rights reserved. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Redistribution and use in source and binary forms, with or without | 
					
						
							|  |  |  |  * modification, are permitted provided that the following conditions are met: | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * 1. Redistributions of source code must retain the above copyright notice, this | 
					
						
							|  |  |  |  *    list of conditions and the following disclaimer. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * 2. Redistributions in binary form must reproduce the above copyright notice, | 
					
						
							|  |  |  |  *    this list of conditions and the following disclaimer in the documentation | 
					
						
							|  |  |  |  *    and/or other materials provided with the distribution. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | 
					
						
							|  |  |  |  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
					
						
							|  |  |  |  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | 
					
						
							|  |  |  |  * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE | 
					
						
							|  |  |  |  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
					
						
							|  |  |  |  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR | 
					
						
							|  |  |  |  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER | 
					
						
							|  |  |  |  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, | 
					
						
							|  |  |  |  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 
					
						
							|  |  |  |  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <AK/Badge.h>
 | 
					
						
							|  |  |  | #include <AK/SharedBuffer.h>
 | 
					
						
							|  |  |  | #include <LibGfx/Bitmap.h>
 | 
					
						
							|  |  |  | #include <LibGfx/SystemTheme.h>
 | 
					
						
							|  |  |  | #include <WebContent/ClientConnection.h>
 | 
					
						
							|  |  |  | #include <WebContent/PageHost.h>
 | 
					
						
							|  |  |  | #include <WebContent/WebContentClientEndpoint.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace WebContent { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static HashMap<int, RefPtr<ClientConnection>> s_connections; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-06 13:23:39 +02:00
										 |  |  | ClientConnection::ClientConnection(NonnullRefPtr<Core::LocalSocket> socket, int client_id) | 
					
						
							| 
									
										
										
										
											2020-09-12 11:44:00 +02:00
										 |  |  |     : IPC::ClientConnection<WebContentClientEndpoint, WebContentServerEndpoint>(*this, move(socket), client_id) | 
					
						
							| 
									
										
										
										
											2020-06-17 18:00:18 +02:00
										 |  |  |     , m_page_host(PageHost::create(*this)) | 
					
						
							| 
									
										
										
										
											2020-06-17 17:31:42 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     s_connections.set(client_id, *this); | 
					
						
							| 
									
										
										
										
											2020-07-05 16:26:15 +02:00
										 |  |  |     m_paint_flush_timer = Core::Timer::create_single_shot(0, [this] { flush_pending_paint_requests(); }); | 
					
						
							| 
									
										
										
										
											2020-06-17 17:31:42 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ClientConnection::~ClientConnection() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ClientConnection::die() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     s_connections.remove(client_id()); | 
					
						
							| 
									
										
										
										
											2020-07-06 13:26:40 +02:00
										 |  |  |     if (s_connections.is_empty()) | 
					
						
							|  |  |  |         Core::EventLoop::current().quit(0); | 
					
						
							| 
									
										
										
										
											2020-06-17 17:31:42 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Web::Page& ClientConnection::page() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return m_page_host->page(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const Web::Page& ClientConnection::page() const | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return m_page_host->page(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-21 21:22:10 +02:00
										 |  |  | OwnPtr<Messages::WebContentServer::GreetResponse> ClientConnection::handle(const Messages::WebContentServer::Greet& message) | 
					
						
							| 
									
										
										
										
											2020-06-17 17:31:42 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-06-21 21:22:10 +02:00
										 |  |  |     set_client_pid(message.client_pid()); | 
					
						
							|  |  |  |     return make<Messages::WebContentServer::GreetResponse>(client_id(), getpid()); | 
					
						
							| 
									
										
										
										
											2020-06-17 17:31:42 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ClientConnection::handle(const Messages::WebContentServer::UpdateSystemTheme& message) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     auto shared_buffer = SharedBuffer::create_from_shbuf_id(message.shbuf_id()); | 
					
						
							|  |  |  |     if (!shared_buffer) { | 
					
						
							|  |  |  |         dbg() << "WebContentServer::UpdateSystemTheme: SharedBuffer already gone! Ignoring :^)"; | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     Gfx::set_system_theme(*shared_buffer); | 
					
						
							|  |  |  |     auto impl = Gfx::PaletteImpl::create_with_shared_buffer(*shared_buffer); | 
					
						
							|  |  |  |     m_page_host->set_palette_impl(*impl); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ClientConnection::handle(const Messages::WebContentServer::LoadURL& message) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2020-07-04 23:19:12 +02:00
										 |  |  | #ifdef DEBUG_SPAM
 | 
					
						
							| 
									
										
										
										
											2020-06-17 17:31:42 +02:00
										 |  |  |     dbg() << "handle: WebContentServer::LoadURL: url=" << message.url(); | 
					
						
							| 
									
										
										
										
											2020-07-04 23:19:12 +02:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2020-06-17 17:31:42 +02:00
										 |  |  |     page().load(message.url()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-08 21:11:01 +01:00
										 |  |  | void ClientConnection::handle(const Messages::WebContentServer::LoadHTML& message) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | #ifdef DEBUG_SPAM
 | 
					
						
							|  |  |  |     dbg() << "handle: WebContentServer::LoadHTML: html=" << message.html() << ", url=" << message.url(); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  |     page().load_html(message.html(), message.url()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-17 17:31:42 +02:00
										 |  |  | void ClientConnection::handle(const Messages::WebContentServer::SetViewportRect& message) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2020-07-04 23:19:12 +02:00
										 |  |  | #ifdef DEBUG_SPAM
 | 
					
						
							| 
									
										
										
										
											2020-06-17 17:31:42 +02:00
										 |  |  |     dbg() << "handle: WebContentServer::SetViewportRect: rect=" << message.rect(); | 
					
						
							| 
									
										
										
										
											2020-07-04 23:19:12 +02:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2020-06-17 17:31:42 +02:00
										 |  |  |     m_page_host->set_viewport_rect(message.rect()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ClientConnection::handle(const Messages::WebContentServer::Paint& message) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2020-07-04 23:19:12 +02:00
										 |  |  | #ifdef DEBUG_SPAM
 | 
					
						
							| 
									
										
										
										
											2020-06-17 17:31:42 +02:00
										 |  |  |     dbg() << "handle: WebContentServer::Paint: content_rect=" << message.content_rect() << ", shbuf_id=" << message.shbuf_id(); | 
					
						
							| 
									
										
										
										
											2020-07-04 23:19:12 +02:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2020-06-17 17:31:42 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-05 16:26:15 +02:00
										 |  |  |     for (auto& pending_paint : m_pending_paint_requests) { | 
					
						
							|  |  |  |         if (pending_paint.bitmap->shbuf_id() == message.shbuf_id()) { | 
					
						
							|  |  |  |             pending_paint.content_rect = message.content_rect(); | 
					
						
							|  |  |  |             return; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-17 17:31:42 +02:00
										 |  |  |     auto shared_buffer = SharedBuffer::create_from_shbuf_id(message.shbuf_id()); | 
					
						
							|  |  |  |     if (!shared_buffer) { | 
					
						
							| 
									
										
										
										
											2020-07-05 16:36:54 +02:00
										 |  |  | #ifdef DEBUG_SPAM
 | 
					
						
							| 
									
										
										
										
											2020-06-17 17:31:42 +02:00
										 |  |  |         dbg() << "WebContentServer::Paint: SharedBuffer already gone! Ignoring :^)"; | 
					
						
							| 
									
										
										
										
											2020-07-05 16:36:54 +02:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2020-06-17 17:31:42 +02:00
										 |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     auto shared_bitmap = Gfx::Bitmap::create_with_shared_buffer(Gfx::BitmapFormat::RGB32, shared_buffer.release_nonnull(), message.content_rect().size()); | 
					
						
							|  |  |  |     if (!shared_bitmap) { | 
					
						
							|  |  |  |         did_misbehave("WebContentServer::Paint: Cannot create Gfx::Bitmap wrapper around SharedBuffer"); | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2020-07-05 16:26:15 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     m_pending_paint_requests.append({ message.content_rect(), shared_bitmap.release_nonnull() }); | 
					
						
							|  |  |  |     m_paint_flush_timer->start(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ClientConnection::flush_pending_paint_requests() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     for (auto& pending_paint : m_pending_paint_requests) { | 
					
						
							|  |  |  |         m_page_host->paint(pending_paint.content_rect, *pending_paint.bitmap); | 
					
						
							|  |  |  |         post_message(Messages::WebContentClient::DidPaint(pending_paint.content_rect, pending_paint.bitmap->shbuf_id())); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     m_pending_paint_requests.clear(); | 
					
						
							| 
									
										
										
										
											2020-06-17 17:31:42 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ClientConnection::handle(const Messages::WebContentServer::MouseDown& message) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     page().handle_mousedown(message.position(), message.button(), message.modifiers()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ClientConnection::handle(const Messages::WebContentServer::MouseMove& message) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     page().handle_mousemove(message.position(), message.buttons(), message.modifiers()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ClientConnection::handle(const Messages::WebContentServer::MouseUp& message) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     page().handle_mouseup(message.position(), message.button(), message.modifiers()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-03 19:58:59 +02:00
										 |  |  | void ClientConnection::handle(const Messages::WebContentServer::KeyDown& message) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     page().handle_keydown((KeyCode)message.key(), message.modifiers(), message.code_point()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-17 17:31:42 +02:00
										 |  |  | } |