Textractor_test/texthook/textthread.h

61 lines
1.5 KiB
C
Raw Normal View History

#pragma once
// textthread.h
// 8/23/2013 jichi
// Branch: ITH/TextThread.h, rev 120
2018-07-19 04:18:43 +08:00
#include <Windows.h>
#include <string>
#include <vector>
2018-07-20 11:22:55 +08:00
struct ThreadParameter
2018-07-19 11:40:44 +08:00
{
2018-07-20 11:22:55 +08:00
DWORD pid; // jichi: 5/11/2014: The process ID
DWORD hook; // Artikash 6/6/2018: The start address of the hook
DWORD retn; // jichi 5/11/2014: The return address of the hook
DWORD spl; // jichi 5/11/2014: the processed split value of the hook paramete
// Artikash 5/31/2018: required for unordered_map to work with struct key
friend bool operator==(const ThreadParameter& one, const ThreadParameter& two)
{
return one.pid == two.pid && one.hook == two.hook && one.retn == two.retn && one.spl == two.spl;
}
};
class TextThread;
2018-07-22 06:30:42 +08:00
typedef std::wstring(*ThreadOutputCallback)(TextThread*, std::wstring data);
//extern DWORD split_time,repeat_count,global_filter,cyclic_remove;
2018-07-19 11:40:44 +08:00
class TextThread
{
public:
2018-07-20 11:22:55 +08:00
TextThread(ThreadParameter tp, unsigned int threadNumber, unsigned int splitDelay);
~TextThread();
2018-07-20 11:22:55 +08:00
void Reset();
void AddText(const BYTE *con, int len);
void AddSentence();
void AddSentence(std::wstring sentence);
2018-07-20 11:22:55 +08:00
std::wstring GetStore() { return storage; }
DWORD &Status() { return status; }
WORD Number() const { return threadNumber; }
ThreadParameter GetThreadParameter() { return tp; }
2018-07-20 11:22:55 +08:00
void RegisterOutputCallBack(ThreadOutputCallback cb) { output = cb; }
private:
2018-07-20 11:22:55 +08:00
CRITICAL_SECTION ttCs;
ThreadOutputCallback output;
std::vector<char> sentenceBuffer;
std::wstring storage;
ThreadParameter tp;
unsigned int threadNumber;
unsigned int splitDelay;
DWORD status;
};
// EOF