Textractor_test/host/textthread.h

46 lines
1.2 KiB
C
Raw Permalink Normal View History

#pragma once
2018-08-25 00:50:20 +08:00
#include "types.h"
2018-07-19 11:40:44 +08:00
class TextThread
{
public:
using OutputCallback = bool(*)(TextThread&, std::wstring&);
2018-10-08 12:26:43 +08:00
inline static OutputCallback Output;
inline static bool filterRepetition = false;
2022-11-18 02:29:20 +08:00
inline static bool flushDelaySpacing = false;
2021-06-05 22:15:19 +08:00
inline static int flushDelay = 500; // flush every 500ms by default
inline static int maxBufferSize = 3000;
2023-08-30 05:31:00 +08:00
inline static int limitStringLength = 1000; // Limit string length to 1000 chars by default
2019-08-12 23:10:33 +08:00
inline static int maxHistorySize = 10'000'000;
2018-10-08 12:26:43 +08:00
TextThread(ThreadParam tp, HookParam hp, std::optional<std::wstring> name = {});
2019-02-05 04:18:47 +08:00
void Start();
void Stop();
void AddSentence(std::wstring sentence);
2019-02-10 07:24:54 +08:00
void Push(BYTE* data, int length);
void Push(const wchar_t* data);
2019-06-05 11:12:45 +08:00
Synchronized<std::wstring> storage;
const int64_t handle;
2018-09-21 10:32:47 +08:00
const std::wstring name;
const ThreadParam tp;
2018-10-31 08:50:50 +08:00
const HookParam hp;
2018-09-21 10:32:47 +08:00
private:
2019-01-05 16:47:32 +08:00
inline static int threadCounter = 0;
2018-12-14 11:44:55 +08:00
void Flush();
2018-08-22 10:43:30 +08:00
std::wstring buffer;
2019-01-28 20:25:58 +08:00
BYTE leadByte = 0;
std::unordered_set<wchar_t> repeatingChars;
std::mutex bufferMutex;
2021-07-02 03:35:33 +08:00
DWORD64 lastPushTime = 0;
Synchronized<std::vector<std::wstring>> queuedSentences;
2019-01-10 11:35:01 +08:00
struct TimerDeleter { void operator()(HANDLE h) { DeleteTimerQueueTimer(NULL, h, INVALID_HANDLE_VALUE); } };
2019-02-05 04:18:47 +08:00
AutoHandle<TimerDeleter> timer = NULL;
};