2011-09-02 20:51:20 +04:00
|
|
|
#ifndef buffer_hh_INCLUDED
|
|
|
|
#define buffer_hh_INCLUDED
|
|
|
|
|
2011-09-17 18:13:33 +04:00
|
|
|
#include "line_and_column.hh"
|
2013-10-25 03:01:17 +04:00
|
|
|
#include "hook_manager.hh"
|
2012-04-03 17:39:20 +04:00
|
|
|
#include "option_manager.hh"
|
2013-10-25 03:01:17 +04:00
|
|
|
#include "keymap_manager.hh"
|
2012-04-14 05:17:09 +04:00
|
|
|
#include "string.hh"
|
2014-01-10 01:01:29 +04:00
|
|
|
#include "value.hh"
|
2011-09-05 23:06:31 +04:00
|
|
|
|
2013-04-09 22:05:40 +04:00
|
|
|
#include <vector>
|
|
|
|
#include <list>
|
|
|
|
#include <memory>
|
|
|
|
#include <unordered_set>
|
|
|
|
|
2011-09-02 20:51:20 +04:00
|
|
|
namespace Kakoune
|
|
|
|
{
|
|
|
|
|
|
|
|
class Buffer;
|
2011-09-08 04:13:19 +04:00
|
|
|
|
2013-10-17 21:47:09 +04:00
|
|
|
constexpr time_t InvalidTime = 0;
|
|
|
|
|
2012-10-11 02:41:48 +04:00
|
|
|
struct BufferCoord : LineAndColumn<BufferCoord, LineCount, ByteCount>
|
2011-09-02 20:51:20 +04:00
|
|
|
{
|
2012-10-11 02:41:48 +04:00
|
|
|
constexpr BufferCoord(LineCount line = 0, ByteCount column = 0)
|
2011-09-05 23:06:31 +04:00
|
|
|
: LineAndColumn(line, column) {}
|
2011-09-02 20:51:20 +04:00
|
|
|
};
|
|
|
|
|
2012-01-11 18:21:58 +04:00
|
|
|
// A BufferIterator permits to iterate over the characters of a buffer
|
2011-09-02 20:51:20 +04:00
|
|
|
class BufferIterator
|
|
|
|
{
|
|
|
|
public:
|
2014-01-09 23:50:01 +04:00
|
|
|
using value_type = char;
|
|
|
|
using difference_type = size_t;
|
|
|
|
using pointer = const value_type*;
|
|
|
|
using reference = const value_type&;
|
|
|
|
using iterator_category = std::random_access_iterator_tag;
|
2011-09-02 20:51:20 +04:00
|
|
|
|
2012-04-04 17:56:19 +04:00
|
|
|
BufferIterator() : m_buffer(nullptr) {}
|
2012-03-30 15:37:18 +04:00
|
|
|
BufferIterator(const Buffer& buffer, BufferCoord coord);
|
2011-09-02 20:51:20 +04:00
|
|
|
|
|
|
|
bool operator== (const BufferIterator& iterator) const;
|
|
|
|
bool operator!= (const BufferIterator& iterator) const;
|
|
|
|
bool operator< (const BufferIterator& iterator) const;
|
|
|
|
bool operator<= (const BufferIterator& iterator) const;
|
2011-09-29 00:53:29 +04:00
|
|
|
bool operator> (const BufferIterator& iterator) const;
|
|
|
|
bool operator>= (const BufferIterator& iterator) const;
|
2011-09-02 20:51:20 +04:00
|
|
|
|
2012-10-01 22:20:08 +04:00
|
|
|
char operator* () const;
|
2013-05-30 16:05:05 +04:00
|
|
|
char operator[](size_t n) const;
|
2012-08-24 01:56:35 +04:00
|
|
|
size_t operator- (const BufferIterator& iterator) const;
|
2011-09-02 20:51:20 +04:00
|
|
|
|
2012-10-11 02:41:48 +04:00
|
|
|
BufferIterator operator+ (ByteCount size) const;
|
|
|
|
BufferIterator operator- (ByteCount size) const;
|
2011-09-02 20:51:20 +04:00
|
|
|
|
2012-10-11 02:41:48 +04:00
|
|
|
BufferIterator& operator+= (ByteCount size);
|
|
|
|
BufferIterator& operator-= (ByteCount size);
|
2011-09-02 20:51:20 +04:00
|
|
|
|
|
|
|
BufferIterator& operator++ ();
|
|
|
|
BufferIterator& operator-- ();
|
|
|
|
|
2012-10-02 16:09:06 +04:00
|
|
|
BufferIterator operator++ (int);
|
|
|
|
BufferIterator operator-- (int);
|
|
|
|
|
2012-07-16 23:51:37 +04:00
|
|
|
const BufferCoord& coord() const { return m_coord; }
|
2012-03-30 15:37:18 +04:00
|
|
|
|
2012-11-22 21:54:37 +04:00
|
|
|
private:
|
2012-11-12 23:07:33 +04:00
|
|
|
safe_ptr<const Buffer> m_buffer;
|
2012-03-30 15:37:18 +04:00
|
|
|
BufferCoord m_coord;
|
2011-09-02 20:51:20 +04:00
|
|
|
};
|
|
|
|
|
2012-07-16 23:51:37 +04:00
|
|
|
class BufferChangeListener
|
|
|
|
{
|
|
|
|
public:
|
2013-07-26 02:44:00 +04:00
|
|
|
virtual void on_insert(const Buffer& buffer, BufferCoord begin, BufferCoord end) = 0;
|
|
|
|
virtual void on_erase(const Buffer& buffer, BufferCoord begin, BufferCoord end) = 0;
|
2012-07-16 23:51:37 +04:00
|
|
|
};
|
|
|
|
|
2012-01-11 18:21:58 +04:00
|
|
|
// A Buffer is a in-memory representation of a file
|
|
|
|
//
|
|
|
|
// The Buffer class permits to read and mutate this file
|
|
|
|
// representation. It also manage modifications undo/redo and
|
|
|
|
// provides tools to deal with the line/column nature of text.
|
2013-11-13 00:36:42 +04:00
|
|
|
class Buffer : public SafeCountable, public OptionManagerWatcher
|
2011-09-02 20:51:20 +04:00
|
|
|
{
|
|
|
|
public:
|
2012-11-20 22:47:56 +04:00
|
|
|
enum class Flags
|
2011-10-07 18:15:55 +04:00
|
|
|
{
|
2012-11-20 22:47:56 +04:00
|
|
|
None = 0,
|
|
|
|
File = 1,
|
|
|
|
New = 2,
|
2012-11-21 16:43:10 +04:00
|
|
|
Fifo = 4,
|
|
|
|
NoUndo = 8,
|
2011-10-07 18:15:55 +04:00
|
|
|
};
|
|
|
|
|
2013-10-17 21:47:09 +04:00
|
|
|
Buffer(String name, Flags flags, std::vector<String> lines = { "\n" },
|
|
|
|
time_t fs_timestamp = InvalidTime);
|
2011-10-24 18:23:13 +04:00
|
|
|
Buffer(const Buffer&) = delete;
|
|
|
|
Buffer& operator= (const Buffer&) = delete;
|
|
|
|
~Buffer();
|
2011-09-02 20:51:20 +04:00
|
|
|
|
2012-11-20 22:47:56 +04:00
|
|
|
Flags flags() const { return m_flags; }
|
|
|
|
Flags& flags() { return m_flags; }
|
2011-09-06 22:49:32 +04:00
|
|
|
|
2013-04-22 15:48:18 +04:00
|
|
|
bool set_name(String name);
|
|
|
|
|
2013-06-06 21:39:53 +04:00
|
|
|
BufferIterator insert(const BufferIterator& pos, String content);
|
|
|
|
BufferIterator erase(BufferIterator begin, BufferIterator end);
|
2011-12-07 18:26:40 +04:00
|
|
|
|
2012-08-15 19:07:53 +04:00
|
|
|
size_t timestamp() const { return m_timestamp; }
|
2013-10-15 21:51:31 +04:00
|
|
|
time_t fs_timestamp() const;
|
|
|
|
void set_fs_timestamp(time_t ts);
|
2012-08-15 19:07:53 +04:00
|
|
|
|
2013-02-20 17:20:16 +04:00
|
|
|
void commit_undo_group();
|
2011-09-06 22:49:32 +04:00
|
|
|
bool undo();
|
|
|
|
bool redo();
|
|
|
|
|
2013-07-26 02:44:00 +04:00
|
|
|
String string(BufferCoord begin, BufferCoord end) const;
|
2013-06-03 20:56:48 +04:00
|
|
|
|
2013-07-26 02:44:00 +04:00
|
|
|
char byte_at(BufferCoord c) const;
|
|
|
|
ByteCount offset(BufferCoord c) const;
|
|
|
|
ByteCount distance(BufferCoord begin, BufferCoord end) const;
|
2013-05-23 21:39:27 +04:00
|
|
|
BufferCoord advance(BufferCoord coord, ByteCount count) const;
|
|
|
|
BufferCoord next(BufferCoord coord) const;
|
|
|
|
BufferCoord prev(BufferCoord coord) const;
|
2013-06-03 20:56:48 +04:00
|
|
|
|
|
|
|
BufferCoord char_next(BufferCoord coord) const;
|
|
|
|
BufferCoord char_prev(BufferCoord coord) const;
|
|
|
|
|
2013-06-04 21:23:11 +04:00
|
|
|
BufferCoord back_coord() const { return { line_count() - 1, m_lines.back().length() - 1 }; }
|
|
|
|
BufferCoord end_coord() const { return { line_count() - 1, m_lines.back().length() }; }
|
|
|
|
|
2013-07-26 02:44:00 +04:00
|
|
|
bool is_valid(BufferCoord c) const;
|
|
|
|
bool is_end(BufferCoord c) const;
|
2013-04-23 20:46:18 +04:00
|
|
|
|
2011-09-02 20:51:20 +04:00
|
|
|
BufferIterator begin() const;
|
|
|
|
BufferIterator end() const;
|
2013-04-24 15:56:36 +04:00
|
|
|
ByteCount byte_count() const;
|
2012-08-23 01:33:52 +04:00
|
|
|
LineCount line_count() const;
|
2013-06-05 20:41:02 +04:00
|
|
|
|
|
|
|
const String& operator[](LineCount line) const
|
2012-11-22 21:54:37 +04:00
|
|
|
{ return m_lines[line].content; }
|
2011-09-02 20:51:20 +04:00
|
|
|
|
2013-05-30 16:17:19 +04:00
|
|
|
// returns an iterator at given coordinates. clamp line_and_column
|
2013-07-26 02:44:00 +04:00
|
|
|
BufferIterator iterator_at(BufferCoord coord) const;
|
2011-09-02 20:51:20 +04:00
|
|
|
|
2011-12-05 23:21:11 +04:00
|
|
|
// returns nearest valid coordinates from given ones
|
2013-05-30 16:17:19 +04:00
|
|
|
BufferCoord clamp(BufferCoord coord) const;
|
2011-09-02 20:51:20 +04:00
|
|
|
|
2013-12-15 18:14:52 +04:00
|
|
|
BufferCoord offset_coord(BufferCoord coord, CharCount offset);
|
|
|
|
BufferCoord offset_coord(BufferCoord coord, LineCount offset);
|
|
|
|
|
2012-11-22 21:54:37 +04:00
|
|
|
const String& name() const { return m_name; }
|
2013-03-25 22:58:23 +04:00
|
|
|
String display_name() const;
|
2012-11-22 21:54:37 +04:00
|
|
|
|
|
|
|
// returns true if the buffer is in a different state than
|
|
|
|
// the last time it was saved
|
|
|
|
bool is_modified() const;
|
|
|
|
|
|
|
|
// notify the buffer that it was saved in the current state
|
|
|
|
void notify_saved();
|
2012-03-30 15:37:18 +04:00
|
|
|
|
2012-11-22 16:50:29 +04:00
|
|
|
OptionManager& options() { return m_options; }
|
|
|
|
const OptionManager& options() const { return m_options; }
|
|
|
|
HookManager& hooks() { return m_hooks; }
|
|
|
|
const HookManager& hooks() const { return m_hooks; }
|
2013-10-25 03:01:17 +04:00
|
|
|
KeymapManager& keymaps() { return m_keymaps; }
|
|
|
|
const KeymapManager& keymaps() const { return m_keymaps; }
|
2012-04-03 17:39:20 +04:00
|
|
|
|
2014-01-10 01:01:29 +04:00
|
|
|
ValueMap& values() const { return m_values; }
|
|
|
|
|
2013-12-11 17:57:10 +04:00
|
|
|
void run_hook_in_own_context(const String& hook_name, const String& param);
|
|
|
|
|
2013-01-31 21:58:25 +04:00
|
|
|
std::unordered_set<BufferChangeListener*>& change_listeners() const { return m_change_listeners; }
|
2011-09-02 20:51:20 +04:00
|
|
|
|
2013-10-21 21:57:19 +04:00
|
|
|
void reload(std::vector<String> lines, time_t fs_timestamp = InvalidTime);
|
|
|
|
|
2012-03-30 15:37:18 +04:00
|
|
|
void check_invariant() const;
|
2013-04-03 21:22:12 +04:00
|
|
|
private:
|
2013-11-13 00:36:42 +04:00
|
|
|
|
|
|
|
void on_option_changed(const Option& option) override;
|
|
|
|
|
2012-03-30 15:37:18 +04:00
|
|
|
struct Line
|
|
|
|
{
|
2012-10-11 02:41:48 +04:00
|
|
|
ByteCount start;
|
2012-03-30 15:37:18 +04:00
|
|
|
String content;
|
2012-03-30 16:00:40 +04:00
|
|
|
|
2012-10-11 02:41:48 +04:00
|
|
|
ByteCount length() const { return content.length(); }
|
2012-03-30 15:37:18 +04:00
|
|
|
};
|
2012-08-23 01:33:52 +04:00
|
|
|
struct LineList : std::vector<Line>
|
|
|
|
{
|
|
|
|
Line& operator[](LineCount line)
|
|
|
|
{ return std::vector<Line>::operator[]((int)line); }
|
|
|
|
|
|
|
|
const Line& operator[](LineCount line) const
|
|
|
|
{ return std::vector<Line>::operator[]((int)line); }
|
|
|
|
};
|
|
|
|
LineList m_lines;
|
2012-03-30 15:37:18 +04:00
|
|
|
|
2013-07-26 02:44:00 +04:00
|
|
|
BufferCoord do_insert(BufferCoord pos, const String& content);
|
|
|
|
BufferCoord do_erase(BufferCoord begin, BufferCoord end);
|
2011-09-02 20:51:20 +04:00
|
|
|
|
2012-04-14 05:17:09 +04:00
|
|
|
String m_name;
|
2012-11-20 22:47:56 +04:00
|
|
|
Flags m_flags;
|
2011-09-06 22:49:32 +04:00
|
|
|
|
2012-08-10 21:12:43 +04:00
|
|
|
struct Modification;
|
2014-01-09 23:50:01 +04:00
|
|
|
using UndoGroup = std::vector<Modification>;
|
2013-04-25 16:03:55 +04:00
|
|
|
friend class UndoGroupOptimizer;
|
2011-09-06 22:49:32 +04:00
|
|
|
|
|
|
|
std::vector<UndoGroup> m_history;
|
|
|
|
std::vector<UndoGroup>::iterator m_history_cursor;
|
2011-10-05 18:21:24 +04:00
|
|
|
UndoGroup m_current_undo_group;
|
2011-09-06 22:49:32 +04:00
|
|
|
|
2011-12-06 22:58:43 +04:00
|
|
|
void apply_modification(const Modification& modification);
|
|
|
|
void revert_modification(const Modification& modification);
|
2011-09-06 22:49:32 +04:00
|
|
|
|
2011-11-03 17:44:02 +04:00
|
|
|
size_t m_last_save_undo_index;
|
2012-08-15 19:07:53 +04:00
|
|
|
size_t m_timestamp;
|
2011-10-18 02:05:06 +04:00
|
|
|
|
2013-10-15 21:51:31 +04:00
|
|
|
time_t m_fs_timestamp;
|
|
|
|
|
2012-11-22 17:08:55 +04:00
|
|
|
// this is mutable as adding or removing listeners is not muting the
|
|
|
|
// buffer observable state.
|
2013-01-31 21:58:25 +04:00
|
|
|
mutable std::unordered_set<BufferChangeListener*> m_change_listeners;
|
2012-04-03 17:39:20 +04:00
|
|
|
|
2012-11-22 16:50:29 +04:00
|
|
|
OptionManager m_options;
|
|
|
|
HookManager m_hooks;
|
2013-10-25 03:01:17 +04:00
|
|
|
KeymapManager m_keymaps;
|
2011-09-02 20:51:20 +04:00
|
|
|
|
2014-01-10 01:01:29 +04:00
|
|
|
// Values are just data holding by the buffer, so it is part of its
|
|
|
|
// observable state
|
|
|
|
mutable ValueMap m_values;
|
|
|
|
|
2013-08-01 02:28:01 +04:00
|
|
|
friend constexpr Flags operator|(Flags lhs, Flags rhs)
|
|
|
|
{
|
|
|
|
return (Flags)((int) lhs | (int) rhs);
|
|
|
|
}
|
2012-11-20 22:47:56 +04:00
|
|
|
|
2013-08-01 02:28:01 +04:00
|
|
|
friend Flags& operator|=(Flags& lhs, Flags rhs)
|
|
|
|
{
|
|
|
|
(int&) lhs |= (int) rhs;
|
|
|
|
return lhs;
|
|
|
|
}
|
2012-11-20 22:47:56 +04:00
|
|
|
|
2013-08-01 02:28:01 +04:00
|
|
|
friend constexpr bool operator&(Flags lhs, Flags rhs)
|
|
|
|
{
|
|
|
|
return ((int) lhs & (int) rhs) != 0;
|
|
|
|
}
|
2012-11-20 22:47:56 +04:00
|
|
|
|
2013-08-01 02:28:01 +04:00
|
|
|
friend Flags& operator&=(Flags& lhs, Flags rhs)
|
|
|
|
{
|
|
|
|
(int&) lhs &= (int) rhs;
|
|
|
|
return lhs;
|
|
|
|
}
|
2012-11-20 22:47:56 +04:00
|
|
|
|
2013-08-01 02:28:01 +04:00
|
|
|
friend constexpr Flags operator~(Flags lhs)
|
|
|
|
{
|
|
|
|
return (Flags)(~(int)lhs);
|
|
|
|
}
|
|
|
|
};
|
2012-11-20 22:47:56 +04:00
|
|
|
|
2013-04-02 15:56:30 +04:00
|
|
|
struct BufferListenerRegisterFuncs
|
2013-03-31 15:49:56 +04:00
|
|
|
{
|
2013-04-02 15:56:30 +04:00
|
|
|
static void insert(const Buffer& buffer, BufferChangeListener& listener)
|
2013-03-31 15:49:56 +04:00
|
|
|
{
|
2013-04-02 15:56:30 +04:00
|
|
|
buffer.change_listeners().insert(&listener);
|
2013-03-31 15:49:56 +04:00
|
|
|
}
|
2013-04-02 15:56:30 +04:00
|
|
|
static void remove(const Buffer& buffer, BufferChangeListener& listener)
|
2013-03-31 15:49:56 +04:00
|
|
|
{
|
2013-04-02 15:56:30 +04:00
|
|
|
buffer.change_listeners().erase(&listener);
|
2013-03-31 15:49:56 +04:00
|
|
|
}
|
2013-04-02 15:56:30 +04:00
|
|
|
};
|
2013-03-31 15:49:56 +04:00
|
|
|
|
2013-04-02 15:56:30 +04:00
|
|
|
class BufferChangeListener_AutoRegister
|
|
|
|
: public BufferChangeListener,
|
|
|
|
public AutoRegister<BufferChangeListener_AutoRegister,
|
2013-12-21 00:10:08 +04:00
|
|
|
BufferListenerRegisterFuncs, Buffer>
|
2013-04-02 15:56:30 +04:00
|
|
|
{
|
|
|
|
public:
|
2013-12-21 00:10:08 +04:00
|
|
|
BufferChangeListener_AutoRegister(Buffer& buffer)
|
2013-04-02 15:56:30 +04:00
|
|
|
: AutoRegister(buffer) {}
|
2013-03-31 15:49:56 +04:00
|
|
|
|
2013-12-21 00:10:08 +04:00
|
|
|
Buffer& buffer() const { return registry(); }
|
2013-03-31 15:49:56 +04:00
|
|
|
};
|
2012-11-20 22:47:56 +04:00
|
|
|
|
2011-09-02 20:51:20 +04:00
|
|
|
}
|
|
|
|
|
2011-10-27 18:13:39 +04:00
|
|
|
#include "buffer_iterator.inl.hh"
|
2011-10-18 02:05:06 +04:00
|
|
|
|
2011-09-02 20:51:20 +04:00
|
|
|
#endif // buffer_hh_INCLUDED
|