/* * Copyright (c) 2023, Andrew Kaster * * SPDX-License-Identifier: BSD-2-Clause */ #include "WebViewImplementationNative.h" #include "JNIHelpers.h" #include #include #include #include #include #include #include namespace Ladybird { static Gfx::BitmapFormat to_gfx_bitmap_format(i32 f) { switch (f) { case ANDROID_BITMAP_FORMAT_RGBA_8888: return Gfx::BitmapFormat::BGRA8888; default: VERIFY_NOT_REACHED(); } } WebViewImplementationNative::WebViewImplementationNative(jobject thiz) : m_java_instance(thiz) { // NOTE: m_java_instance's global ref is controlled by the JNI bindings initialize_client(CreateNewClient::Yes); on_ready_to_paint = [this]() { JavaEnvironment env(global_vm); env.get()->CallVoidMethod(m_java_instance, invalidate_layout_method); }; on_load_start = [this](URL::URL const& url, bool is_redirect) { JavaEnvironment env(global_vm); auto url_string = env.jstring_from_ak_string(MUST(url.to_string())); env.get()->CallVoidMethod(m_java_instance, on_load_start_method, url_string, is_redirect); env.get()->DeleteLocalRef(url_string); }; } void WebViewImplementationNative::initialize_client(WebView::ViewImplementation::CreateNewClient) { m_client_state = {}; auto new_client = bind_web_content_client(); m_client_state.client = new_client; m_client_state.client->on_web_content_process_crash = [] { warnln("WebContent crashed!"); // FIXME: launch a new client }; m_client_state.client_handle = MUST(Web::Crypto::generate_random_uuid()); client().async_set_window_handle(0, m_client_state.client_handle); client().async_set_device_pixels_per_css_pixel(0, m_device_pixel_ratio); // FIXME: update_palette, update system fonts } void WebViewImplementationNative::paint_into_bitmap(void* android_bitmap_raw, AndroidBitmapInfo const& info) { // Software bitmaps only for now! VERIFY((info.flags & ANDROID_BITMAP_FLAGS_IS_HARDWARE) == 0); auto android_bitmap = MUST(Gfx::Bitmap::create_wrapper(to_gfx_bitmap_format(info.format), { info.width, info.height }, 1, info.stride, android_bitmap_raw)); Gfx::Painter painter(android_bitmap); if (auto* bitmap = m_client_state.has_usable_bitmap ? m_client_state.front_bitmap.bitmap.ptr() : m_backup_bitmap.ptr()) painter.blit({ 0, 0 }, *bitmap, bitmap->rect()); else painter.clear_rect(painter.clip_rect(), Gfx::Color::Magenta); // Convert our internal BGRA into RGBA. This will be slowwwwwww // FIXME: Don't do a color format swap here. for (auto y = 0; y < android_bitmap->height(); ++y) { auto* scanline = android_bitmap->scanline(y); for (auto x = 0; x < android_bitmap->width(); ++x) { auto current_pixel = scanline[x]; u32 alpha = (current_pixel & 0xFF000000U) >> 24; u32 red = (current_pixel & 0x00FF0000U) >> 16; u32 green = (current_pixel & 0x0000FF00U) >> 8; u32 blue = (current_pixel & 0x000000FFU); scanline[x] = (alpha << 24U) | (blue << 16U) | (green << 8U) | red; } } } void WebViewImplementationNative::set_viewport_geometry(int w, int h) { m_viewport_size = { w, h }; handle_resize(); } void WebViewImplementationNative::set_device_pixel_ratio(float f) { m_device_pixel_ratio = f; client().async_set_device_pixels_per_css_pixel(0, m_device_pixel_ratio); } NonnullRefPtr WebViewImplementationNative::bind_web_content_client() { JavaEnvironment env(global_vm); int socket_fds[2] {}; MUST(Core::System::socketpair(AF_LOCAL, SOCK_STREAM, 0, socket_fds)); int ui_fd = socket_fds[0]; int wc_fd = socket_fds[1]; // NOTE: The java object takes ownership of the socket fds env.get()->CallVoidMethod(m_java_instance, bind_webcontent_method, wc_fd); auto socket = MUST(Core::LocalSocket::adopt_fd(ui_fd)); MUST(socket->set_blocking(true)); auto new_client = make_ref_counted(move(socket), *this); return new_client; } }