1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 04:47:35 +00:00

Maps: Limit parallel downloading of tiles

Previously we would bombard RequestServer with as many requests as it
would take, but when frantically zooming in and out, we would run out of
fd's causing the Maps application to hang.

This implements a tile download queue and limits the amount of parallel
downloads to 8. This fixes the hangs accompanied by this debug console
message:

    Peer endpoint error: recvfd: Too many open files (errno=24)

It does not fix other sporadic hangs caused by requests that are never
finished, however.
This commit is contained in:
Jelle Raaijmakers 2023-09-05 16:19:06 +02:00
parent 494a8cb816
commit cf898f08ab
2 changed files with 57 additions and 16 deletions

View file

@ -1,5 +1,6 @@
/* /*
* Copyright (c) 2023, Bastiaan van der Plaat <bastiaan.v.d.plaat@gmail.com> * Copyright (c) 2023, Bastiaan van der Plaat <bastiaan.v.d.plaat@gmail.com>
* Copyright (c) 2023, Jelle Raaijmakers <jelle@gmta.nl>
* *
* SPDX-License-Identifier: BSD-2-Clause * SPDX-License-Identifier: BSD-2-Clause
*/ */
@ -59,6 +60,13 @@ MapWidget::MapWidget(Options const& options)
m_request_client = Protocol::RequestClient::try_create().release_value_but_fixme_should_propagate_errors(); m_request_client = Protocol::RequestClient::try_create().release_value_but_fixme_should_propagate_errors();
} }
void MapWidget::set_zoom(int zoom)
{
m_zoom = min(max(zoom, ZOOM_MIN), ZOOM_MAX);
clear_tile_queue();
update();
}
void MapWidget::mousedown_event(GUI::MouseEvent& event) void MapWidget::mousedown_event(GUI::MouseEvent& event)
{ {
if (m_connection_failed) if (m_connection_failed)
@ -145,30 +153,51 @@ void MapWidget::mousewheel_event(GUI::MouseEvent& event)
Optional<RefPtr<Gfx::Bitmap>> MapWidget::get_tile_image(int x, int y) Optional<RefPtr<Gfx::Bitmap>> MapWidget::get_tile_image(int x, int y)
{ {
// Get the right tile from tiles cache // Get the tile from tiles cache
TileKey key = { x, y, m_zoom }; TileKey const key = { x, y, m_zoom };
if (auto it = m_tiles.find(key); it != m_tiles.end()) { if (auto it = m_tiles.find(key); it != m_tiles.end()) {
if (it->value) if (it->value)
return it->value; return it->value;
return {}; return {};
} }
// Add tile when not in tiles // Register an empty tile so we don't send requests multiple times
if (m_tiles.size() >= TILES_CACHE_MAX) if (m_tiles.size() >= TILES_CACHE_MAX)
m_tiles.remove(m_tiles.begin()); m_tiles.remove(m_tiles.begin());
m_tiles.set(key, nullptr); m_tiles.set(key, nullptr);
// Schedule the tile download
m_tile_queue.enqueue(key);
process_tile_queue();
return {};
}
void MapWidget::process_tile_queue()
{
if (m_active_requests.size() >= TILES_DOWNLOAD_PARALLEL_MAX)
return;
if (m_tile_queue.is_empty())
return;
auto tile_key = m_tile_queue.dequeue();
// Start HTTP GET request to load image // Start HTTP GET request to load image
HashMap<DeprecatedString, DeprecatedString> headers; HashMap<DeprecatedString, DeprecatedString> headers;
headers.set("User-Agent", "SerenityOS Maps"); headers.set("User-Agent", "SerenityOS Maps");
headers.set("Accept", "image/png"); headers.set("Accept", "image/png");
URL url(MUST(String::formatted(m_tile_layer_url, m_zoom, x, y))); URL url(MUST(String::formatted(m_tile_layer_url, tile_key.zoom, tile_key.x, tile_key.y)));
auto request = m_request_client->start_request("GET", url, headers, {}); auto request = m_request_client->start_request("GET", url, headers, {});
VERIFY(!request.is_null());
m_active_requests.append(request); m_active_requests.append(request);
request->on_buffered_request_finish = [this, request, url, key](bool success, auto, auto&, auto, ReadonlyBytes payload) { request->on_buffered_request_finish = [this, request, url, tile_key](bool success, auto, auto&, auto, ReadonlyBytes payload) {
m_active_requests.remove_all_matching([request](auto const& other_request) { return other_request->id() == request->id(); }); auto was_active = m_active_requests.remove_first_matching([request](auto const& other_request) { return other_request->id() == request->id(); });
if (!was_active)
return;
deferred_invoke([this]() { this->process_tile_queue(); });
// When first image load fails set connection failed
if (!success) { if (!success) {
// When first image load fails set connection failed
if (!m_first_image_loaded) { if (!m_first_image_loaded) {
m_first_image_loaded = true; m_first_image_loaded = true;
m_connection_failed = true; m_connection_failed = true;
@ -184,14 +213,24 @@ Optional<RefPtr<Gfx::Bitmap>> MapWidget::get_tile_image(int x, int y)
dbgln("Maps: Can't decode image: {}", url); dbgln("Maps: Can't decode image: {}", url);
return; return;
} }
m_tiles.set(key, decoder->frame(0).release_value_but_fixme_should_propagate_errors().image); m_tiles.set(tile_key, decoder->frame(0).release_value_but_fixme_should_propagate_errors().image);
// FIXME: only update the part of the screen that this tile covers
update(); update();
}; };
request->set_should_buffer_all_input(true); request->set_should_buffer_all_input(true);
request->on_certificate_requested = []() -> Protocol::Request::CertificateAndKey { return {}; }; request->on_certificate_requested = []() -> Protocol::Request::CertificateAndKey { return {}; };
}
// Return no image for now void MapWidget::clear_tile_queue()
return {}; {
m_tile_queue.clear();
// FIXME: ideally we would like to abort all active requests here, but invoking `->stop()`
// often causes hangs for me for some reason.
m_active_requests.clear_with_capacity();
m_tiles.remove_all_matching([](auto, auto const& value) -> bool { return !value; });
} }
void MapWidget::paint_tiles(GUI::Painter& painter) void MapWidget::paint_tiles(GUI::Painter& painter)

View file

@ -1,11 +1,13 @@
/* /*
* Copyright (c) 2023, Bastiaan van der Plaat <bastiaan.v.d.plaat@gmail.com> * Copyright (c) 2023, Bastiaan van der Plaat <bastiaan.v.d.plaat@gmail.com>
* Copyright (c) 2023, Jelle Raaijmakers <jelle@gmta.nl>
* *
* SPDX-License-Identifier: BSD-2-Clause * SPDX-License-Identifier: BSD-2-Clause
*/ */
#pragma once #pragma once
#include <AK/Queue.h>
#include <LibGUI/Painter.h> #include <LibGUI/Painter.h>
#include <LibGUI/Widget.h> #include <LibGUI/Widget.h>
#include <LibProtocol/Request.h> #include <LibProtocol/Request.h>
@ -44,11 +46,7 @@ public:
} }
int zoom() const { return m_zoom; } int zoom() const { return m_zoom; }
void set_zoom(int zoom) void set_zoom(int zoom);
{
m_zoom = min(max(zoom, ZOOM_MIN), ZOOM_MAX);
update();
}
struct TileKey { struct TileKey {
int x; int x;
@ -80,6 +78,8 @@ private:
virtual void paint_event(GUI::PaintEvent&) override; virtual void paint_event(GUI::PaintEvent&) override;
Optional<RefPtr<Gfx::Bitmap>> get_tile_image(int x, int y); Optional<RefPtr<Gfx::Bitmap>> get_tile_image(int x, int y);
void process_tile_queue();
void clear_tile_queue();
void paint_tiles(GUI::Painter&); void paint_tiles(GUI::Painter&);
@ -92,6 +92,7 @@ private:
static int constexpr TILE_SIZE = 256; static int constexpr TILE_SIZE = 256;
static double constexpr LATITUDE_MAX = 85.0511287798066; static double constexpr LATITUDE_MAX = 85.0511287798066;
static size_t constexpr TILES_CACHE_MAX = 256; static size_t constexpr TILES_CACHE_MAX = 256;
static constexpr size_t TILES_DOWNLOAD_PARALLEL_MAX = 8;
static int constexpr ZOOM_MIN = 2; static int constexpr ZOOM_MIN = 2;
static int constexpr ZOOM_MAX = 19; static int constexpr ZOOM_MAX = 19;
static float constexpr PANEL_PADDING_X = 6; static float constexpr PANEL_PADDING_X = 6;
@ -103,7 +104,8 @@ private:
static Gfx::Color constexpr panel_foreground_color = { 51, 51, 51 }; static Gfx::Color constexpr panel_foreground_color = { 51, 51, 51 };
RefPtr<Protocol::RequestClient> m_request_client; RefPtr<Protocol::RequestClient> m_request_client;
Vector<RefPtr<Protocol::Request>> m_active_requests; Vector<RefPtr<Protocol::Request>, TILES_DOWNLOAD_PARALLEL_MAX> m_active_requests;
Queue<TileKey, 32> m_tile_queue;
String m_tile_layer_url; String m_tile_layer_url;
LatLng m_center; LatLng m_center;
int m_zoom {}; int m_zoom {};