Textractor_test/GUI/host/textthread.cpp

58 lines
1.7 KiB
C++
Raw Normal View History

#include "textthread.h"
2018-08-23 23:53:23 +08:00
#include "const.h"
2018-11-26 05:23:41 +08:00
#include "text.h"
#include "host.h"
#include "util.h"
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)
{
CreateTimerQueueTimer(&timer, NULL, [](void* This, BOOLEAN) { ((TextThread*)This)->Flush(); }, this, 10, 10, WT_EXECUTELONGFUNCTION);
OnCreate(this);
}
2018-07-19 04:18:43 +08:00
TextThread::~TextThread()
{
OnDestroy(this);
2018-07-19 04:18:43 +08:00
}
void TextThread::AddSentence(const std::wstring& sentence)
{
queuedSentences->push_back(sentence);
}
2018-11-04 09:41:38 +08:00
void TextThread::Push(const BYTE* data, int len)
{
if (len < 0) return;
2019-01-10 11:35:01 +08:00
std::scoped_lock lock(bufferMutex);
2018-11-26 05:23:41 +08:00
if (hp.type & USING_UNICODE) buffer += std::wstring((wchar_t*)data, len / 2);
2019-01-05 16:47:32 +08:00
else if (auto converted = Util::StringToWideString(std::string((char*)data, len), hp.codepage ? hp.codepage : Host::defaultCodepage)) buffer += 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();
if (std::all_of(buffer.begin(), buffer.end(), [&](wchar_t c) { return repeatingChars.count(c) > 0; })) buffer.clear();
if (Util::RemoveRepetition(buffer)) // repetition detected, which means the entire sentence has already been received
{
repeatingChars = std::unordered_set(buffer.begin(), buffer.end());
AddSentence(buffer);
buffer.clear();
}
}
2018-12-14 11:44:55 +08:00
void TextThread::Flush()
2018-11-04 09:41:38 +08:00
{
std::vector<std::wstring> sentences;
queuedSentences->swap(sentences);
2019-01-24 02:59:34 +08:00
for (auto& sentence : sentences)
if (Output(this, sentence)) storage->append(sentence);
2019-01-10 11:35:01 +08:00
std::scoped_lock lock(bufferMutex);
if (buffer.empty()) return;
if (buffer.size() < maxBufferSize && GetTickCount() - lastPushTime < flushDelay) return;
AddSentence(buffer);
buffer.clear();
}