2016-01-05 23:01:17 +08:00
|
|
|
#pragma once
|
|
|
|
|
2018-08-23 00:24:55 +08:00
|
|
|
#include "common.h"
|
2018-08-25 00:50:20 +08:00
|
|
|
#include "types.h"
|
2016-01-05 23:01:17 +08:00
|
|
|
|
2018-07-19 11:40:44 +08:00
|
|
|
class TextThread
|
2016-01-05 23:01:17 +08:00
|
|
|
{
|
|
|
|
public:
|
2018-10-08 12:26:43 +08:00
|
|
|
typedef std::function<bool(TextThread*, std::wstring&)> OutputCallback;
|
|
|
|
|
|
|
|
inline static OutputCallback Output;
|
|
|
|
|
2018-11-09 17:24:33 +08:00
|
|
|
inline static int flushDelay = 400; // flush every 400ms by default
|
|
|
|
inline static int maxBufferSize = 1000;
|
2018-11-10 18:13:59 +08:00
|
|
|
inline static int defaultCodepage = SHIFT_JIS;
|
2018-10-09 14:09:52 +08:00
|
|
|
inline static int threadCounter = 0;
|
2018-10-08 12:26:43 +08:00
|
|
|
|
2018-11-02 03:03:30 +08:00
|
|
|
TextThread(ThreadParam tp, HookParam hp, std::wstring name);
|
2018-11-23 04:53:32 +08:00
|
|
|
TextThread(TextThread&) = delete;
|
|
|
|
TextThread& operator=(TextThread) = delete;
|
2018-08-25 00:50:20 +08:00
|
|
|
~TextThread();
|
2016-01-05 23:01:17 +08:00
|
|
|
|
2018-10-08 12:26:43 +08:00
|
|
|
std::wstring GetStorage();
|
2018-09-23 05:13:06 +08:00
|
|
|
void AddSentence(std::wstring sentence);
|
2018-11-04 09:41:38 +08:00
|
|
|
void Push(const BYTE* data, int len);
|
2016-01-05 23:01:17 +08:00
|
|
|
|
2018-09-23 05:13:06 +08:00
|
|
|
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
|
|
|
|
2016-01-05 23:01:17 +08:00
|
|
|
private:
|
2018-11-16 21:34:15 +08:00
|
|
|
// see https://github.com/Artikash/Textractor/issues/40
|
|
|
|
static bool FilterRepetition(std::wstring& sentence);
|
2018-08-26 04:02:16 +08:00
|
|
|
void Flush();
|
2018-08-22 10:43:30 +08:00
|
|
|
|
2018-10-05 07:52:16 +08:00
|
|
|
std::wstring buffer;
|
2018-10-17 12:42:51 +08:00
|
|
|
std::unordered_set<wchar_t> repeatingChars;
|
2018-11-23 04:53:32 +08:00
|
|
|
std::mutex bufferMutex;
|
|
|
|
std::wstring storage;
|
|
|
|
std::recursive_mutex storageMutex;
|
2018-10-05 10:10:27 +08:00
|
|
|
|
|
|
|
HANDLE deletionEvent = CreateEventW(nullptr, FALSE, FALSE, NULL);
|
|
|
|
std::thread flushThread = std::thread([&] { while (WaitForSingleObject(deletionEvent, 10) == WAIT_TIMEOUT) Flush(); });
|
2018-11-04 09:41:38 +08:00
|
|
|
DWORD lastPushTime = GetTickCount();
|
2016-01-05 23:01:17 +08:00
|
|
|
};
|