Textractor/GUI/host/textthread.cc

59 lines
1.3 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-10-09 02:09:52 -04:00
TextThread::TextThread(ThreadParam tp, DWORD status) : handle(threadCounter++), name(Host::GetHookName(tp.pid, tp.hook)), tp(tp), status(status) {}
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-08-28 17:21:20 -04:00
LOCK(ttMutex);
2018-07-25 21:48:18 -07:00
return storage;
}
2018-08-25 16:02:16 -04:00
void TextThread::Flush()
{
std::wstring sentence;
2018-05-25 04:34:40 -04:00
{
2018-08-28 17:21:20 -04:00
LOCK(ttMutex);
2018-10-09 02:22:59 -04:00
if (buffer.size() == 0) return;
2018-10-09 02:09:52 -04:00
if (buffer.size() < maxBufferSize && GetTickCount() - timestamp < flushDelay) return;
sentence = buffer;
2018-08-28 17:21:20 -04:00
buffer.clear();
2018-08-03 01:48:57 -04:00
}
2018-07-20 17:21:35 -04:00
AddSentence(sentence);
}
2018-05-25 04:34:40 -04:00
void TextThread::AddSentence(std::wstring sentence)
{
2018-10-09 01:46:11 -04:00
sentence = std::regex_replace(sentence, std::wregex(filter), L"");
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))
{
LOCK(ttMutex);
storage += sentence;
}
}
2018-09-01 13:56:45 -04:00
void TextThread::AddText(const BYTE* data, int len)
{
2018-10-08 00:26:43 -04:00
LOCK(ttMutex);
buffer += status & USING_UNICODE
? std::wstring((wchar_t*)data, len / 2)
: StringToWideString(std::string((char*)data, len), status & USING_UTF8 ? CP_UTF8 : SHIFT_JIS);
timestamp = GetTickCount();
}
// EOF