1
1
mirror of https://github.com/mawww/kakoune.git synced 2024-12-18 17:02:06 +03:00
kakoune/src/file.hh

91 lines
2.1 KiB
C++
Raw Normal View History

2011-09-02 20:51:20 +04:00
#ifndef file_hh_INCLUDED
#define file_hh_INCLUDED
#include "array_view.hh"
#include "flags.hh"
2016-11-29 02:53:50 +03:00
#include "units.hh"
#include "vector.hh"
2011-09-02 20:51:20 +04:00
#include <sys/types.h>
#include <sys/stat.h>
2011-09-09 22:40:59 +04:00
namespace Kakoune
2011-09-02 20:51:20 +04:00
{
class Buffer;
2014-11-13 00:27:07 +03:00
class String;
class StringView;
2016-11-29 02:53:50 +03:00
class Regex;
using CandidateList = Vector<String, MemoryDomain::Completion>;
// 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);
2015-03-12 23:39:34 +03:00
// returns pair { directory, filename }
std::pair<StringView, StringView> split_path(StringView path);
String get_kak_binary_path();
bool fd_readable(int fd);
bool fd_writable(int fd);
String read_fd(int fd, bool text = false);
String read_file(StringView filename, bool text = false);
2015-11-27 02:40:17 +03:00
void write(int fd, StringView data);
struct MappedFile
{
MappedFile(StringView filename);
~MappedFile();
2016-11-29 02:53:50 +03:00
operator StringView() const;
int fd;
const char* data;
struct stat st {};
};
2014-04-18 17:03:08 +04:00
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, ConstArrayView<String> paths);
bool file_exists(StringView filename);
2011-09-02 20:51:20 +04:00
Vector<String> list_files(StringView directory);
void make_directory(StringView dir, mode_t mode);
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);
}
enum class FilenameFlags
{
None = 0,
OnlyDirectories = 1 << 0,
Expand = 1 << 1
};
template<> struct WithBitOps<FilenameFlags> : std::true_type {};
2015-01-09 16:57:21 +03:00
CandidateList complete_filename(StringView prefix, const Regex& ignore_regex,
ByteCount cursor_pos = -1,
FilenameFlags flags = FilenameFlags::None);
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