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