2011-09-02 18:51:20 +02:00
|
|
|
#ifndef buffer_hh_INCLUDED
|
|
|
|
#define buffer_hh_INCLUDED
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#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"
|
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;
|
|
|
|
|
2011-09-02 18:51:20 +02:00
|
|
|
typedef int BufferPos;
|
|
|
|
typedef int BufferSize;
|
|
|
|
typedef char BufferChar;
|
|
|
|
typedef std::basic_string<BufferChar> BufferString;
|
|
|
|
|
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:
|
|
|
|
typedef BufferChar value_type;
|
|
|
|
typedef BufferSize difference_type;
|
|
|
|
typedef const value_type* pointer;
|
|
|
|
typedef const value_type& reference;
|
|
|
|
typedef std::bidirectional_iterator_tag iterator_category;
|
|
|
|
|
|
|
|
BufferIterator() : m_buffer(NULL), m_position(0) {}
|
|
|
|
BufferIterator(const Buffer& buffer, BufferPos position);
|
|
|
|
BufferIterator& operator=(const BufferIterator& iterator);
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
BufferChar operator* () const;
|
|
|
|
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
|
|
|
|
2011-09-02 20:35:22 +02:00
|
|
|
const Buffer& buffer() const;
|
|
|
|
|
2011-09-02 18:51:20 +02:00
|
|
|
private:
|
|
|
|
const Buffer* m_buffer;
|
|
|
|
BufferPos m_position;
|
|
|
|
friend class Buffer;
|
|
|
|
};
|
|
|
|
|
2012-01-11 15:21:58 +01:00
|
|
|
// A Modification holds a single atomic modification to Buffer
|
2011-12-06 19:58:43 +01:00
|
|
|
struct Modification
|
2011-10-17 16:12:15 +02:00
|
|
|
{
|
|
|
|
enum Type { Insert, Erase };
|
|
|
|
|
|
|
|
Type type;
|
|
|
|
BufferIterator position;
|
|
|
|
BufferString content;
|
|
|
|
|
2011-12-06 19:58:43 +01:00
|
|
|
Modification(Type type, BufferIterator position,
|
2011-12-07 15:26:40 +01:00
|
|
|
const BufferString& content)
|
2011-10-17 16:12:15 +02:00
|
|
|
: type(type), position(position), content(content) {}
|
|
|
|
|
2011-12-06 19:58:43 +01:00
|
|
|
Modification inverse() const;
|
2011-12-07 15:26:40 +01:00
|
|
|
|
|
|
|
static Modification make_erase(BufferIterator begin, BufferIterator end);
|
|
|
|
static Modification make_insert(BufferIterator position,
|
|
|
|
const BufferString& content);
|
2011-10-17 16:12:15 +02:00
|
|
|
};
|
|
|
|
|
2011-12-06 19:58:43 +01:00
|
|
|
class ModificationListener
|
2011-10-18 02:55:45 +02:00
|
|
|
{
|
|
|
|
public:
|
2011-12-06 19:58:43 +01:00
|
|
|
virtual void on_modification(const Modification& modification) = 0;
|
2011-10-18 02:55:45 +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.
|
2011-09-02 18:51:20 +02:00
|
|
|
class Buffer
|
|
|
|
{
|
|
|
|
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
|
|
|
|
};
|
|
|
|
|
|
|
|
Buffer(const std::string& name, Type type,
|
2011-11-04 10:10:05 +01:00
|
|
|
const BufferString& 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
|
|
|
|
2011-09-06 20:49:32 +02:00
|
|
|
void begin_undo_group();
|
|
|
|
void end_undo_group();
|
|
|
|
|
2011-12-07 15:26:40 +01:00
|
|
|
void modify(Modification&& modification);
|
|
|
|
|
2011-09-06 20:49:32 +02:00
|
|
|
bool undo();
|
|
|
|
bool redo();
|
|
|
|
|
2011-09-02 18:51:20 +02:00
|
|
|
BufferString string(const BufferIterator& begin,
|
|
|
|
const BufferIterator& end) const;
|
|
|
|
|
|
|
|
BufferIterator begin() const;
|
|
|
|
BufferIterator end() const;
|
|
|
|
BufferSize length() 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
|
|
|
|
|
|
|
const std::string& name() const { return m_name; }
|
|
|
|
|
|
|
|
const BufferString& content() const { return m_content; }
|
|
|
|
|
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);
|
|
|
|
|
2011-10-05 16:21:24 +02:00
|
|
|
bool is_modified() const;
|
2011-10-07 16:15:55 +02:00
|
|
|
Type type() const { return m_type; }
|
2011-10-05 16:21:24 +02:00
|
|
|
void notify_saved();
|
|
|
|
|
2011-12-06 19:58:43 +01:00
|
|
|
void register_modification_listener(ModificationListener* listener);
|
|
|
|
void unregister_modification_listener(ModificationListener* 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;
|
|
|
|
|
2011-09-02 18:51:20 +02:00
|
|
|
private:
|
|
|
|
BufferChar at(BufferPos position) const;
|
2011-09-06 20:49:32 +02:00
|
|
|
|
2011-09-02 18:51:20 +02:00
|
|
|
friend class BufferIterator;
|
|
|
|
|
|
|
|
std::vector<BufferPos> m_lines;
|
|
|
|
|
|
|
|
void compute_lines();
|
|
|
|
BufferPos line_at(const BufferIterator& iterator) const;
|
|
|
|
BufferSize line_length(BufferPos line) const;
|
|
|
|
|
|
|
|
BufferString m_content;
|
|
|
|
|
|
|
|
std::string m_name;
|
2011-10-07 16:15:55 +02:00
|
|
|
const Type m_type;
|
2011-09-06 20:49:32 +02:00
|
|
|
|
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
|
|
|
|
2011-12-06 19:58:43 +01:00
|
|
|
std::vector<ModificationListener*> m_modification_listeners;
|
2011-09-02 18:51:20 +02:00
|
|
|
};
|
|
|
|
|
2011-12-07 15:26:40 +01:00
|
|
|
inline Modification Modification::make_erase(BufferIterator begin,
|
|
|
|
BufferIterator end)
|
|
|
|
{
|
|
|
|
return Modification(Erase, begin, begin.buffer().string(begin, end));
|
|
|
|
}
|
|
|
|
|
|
|
|
inline Modification Modification::make_insert(BufferIterator position,
|
|
|
|
const BufferString& content)
|
|
|
|
{
|
|
|
|
return Modification(Insert, position, content);
|
|
|
|
}
|
|
|
|
|
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
|