Textractor_test/GUI/host/textthread.cc

62 lines
1.6 KiB
C++
Raw Normal View History

// textthread.cc
// 8/24/2013 jichi
// Branch IHF/TextThread.cpp, rev 133
#include "textthread.h"
2018-08-23 23:53:23 +08:00
#include "const.h"
TextThread::TextThread(ThreadParam tp, DWORD status) : tp(tp), status(status) {}
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-07-19 04:18:43 +08:00
}
2018-07-26 12:48:18 +08:00
std::wstring TextThread::GetStore()
{
2018-08-25 00:50:20 +08:00
LOCK ttLock(ttMutex);
2018-07-26 12:48:18 +08:00
return storage;
}
2018-08-26 04:02:16 +08:00
void TextThread::Flush()
{
2018-08-25 00:50:20 +08:00
LOCK ttLock(ttMutex);
if (buffer.size() < 400 && (timestamp - GetTickCount() < 250 || buffer.size() == 0)) return; // TODO: let user change delay before sentence is flushed
std::wstring sentence;
if (status & USING_UNICODE)
2018-05-25 16:34:40 +08:00
{
2018-08-22 13:22:34 +08:00
sentence = std::wstring((wchar_t*)buffer.data(), buffer.size() / 2);
2018-08-03 13:48:57 +08:00
}
2018-05-25 16:34:40 +08:00
else
2018-06-12 07:49:28 +08:00
{
2018-08-22 13:22:34 +08:00
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;
2018-06-12 07:49:28 +08:00
}
2018-08-29 04:26:19 +08:00
ttMutex.unlock();
2018-07-21 05:21:35 +08:00
AddSentence(sentence);
2018-08-29 04:26:19 +08:00
ttMutex.lock();
memset(buffer.data(), 0, buffer.size());
2018-08-22 13:22:34 +08:00
buffer.clear();
}
2018-05-25 16:34:40 +08:00
void TextThread::AddSentence(std::wstring sentence)
{
2018-08-22 10:43:30 +08:00
if (Output) sentence = Output(this, sentence);
2018-08-29 04:26:19 +08:00
LOCK ttLock(ttMutex);
2018-07-19 04:18:43 +08:00
storage.append(sentence);
}
void TextThread::AddText(const BYTE *con, int len)
{
2018-08-25 00:50:20 +08:00
LOCK ttLock(ttMutex);
// Artikash 8/27/2018: add repetition filter
if (len > 6 && buffer.data() && (strstr(buffer.data(), (const char*)con) || wcsstr((const wchar_t*)buffer.data(), (const wchar_t*)con))) return;
2018-08-22 13:22:34 +08:00
buffer.insert(buffer.end(), con, con + len);
2018-08-22 00:41:19 +08:00
timestamp = GetTickCount();
}
// EOF