2020-01-18 09:38:21 +01:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-01-18 09:38:21 +01:00
|
|
|
*/
|
|
|
|
|
|
2023-01-08 19:23:00 -05:00
|
|
|
#include <AK/DeprecatedFlyString.h>
|
2023-09-05 20:19:33 +02:00
|
|
|
#include <AK/FlyString.h>
|
2023-10-16 14:14:02 -06:00
|
|
|
#include <AK/LexicalPath.h>
|
2022-09-08 12:30:25 +02:00
|
|
|
#include <AK/Queue.h>
|
2023-10-03 15:35:41 -06:00
|
|
|
#include <LibCore/Resource.h>
|
2022-04-09 09:28:38 +02:00
|
|
|
#include <LibGfx/Font/Font.h>
|
|
|
|
|
#include <LibGfx/Font/FontDatabase.h>
|
2024-07-12 15:27:39 +03:00
|
|
|
#include <LibGfx/Font/OpenType/Typeface.h>
|
2024-06-28 20:13:13 +02:00
|
|
|
#include <LibGfx/Font/ScaledFont.h>
|
2024-07-22 14:03:58 +03:00
|
|
|
#include <LibGfx/Font/WOFF/Loader.h>
|
2019-02-12 14:35:33 +01:00
|
|
|
|
2020-10-31 10:18:49 +01:00
|
|
|
namespace Gfx {
|
2019-04-05 05:10:18 +02:00
|
|
|
|
2020-03-07 12:02:21 +13:00
|
|
|
FontDatabase& FontDatabase::the()
|
2019-02-12 14:35:33 +01:00
|
|
|
{
|
2022-01-28 21:22:13 +01:00
|
|
|
static FontDatabase s_the;
|
|
|
|
|
return s_the;
|
2019-02-12 14:35:33 +01:00
|
|
|
}
|
|
|
|
|
|
2020-10-25 19:28:06 +01:00
|
|
|
struct FontDatabase::Private {
|
2024-08-19 20:35:49 +02:00
|
|
|
bool force_fontconfig { false };
|
2024-06-28 20:27:00 +02:00
|
|
|
HashMap<FlyString, Vector<NonnullRefPtr<Typeface>>, AK::ASCIICaseInsensitiveFlyStringTraits> typeface_by_family;
|
2020-10-25 19:28:06 +01:00
|
|
|
};
|
|
|
|
|
|
2024-08-19 20:35:49 +02:00
|
|
|
void FontDatabase::set_force_fontconfig(bool force_fontconfig)
|
|
|
|
|
{
|
|
|
|
|
m_private->force_fontconfig = force_fontconfig;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool FontDatabase::should_force_fontconfig() const
|
|
|
|
|
{
|
|
|
|
|
return m_private->force_fontconfig;
|
|
|
|
|
}
|
|
|
|
|
|
2023-10-03 15:35:41 -06:00
|
|
|
void FontDatabase::load_all_fonts_from_uri(StringView uri)
|
|
|
|
|
{
|
|
|
|
|
auto root_or_error = Core::Resource::load_from_uri(uri);
|
|
|
|
|
if (root_or_error.is_error()) {
|
2024-06-03 16:34:47 -04:00
|
|
|
if (root_or_error.error().is_errno() && root_or_error.error().code() == ENOENT) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
2023-10-03 15:35:41 -06:00
|
|
|
dbgln("FontDatabase::load_all_fonts_from_uri('{}'): {}", uri, root_or_error.error());
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
auto root = root_or_error.release_value();
|
|
|
|
|
|
|
|
|
|
root->for_each_descendant_file([this](Core::Resource const& resource) -> IterationDecision {
|
2024-04-03 21:51:34 -04:00
|
|
|
auto uri = resource.uri();
|
|
|
|
|
auto path = LexicalPath(uri.bytes_as_string_view());
|
2024-06-03 17:14:05 +02:00
|
|
|
if (path.has_extension(".ttf"sv)) {
|
2023-10-03 15:35:41 -06:00
|
|
|
// FIXME: What about .otf
|
2024-07-12 15:27:39 +03:00
|
|
|
if (auto font_or_error = OpenType::Typeface::try_load_from_resource(resource); !font_or_error.is_error()) {
|
2023-10-03 15:35:41 -06:00
|
|
|
auto font = font_or_error.release_value();
|
2024-06-28 20:13:13 +02:00
|
|
|
auto& family = m_private->typeface_by_family.ensure(font->family(), [] {
|
2024-06-28 20:27:00 +02:00
|
|
|
return Vector<NonnullRefPtr<Typeface>> {};
|
2024-06-28 20:13:13 +02:00
|
|
|
});
|
|
|
|
|
family.append(font);
|
2023-10-03 15:35:41 -06:00
|
|
|
}
|
2023-10-16 14:14:02 -06:00
|
|
|
} else if (path.has_extension(".woff"sv)) {
|
2024-07-22 14:03:58 +03:00
|
|
|
if (auto font_or_error = WOFF::try_load_from_resource(resource); !font_or_error.is_error()) {
|
2023-10-03 15:35:41 -06:00
|
|
|
auto font = font_or_error.release_value();
|
2024-06-28 20:13:13 +02:00
|
|
|
auto& family = m_private->typeface_by_family.ensure(font->family(), [] {
|
2024-06-28 20:27:00 +02:00
|
|
|
return Vector<NonnullRefPtr<Typeface>> {};
|
2024-06-28 20:13:13 +02:00
|
|
|
});
|
|
|
|
|
family.append(font);
|
2021-01-02 14:49:20 +01:00
|
|
|
}
|
2019-03-06 14:06:40 +01:00
|
|
|
}
|
2023-10-03 15:35:41 -06:00
|
|
|
return IterationDecision::Continue;
|
|
|
|
|
});
|
2019-02-12 14:35:33 +01:00
|
|
|
}
|
|
|
|
|
|
2022-09-08 12:30:25 +02:00
|
|
|
FontDatabase::FontDatabase()
|
|
|
|
|
: m_private(make<Private>())
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2024-06-03 17:14:05 +02:00
|
|
|
RefPtr<Gfx::Font> FontDatabase::get(FlyString const& family, float point_size, unsigned weight, unsigned width, unsigned slope)
|
2020-12-28 15:47:21 +01:00
|
|
|
{
|
2024-06-28 20:13:13 +02:00
|
|
|
auto it = m_private->typeface_by_family.find(family);
|
|
|
|
|
if (it == m_private->typeface_by_family.end())
|
2022-09-15 12:03:41 +02:00
|
|
|
return nullptr;
|
|
|
|
|
for (auto const& typeface : it->value) {
|
2023-02-04 23:00:34 +03:00
|
|
|
if (typeface->weight() == weight && typeface->width() == width && typeface->slope() == slope)
|
2024-06-28 20:13:13 +02:00
|
|
|
return typeface->scaled_font(point_size);
|
2021-01-02 18:20:10 +01:00
|
|
|
}
|
|
|
|
|
return nullptr;
|
|
|
|
|
}
|
|
|
|
|
|
2024-06-28 20:27:00 +02:00
|
|
|
void FontDatabase::for_each_typeface_with_family_name(FlyString const& family_name, Function<void(Typeface const&)> callback)
|
2021-01-02 14:49:20 +01:00
|
|
|
{
|
2024-06-28 20:13:13 +02:00
|
|
|
auto it = m_private->typeface_by_family.find(family_name);
|
|
|
|
|
if (it == m_private->typeface_by_family.end())
|
2023-08-24 11:34:16 +02:00
|
|
|
return;
|
|
|
|
|
for (auto const& typeface : it->value)
|
|
|
|
|
callback(*typeface);
|
|
|
|
|
}
|
|
|
|
|
|
2020-03-07 12:02:21 +13:00
|
|
|
}
|