2016-01-06 00:01:17 +09:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
// textthread.h
|
|
|
|
// 8/23/2013 jichi
|
|
|
|
// Branch: ITH/TextThread.h, rev 120
|
|
|
|
|
2018-07-18 16:18:43 -04:00
|
|
|
#include <Windows.h>
|
2018-07-11 20:18:04 -04:00
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
2016-01-06 00:01:17 +09:00
|
|
|
|
2018-07-18 23:40:44 -04:00
|
|
|
struct ThreadParameter
|
|
|
|
{
|
2016-01-06 00:01:17 +09:00
|
|
|
DWORD pid; // jichi: 5/11/2014: The process ID
|
2018-06-06 23:11:35 -04:00
|
|
|
DWORD hook; // Artikash 6/6/2018: The start address of the hook
|
2016-01-06 00:01:17 +09:00
|
|
|
DWORD retn; // jichi 5/11/2014: The return address of the hook
|
2018-06-12 17:31:24 -04:00
|
|
|
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;
|
|
|
|
}
|
2016-01-06 00:01:17 +09:00
|
|
|
};
|
|
|
|
|
|
|
|
#define CURRENT_SELECT 0x1000
|
|
|
|
|
|
|
|
class TextThread;
|
2018-07-18 16:18:43 -04:00
|
|
|
typedef void(*ThreadOutputCallback)(TextThread*, std::wstring data);
|
2016-01-06 00:01:17 +09:00
|
|
|
|
|
|
|
//extern DWORD split_time,repeat_count,global_filter,cyclic_remove;
|
|
|
|
|
2018-07-18 23:40:44 -04:00
|
|
|
class TextThread
|
2016-01-06 00:01:17 +09:00
|
|
|
{
|
|
|
|
public:
|
2018-07-17 17:01:56 -04:00
|
|
|
TextThread(ThreadParameter tp, unsigned int threadNumber, unsigned int splitDelay);
|
2018-07-18 16:18:43 -04:00
|
|
|
~TextThread();
|
2016-01-06 00:01:17 +09:00
|
|
|
|
|
|
|
void Reset();
|
2018-07-18 16:18:43 -04:00
|
|
|
void AddText(const BYTE *con, int len);
|
2018-07-11 20:18:04 -04:00
|
|
|
void AddSentence();
|
|
|
|
void AddSentence(std::wstring sentence);
|
2016-01-06 00:01:17 +09:00
|
|
|
|
2018-07-18 23:40:44 -04:00
|
|
|
std::wstring GetStore() { return storage; }
|
2016-01-06 00:01:17 +09:00
|
|
|
DWORD &Status() { return status; }
|
2018-07-18 16:18:43 -04:00
|
|
|
WORD Number() const { return threadNumber; }
|
|
|
|
ThreadParameter GetThreadParameter() { return tp; }
|
2016-01-06 00:01:17 +09:00
|
|
|
|
2018-07-18 16:18:43 -04:00
|
|
|
void RegisterOutputCallBack(ThreadOutputCallback cb) { output = cb; }
|
2016-01-06 00:01:17 +09:00
|
|
|
|
|
|
|
private:
|
2018-07-18 16:18:43 -04:00
|
|
|
CRITICAL_SECTION ttCs;
|
|
|
|
ThreadOutputCallback output;
|
2018-07-11 20:18:04 -04:00
|
|
|
std::vector<char> sentenceBuffer;
|
2018-07-18 16:18:43 -04:00
|
|
|
std::wstring storage;
|
|
|
|
|
|
|
|
ThreadParameter tp;
|
|
|
|
unsigned int threadNumber;
|
2018-07-17 17:01:56 -04:00
|
|
|
unsigned int splitDelay;
|
2018-06-10 19:15:05 -04:00
|
|
|
DWORD status;
|
2016-01-06 00:01:17 +09:00
|
|
|
};
|
|
|
|
|
|
|
|
// EOF
|