Textractor_test/GUI/host/textthread.h

48 lines
1.1 KiB
C
Raw Normal View History

#pragma once
// textthread.h
// 8/23/2013 jichi
// Branch: ITH/TextThread.h, rev 120
2018-08-23 00:24:55 +08:00
#include "common.h"
2018-08-25 00:50:20 +08:00
#include "types.h"
#include <unordered_set>
2018-07-19 11:40:44 +08:00
class TextThread
{
public:
2018-10-08 12:26:43 +08:00
typedef std::function<bool(TextThread*, std::wstring&)> OutputCallback;
inline static OutputCallback Output;
2018-10-09 14:09:52 +08:00
inline static int flushDelay = 250; // flush every 250ms by default
inline static int maxBufferSize = 200;
inline static int threadCounter = 0;
2018-10-08 12:26:43 +08:00
2018-08-23 23:53:23 +08:00
TextThread(ThreadParam tp, DWORD status);
2018-08-25 00:50:20 +08:00
~TextThread();
2018-10-08 12:26:43 +08:00
std::wstring GetStorage();
void AddText(const BYTE* data, int len);
void AddSentence(std::wstring sentence);
const int64_t handle;
2018-09-21 10:32:47 +08:00
const std::wstring name;
const ThreadParam tp;
private:
2018-08-26 04:02:16 +08:00
void Flush();
2018-08-22 10:43:30 +08:00
std::wstring buffer;
2018-07-20 11:22:55 +08:00
std::wstring storage;
std::unordered_set<wchar_t> repeatingChars;
std::recursive_mutex ttMutex;
2018-10-08 12:26:43 +08:00
DWORD status;
HANDLE deletionEvent = CreateEventW(nullptr, FALSE, FALSE, NULL);
std::thread flushThread = std::thread([&] { while (WaitForSingleObject(deletionEvent, 10) == WAIT_TIMEOUT) Flush(); });
DWORD timestamp = GetTickCount();
};
// EOF