123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584 |
- /*
- * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are met:
- *
- * 1. Redistributions of source code must retain the above copyright notice, this
- * list of conditions and the following disclaimer.
- *
- * 2. Redistributions in binary form must reproduce the above copyright notice,
- * this list of conditions and the following disclaimer in the documentation
- * and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
- * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
- * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
- * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
- * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
- * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
- #include <AK/LexicalPath.h>
- #include <AK/QuickSort.h>
- #include <AK/StringBuilder.h>
- #include <LibCore/DirIterator.h>
- #include <LibCore/File.h>
- #include <LibCore/StandardPaths.h>
- #include <LibGUI/FileIconProvider.h>
- #include <LibGUI/FileSystemModel.h>
- #include <LibGUI/Painter.h>
- #include <LibGfx/Bitmap.h>
- #include <LibThread/BackgroundAction.h>
- #include <dirent.h>
- #include <grp.h>
- #include <pwd.h>
- #include <stdio.h>
- #include <sys/stat.h>
- #include <unistd.h>
- namespace GUI {
- ModelIndex FileSystemModel::Node::index(const FileSystemModel& model, int column) const
- {
- if (!parent)
- return {};
- for (size_t row = 0; row < parent->children.size(); ++row) {
- if (&parent->children[row] == this)
- return model.create_index(row, column, const_cast<Node*>(this));
- }
- ASSERT_NOT_REACHED();
- }
- bool FileSystemModel::Node::fetch_data(const String& full_path, bool is_root)
- {
- struct stat st;
- int rc;
- if (is_root)
- rc = stat(full_path.characters(), &st);
- else
- rc = lstat(full_path.characters(), &st);
- if (rc < 0) {
- m_error = errno;
- perror("stat/lstat");
- return false;
- }
- size = st.st_size;
- mode = st.st_mode;
- uid = st.st_uid;
- gid = st.st_gid;
- inode = st.st_ino;
- mtime = st.st_mtime;
- if (S_ISLNK(mode)) {
- symlink_target = Core::File::read_link(full_path);
- if (symlink_target.is_null())
- perror("readlink");
- }
- return true;
- }
- void FileSystemModel::Node::traverse_if_needed(const FileSystemModel& model)
- {
- if (!is_directory() || has_traversed)
- return;
- has_traversed = true;
- total_size = 0;
- auto full_path = this->full_path(model);
- Core::DirIterator di(full_path, model.should_show_dotfiles() ? Core::DirIterator::SkipParentAndBaseDir : Core::DirIterator::SkipDots);
- if (di.has_error()) {
- m_error = di.error();
- fprintf(stderr, "DirIterator: %s\n", di.error_string());
- return;
- }
- Vector<String> child_names;
- while (di.has_next()) {
- child_names.append(di.next_path());
- }
- quick_sort(child_names);
- for (auto& name : child_names) {
- String child_path = String::format("%s/%s", full_path.characters(), name.characters());
- NonnullOwnPtr<Node> child = make<Node>();
- bool ok = child->fetch_data(child_path, false);
- if (!ok)
- continue;
- if (model.m_mode == DirectoriesOnly && !S_ISDIR(child->mode))
- continue;
- child->name = name;
- child->parent = this;
- total_size += child->size;
- children.append(move(child));
- }
- if (m_watch_fd >= 0)
- return;
- m_watch_fd = watch_file(full_path.characters(), full_path.length());
- if (m_watch_fd < 0) {
- perror("watch_file");
- return;
- }
- fcntl(m_watch_fd, F_SETFD, FD_CLOEXEC);
- dbg() << "Watching " << full_path << " for changes, m_watch_fd = " << m_watch_fd;
- m_notifier = Core::Notifier::construct(m_watch_fd, Core::Notifier::Event::Read);
- m_notifier->on_ready_to_read = [this, &model] {
- char buffer[32];
- int rc = read(m_notifier->fd(), buffer, sizeof(buffer));
- ASSERT(rc >= 0);
- has_traversed = false;
- mode = 0;
- children.clear();
- reify_if_needed(model);
- const_cast<FileSystemModel&>(model).did_update();
- };
- }
- void FileSystemModel::Node::reify_if_needed(const FileSystemModel& model)
- {
- traverse_if_needed(model);
- if (mode != 0)
- return;
- fetch_data(full_path(model), parent == nullptr);
- }
- String FileSystemModel::Node::full_path(const FileSystemModel& model) const
- {
- Vector<String, 32> lineage;
- for (auto* ancestor = parent; ancestor; ancestor = ancestor->parent) {
- lineage.append(ancestor->name);
- }
- StringBuilder builder;
- builder.append(model.root_path());
- for (int i = lineage.size() - 1; i >= 0; --i) {
- builder.append('/');
- builder.append(lineage[i]);
- }
- builder.append('/');
- builder.append(name);
- return LexicalPath::canonicalized_path(builder.to_string());
- }
- ModelIndex FileSystemModel::index(const StringView& path, int column) const
- {
- LexicalPath lexical_path(path);
- const Node* node = m_root;
- if (lexical_path.string() == "/")
- return m_root->index(*this, column);
- for (size_t i = 0; i < lexical_path.parts().size(); ++i) {
- auto& part = lexical_path.parts()[i];
- bool found = false;
- for (auto& child : node->children) {
- if (child.name == part) {
- const_cast<Node&>(child).reify_if_needed(*this);
- node = &child;
- found = true;
- if (i == lexical_path.parts().size() - 1)
- return child.index(*this, column);
- break;
- }
- }
- if (!found)
- return {};
- }
- return {};
- }
- String FileSystemModel::full_path(const ModelIndex& index) const
- {
- auto& node = this->node(index);
- const_cast<Node&>(node).reify_if_needed(*this);
- return node.full_path(*this);
- }
- FileSystemModel::FileSystemModel(const StringView& root_path, Mode mode)
- : m_root_path(LexicalPath::canonicalized_path(root_path))
- , m_mode(mode)
- {
- setpwent();
- while (auto* passwd = getpwent())
- m_user_names.set(passwd->pw_uid, passwd->pw_name);
- endpwent();
- setgrent();
- while (auto* group = getgrent())
- m_group_names.set(group->gr_gid, group->gr_name);
- endgrent();
- update();
- }
- FileSystemModel::~FileSystemModel()
- {
- }
- String FileSystemModel::name_for_uid(uid_t uid) const
- {
- auto it = m_user_names.find(uid);
- if (it == m_user_names.end())
- return String::number(uid);
- return (*it).value;
- }
- String FileSystemModel::name_for_gid(gid_t gid) const
- {
- auto it = m_group_names.find(gid);
- if (it == m_group_names.end())
- return String::number(gid);
- return (*it).value;
- }
- static String permission_string(mode_t mode)
- {
- StringBuilder builder;
- if (S_ISDIR(mode))
- builder.append("d");
- else if (S_ISLNK(mode))
- builder.append("l");
- else if (S_ISBLK(mode))
- builder.append("b");
- else if (S_ISCHR(mode))
- builder.append("c");
- else if (S_ISFIFO(mode))
- builder.append("f");
- else if (S_ISSOCK(mode))
- builder.append("s");
- else if (S_ISREG(mode))
- builder.append("-");
- else
- builder.append("?");
- builder.appendf("%c%c%c%c%c%c%c%c",
- mode & S_IRUSR ? 'r' : '-',
- mode & S_IWUSR ? 'w' : '-',
- mode & S_ISUID ? 's' : (mode & S_IXUSR ? 'x' : '-'),
- mode & S_IRGRP ? 'r' : '-',
- mode & S_IWGRP ? 'w' : '-',
- mode & S_ISGID ? 's' : (mode & S_IXGRP ? 'x' : '-'),
- mode & S_IROTH ? 'r' : '-',
- mode & S_IWOTH ? 'w' : '-');
- if (mode & S_ISVTX)
- builder.append("t");
- else
- builder.appendf("%c", mode & S_IXOTH ? 'x' : '-');
- return builder.to_string();
- }
- void FileSystemModel::Node::set_selected(bool selected)
- {
- if (m_selected == selected)
- return;
- m_selected = selected;
- }
- void FileSystemModel::update_node_on_selection(const ModelIndex& index, const bool selected)
- {
- Node& node = const_cast<Node&>(this->node(index));
- node.set_selected(selected);
- }
- void FileSystemModel::set_root_path(const StringView& root_path)
- {
- m_root_path = LexicalPath::canonicalized_path(root_path);
- update();
- if (m_root->has_error()) {
- if (on_error)
- on_error(m_root->error(), m_root->error_string());
- } else if (on_complete) {
- on_complete();
- }
- }
- void FileSystemModel::update()
- {
- m_root = make<Node>();
- m_root->reify_if_needed(*this);
- did_update();
- }
- int FileSystemModel::row_count(const ModelIndex& index) const
- {
- Node& node = const_cast<Node&>(this->node(index));
- node.reify_if_needed(*this);
- if (node.is_directory())
- return node.children.size();
- return 0;
- }
- const FileSystemModel::Node& FileSystemModel::node(const ModelIndex& index) const
- {
- if (!index.is_valid())
- return *m_root;
- ASSERT(index.internal_data());
- return *(Node*)index.internal_data();
- }
- ModelIndex FileSystemModel::index(int row, int column, const ModelIndex& parent) const
- {
- if (row < 0 || column < 0)
- return {};
- auto& node = this->node(parent);
- const_cast<Node&>(node).reify_if_needed(*this);
- if (static_cast<size_t>(row) >= node.children.size())
- return {};
- return create_index(row, column, &node.children[row]);
- }
- ModelIndex FileSystemModel::parent_index(const ModelIndex& index) const
- {
- if (!index.is_valid())
- return {};
- auto& node = this->node(index);
- if (!node.parent) {
- ASSERT(&node == m_root);
- return {};
- }
- return node.parent->index(*this, index.column());
- }
- Variant FileSystemModel::data(const ModelIndex& index, Role role) const
- {
- ASSERT(index.is_valid());
- if (role == Role::TextAlignment) {
- switch (index.column()) {
- case Column::Icon:
- return Gfx::TextAlignment::Center;
- case Column::Size:
- case Column::Inode:
- return Gfx::TextAlignment::CenterRight;
- case Column::Name:
- case Column::Owner:
- case Column::Group:
- case Column::ModificationTime:
- case Column::Permissions:
- case Column::SymlinkTarget:
- return Gfx::TextAlignment::CenterLeft;
- default:
- ASSERT_NOT_REACHED();
- }
- }
- auto& node = this->node(index);
- if (role == Role::Custom) {
- // For GUI::FileSystemModel, custom role means the full path.
- ASSERT(index.column() == Column::Name);
- return node.full_path(*this);
- }
- if (role == Role::DragData) {
- if (index.column() == Column::Name) {
- StringBuilder builder;
- builder.append("file://");
- builder.append(node.full_path(*this));
- return builder.to_string();
- }
- return {};
- }
- if (role == Role::Sort) {
- switch (index.column()) {
- case Column::Icon:
- return node.is_directory() ? 0 : 1;
- case Column::Name:
- return node.name;
- case Column::Size:
- return (int)node.size;
- case Column::Owner:
- return name_for_uid(node.uid);
- case Column::Group:
- return name_for_gid(node.gid);
- case Column::Permissions:
- return permission_string(node.mode);
- case Column::ModificationTime:
- return node.mtime;
- case Column::Inode:
- return (int)node.inode;
- case Column::SymlinkTarget:
- return node.symlink_target;
- }
- ASSERT_NOT_REACHED();
- }
- if (role == Role::Display) {
- switch (index.column()) {
- case Column::Icon:
- return icon_for(node);
- case Column::Name:
- return node.name;
- case Column::Size:
- return (int)node.size;
- case Column::Owner:
- return name_for_uid(node.uid);
- case Column::Group:
- return name_for_gid(node.gid);
- case Column::Permissions:
- return permission_string(node.mode);
- case Column::ModificationTime:
- return timestamp_string(node.mtime);
- case Column::Inode:
- return (int)node.inode;
- case Column::SymlinkTarget:
- return node.symlink_target;
- }
- }
- if (role == Role::Icon) {
- return icon_for(node);
- }
- return {};
- }
- Icon FileSystemModel::icon_for(const Node& node) const
- {
- if (Gfx::Bitmap::is_path_a_supported_image_format(node.name.to_lowercase())) {
- if (!node.thumbnail) {
- if (!const_cast<FileSystemModel*>(this)->fetch_thumbnail_for(node))
- return FileIconProvider::filetype_image_icon();
- }
- return GUI::Icon(FileIconProvider::filetype_image_icon().bitmap_for_size(16), *node.thumbnail);
- }
- if (node.is_directory()) {
- if (node.full_path(*this) == Core::StandardPaths::home_directory()) {
- if (node.is_selected())
- return FileIconProvider::home_directory_open_icon();
- return FileIconProvider::home_directory_icon();
- }
- if (node.is_selected())
- return FileIconProvider::directory_open_icon();
- }
- return FileIconProvider::icon_for_path(node.name, node.mode);
- }
- static HashMap<String, RefPtr<Gfx::Bitmap>> s_thumbnail_cache;
- static RefPtr<Gfx::Bitmap> render_thumbnail(const StringView& path)
- {
- auto png_bitmap = Gfx::Bitmap::load_from_file(path);
- if (!png_bitmap)
- return nullptr;
- double scale = min(32 / (double)png_bitmap->width(), 32 / (double)png_bitmap->height());
- auto thumbnail = Gfx::Bitmap::create(png_bitmap->format(), { 32, 32 });
- Gfx::IntRect destination = Gfx::IntRect(0, 0, (int)(png_bitmap->width() * scale), (int)(png_bitmap->height() * scale));
- destination.center_within(thumbnail->rect());
- Painter painter(*thumbnail);
- painter.draw_scaled_bitmap(destination, *png_bitmap, png_bitmap->rect());
- return thumbnail;
- }
- bool FileSystemModel::fetch_thumbnail_for(const Node& node)
- {
- // See if we already have the thumbnail
- // we're looking for in the cache.
- auto path = node.full_path(*this);
- auto it = s_thumbnail_cache.find(path);
- if (it != s_thumbnail_cache.end()) {
- if (!(*it).value)
- return false;
- node.thumbnail = (*it).value;
- return true;
- }
- // Otherwise, arrange to render the thumbnail
- // in background and make it available later.
- s_thumbnail_cache.set(path, nullptr);
- m_thumbnail_progress_total++;
- auto weak_this = make_weak_ptr();
- LibThread::BackgroundAction<RefPtr<Gfx::Bitmap>>::create(
- [path] {
- return render_thumbnail(path);
- },
- [this, path, weak_this](auto thumbnail) {
- s_thumbnail_cache.set(path, move(thumbnail));
- // The model was destroyed, no need to update
- // progress or call any event handlers.
- if (weak_this.is_null())
- return;
- m_thumbnail_progress++;
- if (on_thumbnail_progress)
- on_thumbnail_progress(m_thumbnail_progress, m_thumbnail_progress_total);
- if (m_thumbnail_progress == m_thumbnail_progress_total) {
- m_thumbnail_progress = 0;
- m_thumbnail_progress_total = 0;
- }
- did_update();
- });
- return false;
- }
- int FileSystemModel::column_count(const ModelIndex&) const
- {
- return Column::__Count;
- }
- String FileSystemModel::column_name(int column) const
- {
- switch (column) {
- case Column::Icon:
- return "";
- case Column::Name:
- return "Name";
- case Column::Size:
- return "Size";
- case Column::Owner:
- return "Owner";
- case Column::Group:
- return "Group";
- case Column::Permissions:
- return "Mode";
- case Column::ModificationTime:
- return "Modified";
- case Column::Inode:
- return "Inode";
- case Column::SymlinkTarget:
- return "Symlink target";
- }
- ASSERT_NOT_REACHED();
- }
- bool FileSystemModel::accepts_drag(const ModelIndex& index, const StringView& data_type)
- {
- if (!index.is_valid())
- return false;
- if (data_type != "text/uri-list")
- return false;
- auto& node = this->node(index);
- return node.is_directory();
- }
- void FileSystemModel::set_should_show_dotfiles(bool show)
- {
- if (m_should_show_dotfiles == show)
- return;
- m_should_show_dotfiles = show;
- update();
- }
- }
|