Textractor_test/GUI/host/textthread.cc

72 lines
1.8 KiB
C++
Raw Normal View History

// textthread.cc
// 8/24/2013 jichi
// Branch IHF/TextThread.cpp, rev 133
#include "textthread.h"
2018-09-21 10:32:47 +08:00
#include "host.h"
2018-08-23 23:53:23 +08:00
#include "const.h"
2018-11-02 03:03:30 +08:00
TextThread::TextThread(ThreadParam tp, HookParam hp, std::wstring name) : handle(threadCounter++), name(name), tp(tp), hp(hp) {}
2018-07-19 04:18:43 +08:00
TextThread::~TextThread()
{
SetEvent(deletionEvent);
flushThread.join();
CloseHandle(deletionEvent);
2018-07-19 04:18:43 +08:00
}
2018-10-08 12:26:43 +08:00
std::wstring TextThread::GetStorage()
2018-07-26 12:48:18 +08:00
{
2018-10-31 08:50:50 +08:00
LOCK(threadMutex);
2018-07-26 12:48:18 +08:00
return storage;
}
void TextThread::AddSentence(std::wstring sentence)
{
2018-08-29 05:21:20 +08:00
// Dispatch to extensions occurs here. Don't hold mutex! Extensions might take a while!
2018-10-08 12:26:43 +08:00
if (Output(this, sentence))
{
2018-10-31 08:50:50 +08:00
LOCK(threadMutex);
2018-10-08 12:26:43 +08:00
storage += sentence;
}
}
2018-11-04 09:41:38 +08:00
void TextThread::Push(const BYTE* data, int len)
{
2018-10-31 08:50:50 +08:00
if (len < 0) return;
LOCK(threadMutex);
buffer += hp.type & USING_UNICODE
? std::wstring((wchar_t*)data, len / 2)
2018-11-10 18:13:59 +08:00
: StringToWideString(std::string((char*)data, len), hp.codepage != 0 ? hp.codepage : defaultCodepage);
if (std::all_of(buffer.begin(), buffer.end(), [&](wchar_t c) { return repeatingChars.count(c) > 0; })) buffer.clear();
2018-11-04 09:41:38 +08:00
lastPushTime = GetTickCount();
}
bool TextThread::FilterRepetition(std::wstring& sentence)
{
wchar_t* end = sentence.data() + sentence.size();
for (int len = sentence.size() / 3; len > 6; --len)
if (wcsncmp(end - len * 3, end - len * 2, len) == 0 && wcsncmp(end - len * 3, end - len * 1, len) == 0)
return true | FilterRepetition(sentence = end - len);
return false;
}
2018-11-04 09:41:38 +08:00
void TextThread::Flush()
{
2018-11-09 17:24:33 +08:00
std::unique_lock locker(threadMutex);
if (buffer.empty()) return;
if (buffer.size() > maxBufferSize || GetTickCount() - lastPushTime > flushDelay)
2018-11-04 09:41:38 +08:00
{
2018-11-09 17:24:33 +08:00
std::wstring sentence = buffer;
2018-11-04 09:41:38 +08:00
buffer.clear();
if (FilterRepetition(sentence)) repeatingChars = std::unordered_set(sentence.begin(), sentence.end());
else repeatingChars.clear();
2018-11-09 17:24:33 +08:00
locker.unlock();
AddSentence(sentence);
2018-11-04 09:41:38 +08:00
}
}
// EOF