kakoune/src/buffer.hh

237 lines
6.6 KiB
C++
Raw Normal View History

2011-09-02 18:51:20 +02:00
#ifndef buffer_hh_INCLUDED
#define buffer_hh_INCLUDED
#include <string>
#include <vector>
#include <list>
#include <memory>
2011-09-02 18:51:20 +02:00
#include "line_and_column.hh"
#include "option_manager.hh"
2011-09-02 18:51:20 +02:00
namespace Kakoune
{
class Buffer;
class Modification;
class Window;
2011-09-02 18:51:20 +02:00
typedef int BufferPos;
typedef int BufferSize;
typedef char BufferChar;
2012-03-08 22:23:29 +01:00
typedef std::basic_string<BufferChar> String;
2011-09-02 18:51:20 +02:00
struct BufferCoord : LineAndColumn<BufferCoord>
2011-09-02 18:51:20 +02:00
{
BufferCoord(int line = 0, int column = 0)
: LineAndColumn(line, column) {}
template<typename T>
explicit BufferCoord(const LineAndColumn<T>& other)
: LineAndColumn(other.line, other.column) {}
2011-09-02 18:51:20 +02: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) {}
BufferIterator(const Buffer& buffer, BufferCoord coord);
2011-09-02 18:51:20 +02:00
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;
bool is_valid() const;
2011-09-02 18:51:20 +02:00
void update(const Modification& modification);
const Buffer& buffer() const;
2011-09-02 18:51:20 +02:00
private:
BufferSize line() const { return m_coord.line; }
BufferSize column() const { return m_coord.column; }
BufferSize offset() const;
2011-09-02 18:51:20 +02:00
const Buffer* m_buffer;
BufferCoord m_coord;
2011-09-02 18:51:20 +02:00
friend class Buffer;
};
// A Modification holds a single atomic modification to Buffer
struct Modification
{
enum Type { Insert, Erase };
Type type;
BufferIterator position;
2012-03-08 22:23:29 +01:00
String content;
2012-03-08 22:23:29 +01:00
Modification(Type type, BufferIterator position, const String& content)
: type(type), position(position), content(content) {}
Modification inverse() const;
static Modification make_erase(BufferIterator begin, BufferIterator end);
static Modification make_insert(BufferIterator position,
2012-03-08 22:23:29 +01:00
const String& content);
};
class ModificationListener
{
public:
virtual void on_modification(const Modification& modification) = 0;
};
// 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,
NewFile,
2011-10-07 16:15:55 +02:00
Scratch
};
Buffer(const std::string& name, Type type,
2012-03-08 22:23:29 +01:00
const 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
void begin_undo_group();
void end_undo_group();
void modify(Modification&& modification);
bool undo();
bool redo();
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;
BufferSize length() const;
2011-09-22 15:58:35 +02:00
BufferSize line_count() const;
2011-09-02 18:51:20 +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; }
Window* get_or_create_window();
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();
void register_modification_listener(ModificationListener* listener);
void unregister_modification_listener(ModificationListener* listener);
// 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;
const String& line_content(size_t l) const { return m_lines[l].content; }
OptionManager& option_manager() { return m_option_manager; }
2011-09-02 18:51:20 +02:00
private:
friend class BufferIterator;
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(); }
};
std::vector<Line> m_lines;
void insert(const BufferIterator& pos, const String& content);
void 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;
std::string m_name;
2011-10-07 16:15:55 +02:00
const Type m_type;
typedef std::vector<Modification> UndoGroup;
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;
void apply_modification(const Modification& modification);
void revert_modification(const Modification& modification);
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;
std::vector<ModificationListener*> m_modification_listeners;
OptionManager m_option_manager;
2011-09-02 18:51:20 +02: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,
2012-03-08 22:23:29 +01:00
const String& content)
{
return Modification(Insert, position, content);
}
2011-09-02 18:51:20 +02:00
}
#include "buffer_iterator.inl.hh"
2011-09-02 18:51:20 +02:00
#endif // buffer_hh_INCLUDED