Textractor/GUI/host/textthread.h

47 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-22 12:24:55 -04:00
#include "common.h"
2018-08-24 12:50:20 -04:00
#include "types.h"
2018-07-18 23:40:44 -04:00
class TextThread
{
public:
2018-10-08 00:26:43 -04:00
typedef std::function<bool(TextThread*, std::wstring&)> OutputCallback;
inline static OutputCallback Output;
2018-11-09 04:24:33 -05:00
inline static int flushDelay = 400; // flush every 400ms by default
inline static int maxBufferSize = 1000;
2018-10-09 02:09:52 -04:00
inline static int threadCounter = 0;
2018-10-08 00:26:43 -04:00
2018-11-01 15:03:30 -04:00
TextThread(ThreadParam tp, HookParam hp, std::wstring name);
2018-08-24 12:50:20 -04:00
~TextThread();
2018-10-08 00:26:43 -04:00
std::wstring GetStorage();
void AddSentence(std::wstring sentence);
2018-11-03 21:41:38 -04:00
void Push(const BYTE* data, int len);
const int64_t handle;
2018-09-20 22:32:47 -04:00
const std::wstring name;
const ThreadParam tp;
2018-10-30 20:50:50 -04:00
const HookParam hp;
2018-09-20 22:32:47 -04:00
private:
2018-08-25 16:02:16 -04:00
void Flush();
2018-08-21 22:43:30 -04:00
std::wstring buffer;
2018-07-19 23:22:55 -04:00
std::wstring storage;
std::unordered_set<wchar_t> repeatingChars;
2018-10-30 20:50:50 -04:00
std::recursive_mutex threadMutex;
HANDLE deletionEvent = CreateEventW(nullptr, FALSE, FALSE, NULL);
std::thread flushThread = std::thread([&] { while (WaitForSingleObject(deletionEvent, 10) == WAIT_TIMEOUT) Flush(); });
2018-11-03 21:41:38 -04:00
DWORD lastPushTime = GetTickCount();
};
// EOF