2011-09-02 18:51:20 +02:00
|
|
|
#ifndef buffer_hh_INCLUDED
|
|
|
|
#define buffer_hh_INCLUDED
|
|
|
|
|
2014-05-07 20:51:01 +02:00
|
|
|
#include "coord.hh"
|
2013-10-25 01:01:17 +02:00
|
|
|
#include "hook_manager.hh"
|
2012-04-03 15:39:20 +02:00
|
|
|
#include "option_manager.hh"
|
2013-10-25 01:01:17 +02:00
|
|
|
#include "keymap_manager.hh"
|
2012-04-14 03:17:09 +02:00
|
|
|
#include "string.hh"
|
2014-01-09 22:01:29 +01:00
|
|
|
#include "value.hh"
|
2011-09-05 21:06:31 +02:00
|
|
|
|
2013-04-09 20:05:40 +02:00
|
|
|
#include <vector>
|
|
|
|
#include <list>
|
|
|
|
#include <memory>
|
|
|
|
#include <unordered_set>
|
|
|
|
|
2011-09-02 18:51:20 +02:00
|
|
|
namespace Kakoune
|
|
|
|
{
|
|
|
|
|
|
|
|
class Buffer;
|
2011-09-08 02:13:19 +02:00
|
|
|
|
2013-10-17 19:47:09 +02:00
|
|
|
constexpr time_t InvalidTime = 0;
|
|
|
|
|
2012-01-11 15:21:58 +01:00
|
|
|
// A BufferIterator permits to iterate over the characters of a buffer
|
2011-09-02 18:51:20 +02:00
|
|
|
class BufferIterator
|
|
|
|
{
|
|
|
|
public:
|
2014-01-09 20:50:01 +01: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 18:51:20 +02:00
|
|
|
|
2012-04-04 15:56:19 +02:00
|
|
|
BufferIterator() : m_buffer(nullptr) {}
|
2014-05-07 20:51:01 +02:00
|
|
|
BufferIterator(const Buffer& buffer, ByteCoord coord);
|
2011-09-02 18:51:20 +02: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-28 22:53:29 +02:00
|
|
|
bool operator> (const BufferIterator& iterator) const;
|
|
|
|
bool operator>= (const BufferIterator& iterator) const;
|
2011-09-02 18:51:20 +02:00
|
|
|
|
2012-10-01 20:20:08 +02:00
|
|
|
char operator* () const;
|
2013-05-30 14:05:05 +02:00
|
|
|
char operator[](size_t n) const;
|
2012-08-23 23:56:35 +02:00
|
|
|
size_t operator- (const BufferIterator& iterator) const;
|
2011-09-02 18:51:20 +02:00
|
|
|
|
2012-10-11 00:41:48 +02:00
|
|
|
BufferIterator operator+ (ByteCount size) const;
|
|
|
|
BufferIterator operator- (ByteCount size) const;
|
2011-09-02 18:51:20 +02:00
|
|
|
|
2012-10-11 00:41:48 +02:00
|
|
|
BufferIterator& operator+= (ByteCount size);
|
|
|
|
BufferIterator& operator-= (ByteCount size);
|
2011-09-02 18:51:20 +02:00
|
|
|
|
|
|
|
BufferIterator& operator++ ();
|
|
|
|
BufferIterator& operator-- ();
|
|
|
|
|
2012-10-02 14:09:06 +02:00
|
|
|
BufferIterator operator++ (int);
|
|
|
|
BufferIterator operator-- (int);
|
|
|
|
|
2014-05-07 20:51:01 +02:00
|
|
|
const ByteCoord& coord() const { return m_coord; }
|
2012-03-30 13:37:18 +02:00
|
|
|
|
2012-11-22 18:54:37 +01:00
|
|
|
private:
|
2012-11-12 20:07:33 +01:00
|
|
|
safe_ptr<const Buffer> m_buffer;
|
2014-05-07 20:51:01 +02:00
|
|
|
ByteCoord m_coord;
|
2011-09-02 18:51:20 +02:00
|
|
|
};
|
|
|
|
|
2012-01-11 15:21:58 +01: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-12 21:36:42 +01:00
|
|
|
class Buffer : public SafeCountable, public OptionManagerWatcher
|
2011-09-02 18:51:20 +02:00
|
|
|
{
|
|
|
|
public:
|
2012-11-20 19:47:56 +01:00
|
|
|
enum class Flags
|
2011-10-07 16:15:55 +02:00
|
|
|
{
|
2012-11-20 19:47:56 +01:00
|
|
|
None = 0,
|
|
|
|
File = 1,
|
|
|
|
New = 2,
|
2012-11-21 13:43:10 +01:00
|
|
|
Fifo = 4,
|
|
|
|
NoUndo = 8,
|
2011-10-07 16:15:55 +02:00
|
|
|
};
|
|
|
|
|
2013-10-17 19:47:09 +02:00
|
|
|
Buffer(String name, Flags flags, std::vector<String> lines = { "\n" },
|
|
|
|
time_t fs_timestamp = InvalidTime);
|
2011-10-24 16:23:13 +02:00
|
|
|
Buffer(const Buffer&) = delete;
|
|
|
|
Buffer& operator= (const Buffer&) = delete;
|
|
|
|
~Buffer();
|
2011-09-02 18:51:20 +02:00
|
|
|
|
2012-11-20 19:47:56 +01:00
|
|
|
Flags flags() const { return m_flags; }
|
|
|
|
Flags& flags() { return m_flags; }
|
2011-09-06 20:49:32 +02:00
|
|
|
|
2013-04-22 13:48:18 +02:00
|
|
|
bool set_name(String name);
|
|
|
|
|
2013-06-06 19:39:53 +02:00
|
|
|
BufferIterator insert(const BufferIterator& pos, String content);
|
|
|
|
BufferIterator erase(BufferIterator begin, BufferIterator end);
|
2011-12-07 15:26:40 +01:00
|
|
|
|
2014-04-01 19:54:46 +02:00
|
|
|
size_t timestamp() const;
|
2013-10-15 19:51:31 +02:00
|
|
|
time_t fs_timestamp() const;
|
|
|
|
void set_fs_timestamp(time_t ts);
|
2012-08-15 17:07:53 +02:00
|
|
|
|
2013-02-20 14:20:16 +01:00
|
|
|
void commit_undo_group();
|
2011-09-06 20:49:32 +02:00
|
|
|
bool undo();
|
|
|
|
bool redo();
|
|
|
|
|
2014-05-07 20:51:01 +02:00
|
|
|
String string(ByteCoord begin, ByteCoord end) const;
|
2013-06-03 18:56:48 +02:00
|
|
|
|
2014-05-07 20:51:01 +02:00
|
|
|
char byte_at(ByteCoord c) const;
|
|
|
|
ByteCount offset(ByteCoord c) const;
|
|
|
|
ByteCount distance(ByteCoord begin, ByteCoord end) const;
|
2014-05-10 17:25:07 +02:00
|
|
|
ByteCoord advance(ByteCoord coord, ByteCount count) const;
|
|
|
|
ByteCoord next(ByteCoord coord) const;
|
|
|
|
ByteCoord prev(ByteCoord coord) const;
|
2013-06-03 18:56:48 +02:00
|
|
|
|
2014-05-10 17:25:07 +02:00
|
|
|
ByteCoord char_next(ByteCoord coord) const;
|
|
|
|
ByteCoord char_prev(ByteCoord coord) const;
|
2013-06-03 18:56:48 +02:00
|
|
|
|
2014-05-10 17:25:07 +02:00
|
|
|
ByteCoord back_coord() const;
|
|
|
|
ByteCoord end_coord() const;
|
2013-06-04 19:23:11 +02:00
|
|
|
|
2014-05-07 20:51:01 +02:00
|
|
|
bool is_valid(ByteCoord c) const;
|
|
|
|
bool is_end(ByteCoord c) const;
|
2013-04-23 18:46:18 +02:00
|
|
|
|
2014-05-10 17:25:07 +02:00
|
|
|
ByteCoord last_modification_coord() const;
|
2014-04-08 00:39:12 +02:00
|
|
|
|
2011-09-02 18:51:20 +02:00
|
|
|
BufferIterator begin() const;
|
|
|
|
BufferIterator end() const;
|
2013-04-24 13:56:36 +02:00
|
|
|
ByteCount byte_count() const;
|
2012-08-22 23:33:52 +02:00
|
|
|
LineCount line_count() const;
|
2013-06-05 18:41:02 +02:00
|
|
|
|
|
|
|
const String& operator[](LineCount line) const
|
2012-11-22 18:54:37 +01:00
|
|
|
{ return m_lines[line].content; }
|
2011-09-02 18:51:20 +02:00
|
|
|
|
2013-05-30 14:17:19 +02:00
|
|
|
// returns an iterator at given coordinates. clamp line_and_column
|
2014-05-07 20:51:01 +02:00
|
|
|
BufferIterator iterator_at(ByteCoord coord) const;
|
2011-09-02 18:51:20 +02:00
|
|
|
|
2011-12-05 20:21:11 +01:00
|
|
|
// returns nearest valid coordinates from given ones
|
2014-05-10 17:25:07 +02:00
|
|
|
ByteCoord clamp(ByteCoord coord) const;
|
2011-09-02 18:51:20 +02:00
|
|
|
|
2014-05-07 20:51:01 +02:00
|
|
|
ByteCoord offset_coord(ByteCoord coord, CharCount offset);
|
|
|
|
ByteCoord offset_coord(ByteCoord coord, LineCount offset);
|
2013-12-15 15:14:52 +01:00
|
|
|
|
2012-11-22 18:54:37 +01:00
|
|
|
const String& name() const { return m_name; }
|
2013-03-25 19:58:23 +01:00
|
|
|
String display_name() const;
|
2012-11-22 18:54:37 +01: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 13:37:18 +02:00
|
|
|
|
2012-11-22 13:50:29 +01: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 01:01:17 +02:00
|
|
|
KeymapManager& keymaps() { return m_keymaps; }
|
|
|
|
const KeymapManager& keymaps() const { return m_keymaps; }
|
2012-04-03 15:39:20 +02:00
|
|
|
|
2014-01-09 22:01:29 +01:00
|
|
|
ValueMap& values() const { return m_values; }
|
|
|
|
|
2013-12-11 14:57:10 +01:00
|
|
|
void run_hook_in_own_context(const String& hook_name, const String& param);
|
|
|
|
|
2013-10-21 19:57:19 +02:00
|
|
|
void reload(std::vector<String> lines, time_t fs_timestamp = InvalidTime);
|
|
|
|
|
2012-03-30 13:37:18 +02:00
|
|
|
void check_invariant() const;
|
2014-05-11 13:20:59 +02:00
|
|
|
|
|
|
|
struct Change
|
|
|
|
{
|
|
|
|
enum Type { Insert, Erase };
|
|
|
|
Type type;
|
|
|
|
ByteCoord begin;
|
|
|
|
ByteCoord end;
|
2014-05-11 14:20:13 +02:00
|
|
|
bool at_end;
|
2014-05-11 13:20:59 +02:00
|
|
|
};
|
|
|
|
memoryview<Change> changes_since(size_t timestamp) const;
|
2013-04-03 19:22:12 +02:00
|
|
|
private:
|
2013-11-12 21:36:42 +01:00
|
|
|
|
|
|
|
void on_option_changed(const Option& option) override;
|
|
|
|
|
2012-03-30 13:37:18 +02:00
|
|
|
struct Line
|
|
|
|
{
|
2012-10-11 00:41:48 +02:00
|
|
|
ByteCount start;
|
2012-03-30 13:37:18 +02:00
|
|
|
String content;
|
2012-03-30 14:00:40 +02:00
|
|
|
|
2012-10-11 00:41:48 +02:00
|
|
|
ByteCount length() const { return content.length(); }
|
2012-03-30 13:37:18 +02:00
|
|
|
};
|
2012-08-22 23:33:52 +02: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 13:37:18 +02:00
|
|
|
|
2014-05-07 20:51:01 +02:00
|
|
|
ByteCoord do_insert(ByteCoord pos, const String& content);
|
|
|
|
ByteCoord do_erase(ByteCoord begin, ByteCoord end);
|
2011-09-02 18:51:20 +02:00
|
|
|
|
2012-04-14 03:17:09 +02:00
|
|
|
String m_name;
|
2012-11-20 19:47:56 +01:00
|
|
|
Flags m_flags;
|
2011-09-06 20:49:32 +02:00
|
|
|
|
2012-08-10 19:12:43 +02:00
|
|
|
struct Modification;
|
2014-01-09 20:50:01 +01:00
|
|
|
using UndoGroup = std::vector<Modification>;
|
2013-04-25 14:03:55 +02:00
|
|
|
friend class UndoGroupOptimizer;
|
2011-09-06 20:49:32 +02:00
|
|
|
|
|
|
|
std::vector<UndoGroup> m_history;
|
|
|
|
std::vector<UndoGroup>::iterator m_history_cursor;
|
2011-10-05 16:21:24 +02:00
|
|
|
UndoGroup m_current_undo_group;
|
2011-09-06 20:49:32 +02:00
|
|
|
|
2011-12-06 19:58:43 +01:00
|
|
|
void apply_modification(const Modification& modification);
|
|
|
|
void revert_modification(const Modification& modification);
|
2011-09-06 20:49:32 +02:00
|
|
|
|
2011-11-03 14:44:02 +01:00
|
|
|
size_t m_last_save_undo_index;
|
2014-05-11 13:20:59 +02:00
|
|
|
|
|
|
|
std::vector<Change> m_changes;
|
2011-10-18 00:05:06 +02:00
|
|
|
|
2013-10-15 19:51:31 +02:00
|
|
|
time_t m_fs_timestamp;
|
|
|
|
|
2012-11-22 13:50:29 +01:00
|
|
|
OptionManager m_options;
|
|
|
|
HookManager m_hooks;
|
2013-10-25 01:01:17 +02:00
|
|
|
KeymapManager m_keymaps;
|
2011-09-02 18:51:20 +02:00
|
|
|
|
2014-01-09 22:01:29 +01:00
|
|
|
// Values are just data holding by the buffer, so it is part of its
|
|
|
|
// observable state
|
|
|
|
mutable ValueMap m_values;
|
|
|
|
|
2013-08-01 00:28:01 +02:00
|
|
|
friend constexpr Flags operator|(Flags lhs, Flags rhs)
|
|
|
|
{
|
|
|
|
return (Flags)((int) lhs | (int) rhs);
|
|
|
|
}
|
2012-11-20 19:47:56 +01:00
|
|
|
|
2013-08-01 00:28:01 +02:00
|
|
|
friend Flags& operator|=(Flags& lhs, Flags rhs)
|
|
|
|
{
|
|
|
|
(int&) lhs |= (int) rhs;
|
|
|
|
return lhs;
|
|
|
|
}
|
2012-11-20 19:47:56 +01:00
|
|
|
|
2013-08-01 00:28:01 +02:00
|
|
|
friend constexpr bool operator&(Flags lhs, Flags rhs)
|
|
|
|
{
|
|
|
|
return ((int) lhs & (int) rhs) != 0;
|
|
|
|
}
|
2012-11-20 19:47:56 +01:00
|
|
|
|
2013-08-01 00:28:01 +02:00
|
|
|
friend Flags& operator&=(Flags& lhs, Flags rhs)
|
|
|
|
{
|
|
|
|
(int&) lhs &= (int) rhs;
|
|
|
|
return lhs;
|
|
|
|
}
|
2012-11-20 19:47:56 +01:00
|
|
|
|
2013-08-01 00:28:01 +02:00
|
|
|
friend constexpr Flags operator~(Flags lhs)
|
|
|
|
{
|
|
|
|
return (Flags)(~(int)lhs);
|
|
|
|
}
|
|
|
|
};
|
2012-11-20 19:47:56 +01:00
|
|
|
|
2011-09-02 18:51:20 +02:00
|
|
|
}
|
|
|
|
|
2014-01-12 18:19:05 +01:00
|
|
|
#include "buffer.inl.hh"
|
2011-10-18 00:05:06 +02:00
|
|
|
|
2011-09-02 18:51:20 +02:00
|
|
|
#endif // buffer_hh_INCLUDED
|