2016-01-06 00:01:17 +09:00
|
|
|
// textthread.cc
|
|
|
|
// 8/24/2013 jichi
|
|
|
|
// Branch IHF/TextThread.cpp, rev 133
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
# pragma warning (disable:4100) // C4100: unreference formal parameter
|
|
|
|
#endif // _MSC_VER
|
|
|
|
|
|
|
|
#include "textthread.h"
|
2018-08-21 22:43:30 -04:00
|
|
|
#include <mutex>
|
2018-07-20 16:26:27 -04:00
|
|
|
#include "../vnrhook/include/const.h"
|
2018-07-20 17:21:35 -04:00
|
|
|
#include "winmutex.h"
|
2016-01-06 00:01:17 +09:00
|
|
|
|
2018-08-21 22:43:30 -04:00
|
|
|
#define TT_LOCK std::lock_guard<std::recursive_mutex> ttLocker(ttMutex) // Synchronized scope for accessing private data
|
2018-07-17 17:01:56 -04:00
|
|
|
|
2018-08-21 22:43:30 -04:00
|
|
|
TextThread::TextThread(ThreadParameter tp, DWORD status) :
|
2018-08-02 17:17:54 -04:00
|
|
|
status(status),
|
2018-08-21 12:41:19 -04:00
|
|
|
timestamp(GetTickCount()),
|
2018-08-21 22:43:30 -04:00
|
|
|
Output(nullptr),
|
|
|
|
tp(tp),
|
|
|
|
flushThread([&]() { while (Sleep(25), FlushSentenceBuffer()); })
|
|
|
|
{}
|
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 22:43:30 -04:00
|
|
|
status = -1UL;
|
|
|
|
flushThread.join();
|
2018-07-18 16:18:43 -04:00
|
|
|
}
|
|
|
|
|
2018-07-25 21:48:18 -07:00
|
|
|
std::wstring TextThread::GetStore()
|
|
|
|
{
|
|
|
|
TT_LOCK;
|
|
|
|
return storage;
|
|
|
|
}
|
|
|
|
|
2018-08-21 22:43:30 -04:00
|
|
|
bool TextThread::FlushSentenceBuffer()
|
2016-01-06 00:01:17 +09:00
|
|
|
{
|
2018-07-18 16:18:43 -04:00
|
|
|
TT_LOCK;
|
2018-08-21 22:43:30 -04:00
|
|
|
if (status == -1UL) return false;
|
|
|
|
if (timestamp - GetTickCount() < 250 || sentenceBuffer.size() == 0) return true; // TODO: let user change delay before sentence is flushed
|
2018-07-11 20:18:04 -04:00
|
|
|
std::wstring sentence;
|
|
|
|
if (status & USING_UNICODE)
|
2018-05-25 04:34:40 -04:00
|
|
|
{
|
2018-07-11 20:18:04 -04:00
|
|
|
sentence = std::wstring((wchar_t*)sentenceBuffer.data(), sentenceBuffer.size() / 2);
|
2018-05-25 04:34:40 -04:00
|
|
|
}
|
2018-08-03 01:48:57 -04:00
|
|
|
else if (status & USING_UTF8)
|
|
|
|
{
|
|
|
|
wchar_t* converted = new wchar_t[sentenceBuffer.size()];
|
|
|
|
sentence = std::wstring(converted, MultiByteToWideChar(CP_UTF8, 0, sentenceBuffer.data(), sentenceBuffer.size(), converted, sentenceBuffer.size()));
|
|
|
|
delete[] converted;
|
|
|
|
}
|
2018-05-25 04:34:40 -04:00
|
|
|
else
|
2018-06-11 19:49:28 -04:00
|
|
|
{
|
2018-07-11 20:18:04 -04:00
|
|
|
wchar_t* converted = new wchar_t[sentenceBuffer.size()];
|
|
|
|
sentence = std::wstring(converted, MultiByteToWideChar(932, 0, sentenceBuffer.data(), sentenceBuffer.size(), converted, sentenceBuffer.size()));
|
|
|
|
delete[] converted;
|
2018-06-11 19:49:28 -04:00
|
|
|
}
|
2018-07-20 17:21:35 -04:00
|
|
|
AddSentence(sentence);
|
2018-07-11 20:18:04 -04:00
|
|
|
sentenceBuffer.clear();
|
2018-08-21 22:43:30 -04:00
|
|
|
return true;
|
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-07-18 16:18:43 -04:00
|
|
|
TT_LOCK;
|
2018-08-21 22:43:30 -04:00
|
|
|
if (Output) sentence = Output(this, sentence);
|
2018-07-18 16:18:43 -04:00
|
|
|
storage.append(sentence);
|
2016-01-06 00:01:17 +09:00
|
|
|
}
|
|
|
|
|
2018-07-11 20:18:04 -04:00
|
|
|
void TextThread::AddText(const BYTE *con, int len)
|
|
|
|
{
|
2018-07-18 16:18:43 -04:00
|
|
|
TT_LOCK;
|
2018-07-19 00:09:58 -04:00
|
|
|
sentenceBuffer.insert(sentenceBuffer.end(), con, con + 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
|