51 lines
1.5 KiB
C++
51 lines
1.5 KiB
C++
/*
|
|
* Copyright (c) 2021, timmot <tiwwot@protonmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <FileSystemAccessServer/FileSystemAccessClientEndpoint.h>
|
|
#include <FileSystemAccessServer/FileSystemAccessServerEndpoint.h>
|
|
#include <LibCore/File.h>
|
|
#include <LibCore/Promise.h>
|
|
#include <LibCore/StandardPaths.h>
|
|
#include <LibIPC/ServerConnection.h>
|
|
|
|
namespace FileSystemAccessClient {
|
|
|
|
struct Result {
|
|
i32 error;
|
|
Optional<i32> fd;
|
|
Optional<String> chosen_file;
|
|
};
|
|
|
|
class Client final
|
|
: public IPC::ServerConnection<FileSystemAccessClientEndpoint, FileSystemAccessServerEndpoint>
|
|
, public FileSystemAccessClientEndpoint {
|
|
C_OBJECT(Client)
|
|
|
|
public:
|
|
Result request_file_read_only_approved(i32 parent_window_id, String const& path);
|
|
Result request_file(i32 parent_window_id, String const& path, Core::OpenMode mode);
|
|
Result open_file(i32 parent_window_id, String const& window_title = {}, StringView path = Core::StandardPaths::home_directory());
|
|
Result save_file(i32 parent_window_id, String const& name, String const ext);
|
|
|
|
static Client& the();
|
|
|
|
protected:
|
|
void die() override;
|
|
|
|
private:
|
|
explicit Client()
|
|
: IPC::ServerConnection<FileSystemAccessClientEndpoint, FileSystemAccessServerEndpoint>(*this, "/tmp/portal/filesystemaccess")
|
|
{
|
|
}
|
|
|
|
virtual void handle_prompt_end(i32 error, Optional<IPC::File> const& fd, Optional<String> const& chosen_file) override;
|
|
|
|
RefPtr<Core::Promise<Result>> m_promise;
|
|
};
|
|
|
|
}
|