2011-09-02 18:51:20 +02:00
|
|
|
#ifndef file_hh_INCLUDED
|
|
|
|
#define file_hh_INCLUDED
|
|
|
|
|
2012-04-14 03:17:09 +02:00
|
|
|
#include "string.hh"
|
2011-09-09 20:40:59 +02:00
|
|
|
#include "exception.hh"
|
2011-09-02 18:51:20 +02:00
|
|
|
|
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)
|
|
|
|
: runtime_error(filename + ": "_str + 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;
|
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
|
|
|
|
2014-08-15 14:21:54 +02:00
|
|
|
String read_fd(int fd);
|
2014-04-18 15:03:08 +02:00
|
|
|
String read_file(StringView filename);
|
2014-08-15 14:21:54 +02:00
|
|
|
|
2013-03-22 14:27:30 +01:00
|
|
|
Buffer* create_buffer_from_file(String filename);
|
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-04-18 15:03:08 +02:00
|
|
|
String find_file(StringView filename, memoryview<String> paths);
|
2011-09-02 18:51:20 +02:00
|
|
|
|
2014-04-18 15:03:08 +02:00
|
|
|
time_t get_fs_timestamp(StringView filename);
|
2013-10-15 19:51:31 +02:00
|
|
|
|
2014-04-18 15:02:14 +02:00
|
|
|
std::vector<String> complete_filename(StringView prefix,
|
2013-03-14 13:42:07 +01:00
|
|
|
const Regex& ignore_regex,
|
2013-03-13 19:01:59 +01:00
|
|
|
ByteCount cursor_pos = -1);
|
2013-12-23 21:43:55 +01:00
|
|
|
|
2014-04-18 15:02:14 +02:00
|
|
|
std::vector<String> complete_command(StringView prefix,
|
|
|
|
ByteCount cursor_pos = -1);
|
2011-09-02 18:51:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif // file_hh_INCLUDED
|