2016-01-06 00:01:17 +09:00
|
|
|
// textthread.cc
|
|
|
|
// 8/24/2013 jichi
|
|
|
|
// Branch IHF/TextThread.cpp, rev 133
|
|
|
|
|
|
|
|
#include "textthread.h"
|
2018-08-23 11:53:23 -04:00
|
|
|
#include "const.h"
|
2016-01-06 00:01:17 +09:00
|
|
|
|
2018-08-27 20:49:33 -04:00
|
|
|
TextThread::TextThread(ThreadParam tp, DWORD status) : tp(tp), status(status) {}
|
2016-01-06 00:01:17 +09:00
|
|
|
|
2018-07-18 16:18:43 -04:00
|
|
|
TextThread::~TextThread()
|
2016-01-06 00:01:17 +09:00
|
|
|
{
|
2018-08-21 23:56:16 -04:00
|
|
|
SetEvent(deletionEvent);
|
2018-08-21 22:43:30 -04:00
|
|
|
flushThread.join();
|
2018-08-21 23:56:16 -04:00
|
|
|
CloseHandle(deletionEvent);
|
2018-08-30 02:29:06 -04:00
|
|
|
LOCK(ttMutex);
|
2018-07-18 16:18:43 -04:00
|
|
|
}
|
|
|
|
|
2018-07-25 21:48:18 -07:00
|
|
|
std::wstring TextThread::GetStore()
|
|
|
|
{
|
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()
|
2016-01-06 00:01:17 +09:00
|
|
|
{
|
2018-07-11 20:18:04 -04:00
|
|
|
std::wstring sentence;
|
2018-05-25 04:34:40 -04:00
|
|
|
{
|
2018-08-28 17:21:20 -04:00
|
|
|
LOCK(ttMutex);
|
2018-08-31 12:17:04 -04:00
|
|
|
if (buffer.size() < 400 && (GetTickCount() - timestamp < 250 || buffer.size() == 0)) return; // TODO: let user change delay before sentence is flushed
|
2018-08-28 17:21:20 -04:00
|
|
|
if (status & USING_UNICODE)
|
|
|
|
{
|
|
|
|
sentence = std::wstring((wchar_t*)buffer.data(), buffer.size() / 2);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
wchar_t* converted = new wchar_t[buffer.size()];
|
|
|
|
sentence = std::wstring(converted, MultiByteToWideChar(status & USING_UTF8 ? CP_UTF8 : 932, 0, buffer.data(), buffer.size(), converted, buffer.size()));
|
|
|
|
delete[] converted;
|
|
|
|
}
|
|
|
|
buffer.clear();
|
2018-08-03 01:48:57 -04:00
|
|
|
}
|
2018-07-20 17:21:35 -04:00
|
|
|
AddSentence(sentence);
|
2016-01-06 00:01:17 +09:00
|
|
|
}
|
2018-05-25 04:34:40 -04:00
|
|
|
|
2018-07-11 20:18:04 -04:00
|
|
|
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-08-21 22:43:30 -04:00
|
|
|
if (Output) sentence = Output(this, sentence);
|
2018-08-28 17:21:20 -04:00
|
|
|
LOCK(ttMutex);
|
2018-07-18 16:18:43 -04:00
|
|
|
storage.append(sentence);
|
2016-01-06 00:01:17 +09:00
|
|
|
}
|
|
|
|
|
2018-09-01 13:56:45 -04:00
|
|
|
void TextThread::AddText(const BYTE* data, int len)
|
2018-07-11 20:18:04 -04:00
|
|
|
{
|
2018-08-28 17:21:20 -04:00
|
|
|
LOCK(ttMutex);
|
2018-09-01 13:56:45 -04:00
|
|
|
buffer.insert(buffer.end(), data, data + len);
|
2018-08-21 12:41:19 -04:00
|
|
|
timestamp = GetTickCount();
|
2018-07-11 20:18:04 -04:00
|
|
|
}
|
2016-01-06 00:01:17 +09:00
|
|
|
|
|
|
|
// EOF
|