2011-09-02 20:51:20 +04:00
|
|
|
#ifndef buffer_hh_INCLUDED
|
|
|
|
#define buffer_hh_INCLUDED
|
|
|
|
|
2014-05-07 22:51:01 +04:00
|
|
|
#include "coord.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-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) {}
|
2014-05-07 22:51:01 +04:00
|
|
|
BufferIterator(const Buffer& buffer, ByteCoord 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);
|
|
|
|
|
2014-05-07 22:51:01 +04:00
|
|
|
const ByteCoord& 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;
|
2014-05-07 22:51:01 +04:00
|
|
|
ByteCoord m_coord;
|
2011-09-02 20:51:20 +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
|
|
|
|
2014-04-01 21:54:46 +04:00
|
|
|
size_t timestamp() const;
|
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();
|
|
|
|
|
2014-05-07 22:51:01 +04:00
|
|
|
String string(ByteCoord begin, ByteCoord end) const;
|
2013-06-03 20:56:48 +04:00
|
|
|
|
2014-05-07 22:51:01 +04:00
|
|
|
char byte_at(ByteCoord c) const;
|
|
|
|
ByteCount offset(ByteCoord c) const;
|
|
|
|
ByteCount distance(ByteCoord begin, ByteCoord end) const;
|
2014-05-10 19:25:07 +04:00
|
|
|
ByteCoord advance(ByteCoord coord, ByteCount count) const;
|
|
|
|
ByteCoord next(ByteCoord coord) const;
|
|
|
|
ByteCoord prev(ByteCoord coord) const;
|
2013-06-03 20:56:48 +04:00
|
|
|
|
2014-05-10 19:25:07 +04:00
|
|
|
ByteCoord char_next(ByteCoord coord) const;
|
|
|
|
ByteCoord char_prev(ByteCoord coord) const;
|
2013-06-03 20:56:48 +04:00
|
|
|
|
2014-05-10 19:25:07 +04:00
|
|
|
ByteCoord back_coord() const;
|
|
|
|
ByteCoord end_coord() const;
|
2013-06-04 21:23:11 +04:00
|
|
|
|
2014-05-07 22:51:01 +04:00
|
|
|
bool is_valid(ByteCoord c) const;
|
|
|
|
bool is_end(ByteCoord c) const;
|
2013-04-23 20:46:18 +04:00
|
|
|
|
2014-05-10 19:25:07 +04:00
|
|
|
ByteCoord last_modification_coord() const;
|
2014-04-08 02:39:12 +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
|
2014-05-07 22:51:01 +04:00
|
|
|
BufferIterator iterator_at(ByteCoord 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
|
2014-05-10 19:25:07 +04:00
|
|
|
ByteCoord clamp(ByteCoord coord) const;
|
2011-09-02 20:51:20 +04:00
|
|
|
|
2014-05-07 22:51:01 +04:00
|
|
|
ByteCoord offset_coord(ByteCoord coord, CharCount offset);
|
|
|
|
ByteCoord offset_coord(ByteCoord coord, LineCount offset);
|
2013-12-15 18:14:52 +04:00
|
|
|
|
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-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;
|
2014-05-11 15:20:59 +04:00
|
|
|
|
|
|
|
struct Change
|
|
|
|
{
|
|
|
|
enum Type { Insert, Erase };
|
|
|
|
Type type;
|
|
|
|
ByteCoord begin;
|
|
|
|
ByteCoord end;
|
2014-05-11 16:20:13 +04:00
|
|
|
bool at_end;
|
2014-05-11 15:20:59 +04:00
|
|
|
};
|
|
|
|
memoryview<Change> changes_since(size_t timestamp) 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
|
|
|
|
2014-05-07 22:51:01 +04:00
|
|
|
ByteCoord do_insert(ByteCoord pos, const String& content);
|
|
|
|
ByteCoord do_erase(ByteCoord begin, ByteCoord 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;
|
2014-05-11 15:20:59 +04:00
|
|
|
|
|
|
|
std::vector<Change> m_changes;
|
2011-10-18 02:05:06 +04:00
|
|
|
|
2013-10-15 21:51:31 +04:00
|
|
|
time_t m_fs_timestamp;
|
|
|
|
|
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
|
|
|
|
2011-09-02 20:51:20 +04:00
|
|
|
}
|
|
|
|
|
2014-01-12 21:19:05 +04:00
|
|
|
#include "buffer.inl.hh"
|
2011-10-18 02:05:06 +04:00
|
|
|
|
2011-09-02 20:51:20 +04:00
|
|
|
#endif // buffer_hh_INCLUDED
|