2011-09-02 18:51:20 +02:00
|
|
|
#include "file.hh"
|
2011-09-09 20:40:59 +02:00
|
|
|
|
2011-09-02 18:51:20 +02:00
|
|
|
#include "buffer.hh"
|
2011-09-09 20:40:59 +02:00
|
|
|
#include "buffer_manager.hh"
|
2011-09-09 21:24:18 +02:00
|
|
|
#include "assert.hh"
|
2012-10-11 00:41:48 +02:00
|
|
|
#include "unicode.hh"
|
2013-03-13 19:01:59 +01:00
|
|
|
#include "debug.hh"
|
|
|
|
#include "completion.hh"
|
2012-10-11 00:41:48 +02:00
|
|
|
|
2011-09-02 18:51:20 +02:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
2012-11-23 18:43:10 +01:00
|
|
|
#include <sys/mman.h>
|
2011-09-02 18:51:20 +02:00
|
|
|
#include <fcntl.h>
|
2012-05-30 14:19:53 +02:00
|
|
|
#include <unistd.h>
|
2013-03-13 19:01:59 +01:00
|
|
|
#include <dirent.h>
|
2011-09-02 18:51:20 +02:00
|
|
|
|
|
|
|
namespace Kakoune
|
|
|
|
{
|
|
|
|
|
2012-04-14 03:17:09 +02:00
|
|
|
String parse_filename(const String& filename)
|
2012-01-29 23:24:43 +01:00
|
|
|
{
|
2012-09-12 19:42:12 +02:00
|
|
|
if (filename.length() >= 2 and filename[0] == '~' and filename[1] == '/')
|
2012-10-11 00:41:48 +02:00
|
|
|
return parse_filename("$HOME/" + filename.substr(2_byte));
|
2012-01-29 23:24:43 +01:00
|
|
|
|
2012-10-11 00:41:48 +02:00
|
|
|
ByteCount pos = 0;
|
2012-04-14 03:17:09 +02:00
|
|
|
String result;
|
2012-10-11 00:41:48 +02:00
|
|
|
for (ByteCount i = 0; i < filename.length(); ++i)
|
2012-01-29 23:24:43 +01:00
|
|
|
{
|
|
|
|
if (filename[i] == '$' and (i == 0 or filename[i-1] != '\\'))
|
|
|
|
{
|
|
|
|
result += filename.substr(pos, i - pos);
|
2012-10-11 00:41:48 +02:00
|
|
|
ByteCount end = i+1;
|
|
|
|
while (end != filename.length() and is_word(filename[end]))
|
2012-01-29 23:24:43 +01:00
|
|
|
++end;
|
2012-04-14 03:17:09 +02:00
|
|
|
String var_name = filename.substr(i+1, end - i - 1);
|
2012-01-29 23:24:43 +01:00
|
|
|
const char* var_value = getenv(var_name.c_str());
|
|
|
|
if (var_value)
|
|
|
|
result += var_value;
|
|
|
|
|
|
|
|
pos = end;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (pos != filename.length())
|
|
|
|
result += filename.substr(pos);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2012-04-14 03:17:09 +02:00
|
|
|
String read_file(const String& filename)
|
2011-12-22 14:33:29 +01:00
|
|
|
{
|
2012-09-12 19:42:12 +02:00
|
|
|
int fd = open(parse_filename(filename).c_str(), O_RDONLY);
|
2011-09-02 18:51:20 +02:00
|
|
|
if (fd == -1)
|
2011-09-02 20:01:20 +02:00
|
|
|
{
|
|
|
|
if (errno == ENOENT)
|
2011-09-09 20:40:59 +02:00
|
|
|
throw file_not_found(filename);
|
2011-09-02 20:01:20 +02:00
|
|
|
|
2011-09-09 20:40:59 +02:00
|
|
|
throw file_access_error(filename, strerror(errno));
|
2011-09-02 20:01:20 +02:00
|
|
|
}
|
2012-11-20 18:52:36 +01:00
|
|
|
auto close_fd = on_scope_end([fd]{ close(fd); });
|
2011-09-02 18:51:20 +02:00
|
|
|
|
2012-04-14 03:17:09 +02:00
|
|
|
String content;
|
2011-09-02 18:51:20 +02:00
|
|
|
char buf[256];
|
|
|
|
while (true)
|
|
|
|
{
|
|
|
|
ssize_t size = read(fd, buf, 256);
|
|
|
|
if (size == -1 or size == 0)
|
|
|
|
break;
|
|
|
|
|
2012-04-14 03:17:09 +02:00
|
|
|
content += String(buf, buf + size);
|
2011-09-02 18:51:20 +02:00
|
|
|
}
|
2011-11-27 13:56:38 +01:00
|
|
|
return content;
|
|
|
|
}
|
|
|
|
|
2012-04-14 03:17:09 +02:00
|
|
|
Buffer* create_buffer_from_file(const String& filename)
|
2011-11-27 13:56:38 +01:00
|
|
|
{
|
2012-09-12 19:42:12 +02:00
|
|
|
int fd = open(parse_filename(filename).c_str(), O_RDONLY);
|
2012-08-10 14:24:13 +02:00
|
|
|
if (fd == -1)
|
|
|
|
{
|
|
|
|
if (errno == ENOENT)
|
2012-10-16 14:59:39 +02:00
|
|
|
return nullptr;
|
2012-08-10 14:24:13 +02:00
|
|
|
|
|
|
|
throw file_access_error(filename, strerror(errno));
|
|
|
|
}
|
2012-11-23 18:43:10 +01:00
|
|
|
struct stat st;
|
|
|
|
fstat(fd, &st);
|
2012-12-05 13:59:08 +01:00
|
|
|
if (S_ISDIR(st.st_mode))
|
|
|
|
{
|
|
|
|
close(fd);
|
|
|
|
throw file_access_error(filename, "is a directory");
|
|
|
|
}
|
2012-11-23 18:43:10 +01:00
|
|
|
const char* data = (const char*)mmap(nullptr, st.st_size, PROT_READ, MAP_PRIVATE, fd, 0);
|
|
|
|
auto cleanup = on_scope_end([&]{ munmap((void*)data, st.st_size); close(fd); });
|
2012-08-10 14:24:13 +02:00
|
|
|
|
2013-03-21 19:09:31 +01:00
|
|
|
if (Buffer* buffer = BufferManager::instance().get_buffer_ifp(filename))
|
2012-08-17 18:52:04 +02:00
|
|
|
delete buffer;
|
|
|
|
|
2012-11-23 18:43:10 +01:00
|
|
|
const char* pos = data;
|
2012-08-10 14:24:13 +02:00
|
|
|
bool crlf = false;
|
2012-08-10 18:48:21 +02:00
|
|
|
bool bom = false;
|
2012-11-23 18:43:10 +01:00
|
|
|
if (st.st_size >= 3 and
|
|
|
|
data[0] == '\xEF' and data[1] == '\xBB' and data[2] == '\xBF')
|
2012-08-10 14:24:13 +02:00
|
|
|
{
|
2012-11-23 18:43:10 +01:00
|
|
|
bom = true;
|
|
|
|
pos = data + 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<String> lines;
|
|
|
|
const char* end = data + st.st_size;
|
|
|
|
while (pos < end)
|
|
|
|
{
|
|
|
|
const char* line_end = pos;
|
|
|
|
while (line_end < end and *line_end != '\r' and *line_end != '\n')
|
|
|
|
++line_end;
|
2012-08-10 14:24:13 +02:00
|
|
|
|
2012-11-23 18:43:10 +01:00
|
|
|
// this should happen only when opening a file which has no
|
|
|
|
// end of line as last character.
|
|
|
|
if (line_end == end)
|
2012-08-10 18:48:21 +02:00
|
|
|
{
|
2012-11-23 18:43:10 +01:00
|
|
|
lines.emplace_back(pos, line_end);
|
|
|
|
lines.back() += '\n';
|
|
|
|
break;
|
2012-08-10 18:48:21 +02:00
|
|
|
}
|
|
|
|
|
2012-11-23 18:43:10 +01:00
|
|
|
lines.emplace_back(pos, line_end + 1);
|
|
|
|
lines.back().back() = '\n';
|
|
|
|
|
2012-11-26 13:36:43 +01:00
|
|
|
if (line_end+1 != end and *line_end == '\r' and *(line_end+1) == '\n')
|
2012-08-10 14:24:13 +02:00
|
|
|
{
|
2012-11-23 18:43:10 +01:00
|
|
|
crlf = true;
|
|
|
|
pos = line_end + 2;
|
2012-08-10 14:24:13 +02:00
|
|
|
}
|
2012-11-23 18:43:10 +01:00
|
|
|
else
|
|
|
|
pos = line_end + 1;
|
2012-08-10 14:24:13 +02:00
|
|
|
}
|
2012-11-23 18:43:10 +01:00
|
|
|
Buffer* buffer = new Buffer(filename, Buffer::Flags::File, std::move(lines));
|
2012-08-10 14:24:13 +02:00
|
|
|
|
2012-11-22 13:50:29 +01:00
|
|
|
OptionManager& options = buffer->options();
|
2013-03-03 17:25:40 +01:00
|
|
|
options.get_local_option("eolformat").set<String>(crlf ? "crlf" : "lf");
|
|
|
|
options.get_local_option("BOM").set<String>(bom ? "utf-8" : "no");
|
2012-08-10 14:24:13 +02:00
|
|
|
|
|
|
|
return buffer;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void write(int fd, const memoryview<char>& data, const String& filename)
|
|
|
|
{
|
|
|
|
const char* ptr = data.pointer();
|
|
|
|
ssize_t count = data.size();
|
|
|
|
|
|
|
|
while (count)
|
|
|
|
{
|
|
|
|
ssize_t written = ::write(fd, ptr, count);
|
|
|
|
ptr += written;
|
|
|
|
count -= written;
|
|
|
|
|
|
|
|
if (written == -1)
|
|
|
|
throw file_access_error(filename, strerror(errno));
|
|
|
|
}
|
2011-09-02 18:51:20 +02:00
|
|
|
}
|
|
|
|
|
2012-04-14 03:17:09 +02:00
|
|
|
void write_buffer_to_file(const Buffer& buffer, const String& filename)
|
2011-09-02 18:51:20 +02:00
|
|
|
{
|
2013-03-03 17:25:40 +01:00
|
|
|
String eolformat = buffer.options()["eolformat"].get<String>();
|
2012-08-10 14:24:13 +02:00
|
|
|
if (eolformat == "crlf")
|
|
|
|
eolformat = "\r\n";
|
|
|
|
else
|
|
|
|
eolformat = "\n";
|
|
|
|
auto eoldata = eolformat.data();
|
|
|
|
|
2012-09-12 19:42:12 +02:00
|
|
|
int fd = open(parse_filename(filename).c_str(),
|
|
|
|
O_CREAT | O_WRONLY | O_TRUNC, 0644);
|
2011-09-02 18:51:20 +02:00
|
|
|
if (fd == -1)
|
2011-09-09 20:40:59 +02:00
|
|
|
throw file_access_error(filename, strerror(errno));
|
2012-11-20 18:52:36 +01:00
|
|
|
auto close_fd = on_scope_end([fd]{ close(fd); });
|
2011-09-02 18:51:20 +02:00
|
|
|
|
2013-03-03 17:25:40 +01:00
|
|
|
if (buffer.options()["BOM"].get<String>() == "utf-8")
|
2012-08-10 18:48:21 +02:00
|
|
|
::write(fd, "\xEF\xBB\xBF", 3);
|
|
|
|
|
2012-08-22 23:33:52 +02:00
|
|
|
for (LineCount i = 0; i < buffer.line_count(); ++i)
|
2011-09-02 18:51:20 +02:00
|
|
|
{
|
2012-08-10 14:24:13 +02:00
|
|
|
// end of lines are written according to eolformat but always
|
|
|
|
// stored as \n
|
|
|
|
memoryview<char> linedata = buffer.line_content(i).data();
|
|
|
|
write(fd, linedata.subrange(0, linedata.size()-1), filename);
|
|
|
|
write(fd, eoldata, filename);
|
2011-09-02 18:51:20 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-27 19:58:38 +01:00
|
|
|
String find_file(const String& filename, const memoryview<String>& paths)
|
|
|
|
{
|
2013-03-13 18:52:08 +01:00
|
|
|
for (auto candidate : paths)
|
2013-02-27 19:58:38 +01:00
|
|
|
{
|
2013-03-13 18:52:08 +01:00
|
|
|
if (not candidate.empty() and candidate.back() != '/')
|
|
|
|
candidate += '/';
|
|
|
|
candidate += filename;
|
2013-02-27 19:58:38 +01:00
|
|
|
struct stat buf;
|
|
|
|
if (stat(candidate.c_str(), &buf) == 0 and S_ISREG(buf.st_mode))
|
|
|
|
return candidate;
|
|
|
|
}
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
2013-03-13 19:01:59 +01:00
|
|
|
static boost::regex make_regex_ifp(const String& ex)
|
|
|
|
{
|
|
|
|
boost::regex result;
|
|
|
|
if (not ex.empty())
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
result = boost::regex(ex.c_str());
|
|
|
|
}
|
|
|
|
catch(boost::regex_error& err)
|
|
|
|
{
|
|
|
|
write_debug(err.what());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<String> complete_filename(const String& prefix,
|
2013-03-14 13:42:07 +01:00
|
|
|
const Regex& ignored_regex,
|
2013-03-13 19:01:59 +01:00
|
|
|
ByteCount cursor_pos)
|
|
|
|
{
|
|
|
|
String real_prefix = parse_filename(prefix.substr(0, cursor_pos));
|
|
|
|
String dirname = "./";
|
|
|
|
String dirprefix;
|
|
|
|
String fileprefix = real_prefix;
|
|
|
|
|
|
|
|
ByteCount dir_end = -1;
|
|
|
|
for (ByteCount i = 0; i < real_prefix.length(); ++i)
|
|
|
|
{
|
|
|
|
if (real_prefix[i] == '/')
|
|
|
|
dir_end = i;
|
|
|
|
}
|
|
|
|
if (dir_end != -1)
|
|
|
|
{
|
|
|
|
dirname = real_prefix.substr(0, dir_end + 1);
|
|
|
|
dirprefix = dirname;
|
|
|
|
fileprefix = real_prefix.substr(dir_end + 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
DIR* dir = opendir(dirname.c_str());
|
|
|
|
auto closeDir = on_scope_end([=]{ closedir(dir); });
|
|
|
|
|
|
|
|
std::vector<String> result;
|
|
|
|
if (not dir)
|
|
|
|
return result;
|
|
|
|
|
2013-03-14 13:42:07 +01:00
|
|
|
const bool check_ignored_regex = not ignored_regex.empty() and
|
|
|
|
not boost::regex_match(fileprefix.c_str(), ignored_regex);
|
2013-03-13 19:01:59 +01:00
|
|
|
|
|
|
|
boost::regex file_regex = make_regex_ifp(fileprefix);
|
|
|
|
std::vector<String> regex_result;
|
|
|
|
while (dirent* entry = readdir(dir))
|
|
|
|
{
|
|
|
|
String filename = entry->d_name;
|
|
|
|
if (filename.empty())
|
|
|
|
continue;
|
|
|
|
|
2013-03-14 13:42:07 +01:00
|
|
|
if (check_ignored_regex and boost::regex_match(filename.c_str(), ignored_regex))
|
2013-03-13 19:01:59 +01:00
|
|
|
continue;
|
|
|
|
|
|
|
|
const bool match_prefix = (filename.substr(0, fileprefix.length()) == fileprefix);
|
|
|
|
const bool match_regex = not file_regex.empty() and
|
|
|
|
boost::regex_match(filename.c_str(), file_regex);
|
|
|
|
|
|
|
|
if (match_prefix or match_regex)
|
|
|
|
{
|
|
|
|
String name = dirprefix + filename;
|
|
|
|
if (entry->d_type == DT_DIR)
|
|
|
|
name += '/';
|
|
|
|
if (fileprefix.length() != 0 or filename[0] != '.')
|
|
|
|
{
|
|
|
|
if (match_prefix)
|
|
|
|
result.push_back(escape(name));
|
|
|
|
if (match_regex)
|
|
|
|
regex_result.push_back(escape(name));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
auto& real_result = result.empty() ? regex_result : result;
|
|
|
|
std::sort(real_result.begin(), real_result.end());
|
|
|
|
return real_result;
|
|
|
|
}
|
|
|
|
|
2011-09-02 18:51:20 +02:00
|
|
|
}
|