123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291 |
- /*
- * Copyright (c) 2020-2021, Andreas Kling <kling@serenityos.org>
- * Copyright (c) 2022, the SerenityOS developers.
- *
- * SPDX-License-Identifier: BSD-2-Clause
- */
- #include <AK/Array.h>
- #include <AK/LexicalPath.h>
- #include <AK/String.h>
- #include <LibCore/ConfigFile.h>
- #include <LibCore/File.h>
- #include <LibCore/MappedFile.h>
- #include <LibCore/StandardPaths.h>
- #include <LibELF/Image.h>
- #include <LibGUI/FileIconProvider.h>
- #include <LibGUI/Icon.h>
- #include <LibGUI/Painter.h>
- #include <LibGfx/Bitmap.h>
- #include <LibGfx/PNGLoader.h>
- #include <string.h>
- #include <sys/stat.h>
- #include <unistd.h>
- namespace GUI {
- static Icon s_hard_disk_icon;
- static Icon s_directory_icon;
- static Icon s_directory_open_icon;
- static Icon s_inaccessible_directory_icon;
- static Icon s_desktop_directory_icon;
- static Icon s_home_directory_icon;
- static Icon s_home_directory_open_icon;
- static Icon s_file_icon;
- static Icon s_symlink_icon;
- static Icon s_socket_icon;
- static Icon s_executable_icon;
- static Icon s_filetype_image_icon;
- static RefPtr<Gfx::Bitmap> s_symlink_emblem;
- static RefPtr<Gfx::Bitmap> s_symlink_emblem_small;
- static HashMap<String, Icon> s_filetype_icons;
- static HashMap<String, Vector<String>> s_filetype_patterns;
- static void initialize_executable_icon_if_needed()
- {
- static bool initialized = false;
- if (initialized)
- return;
- initialized = true;
- s_executable_icon = Icon::default_icon("filetype-executable");
- }
- static void initialize_filetype_image_icon_if_needed()
- {
- static bool initialized = false;
- if (initialized)
- return;
- initialized = true;
- s_filetype_image_icon = Icon::default_icon("filetype-image");
- }
- static void initialize_if_needed()
- {
- static bool s_initialized = false;
- if (s_initialized)
- return;
- auto config = Core::ConfigFile::open("/etc/FileIconProvider.ini").release_value_but_fixme_should_propagate_errors();
- s_symlink_emblem = Gfx::Bitmap::try_load_from_file("/res/icons/symlink-emblem.png").release_value_but_fixme_should_propagate_errors();
- s_symlink_emblem_small = Gfx::Bitmap::try_load_from_file("/res/icons/symlink-emblem-small.png").release_value_but_fixme_should_propagate_errors();
- s_hard_disk_icon = Icon::default_icon("hard-disk");
- s_directory_icon = Icon::default_icon("filetype-folder");
- s_directory_open_icon = Icon::default_icon("filetype-folder-open");
- s_inaccessible_directory_icon = Icon::default_icon("filetype-folder-inaccessible");
- s_home_directory_icon = Icon::default_icon("home-directory");
- s_home_directory_open_icon = Icon::default_icon("home-directory-open");
- s_desktop_directory_icon = Icon::default_icon("desktop");
- s_file_icon = Icon::default_icon("filetype-unknown");
- s_symlink_icon = Icon::default_icon("filetype-symlink");
- s_socket_icon = Icon::default_icon("filetype-socket");
- initialize_filetype_image_icon_if_needed();
- initialize_executable_icon_if_needed();
- for (auto& filetype : config->keys("Icons")) {
- s_filetype_icons.set(filetype, Icon::default_icon(String::formatted("filetype-{}", filetype)));
- s_filetype_patterns.set(filetype, config->read_entry("Icons", filetype).split(','));
- }
- s_initialized = true;
- }
- Icon FileIconProvider::directory_icon()
- {
- initialize_if_needed();
- return s_directory_icon;
- }
- Icon FileIconProvider::directory_open_icon()
- {
- initialize_if_needed();
- return s_directory_open_icon;
- }
- Icon FileIconProvider::home_directory_icon()
- {
- initialize_if_needed();
- return s_home_directory_icon;
- }
- Icon FileIconProvider::desktop_directory_icon()
- {
- initialize_if_needed();
- return s_desktop_directory_icon;
- }
- Icon FileIconProvider::home_directory_open_icon()
- {
- initialize_if_needed();
- return s_home_directory_open_icon;
- }
- Icon FileIconProvider::filetype_image_icon()
- {
- initialize_filetype_image_icon_if_needed();
- return s_filetype_image_icon;
- }
- Icon FileIconProvider::icon_for_path(String const& path)
- {
- struct stat stat;
- if (::stat(path.characters(), &stat) < 0)
- return s_file_icon;
- return icon_for_path(path, stat.st_mode);
- }
- Icon FileIconProvider::icon_for_executable(String const& path)
- {
- static HashMap<String, Icon> app_icon_cache;
- if (auto it = app_icon_cache.find(path); it != app_icon_cache.end())
- return it->value;
- initialize_executable_icon_if_needed();
- // If the icon for an app isn't in the cache we attempt to load the file as an ELF image and extract
- // the serenity_app_icon_* sections which should contain the icons as raw PNG data. In the future it would
- // be better if the binary signalled the image format being used or we deduced it, e.g. using magic bytes.
- auto file_or_error = Core::MappedFile::map(path);
- if (file_or_error.is_error()) {
- app_icon_cache.set(path, s_executable_icon);
- return s_executable_icon;
- }
- auto& mapped_file = file_or_error.value();
- if (mapped_file->size() < SELFMAG) {
- app_icon_cache.set(path, s_executable_icon);
- return s_executable_icon;
- }
- if (memcmp(mapped_file->data(), ELFMAG, SELFMAG) != 0) {
- app_icon_cache.set(path, s_executable_icon);
- return s_executable_icon;
- }
- auto image = ELF::Image((u8 const*)mapped_file->data(), mapped_file->size());
- if (!image.is_valid()) {
- app_icon_cache.set(path, s_executable_icon);
- return s_executable_icon;
- }
- // If any of the required sections are missing then use the defaults
- Icon icon;
- struct IconSection {
- char const* section_name;
- int image_size;
- };
- static constexpr Array<IconSection, 2> icon_sections = {
- IconSection { .section_name = "serenity_icon_s", .image_size = 16 },
- IconSection { .section_name = "serenity_icon_m", .image_size = 32 }
- };
- bool had_error = false;
- for (auto const& icon_section : icon_sections) {
- auto section = image.lookup_section(icon_section.section_name);
- RefPtr<Gfx::Bitmap> bitmap;
- if (!section.has_value()) {
- bitmap = s_executable_icon.bitmap_for_size(icon_section.image_size);
- } else {
- // FIXME: Use the ImageDecoder service.
- auto frame_or_error = Gfx::PNGImageDecoderPlugin(reinterpret_cast<u8 const*>(section->raw_data()), section->size()).frame(0);
- if (!frame_or_error.is_error()) {
- bitmap = frame_or_error.value().image;
- }
- }
- if (!bitmap) {
- dbgln("Failed to find embedded icon and failed to clone default icon for application {} at icon size {}", path, icon_section.image_size);
- had_error = true;
- continue;
- }
- icon.set_bitmap_for_size(icon_section.image_size, std::move(bitmap));
- }
- if (had_error) {
- app_icon_cache.set(path, s_executable_icon);
- return s_executable_icon;
- }
- app_icon_cache.set(path, icon);
- return icon;
- }
- Icon FileIconProvider::icon_for_path(String const& path, mode_t mode)
- {
- initialize_if_needed();
- if (path == "/")
- return s_hard_disk_icon;
- if (S_ISDIR(mode)) {
- if (path == Core::StandardPaths::home_directory())
- return s_home_directory_icon;
- if (path == Core::StandardPaths::desktop_directory())
- return s_desktop_directory_icon;
- if (access(path.characters(), R_OK | X_OK) < 0)
- return s_inaccessible_directory_icon;
- return s_directory_icon;
- }
- if (S_ISLNK(mode)) {
- auto raw_symlink_target_or_error = Core::File::read_link(path);
- if (raw_symlink_target_or_error.is_error())
- return s_symlink_icon;
- auto raw_symlink_target = raw_symlink_target_or_error.release_value();
- if (raw_symlink_target.is_null())
- return s_symlink_icon;
- String target_path;
- if (raw_symlink_target.starts_with('/')) {
- target_path = raw_symlink_target;
- } else {
- target_path = Core::File::real_path_for(String::formatted("{}/{}", LexicalPath::dirname(path), raw_symlink_target));
- }
- auto target_icon = icon_for_path(target_path);
- Icon generated_icon;
- for (auto size : target_icon.sizes()) {
- auto& emblem = size < 32 ? *s_symlink_emblem_small : *s_symlink_emblem;
- auto original_bitmap = target_icon.bitmap_for_size(size);
- VERIFY(original_bitmap);
- auto generated_bitmap_or_error = original_bitmap->clone();
- if (generated_bitmap_or_error.is_error()) {
- dbgln("Failed to clone {}x{} icon for symlink variant", size, size);
- return s_symlink_icon;
- }
- auto generated_bitmap = generated_bitmap_or_error.release_value_but_fixme_should_propagate_errors();
- GUI::Painter painter(*generated_bitmap);
- painter.blit({ size - emblem.width(), size - emblem.height() }, emblem, emblem.rect());
- generated_icon.set_bitmap_for_size(size, move(generated_bitmap));
- }
- return generated_icon;
- }
- if (S_ISSOCK(mode))
- return s_socket_icon;
- if (mode & (S_IXUSR | S_IXGRP | S_IXOTH))
- return icon_for_executable(path);
- if (Gfx::Bitmap::is_path_a_supported_image_format(path.view()))
- return s_filetype_image_icon;
- for (auto& filetype : s_filetype_icons.keys()) {
- auto pattern_it = s_filetype_patterns.find(filetype);
- if (pattern_it == s_filetype_patterns.end())
- continue;
- for (auto& pattern : pattern_it->value) {
- if (path.matches(pattern, CaseSensitivity::CaseInsensitive))
- return s_filetype_icons.get(filetype).value();
- }
- }
- return s_file_icon;
- }
- }
|