2011-09-02 18:51:20 +02:00
|
|
|
#include "buffer.hh"
|
2011-09-08 02:11:48 +02:00
|
|
|
|
|
|
|
#include "buffer_manager.hh"
|
2011-09-08 02:13:19 +02:00
|
|
|
#include "window.hh"
|
2011-09-09 21:24:18 +02:00
|
|
|
#include "assert.hh"
|
2011-09-17 16:13:33 +02:00
|
|
|
#include "utils.hh"
|
2011-12-02 19:59:18 +01:00
|
|
|
#include "hooks_manager.hh"
|
2012-01-23 14:56:43 +01:00
|
|
|
#include "context.hh"
|
2011-09-08 02:11:48 +02:00
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2011-10-07 16:15:55 +02:00
|
|
|
Buffer::Buffer(const std::string& name, Type type,
|
|
|
|
const BufferString& initial_content)
|
|
|
|
: m_name(name), m_type(type),
|
|
|
|
m_history(1), m_history_cursor(m_history.begin()),
|
2011-11-03 14:44:02 +01:00
|
|
|
m_content(initial_content), m_last_save_undo_index(0)
|
2011-09-02 18:51:20 +02:00
|
|
|
{
|
2011-09-08 02:11:48 +02:00
|
|
|
BufferManager::instance().register_buffer(this);
|
|
|
|
|
2012-01-31 15:01:48 +01:00
|
|
|
if (type == Type::NewFile)
|
|
|
|
GlobalHooksManager::instance().run_hook("BufCreate", name, Context(*this));
|
|
|
|
else if (type == Type::File)
|
|
|
|
GlobalHooksManager::instance().run_hook("BufOpen", name, Context(*this));
|
|
|
|
|
2011-09-06 20:33:18 +02:00
|
|
|
compute_lines();
|
2011-09-02 18:51:20 +02:00
|
|
|
}
|
|
|
|
|
2011-10-24 16:23:13 +02:00
|
|
|
Buffer::~Buffer()
|
|
|
|
{
|
|
|
|
m_windows.clear();
|
|
|
|
assert(m_modification_listeners.empty());
|
|
|
|
}
|
|
|
|
|
2011-09-05 21:06:31 +02:00
|
|
|
BufferIterator Buffer::iterator_at(const BufferCoord& line_and_column) const
|
2011-09-02 18:51:20 +02:00
|
|
|
{
|
|
|
|
if (m_lines.empty())
|
|
|
|
return begin();
|
|
|
|
|
2011-11-24 15:23:41 +01:00
|
|
|
BufferCoord clamped = clamp(line_and_column);
|
|
|
|
return BufferIterator(*this, m_lines[clamped.line] + clamped.column);
|
2011-09-02 18:51:20 +02:00
|
|
|
}
|
|
|
|
|
2011-09-05 21:06:31 +02:00
|
|
|
BufferCoord Buffer::line_and_column_at(const BufferIterator& iterator) const
|
2011-09-02 18:51:20 +02:00
|
|
|
{
|
2011-09-05 21:06:31 +02:00
|
|
|
BufferCoord result;
|
2011-09-02 18:51:20 +02:00
|
|
|
if (not m_lines.empty())
|
|
|
|
{
|
|
|
|
result.line = line_at(iterator);
|
|
|
|
result.column = iterator.m_position - m_lines[result.line];
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
BufferPos Buffer::line_at(const BufferIterator& iterator) const
|
|
|
|
{
|
2011-11-24 15:23:41 +01:00
|
|
|
for (unsigned i = 0; i < line_count(); ++i)
|
2011-09-02 18:51:20 +02:00
|
|
|
{
|
|
|
|
if (m_lines[i] > iterator.m_position)
|
|
|
|
return i - 1;
|
|
|
|
}
|
2011-11-24 15:23:41 +01:00
|
|
|
return line_count() - 1;
|
2011-09-02 18:51:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
BufferSize Buffer::line_length(BufferPos line) const
|
|
|
|
{
|
|
|
|
assert(not m_lines.empty());
|
2012-02-27 20:52:36 +01:00
|
|
|
BufferPos end = (line < m_lines.size() - 1) ?
|
|
|
|
m_lines[line + 1] - 1 : m_content.size();
|
2011-09-02 18:51:20 +02:00
|
|
|
return end - m_lines[line];
|
|
|
|
}
|
|
|
|
|
2011-09-05 21:06:31 +02:00
|
|
|
BufferCoord Buffer::clamp(const BufferCoord& line_and_column) const
|
2011-09-02 18:51:20 +02:00
|
|
|
{
|
|
|
|
if (m_lines.empty())
|
2011-09-05 21:06:31 +02:00
|
|
|
return BufferCoord();
|
2011-09-02 18:51:20 +02:00
|
|
|
|
2011-09-05 21:06:31 +02:00
|
|
|
BufferCoord result(line_and_column.line, line_and_column.column);
|
2011-11-24 15:23:41 +01:00
|
|
|
result.line = Kakoune::clamp<int>(0, line_count() - 1, result.line);
|
|
|
|
int max_col = std::max(0, line_length(result.line)-1);
|
|
|
|
result.column = Kakoune::clamp<int>(0, max_col, result.column);
|
2011-09-02 18:51:20 +02:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2011-11-28 20:31:29 +01:00
|
|
|
BufferIterator Buffer::iterator_at_line_begin(const BufferIterator& iterator) const
|
|
|
|
{
|
|
|
|
return BufferIterator(*this, m_lines[line_at(iterator)]);
|
|
|
|
}
|
|
|
|
|
|
|
|
BufferIterator Buffer::iterator_at_line_end(const BufferIterator& iterator) const
|
|
|
|
{
|
|
|
|
BufferPos line = line_at(iterator) + 1;
|
|
|
|
return line < m_lines.size() ? BufferIterator(*this, m_lines[line]) : end();
|
|
|
|
}
|
|
|
|
|
2011-09-02 18:51:20 +02:00
|
|
|
|
|
|
|
BufferIterator Buffer::begin() const
|
|
|
|
{
|
|
|
|
return BufferIterator(*this, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
BufferIterator Buffer::end() const
|
|
|
|
{
|
|
|
|
return BufferIterator(*this, length());
|
|
|
|
}
|
|
|
|
|
|
|
|
BufferSize Buffer::length() const
|
|
|
|
{
|
|
|
|
return m_content.size();
|
|
|
|
}
|
|
|
|
|
2011-09-22 15:58:35 +02:00
|
|
|
BufferSize Buffer::line_count() const
|
|
|
|
{
|
2012-02-22 23:02:43 +01:00
|
|
|
if (m_lines.back() == m_content.size())
|
|
|
|
return m_lines.size() - 1;
|
|
|
|
else
|
|
|
|
return m_lines.size();
|
2011-09-22 15:58:35 +02:00
|
|
|
}
|
|
|
|
|
2011-09-02 18:51:20 +02:00
|
|
|
BufferString Buffer::string(const BufferIterator& begin, const BufferIterator& end) const
|
|
|
|
{
|
|
|
|
return m_content.substr(begin.m_position, end - begin);
|
|
|
|
}
|
|
|
|
|
|
|
|
BufferChar Buffer::at(BufferPos position) const
|
|
|
|
{
|
|
|
|
return m_content[position];
|
|
|
|
}
|
|
|
|
|
2011-09-06 20:49:32 +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;
|
|
|
|
|
2011-09-06 20:49:32 +02:00
|
|
|
m_history_cursor = m_history.end();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Buffer::end_undo_group()
|
|
|
|
{
|
|
|
|
m_history.push_back(m_current_undo_group);
|
|
|
|
m_history_cursor = m_history.end();
|
|
|
|
|
|
|
|
m_current_undo_group.clear();
|
|
|
|
}
|
|
|
|
|
2011-12-06 19:58:43 +01:00
|
|
|
Modification Modification::inverse() const
|
2011-09-06 20:49:32 +02:00
|
|
|
{
|
2011-10-17 16:12:15 +02:00
|
|
|
Type inverse_type;
|
2011-09-06 20:49:32 +02:00
|
|
|
switch (type)
|
|
|
|
{
|
2011-10-17 16:12:15 +02:00
|
|
|
case Insert: inverse_type = Erase; break;
|
|
|
|
case Erase: inverse_type = Insert; break;
|
2011-09-06 20:49:32 +02:00
|
|
|
default: assert(false);
|
|
|
|
}
|
2011-12-06 19:58:43 +01:00
|
|
|
return Modification(inverse_type, position, content);
|
2011-09-06 20:49:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool Buffer::undo()
|
|
|
|
{
|
|
|
|
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());
|
2011-09-06 20:49:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool Buffer::redo()
|
|
|
|
{
|
|
|
|
if (m_history_cursor == m_history.end())
|
|
|
|
return false;
|
|
|
|
|
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-02-22 22:54:25 +01:00
|
|
|
void Buffer::compute_lines()
|
|
|
|
{
|
|
|
|
m_lines.clear();
|
|
|
|
m_lines.push_back(0);
|
2012-02-22 23:02:43 +01:00
|
|
|
for (BufferPos i = 0; i < m_content.size(); ++i)
|
2012-02-22 22:54:25 +01:00
|
|
|
{
|
|
|
|
if (m_content[i] == '\n')
|
|
|
|
m_lines.push_back(i + 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Buffer::update_lines(const Modification& modification)
|
|
|
|
{
|
|
|
|
const BufferString& content = modification.content;
|
|
|
|
size_t length = content.length();
|
|
|
|
|
|
|
|
if (modification.type == Modification::Insert)
|
|
|
|
{
|
|
|
|
auto line_it = m_lines.begin() + line_at(modification.position) + 1;
|
|
|
|
for (auto it = line_it; it != m_lines.end(); ++it)
|
|
|
|
*it += length;
|
|
|
|
|
|
|
|
BufferPos pos = modification.position.m_position + 1;
|
|
|
|
std::vector<BufferPos> new_lines;
|
|
|
|
for (BufferPos i = 0; i < length; ++i)
|
|
|
|
{
|
|
|
|
if (content[i] == '\n')
|
|
|
|
new_lines.push_back(pos);
|
|
|
|
++pos;
|
|
|
|
}
|
|
|
|
m_lines.insert(line_it, new_lines.begin(), new_lines.end());
|
|
|
|
}
|
|
|
|
else if (modification.type == Modification::Erase)
|
|
|
|
{
|
|
|
|
BufferPos line = line_at(modification.position) + 1;
|
|
|
|
|
|
|
|
auto begin = m_lines.begin() + line;
|
|
|
|
auto end = begin;
|
|
|
|
BufferPos pos = modification.position.m_position;
|
|
|
|
while (end != m_lines.end() and *end <= pos + length)
|
|
|
|
++end;
|
|
|
|
m_lines.erase(begin, end);
|
|
|
|
|
|
|
|
for (BufferPos i = line; i != m_lines.size(); ++i)
|
|
|
|
{
|
|
|
|
m_lines[i] -= length;
|
|
|
|
assert(m_content[m_lines[i]-1] == '\n');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
assert(false);
|
|
|
|
}
|
|
|
|
|
2011-12-06 19:58:43 +01:00
|
|
|
void Buffer::apply_modification(const Modification& modification)
|
2011-09-06 20:49:32 +02:00
|
|
|
{
|
|
|
|
switch (modification.type)
|
|
|
|
{
|
2011-12-06 19:58:43 +01:00
|
|
|
case Modification::Insert:
|
2011-11-27 19:41:25 +01:00
|
|
|
m_content.insert(modification.position.m_position,
|
|
|
|
modification.content);
|
2011-09-06 20:49:32 +02:00
|
|
|
break;
|
2011-12-06 19:58:43 +01:00
|
|
|
case Modification::Erase:
|
2011-09-06 20:49:32 +02:00
|
|
|
{
|
2011-11-27 19:41:25 +01:00
|
|
|
size_t size = modification.content.size();
|
|
|
|
assert(string(modification.position, modification.position + size)
|
|
|
|
== modification.content);
|
|
|
|
m_content.erase(modification.position.m_position, size);
|
2011-09-06 20:49:32 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
assert(false);
|
|
|
|
}
|
2012-02-22 22:54:25 +01:00
|
|
|
update_lines(modification);
|
2011-10-18 02:55:45 +02:00
|
|
|
for (auto listener : m_modification_listeners)
|
|
|
|
listener->on_modification(modification);
|
2011-09-06 20:49:32 +02:00
|
|
|
}
|
|
|
|
|
2011-12-07 15:26:40 +01:00
|
|
|
void Buffer::modify(Modification&& modification)
|
2011-09-06 20:49:32 +02:00
|
|
|
{
|
2011-10-18 02:55:45 +02:00
|
|
|
apply_modification(modification);
|
2011-10-17 16:12:15 +02:00
|
|
|
m_current_undo_group.push_back(std::move(modification));
|
2011-09-06 20:49:32 +02:00
|
|
|
}
|
|
|
|
|
2011-09-08 16:30:36 +02:00
|
|
|
Window* Buffer::get_or_create_window()
|
2011-09-08 02:13:19 +02:00
|
|
|
{
|
2011-09-08 16:30:36 +02:00
|
|
|
if (m_windows.empty())
|
|
|
|
m_windows.push_front(std::unique_ptr<Window>(new Window(*this)));
|
2011-09-08 02:13:19 +02:00
|
|
|
|
2011-09-08 16:30:36 +02:00
|
|
|
return m_windows.front().get();
|
2011-09-08 02:13:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2011-12-06 19:58:43 +01:00
|
|
|
void Buffer::register_modification_listener(ModificationListener* listener)
|
2011-10-18 02:55:45 +02:00
|
|
|
{
|
|
|
|
assert(listener);
|
|
|
|
assert(not contains(m_modification_listeners, listener));
|
|
|
|
m_modification_listeners.push_back(listener);
|
|
|
|
}
|
|
|
|
|
2011-12-06 19:58:43 +01:00
|
|
|
void Buffer::unregister_modification_listener(ModificationListener* listener)
|
2011-10-18 02:55:45 +02:00
|
|
|
{
|
|
|
|
assert(listener);
|
|
|
|
auto it = std::find(m_modification_listeners.begin(),
|
|
|
|
m_modification_listeners.end(),
|
|
|
|
listener);
|
|
|
|
assert(it != m_modification_listeners.end());
|
|
|
|
m_modification_listeners.erase(it);
|
|
|
|
}
|
|
|
|
|
2011-09-02 18:51:20 +02:00
|
|
|
}
|