kakoune/src/file.hh

41 lines
1.1 KiB
C++
Raw Normal View History

2011-09-02 18:51:20 +02:00
#ifndef file_hh_INCLUDED
#define file_hh_INCLUDED
#include "string.hh"
2011-09-02 18:51:20 +02:00
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-09 20:40:59 +02:00
public:
file_access_error(const String& filename,
const String& error_desc)
2011-09-09 20:40:59 +02:00
: runtime_error(filename + ": " + error_desc) {}
};
2011-09-09 20:40:59 +02:00
struct file_not_found : file_access_error
2011-09-02 18:51:20 +02:00
{
file_not_found(const String& 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;
// parse ~/ and $env values in filename and returns the translated filename
String parse_filename(const String& filename);
String read_file(const String& filename);
Buffer* create_buffer_from_file(const String& filename);
void write_buffer_to_file(const Buffer& buffer, const String& filename);
2013-02-27 19:58:38 +01:00
String find_file(const String& filename, const memoryview<String>& paths);
2011-09-02 18:51:20 +02:00
2013-03-13 19:01:59 +01:00
std::vector<String> complete_filename(const String& prefix,
const Regex& ignore_regex,
2013-03-13 19:01:59 +01:00
ByteCount cursor_pos = -1);
2011-09-02 18:51:20 +02:00
}
#endif // file_hh_INCLUDED