kakoune/src/word_db.hh

54 lines
1.1 KiB
C++
Raw Normal View History

#ifndef word_db_hh_INCLUDED
#define word_db_hh_INCLUDED
#include "buffer.hh"
#include "shared_string.hh"
#include "unordered_map.hh"
#include "vector.hh"
#include "ranked_match.hh"
namespace Kakoune
{
2016-01-28 21:29:10 +01:00
using RankedMatchList = Vector<RankedMatch>;
// maintain a database of words available in a buffer
class WordDB : public OptionManagerWatcher
{
public:
WordDB(const Buffer& buffer);
~WordDB() override;
2014-12-22 21:08:53 +01:00
WordDB(const WordDB&) = delete;
WordDB(WordDB&&);
RankedMatchList find_matching(StringView str);
int get_word_occurences(StringView word) const;
2015-01-12 14:58:41 +01:00
private:
2015-01-13 14:57:44 +01:00
void update_db();
2016-02-05 10:36:07 +01:00
void add_words(StringView line);
void remove_words(StringView line);
void rebuild_db();
void on_option_changed(const Option& option) override;
2014-10-28 20:23:02 +01:00
struct WordInfo
{
2016-02-05 10:36:07 +01:00
StringDataPtr word;
2014-12-23 20:32:42 +01:00
UsedLetters letters;
2014-10-28 20:23:02 +01:00
int refcount;
};
2016-02-05 10:36:07 +01:00
using WordToInfo = UnorderedMap<StringView, WordInfo, MemoryDomain::WordDB>;
using Lines = Vector<StringDataPtr, MemoryDomain::WordDB>;
SafePtr<const Buffer> m_buffer;
size_t m_timestamp;
2014-12-23 20:32:42 +01:00
WordToInfo m_words;
Lines m_lines;
};
}
#endif // word_db_hh_INCLUDED