Textractor/GUI/host/textthread.cpp

119 lines
3.5 KiB
C++
Raw Normal View History

#include "textthread.h"
#include "host.h"
2019-02-27 11:33:17 -05:00
extern const wchar_t* INVALID_CODEPAGE;
2019-06-29 15:43:26 +05:30
// 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-13 22:44:55 -05:00
TextThread::TextThread(ThreadParam tp, HookParam hp, std::optional<std::wstring> name) :
handle(threadCounter++),
name(name.value_or(StringToWideString(hp.name))),
2018-12-13 22:44:55 -05:00
tp(tp),
2018-12-03 18:29:30 -05:00
hp(hp)
2019-02-04 15:18:47 -05:00
{}
void TextThread::Start()
{
CreateTimerQueueTimer(&timer, NULL, [](void* This, auto) { ((TextThread*)This)->Flush(); }, this, 10, 10, WT_EXECUTELONGFUNCTION);
}
2019-02-04 15:18:47 -05:00
void TextThread::Stop()
{
2019-02-04 15:18:47 -05:00
timer = NULL;
2018-07-18 16:18:43 -04:00
}
void TextThread::AddSentence(std::wstring sentence)
{
queuedSentences->emplace_back(std::move(sentence));
}
2019-02-09 18:24:54 -05:00
void TextThread::Push(BYTE* data, int length)
{
2019-02-09 00:30:38 -05:00
if (length < 0) return;
2019-01-09 22:35:01 -05:00
std::scoped_lock lock(bufferMutex);
2019-01-28 07:25:58 -05:00
BYTE doubleByteChar[2];
2019-02-09 00:30:38 -05:00
if (length == 1) // doublebyte characters must be processed as pairs
{
if (leadByte)
{
doubleByteChar[0] = leadByte;
doubleByteChar[1] = data[0];
data = doubleByteChar;
length = 2;
leadByte = 0;
}
else if (IsDBCSLeadByteEx(hp.codepage ? hp.codepage : Host::defaultCodepage, data[0]))
{
leadByte = data[0];
length = 0;
}
}
2019-01-28 07:25:58 -05:00
2020-01-19 14:23:30 -07:00
if (hp.type & HEX_DUMP) for (int i = 0; i < length; i += sizeof(short)) buffer.append(FormatString(L"%04hX ", *(short*)(data + i)));
else if (hp.type & USING_UNICODE) buffer.append((wchar_t*)data, length / sizeof(wchar_t));
else if (auto converted = StringToWideString(std::string((char*)data, length), hp.codepage ? hp.codepage : Host::defaultCodepage)) buffer.append(converted.value());
2018-11-25 16:23:41 -05:00
else Host::AddConsoleOutput(INVALID_CODEPAGE);
2019-07-19 01:15:00 +03:00
if (hp.type & FULL_STRING) buffer.push_back(L'\n');
2021-07-01 13:35:33 -06:00
lastPushTime = GetTickCount64();
2019-02-06 19:48:42 -05:00
if (filterRepetition)
{
if (std::all_of(buffer.begin(), buffer.end(), [&](wchar_t ch) { return repeatingChars.find(ch) != repeatingChars.end(); })) buffer.clear();
2019-06-29 15:43:26 +05:30
if (RemoveRepetition(buffer)) // sentence repetition detected, which means the entire sentence has already been received
2019-02-06 19:48:42 -05:00
{
repeatingChars = std::unordered_set(buffer.begin(), buffer.end());
2019-02-09 00:30:38 -05:00
AddSentence(std::move(buffer));
2019-02-06 19:48:42 -05:00
buffer.clear();
}
}
2019-07-19 01:15:00 +03:00
if (flushDelay == 0 && hp.type & FULL_STRING)
{
AddSentence(std::move(buffer));
buffer.clear();
}
}
void TextThread::Push(const wchar_t* data)
{
std::scoped_lock lock(bufferMutex);
// not sure if this should filter repetition
2021-07-01 13:35:33 -06:00
lastPushTime = GetTickCount64();
buffer += data;
}
2018-12-13 22:44:55 -05:00
void TextThread::Flush()
2018-11-03 21:41:38 -04:00
{
{
auto storage = this->storage.Acquire();
if (storage->size() > maxHistorySize) storage->erase(0, storage->size() - maxHistorySize); // https://github.com/Artikash/Textractor/issues/127#issuecomment-486882983
}
2019-04-26 20:55:07 -04:00
std::vector<std::wstring> sentences;
queuedSentences->swap(sentences);
2019-09-30 08:45:01 -04:00
int totalSize = 0;
for (auto& sentence : sentences)
2019-03-27 23:35:22 -04:00
{
2019-09-30 08:45:01 -04:00
totalSize += sentence.size();
sentence.erase(std::remove(sentence.begin(), sentence.end(), 0), sentence.end());
2019-02-04 15:18:47 -05:00
if (Output(*this, sentence)) storage->append(sentence);
2019-03-27 23:35:22 -04:00
}
2019-01-09 22:35:01 -05:00
std::scoped_lock lock(bufferMutex);
if (buffer.empty()) return;
2021-07-01 13:35:33 -06:00
if (buffer.size() > maxBufferSize || GetTickCount64() - lastPushTime > flushDelay)
2019-02-04 15:18:47 -05:00
{
2019-02-09 00:30:38 -05:00
AddSentence(std::move(buffer));
2019-02-04 15:18:47 -05:00
buffer.clear();
}
}