2011-09-02 18:51:20 +02:00
|
|
|
#ifndef buffer_hh_INCLUDED
|
|
|
|
#define buffer_hh_INCLUDED
|
|
|
|
|
|
|
|
#include <vector>
|
2011-09-08 02:13:19 +02:00
|
|
|
#include <list>
|
|
|
|
#include <memory>
|
2011-09-02 18:51:20 +02:00
|
|
|
|
2011-09-17 16:13:33 +02:00
|
|
|
#include "line_and_column.hh"
|
2012-04-03 15:39:20 +02:00
|
|
|
#include "option_manager.hh"
|
2012-06-07 15:29:44 +02:00
|
|
|
#include "hook_manager.hh"
|
2012-04-14 03:17:09 +02:00
|
|
|
#include "string.hh"
|
2011-09-05 21:06:31 +02:00
|
|
|
|
2011-09-02 18:51:20 +02:00
|
|
|
namespace Kakoune
|
|
|
|
{
|
|
|
|
|
|
|
|
class Buffer;
|
2011-09-08 02:13:19 +02:00
|
|
|
class Window;
|
|
|
|
|
2012-04-14 03:17:09 +02:00
|
|
|
typedef int BufferPos;
|
|
|
|
typedef int BufferSize;
|
2011-09-02 18:51:20 +02:00
|
|
|
|
2011-09-17 16:13:33 +02:00
|
|
|
struct BufferCoord : LineAndColumn<BufferCoord>
|
2011-09-02 18:51:20 +02:00
|
|
|
{
|
2011-09-05 21:06:31 +02:00
|
|
|
BufferCoord(int line = 0, int column = 0)
|
|
|
|
: LineAndColumn(line, column) {}
|
2011-10-14 16:27:43 +02:00
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
explicit BufferCoord(const LineAndColumn<T>& other)
|
2011-10-15 06:45:49 +02:00
|
|
|
: LineAndColumn(other.line, other.column) {}
|
2011-09-02 18:51:20 +02:00
|
|
|
};
|
|
|
|
|
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:
|
2012-04-14 03:17:09 +02:00
|
|
|
typedef Character value_type;
|
2011-09-02 18:51:20 +02:00
|
|
|
typedef BufferSize difference_type;
|
|
|
|
typedef const value_type* pointer;
|
|
|
|
typedef const value_type& reference;
|
|
|
|
typedef std::bidirectional_iterator_tag iterator_category;
|
|
|
|
|
2012-04-04 15:56:19 +02:00
|
|
|
BufferIterator() : m_buffer(nullptr) {}
|
2012-03-30 13:37:18 +02:00
|
|
|
BufferIterator(const Buffer& buffer, BufferCoord 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-04-14 03:17:09 +02:00
|
|
|
Character operator* () const;
|
2011-09-02 18:51:20 +02:00
|
|
|
BufferSize operator- (const BufferIterator& iterator) const;
|
|
|
|
|
|
|
|
BufferIterator operator+ (BufferSize size) const;
|
|
|
|
BufferIterator operator- (BufferSize size) const;
|
|
|
|
|
|
|
|
BufferIterator& operator+= (BufferSize size);
|
|
|
|
BufferIterator& operator-= (BufferSize size);
|
|
|
|
|
|
|
|
BufferIterator& operator++ ();
|
|
|
|
BufferIterator& operator-- ();
|
|
|
|
|
|
|
|
bool is_begin() const;
|
|
|
|
bool is_end() const;
|
2011-10-24 16:26:21 +02:00
|
|
|
bool is_valid() const;
|
2011-09-02 18:51:20 +02:00
|
|
|
|
2012-04-04 15:56:19 +02:00
|
|
|
void on_insert(const BufferCoord& begin, const BufferCoord& end);
|
|
|
|
void on_erase(const BufferCoord& begin, const BufferCoord& end);
|
2012-03-30 13:37:18 +02:00
|
|
|
|
2011-09-02 20:35:22 +02:00
|
|
|
const Buffer& buffer() const;
|
2012-07-16 21:51:37 +02:00
|
|
|
const BufferCoord& coord() const { return m_coord; }
|
2012-03-30 13:37:18 +02:00
|
|
|
BufferSize line() const { return m_coord.line; }
|
|
|
|
BufferSize column() const { return m_coord.column; }
|
2012-05-29 02:33:55 +02:00
|
|
|
|
|
|
|
private:
|
2012-03-30 13:37:18 +02:00
|
|
|
BufferSize offset() const;
|
|
|
|
|
2011-09-02 18:51:20 +02:00
|
|
|
const Buffer* m_buffer;
|
2012-03-30 13:37:18 +02:00
|
|
|
BufferCoord m_coord;
|
2011-09-02 18:51:20 +02:00
|
|
|
friend class Buffer;
|
|
|
|
};
|
|
|
|
|
2012-07-16 21:51:37 +02:00
|
|
|
class BufferChangeListener
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual void on_insert(const BufferIterator& begin, const BufferIterator& end) = 0;
|
|
|
|
virtual void on_erase(const BufferIterator& begin, const BufferIterator& end) = 0;
|
|
|
|
};
|
|
|
|
|
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.
|
2012-06-28 13:45:42 +02:00
|
|
|
class Buffer : public SafeCountable
|
2011-09-02 18:51:20 +02:00
|
|
|
{
|
|
|
|
public:
|
2011-10-07 16:15:55 +02:00
|
|
|
enum class Type
|
|
|
|
{
|
|
|
|
File,
|
2012-01-31 15:01:48 +01:00
|
|
|
NewFile,
|
2011-10-07 16:15:55 +02:00
|
|
|
Scratch
|
|
|
|
};
|
|
|
|
|
2012-06-29 13:19:29 +02:00
|
|
|
Buffer(String name, Type type, String initial_content = "\n");
|
2011-10-24 16:23:13 +02:00
|
|
|
Buffer(const Buffer&) = delete;
|
|
|
|
Buffer(Buffer&&) = delete;
|
|
|
|
Buffer& operator= (const Buffer&) = delete;
|
|
|
|
~Buffer();
|
2011-09-02 18:51:20 +02:00
|
|
|
|
2012-06-25 19:05:32 +02:00
|
|
|
Type type() const { return m_type; }
|
2011-09-06 20:49:32 +02:00
|
|
|
|
2012-08-10 19:12:43 +02:00
|
|
|
void insert(const BufferIterator& pos, const String& content);
|
|
|
|
void erase(const BufferIterator& begin, const BufferIterator& end);
|
2011-12-07 15:26:40 +01:00
|
|
|
|
2012-06-25 19:05:32 +02:00
|
|
|
void begin_undo_group();
|
|
|
|
void end_undo_group();
|
2011-09-06 20:49:32 +02:00
|
|
|
bool undo();
|
|
|
|
bool redo();
|
2012-08-10 14:21:32 +02:00
|
|
|
void reset_undo_data();
|
2011-09-06 20:49:32 +02:00
|
|
|
|
2012-03-08 22:23:29 +01:00
|
|
|
String string(const BufferIterator& begin,
|
2011-09-02 18:51:20 +02:00
|
|
|
const BufferIterator& end) const;
|
|
|
|
|
|
|
|
BufferIterator begin() const;
|
|
|
|
BufferIterator end() const;
|
2012-06-25 19:05:32 +02:00
|
|
|
BufferSize character_count() const;
|
2011-09-22 15:58:35 +02:00
|
|
|
BufferSize line_count() const;
|
2011-09-02 18:51:20 +02:00
|
|
|
|
2011-09-05 21:06:31 +02:00
|
|
|
BufferIterator iterator_at(const BufferCoord& line_and_column) const;
|
|
|
|
BufferCoord line_and_column_at(const BufferIterator& iterator) const;
|
2011-09-02 18:51:20 +02:00
|
|
|
|
2011-12-05 20:21:11 +01:00
|
|
|
// returns nearest valid coordinates from given ones
|
|
|
|
BufferCoord clamp(const BufferCoord& line_and_column) const;
|
2011-09-02 18:51:20 +02:00
|
|
|
|
2012-04-14 03:17:09 +02:00
|
|
|
const String& name() const { return m_name; }
|
2011-09-02 18:51:20 +02:00
|
|
|
|
2011-09-08 16:30:36 +02:00
|
|
|
Window* get_or_create_window();
|
2011-09-08 02:13:19 +02:00
|
|
|
void delete_window(Window* window);
|
|
|
|
|
2012-06-25 19:05:32 +02:00
|
|
|
// returns true if the buffer is in a different state than
|
|
|
|
// the last time it was saved
|
2011-10-05 16:21:24 +02:00
|
|
|
bool is_modified() const;
|
2012-06-25 19:05:32 +02:00
|
|
|
|
|
|
|
// notify the buffer that it was saved in the current state
|
2011-10-05 16:21:24 +02:00
|
|
|
void notify_saved();
|
|
|
|
|
2012-07-16 21:51:37 +02:00
|
|
|
void add_change_listener(BufferChangeListener& listener);
|
|
|
|
void remove_change_listener(BufferChangeListener& listener);
|
2011-10-18 02:55:45 +02:00
|
|
|
|
2011-11-28 20:31:29 +01:00
|
|
|
// returns an iterator pointing to the first character of the line
|
|
|
|
// iterator is on
|
|
|
|
BufferIterator iterator_at_line_begin(const BufferIterator& iterator) const;
|
|
|
|
|
|
|
|
// returns an iterator pointing to the character after the last of the
|
|
|
|
// line iterator is on (which is the first of the next line if iterator is
|
|
|
|
// not on the last one)
|
|
|
|
BufferIterator iterator_at_line_end(const BufferIterator& iterator) const;
|
|
|
|
|
2012-03-30 13:37:18 +02:00
|
|
|
const String& line_content(size_t l) const { return m_lines[l].content; }
|
|
|
|
|
2012-08-10 14:21:01 +02:00
|
|
|
OptionManager& option_manager() { return m_option_manager; }
|
|
|
|
const OptionManager& option_manager() const { return m_option_manager; }
|
|
|
|
HookManager& hook_manager() { return m_hook_manager; }
|
|
|
|
const HookManager& hook_manager() const { return m_hook_manager; }
|
2012-04-03 15:39:20 +02:00
|
|
|
|
2011-09-02 18:51:20 +02:00
|
|
|
private:
|
|
|
|
friend class BufferIterator;
|
|
|
|
|
2012-03-30 13:37:18 +02:00
|
|
|
void check_invariant() const;
|
|
|
|
|
|
|
|
struct Line
|
|
|
|
{
|
|
|
|
BufferPos start;
|
|
|
|
String content;
|
2012-03-30 14:00:40 +02:00
|
|
|
|
|
|
|
size_t length() const { return content.length(); }
|
2012-03-30 13:37:18 +02:00
|
|
|
};
|
|
|
|
std::vector<Line> m_lines;
|
|
|
|
|
2012-08-10 19:12:43 +02:00
|
|
|
void do_insert(const BufferIterator& pos, const String& content);
|
|
|
|
void do_erase(const BufferIterator& pos, BufferSize length);
|
2011-09-02 18:51:20 +02:00
|
|
|
|
|
|
|
BufferPos line_at(const BufferIterator& iterator) const;
|
|
|
|
BufferSize line_length(BufferPos line) const;
|
|
|
|
|
2012-04-14 03:17:09 +02:00
|
|
|
String m_name;
|
2011-10-07 16:15:55 +02:00
|
|
|
const Type m_type;
|
2011-09-06 20:49:32 +02:00
|
|
|
|
2012-08-10 19:12:43 +02:00
|
|
|
struct Modification;
|
2011-12-06 19:58:43 +01:00
|
|
|
typedef std::vector<Modification> UndoGroup;
|
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-09-08 02:13:19 +02:00
|
|
|
std::list<std::unique_ptr<Window>> m_windows;
|
2011-10-05 16:21:24 +02:00
|
|
|
|
2011-11-03 14:44:02 +01:00
|
|
|
size_t m_last_save_undo_index;
|
2011-10-18 00:05:06 +02:00
|
|
|
|
2012-07-16 21:51:37 +02:00
|
|
|
std::vector<BufferChangeListener*> m_change_listeners;
|
2012-04-03 15:39:20 +02:00
|
|
|
|
|
|
|
OptionManager m_option_manager;
|
2012-06-07 15:29:44 +02:00
|
|
|
HookManager m_hook_manager;
|
2011-09-02 18:51:20 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2011-10-27 16:13:39 +02:00
|
|
|
#include "buffer_iterator.inl.hh"
|
2011-10-18 00:05:06 +02:00
|
|
|
|
2011-09-02 18:51:20 +02:00
|
|
|
#endif // buffer_hh_INCLUDED
|