2016-01-05 23:01:17 +08:00
|
|
|
#include "textthread.h"
|
2018-11-23 04:53:32 +08:00
|
|
|
#include "host.h"
|
|
|
|
#include "util.h"
|
2016-01-05 23:01:17 +08:00
|
|
|
|
2019-02-28 00:33:17 +08:00
|
|
|
extern const wchar_t* INVALID_CODEPAGE;
|
|
|
|
|
2019-06-29 18:13:26 +08:00
|
|
|
// return true if repetition found (see https://github.com/Artikash/Textractor/issues/40)
|
|
|
|
static bool RemoveRepetition(std::wstring& text)
|
|
|
|
{
|
|
|
|
wchar_t* end = text.data() + text.size();
|
|
|
|
for (int length = text.size() / 3; length > 6; --length)
|
|
|
|
if (memcmp(end - length * 3, end - length * 2, length * sizeof(wchar_t)) == 0 && memcmp(end - length * 3, end - length * 1, length * sizeof(wchar_t)) == 0)
|
|
|
|
return RemoveRepetition(text = std::wstring(end - length, length)), true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
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)
|
2019-02-05 04:18:47 +08:00
|
|
|
{}
|
|
|
|
|
|
|
|
void TextThread::Start()
|
2018-11-28 04:54:04 +08:00
|
|
|
{
|
2019-01-02 04:15:09 +08:00
|
|
|
CreateTimerQueueTimer(&timer, NULL, [](void* This, BOOLEAN) { ((TextThread*)This)->Flush(); }, this, 10, 10, WT_EXECUTELONGFUNCTION);
|
2018-11-28 04:54:04 +08:00
|
|
|
}
|
2016-01-05 23:01:17 +08:00
|
|
|
|
2019-02-05 04:18:47 +08:00
|
|
|
void TextThread::Stop()
|
2016-01-05 23:01:17 +08:00
|
|
|
{
|
2019-02-05 04:18:47 +08:00
|
|
|
timer = NULL;
|
2018-07-19 04:18:43 +08:00
|
|
|
}
|
|
|
|
|
2019-07-02 13:56:04 +08:00
|
|
|
void TextThread::AddSentence(std::wstring sentence)
|
2019-01-02 04:15:09 +08:00
|
|
|
{
|
2019-06-05 03:21:04 +08:00
|
|
|
queuedSentences->emplace_back(std::move(sentence));
|
2019-01-02 04:15:09 +08:00
|
|
|
}
|
|
|
|
|
2019-02-10 07:24:54 +08:00
|
|
|
void TextThread::Push(BYTE* data, int length)
|
2018-07-12 08:18:04 +08:00
|
|
|
{
|
2019-02-09 13:30:38 +08:00
|
|
|
if (length < 0) return;
|
2019-01-10 11:35:01 +08:00
|
|
|
std::scoped_lock lock(bufferMutex);
|
2019-01-28 20:25:58 +08:00
|
|
|
|
|
|
|
BYTE doubleByteChar[2];
|
2019-02-09 13:30:38 +08:00
|
|
|
if (length == 1) // doublebyte characters must be processed as pairs
|
2019-02-10 07:24:54 +08:00
|
|
|
if (leadByte) std::tie(doubleByteChar[0], doubleByteChar[1], data, length, leadByte) = std::tuple(leadByte, data[0], doubleByteChar, 2, 0);
|
2019-02-09 13:30:38 +08:00
|
|
|
else if (IsDBCSLeadByteEx(hp.codepage ? hp.codepage : Host::defaultCodepage, data[0])) std::tie(leadByte, length) = std::tuple(data[0], 0);
|
2019-01-28 20:25:58 +08:00
|
|
|
|
2019-02-10 07:24:54 +08:00
|
|
|
if (hp.type & USING_UNICODE) buffer.append((wchar_t*)data, length / sizeof(wchar_t));
|
|
|
|
else if (auto converted = Util::StringToWideString(std::string((char*)data, length), hp.codepage ? hp.codepage : Host::defaultCodepage)) buffer.append(converted.value());
|
2018-11-26 05:23:41 +08:00
|
|
|
else Host::AddConsoleOutput(INVALID_CODEPAGE);
|
2019-07-19 06:15:00 +08:00
|
|
|
if (hp.type & FULL_STRING) buffer.push_back(L'\n');
|
2018-11-04 09:41:38 +08:00
|
|
|
lastPushTime = GetTickCount();
|
2019-02-07 08:48:42 +08:00
|
|
|
|
|
|
|
if (filterRepetition)
|
2019-01-02 04:15:09 +08:00
|
|
|
{
|
2019-02-07 08:48:42 +08:00
|
|
|
if (std::all_of(buffer.begin(), buffer.end(), [&](auto ch) { return repeatingChars.find(ch) != repeatingChars.end(); })) buffer.clear();
|
2019-06-29 18:13:26 +08:00
|
|
|
if (RemoveRepetition(buffer)) // sentence repetition detected, which means the entire sentence has already been received
|
2019-02-07 08:48:42 +08:00
|
|
|
{
|
|
|
|
repeatingChars = std::unordered_set(buffer.begin(), buffer.end());
|
2019-02-09 13:30:38 +08:00
|
|
|
AddSentence(std::move(buffer));
|
2019-02-07 08:48:42 +08:00
|
|
|
buffer.clear();
|
|
|
|
}
|
2019-01-02 04:15:09 +08:00
|
|
|
}
|
2019-06-03 11:05:01 +08:00
|
|
|
|
2019-07-19 06:15:00 +08:00
|
|
|
if (flushDelay == 0 && hp.type & FULL_STRING)
|
2019-06-03 11:05:01 +08:00
|
|
|
{
|
|
|
|
AddSentence(std::move(buffer));
|
|
|
|
buffer.clear();
|
|
|
|
}
|
2018-12-29 00:13:02 +08:00
|
|
|
}
|
|
|
|
|
2018-12-14 11:44:55 +08:00
|
|
|
void TextThread::Flush()
|
2018-11-04 09:41:38 +08:00
|
|
|
{
|
2019-04-27 08:55:07 +08:00
|
|
|
if (storage->size() > 10'000'000) storage->erase(0, 8'000'000); // https://github.com/Artikash/Textractor/issues/127#issuecomment-486882983
|
|
|
|
|
2019-06-05 03:21:04 +08:00
|
|
|
std::deque<std::wstring> sentences;
|
|
|
|
queuedSentences->swap(sentences);
|
|
|
|
for (auto& sentence : sentences)
|
2019-03-28 11:35:22 +08:00
|
|
|
{
|
|
|
|
sentence.erase(std::remove(sentence.begin(), sentence.end(), L'\0'));
|
2019-02-05 04:18:47 +08:00
|
|
|
if (Output(*this, sentence)) storage->append(sentence);
|
2019-03-28 11:35:22 +08:00
|
|
|
}
|
2018-12-03 04:30:35 +08:00
|
|
|
|
2019-01-10 11:35:01 +08:00
|
|
|
std::scoped_lock lock(bufferMutex);
|
2019-01-02 04:15:09 +08:00
|
|
|
if (buffer.empty()) return;
|
2019-02-05 04:18:47 +08:00
|
|
|
if (buffer.size() > maxBufferSize || GetTickCount() - lastPushTime > flushDelay)
|
|
|
|
{
|
2019-02-09 13:30:38 +08:00
|
|
|
AddSentence(std::move(buffer));
|
2019-02-05 04:18:47 +08:00
|
|
|
buffer.clear();
|
|
|
|
}
|
2018-07-12 08:18:04 +08:00
|
|
|
}
|