kakoune/src/file.cc

68 lines
1.5 KiB
C++
Raw Normal View History

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"
2011-09-02 18:51:20 +02:00
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <cstring>
2011-09-09 21:24:18 +02:00
2011-09-02 18:51:20 +02:00
namespace Kakoune
{
Buffer* create_buffer_from_file(const std::string& filename)
{
int fd = open(filename.c_str(), O_RDONLY);
if (fd == -1)
{
if (errno == ENOENT)
2011-09-09 20:40:59 +02:00
throw file_not_found(filename);
2011-09-09 20:40:59 +02:00
throw file_access_error(filename, strerror(errno));
}
2011-09-02 18:51:20 +02:00
std::string content;
char buf[256];
while (true)
{
ssize_t size = read(fd, buf, 256);
if (size == -1 or size == 0)
break;
content += std::string(buf, size);
}
close(fd);
2011-09-09 20:40:59 +02:00
if (Buffer* buffer = BufferManager::instance().get_buffer(filename))
BufferManager::instance().delete_buffer(buffer);
return new Buffer(filename, content);
2011-09-02 18:51:20 +02:00
}
void write_buffer_to_file(const Buffer& buffer, const std::string& filename)
{
2011-10-03 20:40:12 +02:00
int fd = open(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));
2011-09-02 18:51:20 +02:00
const BufferString& content = buffer.content();
ssize_t count = content.length() * sizeof(BufferChar);
const char* ptr = content.c_str();
while (count)
{
ssize_t written = write(fd, ptr, count);
ptr += written;
count -= written;
if (written == -1)
2011-09-09 20:40:59 +02:00
throw file_access_error(filename, strerror(errno));
2011-09-02 18:51:20 +02:00
}
close(fd);
}
}