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>
|
2022-09-08 12:30:25 +02:00
|
|
|
#include <AK/Queue.h>
|
2019-08-29 19:30:48 +02:00
|
|
|
#include <AK/QuickSort.h>
|
2020-02-06 15:04:03 +01:00
|
|
|
#include <LibCore/DirIterator.h>
|
2023-03-22 02:35:30 +11:00
|
|
|
#include <LibFileSystem/FileSystem.h>
|
2022-04-09 09:28:38 +02:00
|
|
|
#include <LibGfx/Font/Font.h>
|
|
|
|
|
#include <LibGfx/Font/FontDatabase.h>
|
2022-12-19 12:26:27 +01:00
|
|
|
#include <LibGfx/Font/OpenType/Font.h>
|
2022-04-09 09:28:38 +02:00
|
|
|
#include <LibGfx/Font/Typeface.h>
|
2022-04-09 21:31:09 +02:00
|
|
|
#include <LibGfx/Font/WOFF/Font.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
|
|
|
}
|
|
|
|
|
|
2021-05-21 18:10:23 +02:00
|
|
|
static RefPtr<Font> s_default_font;
|
2022-12-04 18:02:33 +00:00
|
|
|
static DeprecatedString s_default_font_query;
|
2022-07-31 18:41:07 +02:00
|
|
|
|
|
|
|
|
static RefPtr<Font> s_window_title_font;
|
2022-12-04 18:02:33 +00:00
|
|
|
static DeprecatedString s_window_title_font_query;
|
2022-07-31 18:41:07 +02:00
|
|
|
|
2021-05-21 18:10:23 +02:00
|
|
|
static RefPtr<Font> s_fixed_width_font;
|
2022-12-04 18:02:33 +00:00
|
|
|
static DeprecatedString s_fixed_width_font_query;
|
2022-07-31 18:41:07 +02:00
|
|
|
|
2022-12-04 18:02:33 +00:00
|
|
|
static DeprecatedString s_default_fonts_lookup_path = "/res/fonts";
|
2021-05-21 18:10:23 +02:00
|
|
|
|
2022-12-04 18:02:33 +00:00
|
|
|
void FontDatabase::set_default_font_query(DeprecatedString query)
|
2021-05-21 18:10:23 +02:00
|
|
|
{
|
|
|
|
|
if (s_default_font_query == query)
|
|
|
|
|
return;
|
|
|
|
|
s_default_font_query = move(query);
|
|
|
|
|
s_default_font = nullptr;
|
|
|
|
|
}
|
|
|
|
|
|
2022-12-04 18:02:33 +00:00
|
|
|
DeprecatedString FontDatabase::default_font_query()
|
2021-05-21 18:10:23 +02:00
|
|
|
{
|
|
|
|
|
return s_default_font_query;
|
|
|
|
|
}
|
|
|
|
|
|
2022-12-04 18:02:33 +00:00
|
|
|
void FontDatabase::set_window_title_font_query(DeprecatedString query)
|
2022-07-31 18:41:07 +02:00
|
|
|
{
|
|
|
|
|
if (s_window_title_font_query == query)
|
|
|
|
|
return;
|
|
|
|
|
s_window_title_font_query = move(query);
|
|
|
|
|
s_window_title_font = nullptr;
|
|
|
|
|
}
|
|
|
|
|
|
2022-12-04 18:02:33 +00:00
|
|
|
DeprecatedString FontDatabase::window_title_font_query()
|
2022-07-31 18:41:07 +02:00
|
|
|
{
|
|
|
|
|
return s_window_title_font_query;
|
|
|
|
|
}
|
|
|
|
|
|
2022-12-04 18:02:33 +00:00
|
|
|
void FontDatabase::set_default_fonts_lookup_path(DeprecatedString path)
|
2022-02-13 12:59:11 +01:00
|
|
|
{
|
|
|
|
|
if (s_default_fonts_lookup_path == path)
|
|
|
|
|
return;
|
|
|
|
|
s_default_fonts_lookup_path = move(path);
|
|
|
|
|
}
|
|
|
|
|
|
2022-12-04 18:02:33 +00:00
|
|
|
DeprecatedString FontDatabase::default_fonts_lookup_path()
|
2022-02-13 12:59:11 +01:00
|
|
|
{
|
|
|
|
|
return s_default_fonts_lookup_path;
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-29 18:25:13 +01:00
|
|
|
Font& FontDatabase::default_font()
|
|
|
|
|
{
|
2021-05-21 18:10:23 +02:00
|
|
|
if (!s_default_font) {
|
|
|
|
|
VERIFY(!s_default_font_query.is_empty());
|
|
|
|
|
s_default_font = FontDatabase::the().get_by_name(s_default_font_query);
|
|
|
|
|
VERIFY(s_default_font);
|
2020-12-29 18:25:13 +01:00
|
|
|
}
|
2021-05-21 18:10:23 +02:00
|
|
|
return *s_default_font;
|
|
|
|
|
}
|
|
|
|
|
|
2022-07-31 18:41:07 +02:00
|
|
|
Font& FontDatabase::window_title_font()
|
|
|
|
|
{
|
|
|
|
|
if (!s_window_title_font) {
|
|
|
|
|
VERIFY(!s_window_title_font_query.is_empty());
|
|
|
|
|
s_window_title_font = FontDatabase::the().get_by_name(s_window_title_font_query);
|
|
|
|
|
VERIFY(s_window_title_font);
|
|
|
|
|
}
|
|
|
|
|
return *s_window_title_font;
|
|
|
|
|
}
|
|
|
|
|
|
2022-12-04 18:02:33 +00:00
|
|
|
void FontDatabase::set_fixed_width_font_query(DeprecatedString query)
|
2021-05-21 18:10:23 +02:00
|
|
|
{
|
|
|
|
|
if (s_fixed_width_font_query == query)
|
|
|
|
|
return;
|
|
|
|
|
s_fixed_width_font_query = move(query);
|
|
|
|
|
s_fixed_width_font = nullptr;
|
|
|
|
|
}
|
|
|
|
|
|
2022-12-04 18:02:33 +00:00
|
|
|
DeprecatedString FontDatabase::fixed_width_font_query()
|
2021-05-21 18:10:23 +02:00
|
|
|
{
|
|
|
|
|
return s_fixed_width_font_query;
|
2020-12-29 18:25:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Font& FontDatabase::default_fixed_width_font()
|
|
|
|
|
{
|
2021-05-21 18:10:23 +02:00
|
|
|
if (!s_fixed_width_font) {
|
|
|
|
|
VERIFY(!s_fixed_width_font_query.is_empty());
|
|
|
|
|
s_fixed_width_font = FontDatabase::the().get_by_name(s_fixed_width_font_query);
|
|
|
|
|
VERIFY(s_fixed_width_font);
|
2020-12-29 18:25:13 +01:00
|
|
|
}
|
2021-05-21 18:10:23 +02:00
|
|
|
return *s_fixed_width_font;
|
2020-12-29 18:25:13 +01:00
|
|
|
}
|
|
|
|
|
|
2020-10-25 19:28:06 +01:00
|
|
|
struct FontDatabase::Private {
|
2023-05-15 16:49:10 +02:00
|
|
|
HashMap<DeprecatedString, NonnullRefPtr<Gfx::Font>, CaseInsensitiveStringTraits> full_name_to_font_map;
|
|
|
|
|
HashMap<DeprecatedFlyString, Vector<NonnullRefPtr<Typeface>>, CaseInsensitiveStringTraits> typefaces;
|
2020-10-25 19:28:06 +01:00
|
|
|
};
|
|
|
|
|
|
2022-12-04 18:02:33 +00:00
|
|
|
void FontDatabase::load_all_fonts_from_path(DeprecatedString const& root)
|
2019-02-12 14:35:33 +01:00
|
|
|
{
|
2022-12-04 18:02:33 +00:00
|
|
|
Queue<DeprecatedString> path_queue;
|
2022-09-08 12:30:25 +02:00
|
|
|
path_queue.enqueue(root);
|
|
|
|
|
|
|
|
|
|
while (!path_queue.is_empty()) {
|
|
|
|
|
auto current_directory = path_queue.dequeue();
|
|
|
|
|
Core::DirIterator dir_iterator(current_directory, Core::DirIterator::SkipParentAndBaseDir);
|
|
|
|
|
if (dir_iterator.has_error()) {
|
2023-05-22 09:53:14 +02:00
|
|
|
dbgln("FontDatabase::load_all_fonts_from_path('{}'): {}", root, dir_iterator.error());
|
2022-09-08 12:30:25 +02:00
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
while (dir_iterator.has_next()) {
|
|
|
|
|
auto path = dir_iterator.next_full_path();
|
|
|
|
|
|
2023-03-22 02:35:30 +11:00
|
|
|
if (FileSystem::is_directory(path)) {
|
2022-09-08 12:30:25 +02:00
|
|
|
path_queue.enqueue(path);
|
|
|
|
|
continue;
|
2022-04-09 21:31:09 +02:00
|
|
|
}
|
2022-09-08 12:30:25 +02:00
|
|
|
|
|
|
|
|
if (path.ends_with(".font"sv)) {
|
|
|
|
|
if (auto font_or_error = Gfx::BitmapFont::try_load_from_file(path); !font_or_error.is_error()) {
|
|
|
|
|
auto font = font_or_error.release_value();
|
|
|
|
|
m_private->full_name_to_font_map.set(font->qualified_name(), *font);
|
|
|
|
|
auto typeface = get_or_create_typeface(font->family(), font->variant());
|
|
|
|
|
typeface->add_bitmap_font(font);
|
|
|
|
|
}
|
|
|
|
|
} else if (path.ends_with(".ttf"sv)) {
|
|
|
|
|
// FIXME: What about .otf
|
2022-12-19 12:26:27 +01:00
|
|
|
if (auto font_or_error = OpenType::Font::try_load_from_file(path); !font_or_error.is_error()) {
|
2022-09-08 12:30:25 +02:00
|
|
|
auto font = font_or_error.release_value();
|
|
|
|
|
auto typeface = get_or_create_typeface(font->family(), font->variant());
|
|
|
|
|
typeface->set_vector_font(move(font));
|
|
|
|
|
}
|
|
|
|
|
} else if (path.ends_with(".woff"sv)) {
|
|
|
|
|
if (auto font_or_error = WOFF::Font::try_load_from_file(path); !font_or_error.is_error()) {
|
|
|
|
|
auto font = font_or_error.release_value();
|
|
|
|
|
auto typeface = get_or_create_typeface(font->family(), font->variant());
|
|
|
|
|
typeface->set_vector_font(move(font));
|
|
|
|
|
}
|
2021-01-02 14:49:20 +01:00
|
|
|
}
|
2019-03-06 14:06:40 +01:00
|
|
|
}
|
2019-02-12 14:35:33 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-09-08 12:30:25 +02:00
|
|
|
FontDatabase::FontDatabase()
|
|
|
|
|
: m_private(make<Private>())
|
|
|
|
|
{
|
|
|
|
|
load_all_fonts_from_path(s_default_fonts_lookup_path);
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-01 20:58:27 +03:00
|
|
|
void FontDatabase::for_each_font(Function<void(Gfx::Font const&)> callback)
|
2019-02-12 14:35:33 +01:00
|
|
|
{
|
2020-10-25 19:28:06 +01:00
|
|
|
Vector<RefPtr<Gfx::Font>> fonts;
|
|
|
|
|
fonts.ensure_capacity(m_private->full_name_to_font_map.size());
|
|
|
|
|
for (auto& it : m_private->full_name_to_font_map)
|
|
|
|
|
fonts.append(it.value);
|
|
|
|
|
quick_sort(fonts, [](auto& a, auto& b) { return a->qualified_name() < b->qualified_name(); });
|
|
|
|
|
for (auto& font : fonts)
|
|
|
|
|
callback(*font);
|
2019-02-12 14:35:33 +01:00
|
|
|
}
|
|
|
|
|
|
2022-04-01 20:58:27 +03:00
|
|
|
void FontDatabase::for_each_fixed_width_font(Function<void(Gfx::Font const&)> callback)
|
2019-03-06 14:06:40 +01:00
|
|
|
{
|
2020-10-25 19:28:06 +01:00
|
|
|
Vector<RefPtr<Gfx::Font>> fonts;
|
|
|
|
|
fonts.ensure_capacity(m_private->full_name_to_font_map.size());
|
|
|
|
|
for (auto& it : m_private->full_name_to_font_map) {
|
|
|
|
|
if (it.value->is_fixed_width())
|
|
|
|
|
fonts.append(it.value);
|
2019-03-06 14:06:40 +01:00
|
|
|
}
|
2020-10-25 19:28:06 +01:00
|
|
|
quick_sort(fonts, [](auto& a, auto& b) { return a->qualified_name() < b->qualified_name(); });
|
|
|
|
|
for (auto& font : fonts)
|
|
|
|
|
callback(*font);
|
2019-03-06 14:06:40 +01:00
|
|
|
}
|
|
|
|
|
|
2021-11-11 00:55:02 +01:00
|
|
|
RefPtr<Gfx::Font> FontDatabase::get_by_name(StringView name)
|
2019-02-12 14:35:33 +01:00
|
|
|
{
|
2020-10-25 19:28:06 +01:00
|
|
|
auto it = m_private->full_name_to_font_map.find(name);
|
|
|
|
|
if (it == m_private->full_name_to_font_map.end()) {
|
2021-07-11 00:06:13 +02:00
|
|
|
auto parts = name.split_view(" "sv);
|
2022-01-31 20:18:15 -05:00
|
|
|
if (parts.size() >= 4) {
|
|
|
|
|
auto slope = parts.take_last().to_int().value_or(0);
|
2021-07-11 00:06:13 +02:00
|
|
|
auto weight = parts.take_last().to_int().value_or(0);
|
|
|
|
|
auto size = parts.take_last().to_int().value_or(0);
|
2022-12-04 18:02:33 +00:00
|
|
|
auto family = DeprecatedString::join(' ', parts);
|
2023-02-04 23:00:34 +03:00
|
|
|
return get(family, size, weight, Gfx::FontWidth::Normal, slope);
|
2021-07-11 00:06:13 +02:00
|
|
|
}
|
2020-10-25 19:28:06 +01:00
|
|
|
dbgln("Font lookup failed: '{}'", name);
|
2019-02-12 14:35:33 +01:00
|
|
|
return nullptr;
|
2020-10-25 19:28:06 +01:00
|
|
|
}
|
|
|
|
|
return it->value;
|
2019-02-12 14:35:33 +01:00
|
|
|
}
|
2020-03-07 12:02:21 +13:00
|
|
|
|
2023-02-04 23:00:34 +03:00
|
|
|
RefPtr<Gfx::Font> FontDatabase::get(DeprecatedFlyString const& family, float point_size, unsigned weight, unsigned width, unsigned slope, Font::AllowInexactSizeMatch allow_inexact_size_match)
|
2020-12-28 15:47:21 +01:00
|
|
|
{
|
2022-09-15 12:03:41 +02:00
|
|
|
auto it = m_private->typefaces.find(family);
|
|
|
|
|
if (it == m_private->typefaces.end())
|
|
|
|
|
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)
|
2022-03-26 23:54:07 +01:00
|
|
|
return typeface->get_font(point_size, allow_inexact_size_match);
|
2021-01-02 18:20:10 +01:00
|
|
|
}
|
|
|
|
|
return nullptr;
|
|
|
|
|
}
|
|
|
|
|
|
2023-01-08 19:23:00 -05:00
|
|
|
RefPtr<Gfx::Font> FontDatabase::get(DeprecatedFlyString const& family, DeprecatedFlyString const& variant, float point_size, Font::AllowInexactSizeMatch allow_inexact_size_match)
|
2021-01-02 18:20:10 +01:00
|
|
|
{
|
2022-09-15 12:03:41 +02:00
|
|
|
auto it = m_private->typefaces.find(family);
|
|
|
|
|
if (it == m_private->typefaces.end())
|
|
|
|
|
return nullptr;
|
|
|
|
|
for (auto const& typeface : it->value) {
|
|
|
|
|
if (typeface->variant() == variant)
|
2022-03-26 23:54:07 +01:00
|
|
|
return typeface->get_font(point_size, allow_inexact_size_match);
|
2020-12-28 15:47:21 +01:00
|
|
|
}
|
|
|
|
|
return nullptr;
|
|
|
|
|
}
|
|
|
|
|
|
2022-12-04 18:02:33 +00:00
|
|
|
RefPtr<Typeface> FontDatabase::get_or_create_typeface(DeprecatedString const& family, DeprecatedString const& variant)
|
2021-01-02 14:49:20 +01:00
|
|
|
{
|
2022-09-15 12:03:41 +02:00
|
|
|
auto it = m_private->typefaces.find(family);
|
|
|
|
|
if (it != m_private->typefaces.end()) {
|
|
|
|
|
for (auto const& typeface : it->value) {
|
|
|
|
|
if (typeface->variant() == variant)
|
|
|
|
|
return typeface;
|
|
|
|
|
}
|
2021-01-02 14:49:20 +01:00
|
|
|
}
|
2021-04-23 16:46:57 +02:00
|
|
|
auto typeface = adopt_ref(*new Typeface(family, variant));
|
2022-09-15 12:03:41 +02:00
|
|
|
m_private->typefaces.ensure(family).append(typeface);
|
2021-01-02 14:49:20 +01:00
|
|
|
return typeface;
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-01 20:58:27 +03:00
|
|
|
void FontDatabase::for_each_typeface(Function<void(Typeface const&)> callback)
|
2021-01-02 18:20:10 +01:00
|
|
|
{
|
2022-09-15 12:03:41 +02:00
|
|
|
for (auto const& it : m_private->typefaces) {
|
|
|
|
|
for (auto const& jt : it.value) {
|
|
|
|
|
callback(*jt);
|
|
|
|
|
}
|
2021-01-02 18:20:10 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-03-07 12:02:21 +13:00
|
|
|
}
|