kakoune/src/file.hh
Maxime Coste 8649371ff2 Add kak binary location to PATH env var automatically
That way the kak binary can be guaranteed to be available even
if not in user PATH.
2014-10-30 14:02:13 +00:00

56 lines
1.4 KiB
C++

#ifndef file_hh_INCLUDED
#define file_hh_INCLUDED
#include "exception.hh"
#include "string.hh"
#include "regex.hh"
namespace Kakoune
{
struct file_access_error : runtime_error
{
public:
file_access_error(StringView filename,
StringView error_desc)
: runtime_error(filename + ": "_str + error_desc) {}
};
struct file_not_found : file_access_error
{
file_not_found(StringView filename)
: file_access_error(filename, "file not found") {}
};
class Buffer;
// parse ~/ and $env values in filename and returns the translated filename
String parse_filename(StringView filename);
String real_path(StringView filename);
String compact_path(StringView filename);
String get_kak_binary_path();
String read_fd(int fd);
String read_file(StringView filename);
Buffer* create_buffer_from_file(String filename);
void write_buffer_to_file(Buffer& buffer, StringView filename);
void write_buffer_to_fd(Buffer& buffer, int fd);
void write_buffer_to_backup_file(Buffer& buffer);
String find_file(StringView filename, memoryview<String> paths);
time_t get_fs_timestamp(StringView filename);
std::vector<String> complete_filename(StringView prefix,
const Regex& ignore_regex,
ByteCount cursor_pos = -1);
std::vector<String> complete_command(StringView prefix,
ByteCount cursor_pos = -1);
}
#endif // file_hh_INCLUDED