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-12-13 22:44:55 -05: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-03 18:29:30 -05:00
|
|
|
hp(hp)
|
2018-11-27 15:54:04 -05:00
|
|
|
{
|
2019-01-01 15:15:09 -05:00
|
|
|
CreateTimerQueueTimer(&timer, NULL, [](void* This, BOOLEAN) { ((TextThread*)This)->Flush(); }, this, 10, 10, WT_EXECUTELONGFUNCTION);
|
2018-11-27 15:54:04 -05:00
|
|
|
OnCreate(this);
|
|
|
|
}
|
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-12-02 15:30:35 -05:00
|
|
|
OnDestroy(this);
|
2018-07-18 16:18:43 -04:00
|
|
|
}
|
|
|
|
|
2019-01-01 15:15:09 -05:00
|
|
|
void TextThread::AddSentence(const std::wstring& sentence)
|
|
|
|
{
|
|
|
|
queuedSentences->push_back(sentence);
|
|
|
|
}
|
|
|
|
|
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-12-02 15:30:35 -05:00
|
|
|
if (len < 0) return;
|
2019-01-09 22:35:01 -05:00
|
|
|
std::scoped_lock lock(bufferMutex);
|
2018-11-25 16:23:41 -05:00
|
|
|
if (hp.type & USING_UNICODE) buffer += std::wstring((wchar_t*)data, len / 2);
|
2019-01-05 03:47:32 -05:00
|
|
|
else if (auto converted = Util::StringToWideString(std::string((char*)data, len), hp.codepage ? hp.codepage : Host::defaultCodepage)) buffer += converted.value();
|
2018-11-25 16:23:41 -05:00
|
|
|
else Host::AddConsoleOutput(INVALID_CODEPAGE);
|
2018-11-03 21:41:38 -04:00
|
|
|
lastPushTime = GetTickCount();
|
|
|
|
|
2019-01-01 15:15:09 -05:00
|
|
|
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-28 11:13:02 -05:00
|
|
|
}
|
|
|
|
|
2018-12-13 22:44:55 -05:00
|
|
|
void TextThread::Flush()
|
2018-11-03 21:41:38 -04:00
|
|
|
{
|
2019-01-01 15:15:09 -05:00
|
|
|
std::vector<std::wstring> sentences;
|
|
|
|
queuedSentences->swap(sentences);
|
|
|
|
for (auto sentence : sentences)
|
|
|
|
if (Output(this, sentence)) storage->append(sentence);
|
2018-12-02 15:30:35 -05:00
|
|
|
|
2019-01-09 22:35:01 -05:00
|
|
|
std::scoped_lock lock(bufferMutex);
|
2019-01-01 15:15:09 -05:00
|
|
|
if (buffer.empty()) return;
|
|
|
|
if (buffer.size() < maxBufferSize && GetTickCount() - lastPushTime < flushDelay) return;
|
|
|
|
AddSentence(buffer);
|
|
|
|
buffer.clear();
|
2018-07-11 20:18:04 -04:00
|
|
|
}
|