2016-01-06 00:01:17 +09:00
|
|
|
#include "textthread.h"
|
2018-08-23 11:53:23 -04:00
|
|
|
#include "const.h"
|
2018-11-25 16:23:41 -05:00
|
|
|
#include "text.h"
|
2018-11-22 15:53:32 -05:00
|
|
|
#include "host.h"
|
|
|
|
#include "util.h"
|
2016-01-06 00:01:17 +09:00
|
|
|
|
2018-11-25 15:05:41 -05:00
|
|
|
TextThread::TextThread(ThreadParam tp, HookParam hp, std::wstring name) :
|
|
|
|
handle(threadCounter++),
|
|
|
|
name(name),
|
|
|
|
tp(tp),
|
|
|
|
hp(hp),
|
|
|
|
deletionEvent(CreateEventW(nullptr, FALSE, FALSE, NULL)),
|
|
|
|
flushThread([&] { Host::Setup(); while (WaitForSingleObject(deletionEvent, 10) == WAIT_TIMEOUT) Flush(); })
|
|
|
|
{}
|
2016-01-06 00:01:17 +09:00
|
|
|
|
2018-07-18 16:18:43 -04:00
|
|
|
TextThread::~TextThread()
|
2016-01-06 00:01:17 +09:00
|
|
|
{
|
2018-10-04 22:10:27 -04:00
|
|
|
SetEvent(deletionEvent);
|
|
|
|
flushThread.join();
|
|
|
|
CloseHandle(deletionEvent);
|
2018-07-18 16:18:43 -04:00
|
|
|
}
|
|
|
|
|
2018-10-08 00:26:43 -04:00
|
|
|
std::wstring TextThread::GetStorage()
|
2018-07-25 21:48:18 -07:00
|
|
|
{
|
2018-11-22 15:53:32 -05:00
|
|
|
LOCK(storageMutex);
|
2018-07-25 21:48:18 -07:00
|
|
|
return storage;
|
|
|
|
}
|
|
|
|
|
2018-07-11 20:18:04 -04:00
|
|
|
void TextThread::AddSentence(std::wstring sentence)
|
|
|
|
{
|
2018-10-08 00:26:43 -04:00
|
|
|
if (Output(this, sentence))
|
|
|
|
{
|
2018-11-22 15:53:32 -05:00
|
|
|
LOCK(storageMutex);
|
2018-10-08 00:26:43 -04:00
|
|
|
storage += sentence;
|
|
|
|
}
|
2016-01-06 00:01:17 +09:00
|
|
|
}
|
|
|
|
|
2018-11-03 21:41:38 -04:00
|
|
|
void TextThread::Push(const BYTE* data, int len)
|
2018-07-11 20:18:04 -04:00
|
|
|
{
|
2018-10-30 20:50:50 -04:00
|
|
|
if (len < 0) return;
|
2018-11-22 15:53:32 -05:00
|
|
|
LOCK(bufferMutex);
|
2018-11-25 16:23:41 -05: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 00:42:51 -04:00
|
|
|
if (std::all_of(buffer.begin(), buffer.end(), [&](wchar_t c) { return repeatingChars.count(c) > 0; })) buffer.clear();
|
2018-11-03 21:41:38 -04:00
|
|
|
lastPushTime = GetTickCount();
|
|
|
|
}
|
|
|
|
|
|
|
|
void TextThread::Flush()
|
|
|
|
{
|
2018-11-22 15:53:32 -05:00
|
|
|
std::wstring sentence;
|
2018-11-03 21:41:38 -04:00
|
|
|
{
|
2018-11-22 15:53:32 -05:00
|
|
|
LOCK(bufferMutex);
|
|
|
|
if (buffer.empty()) return;
|
|
|
|
if (buffer.size() < maxBufferSize && GetTickCount() - lastPushTime < flushDelay) return;
|
|
|
|
sentence = buffer;
|
2018-11-03 21:41:38 -04:00
|
|
|
buffer.clear();
|
|
|
|
|
2018-11-22 16:02:45 -05:00
|
|
|
if (Util::RemoveRepetition(sentence)) repeatingChars = std::unordered_set(sentence.begin(), sentence.end());
|
2018-11-16 08:34:15 -05:00
|
|
|
else repeatingChars.clear();
|
2018-11-03 21:41:38 -04:00
|
|
|
}
|
2018-11-22 15:53:32 -05:00
|
|
|
AddSentence(sentence);
|
2018-07-11 20:18:04 -04:00
|
|
|
}
|