Textractor_test/GUI/host/textthread.cc

54 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-21 10:32:47 +08:00
#include "host.h"
2018-08-23 23:53:23 +08:00
#include "const.h"
2018-09-21 10:32:47 +08:00
TextThread::TextThread(ThreadParam tp, DWORD status) : tp(tp), status(status), name(Host::GetHookName(tp.pid, tp.hook)) {}
2018-07-19 04:18:43 +08:00
TextThread::~TextThread()
{
2018-08-22 11:56:16 +08:00
SetEvent(deletionEvent);
2018-08-22 10:43:30 +08:00
flushThread.join();
2018-08-22 11:56:16 +08:00
CloseHandle(deletionEvent);
2018-08-30 14:29:06 +08:00
LOCK(ttMutex);
2018-07-19 04:18:43 +08:00
}
2018-07-26 12:48:18 +08:00
std::wstring TextThread::GetStore()
{
2018-08-29 05:21:20 +08:00
LOCK(ttMutex);
2018-07-26 12:48:18 +08:00
return storage;
}
2018-08-26 04:02:16 +08:00
void TextThread::Flush()
{
std::wstring sentence;
2018-05-25 16:34:40 +08:00
{
2018-08-29 05:21:20 +08:00
LOCK(ttMutex);
2018-09-22 09:27:59 +08:00
if (buffer.size() < 400 && (GetTickCount() - timestamp < flushDelay || buffer.size() == 0)) return; // TODO: let user change delay before sentence is flushed
if (status & USING_UNICODE) sentence = std::wstring((wchar_t*)buffer.data(), buffer.size() / 2);
else sentence = ToWString(buffer.data(), status & USING_UTF8 ? CP_UTF8 : SHIFT_JIS);
2018-08-29 05:21:20 +08:00
buffer.clear();
2018-08-03 13:48:57 +08:00
}
2018-07-21 05:21:35 +08:00
AddSentence(sentence);
}
2018-05-25 16:34:40 +08:00
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-08-22 10:43:30 +08:00
if (Output) sentence = Output(this, sentence);
2018-08-29 05:21:20 +08:00
LOCK(ttMutex);
2018-07-19 04:18:43 +08:00
storage.append(sentence);
}
2018-09-02 01:56:45 +08:00
void TextThread::AddText(const BYTE* data, int len)
{
2018-08-29 05:21:20 +08:00
LOCK(ttMutex);
2018-09-02 01:56:45 +08:00
buffer.insert(buffer.end(), data, data + len);
2018-08-22 00:41:19 +08:00
timestamp = GetTickCount();
}
// EOF