#pragma once // textthread.h // 8/23/2013 jichi // Branch: ITH/TextThread.h, rev 120 #include "common.h" #include "types.h" class TextThread { typedef std::function ThreadOutputCallback; public: TextThread(ThreadParam tp, DWORD status); ~TextThread(); std::wstring GetStore(); void AddText(const BYTE* data, int len); void AddSentence(std::wstring sentence); void RegisterOutputCallBack(ThreadOutputCallback cb) { Output = cb; } const int64_t handle; const std::wstring name; const ThreadParam tp; inline static int FlushDelay = 250; // flush every 250ms by default inline static int MaxBufferSize = 500; inline static int ThreadCounter = 0; private: void Flush(); std::vector buffer; std::wstring storage; std::recursive_mutex ttMutex; HANDLE deletionEvent = CreateEventW(nullptr, FALSE, FALSE, NULL); std::thread flushThread = std::thread([&] { while (WaitForSingleObject(deletionEvent, 10) == WAIT_TIMEOUT) Flush(); }); DWORD timestamp = GetTickCount(); ThreadOutputCallback Output; DWORD status; }; // EOF