Textractor/GUI/host/textthread.cc

65 lines
1.7 KiB
C++
Raw Normal View History

// textthread.cc
// 8/24/2013 jichi
// Branch IHF/TextThread.cpp, rev 133
#include "textthread.h"
2018-09-20 22:32:47 -04:00
#include "host.h"
2018-08-23 11:53:23 -04:00
#include "const.h"
2018-10-09 01:46:11 -04:00
#include <regex>
2018-11-01 15:03:30 -04:00
TextThread::TextThread(ThreadParam tp, HookParam hp, std::wstring name) : handle(threadCounter++), name(name), tp(tp), hp(hp) {}
2018-07-18 16:18:43 -04:00
TextThread::~TextThread()
{
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-10-30 20:50:50 -04:00
LOCK(threadMutex);
2018-07-25 21:48:18 -07:00
return storage;
}
void TextThread::AddSentence(std::wstring sentence)
{
2018-08-28 17:21:20 -04:00
// Dispatch to extensions occurs here. Don't hold mutex! Extensions might take a while!
2018-10-08 00:26:43 -04:00
if (Output(this, sentence))
{
2018-10-30 20:50:50 -04:00
LOCK(threadMutex);
2018-10-08 00:26:43 -04:00
storage += sentence;
}
}
2018-11-03 21:41:38 -04:00
void TextThread::Push(const BYTE* data, int len)
{
2018-10-30 20:50:50 -04:00
if (len < 0) return;
LOCK(threadMutex);
buffer += hp.type & USING_UNICODE
? std::wstring((wchar_t*)data, len / 2)
2018-11-01 21:59:13 -04:00
: StringToWideString(std::string((char*)data, len), hp.codepage != 0 ? hp.codepage : DEFAULT_CODEPAGE);
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()
{
std::wstring sentence;
{
LOCK(threadMutex);
if (buffer.empty()) return;
if (buffer.size() < maxBufferSize && GetTickCount() - lastPushTime < flushDelay) return;
sentence = buffer;
buffer.clear();
bool hasRepetition = false;
for (std::wsmatch results; std::regex_search(sentence, results, std::wregex(L"([^\\x00]{6,})\\1\\1")); hasRepetition = true) sentence = results[1];
if (hasRepetition) repeatingChars = std::unordered_set<wchar_t>(sentence.begin(), sentence.end());
else repeatingChars.clear();
}
AddSentence(sentence);
}
// EOF