2016-01-05 23:01:17 +08:00
|
|
|
#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"
|
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
|
|
|
{
|
2018-08-23 23:53:23 +08:00
|
|
|
typedef std::function<std::wstring(TextThread*, std::wstring)> ThreadOutputCallback;
|
2016-01-05 23:01:17 +08:00
|
|
|
public:
|
2018-08-23 23:53:23 +08:00
|
|
|
TextThread(ThreadParam tp, DWORD status);
|
2018-08-25 00:50:20 +08:00
|
|
|
~TextThread();
|
2016-01-05 23:01:17 +08:00
|
|
|
|
2018-08-25 00:50:20 +08:00
|
|
|
std::wstring GetStore();
|
2018-08-23 23:53:23 +08:00
|
|
|
ThreadParam GetThreadParam() { return tp; }
|
2016-01-05 23:01:17 +08:00
|
|
|
|
2018-08-22 10:43:30 +08:00
|
|
|
void RegisterOutputCallBack(ThreadOutputCallback cb) { Output = cb; }
|
2016-01-05 23:01:17 +08:00
|
|
|
|
2018-09-02 01:56:45 +08:00
|
|
|
void AddText(const BYTE* data, int len);
|
2018-07-26 12:48:18 +08:00
|
|
|
void AddSentence(std::wstring sentence);
|
|
|
|
|
2016-01-05 23:01:17 +08:00
|
|
|
private:
|
2018-08-26 04:02:16 +08:00
|
|
|
void Flush();
|
2018-08-22 10:43:30 +08:00
|
|
|
|
2018-08-22 13:22:34 +08:00
|
|
|
std::vector<char> buffer;
|
2018-07-20 11:22:55 +08:00
|
|
|
std::wstring storage;
|
2018-08-29 04:25:08 +08:00
|
|
|
std::recursive_mutex ttMutex;
|
2018-08-28 08:49:33 +08:00
|
|
|
|
|
|
|
HANDLE deletionEvent = CreateEventW(nullptr, FALSE, FALSE, NULL);
|
2018-09-02 02:11:48 +08:00
|
|
|
std::thread flushThread = std::thread([&] { while (WaitForSingleObject(deletionEvent, 100) == WAIT_TIMEOUT) Flush(); });
|
2018-08-28 08:49:33 +08:00
|
|
|
DWORD timestamp = GetTickCount();
|
2018-08-24 23:32:10 +08:00
|
|
|
|
2018-08-22 11:56:16 +08:00
|
|
|
ThreadOutputCallback Output;
|
2018-08-23 23:53:23 +08:00
|
|
|
ThreadParam tp;
|
2018-07-20 11:22:55 +08:00
|
|
|
DWORD status;
|
2016-01-05 23:01:17 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
// EOF
|