Textractor_test/GUI/host/textthread.cpp

81 lines
2.5 KiB
C++
Raw Normal View History

#include "textthread.h"
#include "host.h"
#include "util.h"
2019-02-28 00:33:17 +08:00
extern const wchar_t* INVALID_CODEPAGE;
2018-12-14 11:44:55 +08:00
TextThread::TextThread(ThreadParam tp, HookParam hp, std::optional<std::wstring> name) :
handle(threadCounter++),
name(name.value_or(Util::StringToWideString(hp.name).value())),
tp(tp),
2018-12-04 07:29:30 +08:00
hp(hp)
2019-02-05 04:18:47 +08:00
{}
void TextThread::Start()
{
CreateTimerQueueTimer(&timer, NULL, [](void* This, BOOLEAN) { ((TextThread*)This)->Flush(); }, this, 10, 10, WT_EXECUTELONGFUNCTION);
}
2019-02-05 04:18:47 +08:00
void TextThread::Stop()
{
2019-02-05 04:18:47 +08:00
timer = NULL;
2018-07-19 04:18:43 +08:00
}
2019-02-09 13:30:38 +08:00
void TextThread::AddSentence(std::wstring&& sentence)
{
queuedSentences.push(std::move(sentence));
}
2019-02-10 07:24:54 +08:00
void TextThread::Push(BYTE* data, int length)
{
2019-02-09 13:30:38 +08:00
if (length < 0) return;
2019-01-10 11:35:01 +08:00
std::scoped_lock lock(bufferMutex);
2019-01-28 20:25:58 +08:00
BYTE doubleByteChar[2];
2019-02-09 13:30:38 +08:00
if (length == 1) // doublebyte characters must be processed as pairs
2019-02-10 07:24:54 +08:00
if (leadByte) std::tie(doubleByteChar[0], doubleByteChar[1], data, length, leadByte) = std::tuple(leadByte, data[0], doubleByteChar, 2, 0);
2019-02-09 13:30:38 +08:00
else if (IsDBCSLeadByteEx(hp.codepage ? hp.codepage : Host::defaultCodepage, data[0])) std::tie(leadByte, length) = std::tuple(data[0], 0);
2019-01-28 20:25:58 +08:00
2019-02-10 07:24:54 +08:00
if (hp.type & USING_UNICODE) buffer.append((wchar_t*)data, length / sizeof(wchar_t));
else if (auto converted = Util::StringToWideString(std::string((char*)data, length), hp.codepage ? hp.codepage : Host::defaultCodepage)) buffer.append(converted.value());
2018-11-26 05:23:41 +08:00
else Host::AddConsoleOutput(INVALID_CODEPAGE);
2018-11-04 09:41:38 +08:00
lastPushTime = GetTickCount();
2019-02-07 08:48:42 +08:00
if (filterRepetition)
{
2019-02-07 08:48:42 +08:00
if (std::all_of(buffer.begin(), buffer.end(), [&](auto ch) { return repeatingChars.find(ch) != repeatingChars.end(); })) buffer.clear();
if (Util::RemoveRepetition(buffer)) // sentence repetition detected, which means the entire sentence has already been received
{
repeatingChars = std::unordered_set(buffer.begin(), buffer.end());
2019-02-09 13:30:38 +08:00
AddSentence(std::move(buffer));
2019-02-07 08:48:42 +08:00
buffer.clear();
}
}
if (flushDelay == 0 && hp.type & USING_STRING)
{
AddSentence(std::move(buffer));
buffer.clear();
}
}
2018-12-14 11:44:55 +08:00
void TextThread::Flush()
2018-11-04 09:41:38 +08:00
{
2019-04-27 08:55:07 +08:00
if (storage->size() > 10'000'000) storage->erase(0, 8'000'000); // https://github.com/Artikash/Textractor/issues/127#issuecomment-486882983
std::wstring sentence;
while (queuedSentences.try_pop(sentence))
2019-03-28 11:35:22 +08:00
{
sentence.erase(std::remove(sentence.begin(), sentence.end(), L'\0'));
2019-02-05 04:18:47 +08:00
if (Output(*this, sentence)) storage->append(sentence);
2019-03-28 11:35:22 +08:00
}
2019-01-10 11:35:01 +08:00
std::scoped_lock lock(bufferMutex);
if (buffer.empty()) return;
2019-02-05 04:18:47 +08:00
if (buffer.size() > maxBufferSize || GetTickCount() - lastPushTime > flushDelay)
{
2019-02-09 13:30:38 +08:00
AddSentence(std::move(buffer));
2019-02-05 04:18:47 +08:00
buffer.clear();
}
}