2023-01-05 12:25:55 +00:00
|
|
|
/**************************************************************************/
|
|
|
|
/* dir_access_unix.h */
|
|
|
|
/**************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
|
|
|
/* https://godotengine.org */
|
|
|
|
/**************************************************************************/
|
|
|
|
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
|
|
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* */
|
|
|
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
|
|
|
/* a copy of this software and associated documentation files (the */
|
|
|
|
/* "Software"), to deal in the Software without restriction, including */
|
|
|
|
/* without limitation the rights to use, copy, modify, merge, publish, */
|
|
|
|
/* distribute, sublicense, and/or sell copies of the Software, and to */
|
|
|
|
/* permit persons to whom the Software is furnished to do so, subject to */
|
|
|
|
/* the following conditions: */
|
|
|
|
/* */
|
|
|
|
/* The above copyright notice and this permission notice shall be */
|
|
|
|
/* included in all copies or substantial portions of the Software. */
|
|
|
|
/* */
|
|
|
|
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
|
|
|
|
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
|
|
|
|
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
|
|
|
|
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
|
|
|
|
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
|
|
|
|
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
|
|
|
|
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
|
|
|
/**************************************************************************/
|
2018-01-04 23:50:27 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
#ifndef DIR_ACCESS_UNIX_H
|
|
|
|
#define DIR_ACCESS_UNIX_H
|
|
|
|
|
2022-10-03 09:43:20 +00:00
|
|
|
#if defined(UNIX_ENABLED)
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2021-06-11 12:51:48 +00:00
|
|
|
#include "core/io/dir_access.h"
|
2018-09-11 16:13:45 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
#include <dirent.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
class DirAccessUnix : public DirAccess {
|
2022-04-04 13:06:57 +00:00
|
|
|
DIR *dir_stream = nullptr;
|
2017-03-05 15:44:50 +00:00
|
|
|
|
2022-05-02 14:28:25 +00:00
|
|
|
bool _cisdir = false;
|
|
|
|
bool _cishidden = false;
|
2016-06-18 14:12:08 +00:00
|
|
|
|
|
|
|
protected:
|
2021-07-11 01:39:31 +00:00
|
|
|
String current_dir;
|
2016-06-18 14:12:08 +00:00
|
|
|
virtual String fix_unicode_name(const char *p_name) const { return String::utf8(p_name); }
|
2020-09-28 06:06:36 +00:00
|
|
|
virtual bool is_hidden(const String &p_name);
|
2016-06-18 14:12:08 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
public:
|
2021-05-25 07:55:54 +00:00
|
|
|
virtual Error list_dir_begin() override; ///< This starts dir listing
|
|
|
|
virtual String get_next() override;
|
|
|
|
virtual bool current_is_dir() const override;
|
|
|
|
virtual bool current_is_hidden() const override;
|
2017-03-05 15:44:50 +00:00
|
|
|
|
2021-05-25 07:55:54 +00:00
|
|
|
virtual void list_dir_end() override; ///<
|
2017-03-05 15:44:50 +00:00
|
|
|
|
2021-05-25 07:55:54 +00:00
|
|
|
virtual int get_drive_count() override;
|
|
|
|
virtual String get_drive(int p_drive) override;
|
|
|
|
virtual int get_current_drive() override;
|
|
|
|
virtual bool drives_are_shortcuts() override;
|
2017-03-05 15:44:50 +00:00
|
|
|
|
2021-05-25 07:55:54 +00:00
|
|
|
virtual Error change_dir(String p_dir) override; ///< can be relative or absolute, return false on success
|
|
|
|
virtual String get_current_dir(bool p_include_drive = true) const override; ///< return current dir location
|
|
|
|
virtual Error make_dir(String p_dir) override;
|
2017-03-05 15:44:50 +00:00
|
|
|
|
2021-05-25 07:55:54 +00:00
|
|
|
virtual bool file_exists(String p_file) override;
|
|
|
|
virtual bool dir_exists(String p_dir) override;
|
|
|
|
virtual bool is_readable(String p_dir) override;
|
|
|
|
virtual bool is_writable(String p_dir) override;
|
2014-05-25 03:34:51 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
virtual uint64_t get_modified_time(String p_file);
|
|
|
|
|
2021-05-25 07:55:54 +00:00
|
|
|
virtual Error rename(String p_path, String p_new_path) override;
|
|
|
|
virtual Error remove(String p_path) override;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2021-05-25 07:55:54 +00:00
|
|
|
virtual bool is_link(String p_file) override;
|
|
|
|
virtual String read_link(String p_file) override;
|
|
|
|
virtual Error create_link(String p_source, String p_target) override;
|
2021-03-10 10:55:31 +00:00
|
|
|
|
2021-05-25 07:55:54 +00:00
|
|
|
virtual uint64_t get_space_left() override;
|
2017-03-05 15:44:50 +00:00
|
|
|
|
2021-05-25 07:55:54 +00:00
|
|
|
virtual String get_filesystem_type() const override;
|
2019-01-21 18:23:08 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
DirAccessUnix();
|
|
|
|
~DirAccessUnix();
|
|
|
|
};
|
|
|
|
|
2022-10-03 09:43:20 +00:00
|
|
|
#endif // UNIX_ENABLED
|
2022-07-23 21:41:51 +00:00
|
|
|
|
|
|
|
#endif // DIR_ACCESS_UNIX_H
|