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