Textractor_test/GUI/host/textthread.cpp

59 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"
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)
{
2018-12-04 07:29:30 +08:00
CreateTimerQueueTimer(timer, NULL, Flush, this, 25, 25, WT_EXECUTELONGFUNCTION);
OnCreate(this);
}
2018-07-19 04:18:43 +08:00
TextThread::~TextThread()
{
OnDestroy(this);
2018-07-19 04:18:43 +08:00
}
2018-10-08 12:26:43 +08:00
std::wstring TextThread::GetStorage()
2018-07-26 12:48:18 +08:00
{
return storage->c_str();
}
void TextThread::AddSentence(std::wstring sentence)
{
if (Output(this, sentence)) storage->append(sentence);
}
2018-11-04 09:41:38 +08:00
void TextThread::Push(const BYTE* data, int len)
{
if (len < 0) return;
LOCK(bufferMutex);
2018-11-26 05:23:41 +08:00
if (hp.type & USING_UNICODE) buffer += std::wstring((wchar_t*)data, len / 2);
else if (auto converted = Util::StringToWideString(std::string((char*)data, len), hp.codepage ? hp.codepage : defaultCodepage)) buffer += converted.value();
else Host::AddConsoleOutput(INVALID_CODEPAGE);
if (std::all_of(buffer.begin(), buffer.end(), [&](wchar_t c) { return repeatingChars.count(c) > 0; })) buffer.clear();
2018-11-04 09:41:38 +08:00
lastPushTime = GetTickCount();
}
void CALLBACK Flush(void* thread, BOOLEAN)
2018-11-04 09:41:38 +08:00
{
auto This = (TextThread*)thread;
std::wstring sentence;
2018-11-04 09:41:38 +08:00
{
LOCK(This->bufferMutex);
if (This->buffer.empty()) return;
if (This->buffer.size() < This->maxBufferSize && GetTickCount() - This->lastPushTime < This->flushDelay) return;
sentence = This->buffer;
This->buffer.clear();
if (Util::RemoveRepetition(sentence)) This->repeatingChars = std::unordered_set(sentence.begin(), sentence.end());
else This->repeatingChars.clear();
2018-11-04 09:41:38 +08:00
}
This->AddSentence(sentence);
}