2014-04-28 20:48:23 +02:00
|
|
|
#include "buffer_utils.hh"
|
|
|
|
|
2014-08-15 14:21:54 +02:00
|
|
|
#include "buffer_manager.hh"
|
2014-04-29 22:37:11 +02:00
|
|
|
#include "event_manager.hh"
|
|
|
|
|
2014-10-13 14:12:33 +02:00
|
|
|
#include <unistd.h>
|
2014-05-15 20:11:59 +02:00
|
|
|
#include <sys/select.h>
|
|
|
|
|
2014-04-28 20:48:23 +02:00
|
|
|
namespace Kakoune
|
|
|
|
{
|
|
|
|
|
|
|
|
CharCount get_column(const Buffer& buffer,
|
2014-05-07 20:51:01 +02:00
|
|
|
CharCount tabstop, ByteCoord coord)
|
2014-04-28 20:48:23 +02:00
|
|
|
{
|
2014-10-03 14:39:13 +02:00
|
|
|
auto line = buffer[coord.line];
|
2014-04-28 20:48:23 +02:00
|
|
|
auto col = 0_char;
|
|
|
|
for (auto it = line.begin();
|
|
|
|
it != line.end() and coord.column > (int)(it - line.begin());
|
2014-07-02 22:14:01 +02:00
|
|
|
it = utf8::next(it, line.end()))
|
2014-04-28 20:48:23 +02:00
|
|
|
{
|
|
|
|
if (*it == '\t')
|
|
|
|
col = (col / tabstop + 1) * tabstop;
|
|
|
|
else
|
|
|
|
++col;
|
|
|
|
}
|
|
|
|
return col;
|
|
|
|
}
|
|
|
|
|
2014-08-15 14:21:54 +02:00
|
|
|
Buffer* create_buffer_from_data(StringView data, StringView name,
|
|
|
|
Buffer::Flags flags, time_t fs_timestamp)
|
|
|
|
{
|
|
|
|
bool bom = false, crlf = false;
|
|
|
|
|
|
|
|
const char* pos = data.begin();
|
|
|
|
if (data.length() >= 3 and
|
|
|
|
data[0] == '\xEF' and data[1] == '\xBB' and data[2] == '\xBF')
|
|
|
|
{
|
|
|
|
bom = true;
|
|
|
|
pos = data.begin() + 3;
|
|
|
|
}
|
|
|
|
|
2015-01-12 14:58:41 +01:00
|
|
|
Vector<String> lines;
|
2014-08-15 14:21:54 +02:00
|
|
|
while (pos < data.end())
|
|
|
|
{
|
|
|
|
const char* line_end = pos;
|
|
|
|
while (line_end < data.end() and *line_end != '\r' and *line_end != '\n')
|
|
|
|
++line_end;
|
|
|
|
|
|
|
|
// this should happen only when opening a file which has no
|
|
|
|
// end of line as last character.
|
|
|
|
if (line_end == data.end())
|
|
|
|
{
|
|
|
|
lines.emplace_back(pos, line_end);
|
|
|
|
lines.back() += '\n';
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
lines.emplace_back(pos, line_end + 1);
|
|
|
|
lines.back().back() = '\n';
|
|
|
|
|
|
|
|
if (line_end+1 != data.end() and *line_end == '\r' and *(line_end+1) == '\n')
|
|
|
|
{
|
|
|
|
crlf = true;
|
|
|
|
pos = line_end + 2;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
pos = line_end + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
Buffer* buffer = BufferManager::instance().get_buffer_ifp(name);
|
|
|
|
if (buffer)
|
|
|
|
buffer->reload(std::move(lines), fs_timestamp);
|
|
|
|
else
|
|
|
|
buffer = new Buffer{name, flags, std::move(lines), fs_timestamp};
|
|
|
|
|
|
|
|
OptionManager& options = buffer->options();
|
|
|
|
options.get_local_option("eolformat").set<String>(crlf ? "crlf" : "lf");
|
|
|
|
options.get_local_option("BOM").set<String>(bom ? "utf-8" : "no");
|
|
|
|
|
|
|
|
return buffer;
|
|
|
|
}
|
|
|
|
|
2014-05-02 19:58:04 +02:00
|
|
|
Buffer* create_fifo_buffer(String name, int fd, bool scroll)
|
2014-04-29 22:37:11 +02:00
|
|
|
{
|
2014-11-04 14:55:56 +01:00
|
|
|
static ValueId s_fifo_watcher_id = ValueId::get_free_id();
|
2014-04-29 22:37:11 +02:00
|
|
|
|
2014-11-04 14:55:56 +01:00
|
|
|
Buffer* buffer = BufferManager::instance().get_buffer_ifp(name);
|
|
|
|
if (buffer)
|
|
|
|
{
|
|
|
|
buffer->flags() |= Buffer::Flags::NoUndo;
|
2015-01-12 14:58:41 +01:00
|
|
|
buffer->reload(Vector<String>({"\n"_str}), 0);
|
2014-11-04 14:55:56 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
buffer = new Buffer(std::move(name), Buffer::Flags::Fifo | Buffer::Flags::NoUndo);
|
|
|
|
|
|
|
|
auto watcher_deleter = [buffer](FDWatcher* watcher) {
|
|
|
|
kak_assert(buffer->flags() & Buffer::Flags::Fifo);
|
2014-12-03 14:56:02 +01:00
|
|
|
watcher->close_fd();
|
2014-11-04 14:55:56 +01:00
|
|
|
buffer->run_hook_in_own_context("BufCloseFifo", "");
|
|
|
|
buffer->flags() &= ~Buffer::Flags::Fifo;
|
|
|
|
watcher->~FDWatcher();
|
|
|
|
};
|
|
|
|
|
|
|
|
// capture a non static one to silence a warning.
|
|
|
|
ValueId fifo_watcher_id = s_fifo_watcher_id;
|
|
|
|
|
|
|
|
std::unique_ptr<FDWatcher, decltype(watcher_deleter)> watcher(
|
2014-11-25 02:00:18 +01:00
|
|
|
new FDWatcher(fd, [buffer, scroll, fifo_watcher_id](FDWatcher& watcher, EventMode mode) {
|
|
|
|
if (mode != EventMode::Normal)
|
|
|
|
return;
|
|
|
|
|
2014-05-15 20:11:59 +02:00
|
|
|
constexpr size_t buffer_size = 2048;
|
2014-08-26 23:11:23 +02:00
|
|
|
// if we read data slower than it arrives in the fifo, limiting the
|
|
|
|
// iteration number allows us to go back go back to the event loop and
|
|
|
|
// handle other events sources (such as input)
|
|
|
|
size_t loops = 16;
|
2014-04-29 22:37:11 +02:00
|
|
|
char data[buffer_size];
|
2014-05-15 20:11:59 +02:00
|
|
|
const int fifo = watcher.fd();
|
|
|
|
timeval tv{ 0, 0 };
|
|
|
|
fd_set rfds;
|
|
|
|
ssize_t count = 0;
|
|
|
|
do
|
|
|
|
{
|
|
|
|
count = read(fifo, data, buffer_size);
|
|
|
|
auto pos = buffer->end()-1;
|
2014-05-02 19:58:04 +02:00
|
|
|
|
2014-05-15 20:11:59 +02:00
|
|
|
bool prevent_scrolling = pos == buffer->begin() and not scroll;
|
|
|
|
if (prevent_scrolling)
|
|
|
|
++pos;
|
2014-05-02 19:58:04 +02:00
|
|
|
|
2014-07-07 21:13:33 +02:00
|
|
|
buffer->insert(pos, String(data, data+count));
|
2014-05-02 19:58:04 +02:00
|
|
|
|
2014-06-30 19:56:18 +02:00
|
|
|
if (count > 0 and prevent_scrolling)
|
2014-05-15 20:11:59 +02:00
|
|
|
{
|
|
|
|
buffer->erase(buffer->begin(), buffer->begin()+1);
|
2014-06-30 19:56:18 +02:00
|
|
|
// in the other case, the buffer will have automatically
|
|
|
|
// inserted a \n to guarantee its invariant.
|
|
|
|
if (data[count-1] == '\n')
|
|
|
|
buffer->insert(buffer->end(), "\n");
|
2014-05-15 20:11:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
FD_ZERO(&rfds);
|
|
|
|
FD_SET(fifo, &rfds);
|
2014-05-02 19:58:04 +02:00
|
|
|
}
|
2014-08-26 23:11:23 +02:00
|
|
|
while (--loops and count > 0 and
|
|
|
|
select(fifo+1, &rfds, nullptr, nullptr, &tv) == 1);
|
2014-05-02 19:58:04 +02:00
|
|
|
|
2014-04-29 22:37:11 +02:00
|
|
|
if (count <= 0)
|
2014-11-04 14:55:56 +01:00
|
|
|
buffer->values().erase(fifo_watcher_id); // will delete this
|
|
|
|
}), std::move(watcher_deleter));
|
2014-04-29 22:37:11 +02:00
|
|
|
|
2014-11-04 14:55:56 +01:00
|
|
|
buffer->values()[fifo_watcher_id] = Value(std::move(watcher));
|
|
|
|
buffer->flags() = Buffer::Flags::Fifo | Buffer::Flags::NoUndo;
|
2014-04-29 22:37:11 +02:00
|
|
|
|
|
|
|
return buffer;
|
|
|
|
}
|
|
|
|
|
2014-04-28 20:48:23 +02:00
|
|
|
}
|