2011-09-02 18:51:20 +02:00
|
|
|
#include "buffer.hh"
|
2011-09-08 02:11:48 +02:00
|
|
|
|
2011-09-09 21:24:18 +02:00
|
|
|
#include "assert.hh"
|
2013-04-09 20:05:40 +02:00
|
|
|
#include "buffer_manager.hh"
|
2014-10-01 01:20:12 +02:00
|
|
|
#include "client.hh"
|
2014-12-23 14:34:21 +01:00
|
|
|
#include "containers.hh"
|
2012-01-23 14:56:43 +01:00
|
|
|
#include "context.hh"
|
2013-03-25 19:58:23 +01:00
|
|
|
#include "file.hh"
|
2014-10-01 01:20:12 +02:00
|
|
|
#include "interned_string.hh"
|
2013-04-09 20:05:40 +02:00
|
|
|
#include "utils.hh"
|
|
|
|
#include "window.hh"
|
2011-09-08 02:11:48 +02:00
|
|
|
|
2012-03-06 15:27:03 +01:00
|
|
|
#include <algorithm>
|
|
|
|
|
2011-09-02 18:51:20 +02:00
|
|
|
namespace Kakoune
|
|
|
|
{
|
|
|
|
|
2013-10-17 19:47:09 +02:00
|
|
|
Buffer::Buffer(String name, Flags flags, std::vector<String> lines,
|
|
|
|
time_t fs_timestamp)
|
2014-10-30 15:00:42 +01:00
|
|
|
: Scope(GlobalScope::instance()),
|
|
|
|
m_name(flags & Flags::File ? real_path(parse_filename(name)) : std::move(name)),
|
2013-11-07 22:42:51 +01:00
|
|
|
m_flags(flags | Flags::NoUndo),
|
2012-11-21 13:37:36 +01:00
|
|
|
m_history(), m_history_cursor(m_history.begin()),
|
2012-04-03 15:39:20 +02:00
|
|
|
m_last_save_undo_index(0),
|
2014-10-30 15:00:42 +01:00
|
|
|
m_fs_timestamp(fs_timestamp)
|
2011-09-02 18:51:20 +02:00
|
|
|
{
|
2012-08-08 19:36:40 +02:00
|
|
|
BufferManager::instance().register_buffer(*this);
|
2014-10-30 15:00:42 +01:00
|
|
|
options().register_watcher(*this);
|
2012-11-23 18:42:07 +01:00
|
|
|
|
2012-11-27 13:39:35 +01:00
|
|
|
if (lines.empty())
|
|
|
|
lines.emplace_back("\n");
|
|
|
|
|
2012-11-23 18:42:07 +01:00
|
|
|
m_lines.reserve(lines.size());
|
|
|
|
for (auto& line : lines)
|
|
|
|
{
|
2013-04-09 20:04:11 +02:00
|
|
|
kak_assert(not line.empty() and line.back() == '\n');
|
2014-05-24 18:08:01 +02:00
|
|
|
m_lines.emplace_back(std::move(line));
|
2012-11-23 18:42:07 +01:00
|
|
|
}
|
2012-08-14 14:13:10 +02:00
|
|
|
|
2014-05-11 14:20:13 +02:00
|
|
|
m_changes.push_back({ Change::Insert, {0,0}, line_count(), true });
|
2014-05-11 13:20:59 +02:00
|
|
|
|
2013-04-12 19:11:28 +02:00
|
|
|
if (flags & Flags::File)
|
|
|
|
{
|
|
|
|
if (flags & Flags::New)
|
2013-12-11 14:57:10 +01:00
|
|
|
run_hook_in_own_context("BufNew", m_name);
|
2013-04-12 19:11:28 +02:00
|
|
|
else
|
2013-10-17 19:47:09 +02:00
|
|
|
{
|
|
|
|
kak_assert(m_fs_timestamp != InvalidTime);
|
2013-12-11 14:57:10 +01:00
|
|
|
run_hook_in_own_context("BufOpen", m_name);
|
2013-10-17 19:47:09 +02:00
|
|
|
}
|
2013-04-12 19:11:28 +02:00
|
|
|
}
|
2012-06-12 20:27:57 +02:00
|
|
|
|
2013-12-11 14:57:10 +01:00
|
|
|
run_hook_in_own_context("BufCreate", m_name);
|
2012-09-11 19:03:37 +02:00
|
|
|
|
2012-11-21 13:43:10 +01:00
|
|
|
// now we may begin to record undo data
|
|
|
|
m_flags = flags;
|
2013-11-12 21:36:42 +01:00
|
|
|
|
2014-10-30 15:00:42 +01:00
|
|
|
for (auto& option : options().flatten_options())
|
2013-11-12 21:36:42 +01:00
|
|
|
on_option_changed(*option);
|
2011-09-02 18:51:20 +02:00
|
|
|
}
|
|
|
|
|
2011-10-24 16:23:13 +02:00
|
|
|
Buffer::~Buffer()
|
|
|
|
{
|
2013-12-11 14:57:10 +01:00
|
|
|
run_hook_in_own_context("BufClose", m_name);
|
2012-08-05 20:12:43 +02:00
|
|
|
|
2014-10-30 15:00:42 +01:00
|
|
|
options().unregister_watcher(*this);
|
2012-08-08 19:36:40 +02:00
|
|
|
BufferManager::instance().unregister_buffer(*this);
|
2014-01-11 20:05:09 +01:00
|
|
|
m_values.clear();
|
2011-10-24 16:23:13 +02:00
|
|
|
}
|
|
|
|
|
2013-03-25 19:58:23 +01:00
|
|
|
String Buffer::display_name() const
|
|
|
|
{
|
|
|
|
if (m_flags & Flags::File)
|
|
|
|
return compact_path(m_name);
|
|
|
|
return m_name;
|
|
|
|
}
|
|
|
|
|
2013-04-22 13:48:18 +02:00
|
|
|
bool Buffer::set_name(String name)
|
|
|
|
{
|
|
|
|
Buffer* other = BufferManager::instance().get_buffer_ifp(name);
|
|
|
|
if (other == nullptr or other == this)
|
|
|
|
{
|
|
|
|
if (m_flags & Flags::File)
|
|
|
|
m_name = real_path(name);
|
|
|
|
else
|
|
|
|
m_name = std::move(name);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-05-07 20:51:01 +02:00
|
|
|
BufferIterator Buffer::iterator_at(ByteCoord coord) const
|
2011-09-02 18:51:20 +02:00
|
|
|
{
|
2013-06-03 18:56:48 +02:00
|
|
|
return is_end(coord) ? end() : BufferIterator(*this, clamp(coord));
|
2011-09-02 18:51:20 +02:00
|
|
|
}
|
|
|
|
|
2014-05-07 20:51:01 +02:00
|
|
|
ByteCoord Buffer::clamp(ByteCoord coord) const
|
2011-09-02 18:51:20 +02:00
|
|
|
{
|
|
|
|
if (m_lines.empty())
|
2014-05-07 20:51:01 +02:00
|
|
|
return ByteCoord{};
|
2011-09-02 18:51:20 +02:00
|
|
|
|
2013-05-30 14:17:19 +02:00
|
|
|
coord.line = Kakoune::clamp(coord.line, 0_line, line_count() - 1);
|
2013-06-05 18:41:02 +02:00
|
|
|
ByteCount max_col = std::max(0_byte, m_lines[coord.line].length() - 1);
|
2013-05-30 14:17:19 +02:00
|
|
|
coord.column = Kakoune::clamp(coord.column, 0_byte, max_col);
|
|
|
|
return coord;
|
2011-09-02 18:51:20 +02:00
|
|
|
}
|
|
|
|
|
2014-05-07 20:51:01 +02:00
|
|
|
ByteCoord Buffer::offset_coord(ByteCoord coord, CharCount offset)
|
2013-12-15 15:14:52 +01:00
|
|
|
{
|
2014-05-24 18:08:01 +02:00
|
|
|
auto& line = m_lines[coord.line];
|
2013-12-15 15:14:52 +01:00
|
|
|
auto character = std::max(0_char, std::min(line.char_count_to(coord.column) + offset,
|
|
|
|
line.char_length() - 1));
|
|
|
|
return {coord.line, line.byte_count_to(character)};
|
|
|
|
}
|
|
|
|
|
2014-09-09 20:35:54 +02:00
|
|
|
ByteCoordAndTarget Buffer::offset_coord(ByteCoordAndTarget coord, LineCount offset)
|
2013-12-15 15:14:52 +01:00
|
|
|
{
|
2014-09-09 20:35:54 +02:00
|
|
|
auto character = coord.target == -1 ? m_lines[coord.line].char_count_to(coord.column) : coord.target;
|
2013-12-15 15:14:52 +01:00
|
|
|
auto line = Kakoune::clamp(coord.line + offset, 0_line, line_count()-1);
|
2014-05-24 18:08:01 +02:00
|
|
|
auto& content = m_lines[line];
|
2013-12-15 15:14:52 +01:00
|
|
|
|
|
|
|
character = std::max(0_char, std::min(character, content.char_length() - 2));
|
2014-09-09 20:35:54 +02:00
|
|
|
return {line, content.byte_count_to(character), character};
|
2013-12-15 15:14:52 +01:00
|
|
|
}
|
|
|
|
|
2014-05-07 20:51:01 +02:00
|
|
|
String Buffer::string(ByteCoord begin, ByteCoord end) const
|
2011-09-02 18:51:20 +02:00
|
|
|
{
|
2012-03-30 13:37:18 +02:00
|
|
|
String res;
|
2013-06-27 23:49:34 +02:00
|
|
|
for (auto line = begin.line; line <= end.line and line < line_count(); ++line)
|
2012-03-30 13:37:18 +02:00
|
|
|
{
|
2013-06-27 23:49:34 +02:00
|
|
|
ByteCount start = 0;
|
|
|
|
if (line == begin.line)
|
|
|
|
start = begin.column;
|
|
|
|
ByteCount count = -1;
|
|
|
|
if (line == end.line)
|
|
|
|
count = end.column - start;
|
2014-05-24 18:08:01 +02:00
|
|
|
res += m_lines[line].substr(start, count);
|
2012-03-30 13:37:18 +02:00
|
|
|
}
|
|
|
|
return res;
|
2011-09-02 18:51:20 +02:00
|
|
|
}
|
|
|
|
|
2012-08-10 19:12:43 +02:00
|
|
|
// A Modification holds a single atomic modification to Buffer
|
|
|
|
struct Buffer::Modification
|
2011-09-06 20:49:32 +02:00
|
|
|
{
|
2012-08-10 19:12:43 +02:00
|
|
|
enum Type { Insert, Erase };
|
|
|
|
|
2014-05-10 17:25:07 +02:00
|
|
|
Type type;
|
2014-05-07 20:51:01 +02:00
|
|
|
ByteCoord coord;
|
2014-10-01 01:20:12 +02:00
|
|
|
InternedString content;
|
2012-08-10 19:12:43 +02:00
|
|
|
|
2014-10-01 01:20:12 +02:00
|
|
|
Modification(Type type, ByteCoord coord, InternedString content)
|
2013-04-26 18:45:24 +02:00
|
|
|
: type(type), coord(coord), content(std::move(content)) {}
|
2012-08-10 19:12:43 +02:00
|
|
|
|
|
|
|
Modification inverse() const
|
2011-09-06 20:49:32 +02:00
|
|
|
{
|
2014-05-10 17:25:07 +02:00
|
|
|
return {type == Insert ? Erase : Insert, coord, content};
|
2011-09-06 20:49:32 +02:00
|
|
|
}
|
2012-08-10 19:12:43 +02:00
|
|
|
};
|
2011-09-06 20:49:32 +02:00
|
|
|
|
2014-10-23 22:04:05 +02:00
|
|
|
void Buffer::reload(std::vector<String> lines, time_t fs_timestamp)
|
|
|
|
{
|
|
|
|
m_changes.push_back({ Change::Erase, {0,0}, back_coord(), true });
|
|
|
|
|
|
|
|
commit_undo_group();
|
|
|
|
if (not (m_flags & Flags::NoUndo))
|
|
|
|
{
|
|
|
|
for (auto line = line_count()-1; line >= 0; --line)
|
|
|
|
m_current_undo_group.emplace_back(
|
|
|
|
Modification::Erase, line, m_lines[line]);
|
|
|
|
}
|
|
|
|
|
|
|
|
m_lines.clear();
|
|
|
|
|
|
|
|
if (lines.empty())
|
|
|
|
lines.emplace_back("\n");
|
|
|
|
|
|
|
|
m_lines.reserve(lines.size());
|
|
|
|
for (auto& line : lines)
|
|
|
|
{
|
|
|
|
kak_assert(not line.empty() and line.back() == '\n');
|
|
|
|
m_lines.emplace_back(std::move(line));
|
|
|
|
if (not (m_flags & Flags::NoUndo))
|
|
|
|
m_current_undo_group.emplace_back(
|
|
|
|
Modification::Insert, line_count()-1, m_lines.back());
|
|
|
|
}
|
|
|
|
commit_undo_group();
|
2014-11-01 20:35:27 +01:00
|
|
|
|
|
|
|
m_last_save_undo_index = m_history_cursor - m_history.begin();
|
2014-10-23 22:04:05 +02:00
|
|
|
m_fs_timestamp = fs_timestamp;
|
|
|
|
|
|
|
|
m_changes.push_back({ Change::Insert, {0,0}, back_coord(), true });
|
|
|
|
}
|
2013-04-25 14:03:55 +02:00
|
|
|
|
|
|
|
void Buffer::commit_undo_group()
|
|
|
|
{
|
|
|
|
if (m_flags & Flags::NoUndo)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (m_current_undo_group.empty())
|
|
|
|
return;
|
|
|
|
|
|
|
|
m_history.erase(m_history_cursor, m_history.end());
|
|
|
|
|
|
|
|
m_history.push_back(std::move(m_current_undo_group));
|
|
|
|
m_current_undo_group.clear();
|
|
|
|
m_history_cursor = m_history.end();
|
|
|
|
|
|
|
|
if (m_history.size() < m_last_save_undo_index)
|
|
|
|
m_last_save_undo_index = -1;
|
|
|
|
}
|
|
|
|
|
2011-09-06 20:49:32 +02:00
|
|
|
bool Buffer::undo()
|
|
|
|
{
|
2013-02-20 14:23:52 +01:00
|
|
|
commit_undo_group();
|
|
|
|
|
2011-09-06 20:49:32 +02:00
|
|
|
if (m_history_cursor == m_history.begin())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
--m_history_cursor;
|
|
|
|
|
2011-12-06 19:58:43 +01:00
|
|
|
for (const Modification& modification : reversed(*m_history_cursor))
|
2011-10-18 02:55:45 +02:00
|
|
|
apply_modification(modification.inverse());
|
2012-06-05 15:33:02 +02:00
|
|
|
return true;
|
2011-09-06 20:49:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool Buffer::redo()
|
|
|
|
{
|
|
|
|
if (m_history_cursor == m_history.end())
|
|
|
|
return false;
|
|
|
|
|
2013-04-09 20:04:11 +02:00
|
|
|
kak_assert(m_current_undo_group.empty());
|
2013-02-20 14:23:52 +01:00
|
|
|
|
2011-12-06 19:58:43 +01:00
|
|
|
for (const Modification& modification : *m_history_cursor)
|
2011-10-18 02:55:45 +02:00
|
|
|
apply_modification(modification);
|
2011-09-06 20:49:32 +02:00
|
|
|
|
|
|
|
++m_history_cursor;
|
2012-06-05 15:33:02 +02:00
|
|
|
return true;
|
2011-09-06 20:49:32 +02:00
|
|
|
}
|
|
|
|
|
2012-03-30 13:37:18 +02:00
|
|
|
void Buffer::check_invariant() const
|
|
|
|
{
|
2013-02-27 19:02:01 +01:00
|
|
|
#ifdef KAK_DEBUG
|
2013-04-09 20:04:11 +02:00
|
|
|
kak_assert(not m_lines.empty());
|
2012-03-30 13:37:18 +02:00
|
|
|
for (auto& line : m_lines)
|
|
|
|
{
|
2013-04-09 20:04:11 +02:00
|
|
|
kak_assert(line.length() > 0);
|
2014-05-24 18:08:01 +02:00
|
|
|
kak_assert(line.back() == '\n');
|
2012-03-30 13:37:18 +02:00
|
|
|
}
|
2013-02-27 19:02:01 +01:00
|
|
|
#endif
|
2012-03-30 13:37:18 +02:00
|
|
|
}
|
|
|
|
|
2014-10-01 01:20:12 +02:00
|
|
|
ByteCoord Buffer::do_insert(ByteCoord pos, StringView content)
|
2012-02-22 22:54:25 +01:00
|
|
|
{
|
2013-05-22 19:21:59 +02:00
|
|
|
kak_assert(is_valid(pos));
|
2013-03-18 19:39:32 +01:00
|
|
|
|
|
|
|
if (content.empty())
|
2013-06-06 19:39:53 +02:00
|
|
|
return pos;
|
2013-03-18 19:39:32 +01:00
|
|
|
|
2014-05-07 20:51:01 +02:00
|
|
|
ByteCoord begin;
|
|
|
|
ByteCoord end;
|
2014-05-11 14:20:13 +02:00
|
|
|
bool at_end = false;
|
2013-01-23 18:52:42 +01:00
|
|
|
// if we inserted at the end of the buffer, we have created a new
|
2012-03-30 13:37:18 +02:00
|
|
|
// line without inserting a '\n'
|
2013-05-22 19:21:59 +02:00
|
|
|
if (is_end(pos))
|
2012-02-22 22:54:25 +01:00
|
|
|
{
|
2012-10-11 00:41:48 +02:00
|
|
|
ByteCount start = 0;
|
|
|
|
for (ByteCount i = 0; i < content.length(); ++i)
|
2012-02-22 22:54:25 +01:00
|
|
|
{
|
2012-03-30 13:37:18 +02:00
|
|
|
if (content[i] == '\n')
|
|
|
|
{
|
2014-05-24 18:08:01 +02:00
|
|
|
m_lines.push_back(content.substr(start, i + 1 - start));
|
2012-03-30 13:37:18 +02:00
|
|
|
start = i + 1;
|
|
|
|
}
|
2012-02-22 22:54:25 +01:00
|
|
|
}
|
2012-03-30 13:37:18 +02:00
|
|
|
if (start != content.length())
|
2014-05-24 18:08:01 +02:00
|
|
|
m_lines.push_back(content.substr(start));
|
2012-04-04 15:56:19 +02:00
|
|
|
|
2014-05-07 20:51:01 +02:00
|
|
|
begin = pos.column == 0 ? pos : ByteCoord{ pos.line + 1, 0 };
|
2014-05-24 18:08:01 +02:00
|
|
|
end = ByteCoord{ line_count(), 0 };
|
2014-05-11 14:20:13 +02:00
|
|
|
at_end = true;
|
2012-02-22 22:54:25 +01:00
|
|
|
}
|
2012-03-30 13:37:18 +02:00
|
|
|
else
|
2012-02-22 22:54:25 +01:00
|
|
|
{
|
2014-10-03 14:39:13 +02:00
|
|
|
StringView prefix = m_lines[pos.line].substr(0, pos.column);
|
|
|
|
StringView suffix = m_lines[pos.line].substr(pos.column);
|
2012-03-30 13:37:18 +02:00
|
|
|
|
2014-10-03 14:39:13 +02:00
|
|
|
std::vector<InternedString> new_lines;
|
2012-02-22 22:54:25 +01:00
|
|
|
|
2012-10-11 00:41:48 +02:00
|
|
|
ByteCount start = 0;
|
|
|
|
for (ByteCount i = 0; i < content.length(); ++i)
|
2012-02-22 22:54:25 +01:00
|
|
|
{
|
2012-03-30 13:37:18 +02:00
|
|
|
if (content[i] == '\n')
|
|
|
|
{
|
2014-10-03 14:39:13 +02:00
|
|
|
StringView line_content = content.substr(start, i + 1 - start);
|
2012-03-30 13:37:18 +02:00
|
|
|
if (start == 0)
|
2014-10-03 14:39:13 +02:00
|
|
|
new_lines.emplace_back(prefix + line_content);
|
2012-03-30 13:37:18 +02:00
|
|
|
else
|
2014-10-03 14:39:13 +02:00
|
|
|
new_lines.push_back(line_content);
|
2012-03-30 13:37:18 +02:00
|
|
|
start = i + 1;
|
|
|
|
}
|
2012-02-22 22:54:25 +01:00
|
|
|
}
|
2012-03-30 13:37:18 +02:00
|
|
|
if (start == 0)
|
2014-10-03 14:39:13 +02:00
|
|
|
new_lines.emplace_back(prefix + content + suffix);
|
2012-08-10 14:22:57 +02:00
|
|
|
else if (start != content.length() or not suffix.empty())
|
2014-10-03 14:39:13 +02:00
|
|
|
new_lines.emplace_back(content.substr(start) + suffix);
|
2013-03-18 19:39:32 +01:00
|
|
|
|
2013-05-22 19:21:59 +02:00
|
|
|
LineCount last_line = pos.line + new_lines.size() - 1;
|
2013-03-18 19:39:32 +01:00
|
|
|
|
2013-05-22 19:21:59 +02:00
|
|
|
auto line_it = m_lines.begin() + (int)pos.line;
|
2013-03-18 19:39:32 +01:00
|
|
|
*line_it = std::move(*new_lines.begin());
|
2014-01-06 22:04:09 +01:00
|
|
|
|
2013-03-18 19:39:32 +01:00
|
|
|
m_lines.insert(line_it+1, std::make_move_iterator(new_lines.begin() + 1),
|
|
|
|
std::make_move_iterator(new_lines.end()));
|
2012-04-04 15:56:19 +02:00
|
|
|
|
2013-05-22 19:21:59 +02:00
|
|
|
begin = pos;
|
2014-05-07 20:51:01 +02:00
|
|
|
end = ByteCoord{ last_line, m_lines[last_line].length() - suffix.length() };
|
2012-02-22 22:54:25 +01:00
|
|
|
}
|
2012-03-30 13:37:18 +02:00
|
|
|
|
2014-05-11 14:20:13 +02:00
|
|
|
m_changes.push_back({ Change::Insert, begin, end, at_end });
|
2013-06-06 19:39:53 +02:00
|
|
|
return begin;
|
2012-03-30 13:37:18 +02:00
|
|
|
}
|
|
|
|
|
2014-05-07 20:51:01 +02:00
|
|
|
ByteCoord Buffer::do_erase(ByteCoord begin, ByteCoord end)
|
2012-03-30 13:37:18 +02:00
|
|
|
{
|
2013-05-22 19:21:59 +02:00
|
|
|
kak_assert(is_valid(begin));
|
|
|
|
kak_assert(is_valid(end));
|
2014-06-26 20:01:39 +02:00
|
|
|
StringView prefix = m_lines[begin.line].substr(0, begin.column);
|
|
|
|
StringView suffix = m_lines[end.line].substr(end.column);
|
2014-05-24 18:08:01 +02:00
|
|
|
String new_line = prefix + suffix;
|
2012-03-30 13:37:18 +02:00
|
|
|
|
2014-05-07 20:51:01 +02:00
|
|
|
ByteCoord next;
|
2012-08-23 23:56:35 +02:00
|
|
|
if (new_line.length() != 0)
|
2013-03-15 14:15:29 +01:00
|
|
|
{
|
2013-05-22 19:21:59 +02:00
|
|
|
m_lines.erase(m_lines.begin() + (int)begin.line, m_lines.begin() + (int)end.line);
|
2014-10-03 14:39:13 +02:00
|
|
|
m_lines[begin.line] = InternedString(new_line);
|
2013-06-06 19:39:53 +02:00
|
|
|
next = begin;
|
2013-03-15 14:15:29 +01:00
|
|
|
}
|
|
|
|
else
|
2013-06-06 19:39:53 +02:00
|
|
|
{
|
2013-05-22 19:21:59 +02:00
|
|
|
m_lines.erase(m_lines.begin() + (int)begin.line, m_lines.begin() + (int)end.line + 1);
|
2014-05-07 20:51:01 +02:00
|
|
|
next = is_end(begin) ? end_coord() : ByteCoord{begin.line, 0};
|
2013-06-06 19:39:53 +02:00
|
|
|
}
|
2012-03-30 13:37:18 +02:00
|
|
|
|
2014-05-11 14:20:13 +02:00
|
|
|
m_changes.push_back({ Change::Erase, begin, end, is_end(begin) });
|
2013-06-06 19:39:53 +02:00
|
|
|
return next;
|
2012-02-22 22:54:25 +01:00
|
|
|
}
|
|
|
|
|
2011-12-06 19:58:43 +01:00
|
|
|
void Buffer::apply_modification(const Modification& modification)
|
2011-09-06 20:49:32 +02:00
|
|
|
{
|
2014-10-01 01:20:12 +02:00
|
|
|
StringView content = modification.content;
|
2014-05-07 20:51:01 +02:00
|
|
|
ByteCoord coord = modification.coord;
|
2012-03-30 13:37:18 +02:00
|
|
|
|
2013-05-22 19:21:59 +02:00
|
|
|
kak_assert(is_valid(coord));
|
2013-06-06 20:02:20 +02:00
|
|
|
// in modifications, end coords should be {line_count(), 0}
|
2014-10-28 22:55:08 +01:00
|
|
|
kak_assert((m_lines.empty() and coord == ByteCoord{0,0} ) or
|
|
|
|
coord != ByteCoord(line_count()-1, m_lines.back().length()));
|
|
|
|
|
2011-09-06 20:49:32 +02:00
|
|
|
switch (modification.type)
|
|
|
|
{
|
2011-12-06 19:58:43 +01:00
|
|
|
case Modification::Insert:
|
2012-04-04 14:25:42 +02:00
|
|
|
{
|
2013-05-22 19:21:59 +02:00
|
|
|
do_insert(coord, content);
|
2011-09-06 20:49:32 +02:00
|
|
|
break;
|
2012-04-04 14:25:42 +02:00
|
|
|
}
|
2011-12-06 19:58:43 +01:00
|
|
|
case Modification::Erase:
|
2011-09-06 20:49:32 +02:00
|
|
|
{
|
2012-10-11 01:17:29 +02:00
|
|
|
ByteCount count = content.length();
|
2014-05-07 20:51:01 +02:00
|
|
|
ByteCoord end = advance(coord, count);
|
2013-05-23 14:17:25 +02:00
|
|
|
kak_assert(string(coord, end) == content);
|
2013-05-22 19:21:59 +02:00
|
|
|
do_erase(coord, end);
|
2011-09-06 20:49:32 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
2013-04-09 20:04:11 +02:00
|
|
|
kak_assert(false);
|
2011-09-06 20:49:32 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-03 14:39:13 +02:00
|
|
|
BufferIterator Buffer::insert(const BufferIterator& pos, StringView content)
|
2012-08-10 19:12:43 +02:00
|
|
|
{
|
2013-06-06 19:39:53 +02:00
|
|
|
kak_assert(is_valid(pos.coord()));
|
2012-08-10 19:12:43 +02:00
|
|
|
if (content.empty())
|
2013-06-06 19:39:53 +02:00
|
|
|
return pos;
|
2012-08-14 14:13:10 +02:00
|
|
|
|
2014-10-03 14:39:13 +02:00
|
|
|
InternedString real_content;
|
2013-06-06 19:39:53 +02:00
|
|
|
if (pos == end() and content.back() != '\n')
|
2014-10-03 14:39:13 +02:00
|
|
|
real_content = InternedString(content + "\n");
|
|
|
|
else
|
|
|
|
real_content = content;
|
2012-08-14 14:13:10 +02:00
|
|
|
|
2013-06-06 20:02:20 +02:00
|
|
|
// for undo and redo purpose it is better to use one past last line rather
|
|
|
|
// than one past last char coord.
|
2014-05-07 20:51:01 +02:00
|
|
|
auto coord = pos == end() ? ByteCoord{line_count()} : pos.coord();
|
2012-11-21 13:43:10 +01:00
|
|
|
if (not (m_flags & Flags::NoUndo))
|
2014-10-03 14:39:13 +02:00
|
|
|
m_current_undo_group.emplace_back(Modification::Insert, coord, real_content);
|
2014-12-19 00:13:45 +01:00
|
|
|
return {*this, do_insert(pos.coord(), real_content)};
|
2012-08-10 19:12:43 +02:00
|
|
|
}
|
|
|
|
|
2013-06-06 19:39:53 +02:00
|
|
|
BufferIterator Buffer::erase(BufferIterator begin, BufferIterator end)
|
2011-09-06 20:49:32 +02:00
|
|
|
{
|
2013-06-06 19:39:53 +02:00
|
|
|
// do not erase last \n except if we erase from the start of a line
|
|
|
|
if (end == this->end() and (begin.coord().column != 0 or begin == this->begin()))
|
|
|
|
--end;
|
2012-08-14 14:13:10 +02:00
|
|
|
|
2012-08-10 19:12:43 +02:00
|
|
|
if (begin == end)
|
2013-06-06 19:39:53 +02:00
|
|
|
return begin;
|
2012-03-12 22:31:27 +01:00
|
|
|
|
2012-11-21 13:43:10 +01:00
|
|
|
if (not (m_flags & Flags::NoUndo))
|
2013-06-06 19:39:53 +02:00
|
|
|
m_current_undo_group.emplace_back(Modification::Erase, begin.coord(),
|
2014-10-03 14:39:13 +02:00
|
|
|
InternedString(string(begin.coord(), end.coord())));
|
2014-12-19 00:13:45 +01:00
|
|
|
return {*this, do_erase(begin.coord(), end.coord())};
|
2011-09-06 20:49:32 +02:00
|
|
|
}
|
|
|
|
|
2011-10-05 16:21:24 +02:00
|
|
|
bool Buffer::is_modified() const
|
|
|
|
{
|
2011-11-03 14:44:02 +01:00
|
|
|
size_t history_cursor_index = m_history_cursor - m_history.begin();
|
|
|
|
return m_last_save_undo_index != history_cursor_index
|
2011-10-05 16:21:24 +02:00
|
|
|
or not m_current_undo_group.empty();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Buffer::notify_saved()
|
|
|
|
{
|
2012-12-19 18:56:20 +01:00
|
|
|
if (not m_current_undo_group.empty())
|
2013-02-20 14:20:16 +01:00
|
|
|
commit_undo_group();
|
2012-12-19 18:56:20 +01:00
|
|
|
|
2012-12-28 13:52:19 +01:00
|
|
|
m_flags &= ~Flags::New;
|
2011-11-03 14:44:02 +01:00
|
|
|
size_t history_cursor_index = m_history_cursor - m_history.begin();
|
2012-11-23 13:41:07 +01:00
|
|
|
if (m_last_save_undo_index != history_cursor_index)
|
|
|
|
m_last_save_undo_index = history_cursor_index;
|
2013-10-17 19:47:09 +02:00
|
|
|
m_fs_timestamp = get_fs_timestamp(m_name);
|
2011-10-05 16:21:24 +02:00
|
|
|
}
|
|
|
|
|
2014-05-07 20:51:01 +02:00
|
|
|
ByteCoord Buffer::advance(ByteCoord coord, ByteCount count) const
|
2013-05-22 18:59:55 +02:00
|
|
|
{
|
2014-05-24 18:08:01 +02:00
|
|
|
if (count > 0)
|
|
|
|
{
|
|
|
|
auto line = coord.line;
|
|
|
|
count += coord.column;
|
|
|
|
while (count >= m_lines[line].length())
|
|
|
|
{
|
|
|
|
count -= m_lines[line++].length();
|
|
|
|
if (line == line_count())
|
|
|
|
return end_coord();
|
|
|
|
}
|
|
|
|
return { line, count };
|
|
|
|
}
|
|
|
|
else if (count < 0)
|
|
|
|
{
|
|
|
|
auto line = coord.line;
|
|
|
|
count += coord.column;
|
|
|
|
while (count < 0)
|
|
|
|
{
|
|
|
|
count += m_lines[--line].length();
|
|
|
|
if (line < 0)
|
|
|
|
return {0, 0};
|
|
|
|
}
|
|
|
|
return { line, count };
|
|
|
|
}
|
|
|
|
return coord;
|
2013-05-22 18:59:55 +02:00
|
|
|
}
|
|
|
|
|
2014-05-07 20:51:01 +02:00
|
|
|
ByteCoord Buffer::char_next(ByteCoord coord) const
|
2013-06-03 18:56:48 +02:00
|
|
|
{
|
|
|
|
if (coord.column < m_lines[coord.line].length() - 1)
|
|
|
|
{
|
2014-10-03 14:39:13 +02:00
|
|
|
auto line = m_lines[coord.line];
|
2014-10-05 11:20:50 +02:00
|
|
|
coord.column += utf8::codepoint_size(line[coord.column]);
|
2013-12-12 14:45:14 +01:00
|
|
|
// Handle invalid utf-8
|
|
|
|
if (coord.column >= line.length())
|
|
|
|
{
|
|
|
|
++coord.line;
|
|
|
|
coord.column = 0;
|
|
|
|
}
|
2013-06-03 18:56:48 +02:00
|
|
|
}
|
|
|
|
else if (coord.line == m_lines.size() - 1)
|
|
|
|
coord.column = m_lines.back().length();
|
|
|
|
else
|
|
|
|
{
|
|
|
|
++coord.line;
|
|
|
|
coord.column = 0;
|
|
|
|
}
|
|
|
|
return coord;
|
|
|
|
}
|
|
|
|
|
2014-05-07 20:51:01 +02:00
|
|
|
ByteCoord Buffer::char_prev(ByteCoord coord) const
|
2013-06-03 18:56:48 +02:00
|
|
|
{
|
|
|
|
kak_assert(is_valid(coord));
|
|
|
|
if (is_end(coord))
|
|
|
|
return coord = {(int)m_lines.size()-1, m_lines.back().length() - 1};
|
|
|
|
else if (coord.column == 0)
|
|
|
|
{
|
|
|
|
if (coord.line > 0)
|
2013-06-04 14:11:55 +02:00
|
|
|
coord.column = m_lines[--coord.line].length() - 1;
|
2013-06-03 18:56:48 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-10-03 14:39:13 +02:00
|
|
|
auto line = m_lines[coord.line];
|
2014-07-02 22:14:01 +02:00
|
|
|
coord.column = (int)(utf8::character_start(line.begin() + (int)coord.column - 1, line.begin()) - line.begin());
|
2013-06-03 18:56:48 +02:00
|
|
|
}
|
|
|
|
return coord;
|
|
|
|
}
|
|
|
|
|
2013-10-15 19:51:31 +02:00
|
|
|
time_t Buffer::fs_timestamp() const
|
|
|
|
{
|
|
|
|
kak_assert(m_flags & Flags::File);
|
|
|
|
return m_fs_timestamp;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Buffer::set_fs_timestamp(time_t ts)
|
|
|
|
{
|
|
|
|
kak_assert(m_flags & Flags::File);
|
|
|
|
m_fs_timestamp = ts;
|
|
|
|
}
|
|
|
|
|
2013-11-12 21:36:42 +01:00
|
|
|
void Buffer::on_option_changed(const Option& option)
|
|
|
|
{
|
2013-12-11 14:57:10 +01:00
|
|
|
run_hook_in_own_context("BufSetOption",
|
|
|
|
option.name() + "=" + option.get_as_string());
|
|
|
|
}
|
|
|
|
|
2014-10-20 20:18:38 +02:00
|
|
|
void Buffer::run_hook_in_own_context(const String& hook_name, StringView param)
|
2013-12-11 14:57:10 +01:00
|
|
|
{
|
2014-12-19 00:12:58 +01:00
|
|
|
InputHandler hook_handler({ *this, Selection{} }, Context::Flags::Transient);
|
2014-10-30 15:00:42 +01:00
|
|
|
hooks().run_hook(hook_name, param, hook_handler.context());
|
2013-11-12 21:36:42 +01:00
|
|
|
}
|
2013-12-11 14:57:10 +01:00
|
|
|
|
2014-05-07 20:51:01 +02:00
|
|
|
ByteCoord Buffer::last_modification_coord() const
|
2014-04-08 00:39:12 +02:00
|
|
|
{
|
|
|
|
if (m_history.empty())
|
|
|
|
return {};
|
|
|
|
return m_history.back().back().coord;
|
|
|
|
}
|
|
|
|
|
2014-09-22 20:19:34 +02:00
|
|
|
String Buffer::debug_description() const
|
|
|
|
{
|
|
|
|
String res = display_name() + "\n";
|
|
|
|
|
|
|
|
res += " Flags: ";
|
|
|
|
if (m_flags & Flags::File)
|
|
|
|
res += "File (" + name() + ") ";
|
|
|
|
if (m_flags & Flags::New)
|
|
|
|
res += "New ";
|
|
|
|
if (m_flags & Flags::Fifo)
|
|
|
|
res += "Fifo ";
|
|
|
|
if (m_flags & Flags::NoUndo)
|
|
|
|
res += "NoUndo ";
|
|
|
|
res += "\n";
|
|
|
|
|
|
|
|
size_t content_size = 0;
|
|
|
|
for (auto& line : m_lines)
|
|
|
|
content_size += (int)line.length();
|
|
|
|
|
|
|
|
size_t additional_size = 0;
|
|
|
|
for (auto& undo_group : m_history)
|
|
|
|
additional_size += undo_group.size() * sizeof(Modification);
|
|
|
|
additional_size += m_changes.size() * sizeof(Change);
|
|
|
|
|
|
|
|
res += " Used mem: content=" + to_string(content_size) +
|
|
|
|
" additional=" + to_string(additional_size) + "\n";
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2011-09-02 18:51:20 +02:00
|
|
|
}
|