kakoune/src/word_db.cc

142 lines
3.6 KiB
C++
Raw Normal View History

#include "word_db.hh"
#include "utils.hh"
#include "line_modification.hh"
#include "utf8_iterator.hh"
namespace Kakoune
{
2014-12-23 20:32:42 +01:00
UsedLetters used_letters(StringView str)
2014-10-28 20:23:02 +01:00
{
2014-12-23 20:32:42 +01:00
UsedLetters res;
2014-10-28 20:23:02 +01:00
for (auto c : str)
{
if (c >= 'a' and c <= 'z')
res.set(c - 'a');
else if (c >= 'A' and c <= 'Z')
res.set(c - 'A' + 26);
else if (c == '_')
res.set(53);
else if (c == '-')
res.set(54);
else
res.set(63);
}
return res;
}
2014-12-23 20:32:42 +01:00
static WordDB::WordList get_words(const InternedString& content)
{
std::vector<InternedString> res;
using Iterator = utf8::iterator<const char*, utf8::InvalidPolicy::Pass>;
2014-05-11 13:51:37 +02:00
const char* word_start = content.begin();
bool in_word = false;
for (Iterator it{word_start}, end{content.end()}; it != end; ++it)
{
Codepoint c = *it;
const bool word = is_word(c);
if (not in_word and word)
{
word_start = it.base();
in_word = true;
}
else if (in_word and not word)
{
const ByteCount start = word_start - content.begin();
const ByteCount length = it.base() - word_start;
res.push_back(content.acquire_substr(start, length));
in_word = false;
}
}
return res;
}
2014-12-23 20:32:42 +01:00
void WordDB::add_words(const WordList& words)
{
for (auto& w : words)
2014-10-28 20:23:02 +01:00
{
2014-12-23 20:32:42 +01:00
WordDB::WordInfo& info = m_words[w];
2014-10-28 20:23:02 +01:00
++info.refcount;
if (info.letters.none())
info.letters = used_letters(w);
}
}
2014-12-23 20:32:42 +01:00
void WordDB::remove_words(const WordList& words)
{
for (auto& w : words)
{
2014-12-23 20:32:42 +01:00
auto it = m_words.find(w);
kak_assert(it != m_words.end() and it->second.refcount > 0);
2014-10-28 20:23:02 +01:00
if (--it->second.refcount == 0)
2014-12-23 20:32:42 +01:00
m_words.erase(it);
}
}
WordDB::WordDB(const Buffer& buffer)
: m_buffer{&buffer}, m_timestamp{buffer.timestamp()}
{
m_line_to_words.reserve((int)buffer.line_count());
for (auto line = 0_line, end = buffer.line_count(); line < end; ++line)
{
m_line_to_words.push_back(get_words(buffer[line]));
2014-12-23 20:32:42 +01:00
add_words(m_line_to_words.back());
}
}
void WordDB::update_db()
{
auto& buffer = *m_buffer;
auto modifs = compute_line_modifications(buffer, m_timestamp);
m_timestamp = buffer.timestamp();
if (modifs.empty())
return;
LineToWords new_lines;
new_lines.reserve((int)buffer.line_count());
auto old_line = 0_line;
for (auto& modif : modifs)
{
kak_assert(0_line <= modif.new_line and modif.new_line < buffer.line_count());
kak_assert(old_line <= modif.old_line);
while (old_line < modif.old_line)
2014-05-20 21:39:38 +02:00
new_lines.push_back(std::move(m_line_to_words[(int)old_line++]));
kak_assert((int)new_lines.size() == (int)modif.new_line);
while (old_line <= modif.old_line + modif.num_removed)
{
kak_assert(old_line < m_line_to_words.size());
2014-12-23 20:32:42 +01:00
remove_words(m_line_to_words[(int)old_line++]);
}
for (auto l = 0_line; l <= modif.num_added; ++l)
{
if (modif.new_line + l >= buffer.line_count())
break;
new_lines.push_back(get_words(buffer[modif.new_line + l]));
2014-12-23 20:32:42 +01:00
add_words(new_lines.back());
}
}
while (old_line != (int)m_line_to_words.size())
new_lines.push_back(std::move(m_line_to_words[(int)old_line++]));
m_line_to_words = std::move(new_lines);
}
int WordDB::get_word_occurences(StringView word) const
{
auto it = m_words.find(word);
if (it != m_words.end())
2014-10-28 20:23:02 +01:00
return it->second.refcount;
return 0;
}
}