mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-11-04 07:10:57 +00:00 
			
		
		
		
	This commit un-deprecates DeprecatedString, and repurposes it as a byte
string.
As the null state has already been removed, there are no other
particularly hairy blockers in repurposing this type as a byte string
(what it _really_ is).
This commit is auto-generated:
  $ xs=$(ack -l \bDeprecatedString\b\|deprecated_string AK Userland \
    Meta Ports Ladybird Tests Kernel)
  $ perl -pie 's/\bDeprecatedString\b/ByteString/g;
    s/deprecated_string/byte_string/g' $xs
  $ clang-format --style=file -i \
    $(git diff --name-only | grep \.cpp\|\.h)
  $ gn format $(git ls-files '*.gn' '*.gni')
		
	
			
		
			
				
	
	
		
			187 lines
		
	
	
	
		
			5.9 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			187 lines
		
	
	
	
		
			5.9 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
/*
 | 
						|
 * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
 | 
						|
 * Copyright (c) 2022, the SerenityOS developers.
 | 
						|
 *
 | 
						|
 * SPDX-License-Identifier: BSD-2-Clause
 | 
						|
 */
 | 
						|
 | 
						|
#pragma once
 | 
						|
 | 
						|
#include <AK/HashMap.h>
 | 
						|
#include <LibCore/DateTime.h>
 | 
						|
#include <LibCore/ElapsedTimer.h>
 | 
						|
#include <LibCore/FileWatcher.h>
 | 
						|
#include <LibGUI/Model.h>
 | 
						|
#include <string.h>
 | 
						|
#include <sys/stat.h>
 | 
						|
#include <time.h>
 | 
						|
 | 
						|
namespace GUI {
 | 
						|
 | 
						|
class FileSystemModel
 | 
						|
    : public Model
 | 
						|
    , public Weakable<FileSystemModel> {
 | 
						|
    friend struct Node;
 | 
						|
 | 
						|
public:
 | 
						|
    enum Mode {
 | 
						|
        Invalid,
 | 
						|
        DirectoriesOnly,
 | 
						|
        FilesAndDirectories
 | 
						|
    };
 | 
						|
 | 
						|
    enum Column {
 | 
						|
        Icon = 0,
 | 
						|
        Name,
 | 
						|
        Size,
 | 
						|
        User,
 | 
						|
        Group,
 | 
						|
        Permissions,
 | 
						|
        ModificationTime,
 | 
						|
        Inode,
 | 
						|
        SymlinkTarget,
 | 
						|
        __Count,
 | 
						|
    };
 | 
						|
 | 
						|
    struct Node {
 | 
						|
        ~Node() = default;
 | 
						|
 | 
						|
        ByteString name;
 | 
						|
        ByteString symlink_target;
 | 
						|
        size_t size { 0 };
 | 
						|
        mode_t mode { 0 };
 | 
						|
        uid_t uid { 0 };
 | 
						|
        gid_t gid { 0 };
 | 
						|
        ino_t inode { 0 };
 | 
						|
        time_t mtime { 0 };
 | 
						|
        bool is_accessible_directory { false };
 | 
						|
 | 
						|
        size_t total_size { 0 };
 | 
						|
 | 
						|
        mutable RefPtr<Gfx::Bitmap> thumbnail;
 | 
						|
        bool is_directory() const { return S_ISDIR(mode); }
 | 
						|
        bool is_symlink_to_directory() const;
 | 
						|
        bool is_executable() const { return mode & (S_IXUSR | S_IXGRP | S_IXOTH); }
 | 
						|
 | 
						|
        bool is_selected() const { return m_selected; }
 | 
						|
        void set_selected(bool selected);
 | 
						|
 | 
						|
        bool has_error() const { return m_error != 0; }
 | 
						|
        int error() const { return m_error; }
 | 
						|
        char const* error_string() const { return strerror(m_error); }
 | 
						|
 | 
						|
        bool can_delete_or_move() const;
 | 
						|
 | 
						|
        ByteString full_path() const;
 | 
						|
 | 
						|
    private:
 | 
						|
        friend class FileSystemModel;
 | 
						|
 | 
						|
        explicit Node(FileSystemModel& model)
 | 
						|
            : m_model(model)
 | 
						|
        {
 | 
						|
        }
 | 
						|
 | 
						|
        FileSystemModel& m_model;
 | 
						|
 | 
						|
        Node* m_parent { nullptr };
 | 
						|
        Vector<NonnullOwnPtr<Node>> m_children;
 | 
						|
        mutable Optional<bool> m_can_delete_or_move;
 | 
						|
        bool m_has_traversed { false };
 | 
						|
 | 
						|
        bool m_selected { false };
 | 
						|
 | 
						|
        int m_error { 0 };
 | 
						|
        bool m_parent_of_root { false };
 | 
						|
 | 
						|
        ModelIndex index(int column) const;
 | 
						|
        void traverse_if_needed();
 | 
						|
        void reify_if_needed();
 | 
						|
        bool fetch_data(ByteString const& full_path, bool is_root);
 | 
						|
 | 
						|
        OwnPtr<Node> create_child(ByteString const& child_name);
 | 
						|
    };
 | 
						|
 | 
						|
    static NonnullRefPtr<FileSystemModel> create(Optional<ByteString> root_path = "/", Mode mode = Mode::FilesAndDirectories)
 | 
						|
    {
 | 
						|
        return adopt_ref(*new FileSystemModel(root_path, mode));
 | 
						|
    }
 | 
						|
    virtual ~FileSystemModel() override = default;
 | 
						|
 | 
						|
    ByteString root_path() const { return m_root_path.value_or(""); }
 | 
						|
    void set_root_path(Optional<ByteString>);
 | 
						|
    ByteString full_path(ModelIndex const&) const;
 | 
						|
    ModelIndex index(ByteString path, int column) const;
 | 
						|
 | 
						|
    void update_node_on_selection(ModelIndex const&, bool const);
 | 
						|
    ModelIndex m_previously_selected_index {};
 | 
						|
 | 
						|
    Node const& node(ModelIndex const& index) const;
 | 
						|
 | 
						|
    Function<void(int done, int total)> on_thumbnail_progress;
 | 
						|
    Function<void()> on_complete;
 | 
						|
    Function<void(int error, char const* error_string)> on_directory_change_error;
 | 
						|
    Function<void(int error, char const* error_string)> on_rename_error;
 | 
						|
    Function<void(ByteString const& old_name, ByteString const& new_name)> on_rename_successful;
 | 
						|
    Function<void()> on_root_path_removed;
 | 
						|
 | 
						|
    virtual int tree_column() const override { return Column::Name; }
 | 
						|
    virtual int row_count(ModelIndex const& = ModelIndex()) const override;
 | 
						|
    virtual int column_count(ModelIndex const& = ModelIndex()) const override;
 | 
						|
    virtual ErrorOr<String> column_name(int) const override;
 | 
						|
    virtual Variant data(ModelIndex const&, ModelRole = ModelRole::Display) const override;
 | 
						|
    virtual ModelIndex parent_index(ModelIndex const&) const override;
 | 
						|
    virtual ModelIndex index(int row, int column = 0, ModelIndex const& parent = ModelIndex()) const override;
 | 
						|
    virtual StringView drag_data_type() const override { return "text/uri-list"sv; }
 | 
						|
    virtual bool accepts_drag(ModelIndex const&, Vector<String> const& mime_types) const override;
 | 
						|
    virtual bool is_column_sortable(int column_index) const override { return column_index != Column::Icon; }
 | 
						|
    virtual bool is_editable(ModelIndex const&) const override;
 | 
						|
    virtual bool is_searchable() const override { return true; }
 | 
						|
    virtual void set_data(ModelIndex const&, Variant const&) override;
 | 
						|
    virtual Vector<ModelIndex> matches(StringView, unsigned = MatchesFlag::AllMatching, ModelIndex const& = ModelIndex()) override;
 | 
						|
    virtual void invalidate() override;
 | 
						|
 | 
						|
    static ByteString timestamp_string(time_t timestamp)
 | 
						|
    {
 | 
						|
        return Core::DateTime::from_timestamp(timestamp).to_byte_string();
 | 
						|
    }
 | 
						|
 | 
						|
    bool should_show_dotfiles() const { return m_should_show_dotfiles; }
 | 
						|
    void set_should_show_dotfiles(bool);
 | 
						|
 | 
						|
    Optional<Vector<ByteString>> allowed_file_extensions() const { return m_allowed_file_extensions; }
 | 
						|
    void set_allowed_file_extensions(Optional<Vector<ByteString>> const& allowed_file_extensions);
 | 
						|
 | 
						|
private:
 | 
						|
    FileSystemModel(Optional<ByteString> root_path, Mode);
 | 
						|
 | 
						|
    ByteString name_for_uid(uid_t) const;
 | 
						|
    ByteString name_for_gid(gid_t) const;
 | 
						|
 | 
						|
    Optional<Node const&> node_for_path(ByteString const&) const;
 | 
						|
 | 
						|
    HashMap<uid_t, ByteString> m_user_names;
 | 
						|
    HashMap<gid_t, ByteString> m_group_names;
 | 
						|
 | 
						|
    bool fetch_thumbnail_for(Node const& node);
 | 
						|
    GUI::Icon icon_for(Node const& node) const;
 | 
						|
 | 
						|
    void handle_file_event(Core::FileWatcherEvent const& event);
 | 
						|
 | 
						|
    Optional<ByteString> m_root_path;
 | 
						|
    Mode m_mode { Invalid };
 | 
						|
    OwnPtr<Node> m_root { nullptr };
 | 
						|
 | 
						|
    unsigned m_thumbnail_progress { 0 };
 | 
						|
    unsigned m_thumbnail_progress_total { 0 };
 | 
						|
 | 
						|
    Core::ElapsedTimer m_ui_update_timer;
 | 
						|
 | 
						|
    Optional<Vector<ByteString>> m_allowed_file_extensions;
 | 
						|
 | 
						|
    bool m_should_show_dotfiles { false };
 | 
						|
 | 
						|
    RefPtr<Core::FileWatcher> m_file_watcher;
 | 
						|
};
 | 
						|
 | 
						|
}
 |