2011-09-02 18:51:20 +02:00
|
|
|
#ifndef file_hh_INCLUDED
|
|
|
|
#define file_hh_INCLUDED
|
|
|
|
|
2015-03-09 14:48:41 +01:00
|
|
|
#include "array_view.hh"
|
2015-01-09 14:57:21 +01:00
|
|
|
#include "completion.hh"
|
2011-09-09 20:40:59 +02:00
|
|
|
#include "exception.hh"
|
2014-10-13 14:12:33 +02:00
|
|
|
#include "regex.hh"
|
2011-09-02 18:51:20 +02:00
|
|
|
|
2015-10-16 02:33:17 +02:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
|
2011-09-09 20:40:59 +02:00
|
|
|
namespace Kakoune
|
2011-09-02 18:51:20 +02:00
|
|
|
{
|
|
|
|
|
2011-09-09 20:40:59 +02:00
|
|
|
struct file_access_error : runtime_error
|
2011-09-02 20:01:20 +02:00
|
|
|
{
|
2011-09-09 20:40:59 +02:00
|
|
|
public:
|
2014-04-18 15:03:08 +02:00
|
|
|
file_access_error(StringView filename,
|
|
|
|
StringView error_desc)
|
2015-06-01 22:15:59 +02:00
|
|
|
: runtime_error(format("{}: {}", filename, error_desc)) {}
|
2011-09-02 20:01:20 +02:00
|
|
|
};
|
|
|
|
|
2011-09-09 20:40:59 +02:00
|
|
|
struct file_not_found : file_access_error
|
2011-09-02 18:51:20 +02:00
|
|
|
{
|
2014-04-18 15:03:08 +02:00
|
|
|
file_not_found(StringView filename)
|
2011-09-09 20:40:59 +02:00
|
|
|
: file_access_error(filename, "file not found") {}
|
2011-09-02 18:51:20 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
class Buffer;
|
2014-11-12 22:27:07 +01:00
|
|
|
class String;
|
|
|
|
class StringView;
|
2012-01-29 23:24:43 +01:00
|
|
|
|
|
|
|
// parse ~/ and $env values in filename and returns the translated filename
|
2014-04-18 15:03:08 +02:00
|
|
|
String parse_filename(StringView filename);
|
|
|
|
String real_path(StringView filename);
|
|
|
|
String compact_path(StringView filename);
|
2012-01-29 23:24:43 +01:00
|
|
|
|
2015-03-12 21:39:34 +01:00
|
|
|
// returns pair { directory, filename }
|
|
|
|
std::pair<StringView, StringView> split_path(StringView path);
|
|
|
|
|
2014-10-30 01:50:40 +01:00
|
|
|
String get_kak_binary_path();
|
|
|
|
|
2015-06-05 14:52:56 +02:00
|
|
|
String read_fd(int fd, bool text = false);
|
|
|
|
String read_file(StringView filename, bool text = false);
|
2014-08-15 14:21:54 +02:00
|
|
|
|
2015-10-16 02:33:17 +02:00
|
|
|
struct MappedFile
|
|
|
|
{
|
|
|
|
MappedFile(StringView filename);
|
|
|
|
~MappedFile();
|
2015-10-16 14:58:56 +02:00
|
|
|
|
|
|
|
operator StringView() const { return { data, (int)st.st_size }; }
|
|
|
|
|
|
|
|
int fd;
|
|
|
|
const char* data;
|
|
|
|
struct stat st {};
|
2015-10-16 02:33:17 +02:00
|
|
|
};
|
2014-08-15 14:21:54 +02:00
|
|
|
|
2014-04-18 15:03:08 +02:00
|
|
|
void write_buffer_to_file(Buffer& buffer, StringView filename);
|
2014-08-15 14:21:54 +02:00
|
|
|
void write_buffer_to_fd(Buffer& buffer, int fd);
|
2014-10-13 14:38:28 +02:00
|
|
|
void write_buffer_to_backup_file(Buffer& buffer);
|
2014-08-15 14:21:54 +02:00
|
|
|
|
2015-03-09 14:48:41 +01:00
|
|
|
String find_file(StringView filename, ConstArrayView<String> paths);
|
2015-10-16 14:58:56 +02:00
|
|
|
bool file_exists(StringView filename);
|
2011-09-02 18:51:20 +02:00
|
|
|
|
2015-08-23 15:22:23 +02:00
|
|
|
Vector<String> list_files(StringView directory);
|
|
|
|
|
2015-08-23 15:13:46 +02:00
|
|
|
void make_directory(StringView dir);
|
|
|
|
|
2015-09-27 12:55:34 +02:00
|
|
|
timespec get_fs_timestamp(StringView filename);
|
|
|
|
|
|
|
|
constexpr bool operator==(const timespec& lhs, const timespec& rhs)
|
|
|
|
{
|
|
|
|
return lhs.tv_sec == rhs.tv_sec and lhs.tv_nsec == rhs.tv_nsec;
|
|
|
|
}
|
|
|
|
|
|
|
|
constexpr bool operator!=(const timespec& lhs, const timespec& rhs)
|
|
|
|
{
|
|
|
|
return not (lhs == rhs);
|
|
|
|
}
|
2013-10-15 19:51:31 +02:00
|
|
|
|
2015-01-09 14:57:21 +01:00
|
|
|
CandidateList complete_filename(StringView prefix, const Regex& ignore_regex,
|
|
|
|
ByteCount cursor_pos = -1);
|
2013-12-23 21:43:55 +01:00
|
|
|
|
2015-01-09 14:57:21 +01:00
|
|
|
CandidateList complete_command(StringView prefix, ByteCount cursor_pos = -1);
|
2015-06-16 00:00:37 +02:00
|
|
|
|
2011-09-02 18:51:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif // file_hh_INCLUDED
|