kakoune/src/buffer.cc

372 lines
10 KiB
C++
Raw Normal View History

2011-09-02 18:51:20 +02:00
#include "buffer.hh"
#include "buffer_manager.hh"
#include "window.hh"
2011-09-09 21:24:18 +02:00
#include "assert.hh"
#include "utils.hh"
#include "context.hh"
#include <algorithm>
2011-09-02 18:51:20 +02:00
namespace Kakoune
{
template<typename T>
T clamp(T min, T max, T val)
{
if (val < min)
return min;
if (val > max)
return max;
return val;
}
Buffer::Buffer(const String& name, Type type,
2012-03-08 22:23:29 +01:00
const String& initial_content)
2011-10-07 16:15:55 +02:00
: m_name(name), m_type(type),
m_history(1), m_history_cursor(m_history.begin()),
m_last_save_undo_index(0),
m_hook_manager(GlobalHookManager::instance()),
m_option_manager(GlobalOptionManager::instance())
2011-09-02 18:51:20 +02:00
{
BufferManager::instance().register_buffer(this);
2012-03-12 22:31:27 +01:00
if (not initial_content.empty())
apply_modification(Modification::make_insert(begin(), initial_content));
if (type == Type::NewFile)
m_hook_manager.run_hook("BufCreate", name, Context(*this));
else if (type == Type::File)
m_hook_manager.run_hook("BufOpen", name, Context(*this));
2011-09-02 18:51:20 +02:00
}
2011-10-24 16:23:13 +02:00
Buffer::~Buffer()
{
m_windows.clear();
BufferManager::instance().unregister_buffer(this);
assert(m_iterators_to_update.empty());
2011-10-24 16:23:13 +02:00
}
BufferIterator Buffer::iterator_at(const BufferCoord& line_and_column) const
2011-09-02 18:51:20 +02:00
{
return BufferIterator(*this, clamp(line_and_column));
2011-09-02 18:51:20 +02:00
}
BufferCoord Buffer::line_and_column_at(const BufferIterator& iterator) const
2011-09-02 18:51:20 +02:00
{
return iterator.m_coord;
2011-09-02 18:51:20 +02:00
}
BufferPos Buffer::line_at(const BufferIterator& iterator) const
{
return iterator.line();
2011-09-02 18:51:20 +02:00
}
BufferSize Buffer::line_length(BufferPos line) const
{
assert(line < line_count());
2012-02-27 20:52:36 +01:00
BufferPos end = (line < m_lines.size() - 1) ?
m_lines[line + 1].start : length();
return end - m_lines[line].start;
2011-09-02 18:51:20 +02:00
}
BufferCoord Buffer::clamp(const BufferCoord& line_and_column) const
2011-09-02 18:51:20 +02:00
{
if (m_lines.empty())
return BufferCoord();
2011-09-02 18:51:20 +02:00
BufferCoord result(line_and_column.line, line_and_column.column);
result.line = Kakoune::clamp<int>(0, m_lines.size() - 1, result.line);
int max_col = std::max(0, line_length(result.line) - 2);
2011-11-24 15:23:41 +01:00
result.column = Kakoune::clamp<int>(0, max_col, result.column);
2011-09-02 18:51:20 +02:00
return result;
}
BufferIterator Buffer::iterator_at_line_begin(const BufferIterator& iterator) const
{
return BufferIterator(*this, { iterator.line(), 0 });
}
BufferIterator Buffer::iterator_at_line_end(const BufferIterator& iterator) const
{
BufferPos line = iterator.line();
return ++BufferIterator(*this, { line, std::max(line_length(line) - 1, 0) });
}
2011-09-02 18:51:20 +02:00
BufferIterator Buffer::begin() const
{
return BufferIterator(*this, { 0, 0 });
2011-09-02 18:51:20 +02:00
}
BufferIterator Buffer::end() const
{
if (m_lines.empty())
return BufferIterator(*this, { 0, 0 });
2012-03-30 14:00:40 +02:00
return BufferIterator(*this, { (int)line_count()-1, (int)m_lines.back().length() });
2011-09-02 18:51:20 +02:00
}
BufferSize Buffer::length() const
{
if (m_lines.empty())
return 0;
2012-03-30 14:00:40 +02:00
return m_lines.back().start + m_lines.back().length();
2011-09-02 18:51:20 +02:00
}
2011-09-22 15:58:35 +02:00
BufferSize Buffer::line_count() const
{
return m_lines.size();
2011-09-22 15:58:35 +02:00
}
2012-03-08 22:23:29 +01:00
String Buffer::string(const BufferIterator& begin, const BufferIterator& end) const
2011-09-02 18:51:20 +02:00
{
String res;
for (BufferPos line = begin.line(); line <= end.line(); ++line)
{
size_t start = 0;
if (line == begin.line())
start = begin.column();
size_t count = -1;
if (line == end.line())
count = end.column() - start;
res += m_lines[line].content.substr(start, count);
}
return res;
2011-09-02 18:51:20 +02:00
}
void Buffer::begin_undo_group()
{
assert(m_current_undo_group.empty());
m_history.erase(m_history_cursor, m_history.end());
2011-11-03 14:44:02 +01:00
if (m_history.size() < m_last_save_undo_index)
m_last_save_undo_index = -1;
m_history_cursor = m_history.end();
}
void Buffer::end_undo_group()
{
if (m_current_undo_group.empty())
return;
m_history.push_back(m_current_undo_group);
m_history_cursor = m_history.end();
m_current_undo_group.clear();
}
Modification Modification::inverse() const
{
Type inverse_type;
switch (type)
{
case Insert: inverse_type = Erase; break;
case Erase: inverse_type = Insert; break;
default: assert(false);
}
return Modification(inverse_type, position, content);
}
bool Buffer::undo()
{
if (m_history_cursor == m_history.begin())
return false;
--m_history_cursor;
for (const Modification& modification : reversed(*m_history_cursor))
apply_modification(modification.inverse());
}
bool Buffer::redo()
{
if (m_history_cursor == m_history.end())
return false;
for (const Modification& modification : *m_history_cursor)
apply_modification(modification);
++m_history_cursor;
}
void Buffer::check_invariant() const
{
BufferSize start = 0;
for (auto& line : m_lines)
{
assert(line.start == start);
assert(line.length() > 0);
2012-03-30 14:00:40 +02:00
start += line.length();
}
}
void Buffer::insert(const BufferIterator& pos, const String& content)
{
BufferSize offset = pos.offset();
// all following lines advanced by length
for (size_t i = pos.line()+1; i < line_count(); ++i)
m_lines[i].start += content.length();
BufferCoord end_pos;
// if we inserted at the end of the buffer, we may have created a new
// line without inserting a '\n'
if (pos == end() and (pos == begin() or *(pos-1) == '\n'))
{
int start = 0;
for (int i = 0; i < content.length(); ++i)
{
if (content[i] == '\n')
{
m_lines.push_back({ offset + start, content.substr(start, i + 1 - start) });
start = i + 1;
}
}
if (start != content.length())
m_lines.push_back({ offset + start, content.substr(start) });
end_pos = end().m_coord;
}
else
{
String prefix = m_lines[pos.line()].content.substr(0, pos.column());
String suffix = m_lines[pos.line()].content.substr(pos.column());
auto line_it = m_lines.begin() + pos.line();
line_it = m_lines.erase(line_it);
int start = 0;
for (int i = 0; i < content.length(); ++i)
{
if (content[i] == '\n')
{
String line_content = content.substr(start, i + 1 - start);
if (start == 0)
{
line_content = prefix + line_content;
line_it = m_lines.insert(line_it, { offset + start - (int)prefix.length(),
std::move(line_content) });
}
else
line_it = m_lines.insert(line_it, { offset + start,
std::move(line_content) });
++line_it;
start = i + 1;
}
}
if (start == 0)
line_it = m_lines.insert(line_it, { offset + start - (int)prefix.length(), prefix + content + suffix });
else
line_it = m_lines.insert(line_it, { offset + start, content.substr(start) + suffix });
end_pos = { int(line_it - m_lines.begin()), int(line_it->length() - suffix.length()) };
}
check_invariant();
for (auto iterator : m_iterators_to_update)
iterator->on_insert(pos.m_coord, end_pos);
}
void Buffer::erase(const BufferIterator& pos, BufferSize length)
{
BufferIterator end = pos + length;
String prefix = m_lines[pos.line()].content.substr(0, pos.column());
String suffix = m_lines[end.line()].content.substr(end.column());
Line new_line = { m_lines[pos.line()].start, prefix + suffix };
m_lines.erase(m_lines.begin() + pos.line(), m_lines.begin() + end.line() + 1);
if (new_line.length())
m_lines.insert(m_lines.begin() + pos.line(), std::move(new_line));
for (size_t i = pos.line()+1; i < line_count(); ++i)
m_lines[i].start -= length;
check_invariant();
for (auto iterator : m_iterators_to_update)
iterator->on_erase(pos.m_coord, end.m_coord);
}
void Buffer::apply_modification(const Modification& modification)
{
const String& content = modification.content;
const BufferIterator& pos = modification.position;
switch (modification.type)
{
case Modification::Insert:
{
BufferIterator pos = modification.position < end() ?
modification.position : end();
insert(pos, modification.content);
break;
}
case Modification::Erase:
{
size_t count = modification.content.length();
assert(string(modification.position, modification.position + count)
== modification.content);
erase(modification.position, count);
break;
}
default:
assert(false);
}
}
void Buffer::modify(Modification&& modification)
{
2012-03-12 22:31:27 +01:00
if (modification.content.empty())
return;
apply_modification(modification);
m_current_undo_group.push_back(std::move(modification));
}
Window* Buffer::get_or_create_window()
{
if (m_windows.empty())
m_windows.push_front(std::unique_ptr<Window>(new Window(*this)));
return m_windows.front().get();
}
void Buffer::delete_window(Window* window)
{
assert(&window->buffer() == this);
auto window_it = std::find(m_windows.begin(), m_windows.end(), window);
assert(window_it != m_windows.end());
m_windows.erase(window_it);
}
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()
{
2011-11-03 14:44:02 +01:00
size_t history_cursor_index = m_history_cursor - m_history.begin();
m_last_save_undo_index = history_cursor_index;
2011-10-05 16:21:24 +02:00
}
void Buffer::add_iterator_to_update(BufferIterator& iterator)
{
assert(not contains(m_iterators_to_update, &iterator));
m_iterators_to_update.push_back(&iterator);
}
void Buffer::remove_iterator_from_update(BufferIterator& iterator)
{
auto it = std::find(m_iterators_to_update.begin(),
m_iterators_to_update.end(),
&iterator);
assert(it != m_iterators_to_update.end());
m_iterators_to_update.erase(it);
}
2011-09-02 18:51:20 +02:00
}