fontconfig's font directory list may contain overlapping entries (e.g. both /usr/share/fonts and /usr/share/fonts/truetype/msttcorefonts) and our recursive walk was visiting each .ttf/.otf/.ttc several times and mmap'ing it once per visit. On a typical Linux system this resulted in 2-3 mappings per file before any actual rendering. Track each font's filesystem path and skip files we've already loaded. Drops WebContent's font-file VMA count from ~7400 to ~2500 on my box.
45 lines
1.6 KiB
C++
45 lines
1.6 KiB
C++
/*
|
|
* Copyright (c) 2024, Andrew Kaster <andrew@ladybird.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/FlyString.h>
|
|
#include <AK/Function.h>
|
|
#include <AK/HashMap.h>
|
|
#include <AK/HashTable.h>
|
|
#include <LibGfx/Font/FontDatabase.h>
|
|
#include <LibGfx/Font/Typeface.h>
|
|
|
|
namespace Gfx {
|
|
|
|
class PathFontProvider final : public SystemFontProvider {
|
|
AK_MAKE_NONCOPYABLE(PathFontProvider);
|
|
AK_MAKE_NONMOVABLE(PathFontProvider);
|
|
|
|
public:
|
|
PathFontProvider();
|
|
virtual ~PathFontProvider() override;
|
|
|
|
void set_name_but_fixme_should_create_custom_system_font_provider(String name) { m_name = move(name); }
|
|
|
|
void load_all_fonts_from_uri(StringView);
|
|
|
|
virtual RefPtr<Gfx::Font> get_font(FlyString const& family, float point_size, unsigned weight, unsigned width, unsigned slope, Optional<FontVariationSettings> const& font_variation_settings = {}, Optional<Gfx::ShapeFeatures> const& shape_features = {}) override;
|
|
virtual void for_each_typeface_with_family_name(FlyString const& family_name, Function<void(Typeface const&)>) override;
|
|
virtual StringView name() const LIFETIME_BOUND override { return m_name.bytes_as_string_view(); }
|
|
|
|
private:
|
|
HashMap<FlyString, Vector<NonnullRefPtr<Typeface>>, AK::ASCIICaseInsensitiveFlyStringTraits> m_typeface_by_family;
|
|
|
|
// Tracks files we've already loaded, to avoid mmap'ing the same .ttf/.otf/.ttc
|
|
// multiple times when overlapping font directories are walked (fontconfig commonly
|
|
// returns nested entries like /usr/share/fonts and /usr/share/fonts/truetype).
|
|
HashTable<String> m_loaded_paths;
|
|
|
|
String m_name { "Path"_string };
|
|
};
|
|
|
|
}
|