2016-01-05 23:01:17 +08:00
|
|
|
#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"
|
2018-11-23 04:53:32 +08:00
|
|
|
#include "host.h"
|
|
|
|
#include "util.h"
|
2016-01-05 23:01:17 +08:00
|
|
|
|
2018-11-28 04:54:04 +08:00
|
|
|
TextThread::TextThread(ThreadParam tp, HookParam hp, std::wstring name) : handle(threadCounter++), name(name), tp(tp), hp(hp)
|
|
|
|
{
|
|
|
|
OnCreate(this);
|
|
|
|
}
|
2016-01-05 23:01:17 +08:00
|
|
|
|
2018-07-19 04:18:43 +08:00
|
|
|
TextThread::~TextThread()
|
2016-01-05 23:01:17 +08:00
|
|
|
{
|
2018-10-05 10:10:27 +08:00
|
|
|
SetEvent(deletionEvent);
|
|
|
|
flushThread.join();
|
2018-11-28 04:54:04 +08:00
|
|
|
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
|
|
|
{
|
2018-11-28 04:54:04 +08:00
|
|
|
return storage->c_str();
|
|
|
|
}
|
|
|
|
|
|
|
|
void TextThread::Start()
|
|
|
|
{
|
|
|
|
deletionEvent = CreateEventW(nullptr, FALSE, FALSE, NULL);
|
|
|
|
flushThread = std::thread([&] { while (WaitForSingleObject(deletionEvent, 10) == WAIT_TIMEOUT) Flush(); });
|
2018-07-26 12:48:18 +08:00
|
|
|
}
|
|
|
|
|
2018-07-12 08:18:04 +08:00
|
|
|
void TextThread::AddSentence(std::wstring sentence)
|
|
|
|
{
|
2018-11-28 04:54:04 +08:00
|
|
|
if (Output(this, sentence)) storage->append(sentence);
|
2016-01-05 23:01:17 +08:00
|
|
|
}
|
|
|
|
|
2018-11-04 09:41:38 +08:00
|
|
|
void TextThread::Push(const BYTE* data, int len)
|
2018-07-12 08:18:04 +08:00
|
|
|
{
|
2018-11-28 04:54:04 +08:00
|
|
|
if (!flushThread.joinable() || len < 0) return;
|
2018-11-23 04:53:32 +08:00
|
|
|
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);
|
2018-10-17 12:42:51 +08:00
|
|
|
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 TextThread::Flush()
|
|
|
|
{
|
2018-11-23 04:53:32 +08:00
|
|
|
std::wstring sentence;
|
2018-11-04 09:41:38 +08:00
|
|
|
{
|
2018-11-23 04:53:32 +08:00
|
|
|
LOCK(bufferMutex);
|
|
|
|
if (buffer.empty()) return;
|
|
|
|
if (buffer.size() < maxBufferSize && GetTickCount() - lastPushTime < flushDelay) return;
|
|
|
|
sentence = buffer;
|
2018-11-04 09:41:38 +08:00
|
|
|
buffer.clear();
|
|
|
|
|
2018-11-23 05:02:45 +08:00
|
|
|
if (Util::RemoveRepetition(sentence)) repeatingChars = std::unordered_set(sentence.begin(), sentence.end());
|
2018-11-16 21:34:15 +08:00
|
|
|
else repeatingChars.clear();
|
2018-11-04 09:41:38 +08:00
|
|
|
}
|
2018-11-23 04:53:32 +08:00
|
|
|
AddSentence(sentence);
|
2018-07-12 08:18:04 +08:00
|
|
|
}
|