2016-01-06 00:01:17 +09:00
|
|
|
#pragma once
|
|
|
|
|
2018-08-22 12:24:55 -04:00
|
|
|
#include "common.h"
|
2018-08-24 12:50:20 -04:00
|
|
|
#include "types.h"
|
2016-01-06 00:01:17 +09:00
|
|
|
|
2018-07-18 23:40:44 -04:00
|
|
|
class TextThread
|
2016-01-06 00:01:17 +09:00
|
|
|
{
|
|
|
|
public:
|
2019-02-04 15:18:47 -05:00
|
|
|
using OutputCallback = std::function<bool(TextThread&, std::wstring&)>;
|
2018-10-08 00:26:43 -04:00
|
|
|
inline static OutputCallback Output;
|
|
|
|
|
2019-02-04 15:53:13 -05:00
|
|
|
inline static bool filterRepetition = true;
|
2018-11-09 04:24:33 -05:00
|
|
|
inline static int flushDelay = 400; // flush every 400ms by default
|
|
|
|
inline static int maxBufferSize = 1000;
|
2019-08-12 11:10:33 -04:00
|
|
|
inline static int maxHistorySize = 10'000'000;
|
2018-10-08 00:26:43 -04:00
|
|
|
|
2018-12-01 15:55:32 -05:00
|
|
|
TextThread(ThreadParam tp, HookParam hp, std::optional<std::wstring> name = {});
|
2016-01-06 00:01:17 +09:00
|
|
|
|
2019-02-04 15:18:47 -05:00
|
|
|
void Start();
|
|
|
|
void Stop();
|
2019-07-02 11:26:04 +05:30
|
|
|
void AddSentence(std::wstring sentence);
|
2019-02-09 18:24:54 -05:00
|
|
|
void Push(BYTE* data, int length);
|
2016-01-06 00:01:17 +09:00
|
|
|
|
2019-06-04 23:12:45 -04:00
|
|
|
Synchronized<std::wstring> storage;
|
2018-09-22 17:13:06 -04:00
|
|
|
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
|
|
|
|
2016-01-06 00:01:17 +09:00
|
|
|
private:
|
2019-01-05 03:47:32 -05:00
|
|
|
inline static int threadCounter = 0;
|
|
|
|
|
2018-12-13 22:44:55 -05:00
|
|
|
void Flush();
|
2018-08-21 22:43:30 -04:00
|
|
|
|
2018-10-04 19:52:16 -04:00
|
|
|
std::wstring buffer;
|
2019-01-28 07:25:58 -05:00
|
|
|
BYTE leadByte = 0;
|
2018-10-17 00:42:51 -04:00
|
|
|
std::unordered_set<wchar_t> repeatingChars;
|
2018-11-22 15:53:32 -05:00
|
|
|
std::mutex bufferMutex;
|
2019-01-28 07:25:58 -05:00
|
|
|
DWORD lastPushTime = 0;
|
2019-06-04 23:12:45 -04:00
|
|
|
Synchronized<std::deque<std::wstring>> queuedSentences;
|
2019-01-09 22:35:01 -05:00
|
|
|
struct TimerDeleter { void operator()(HANDLE h) { DeleteTimerQueueTimer(NULL, h, INVALID_HANDLE_VALUE); } };
|
2019-02-04 15:18:47 -05:00
|
|
|
AutoHandle<TimerDeleter> timer = NULL;
|
2016-01-06 00:01:17 +09:00
|
|
|
};
|