-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtaskQueue.h
93 lines (77 loc) · 2.21 KB
/
taskQueue.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
/*********************************************************************
Copyright (C), 1990-2016, HangZhou RED HEAT Tech. Co., Ltd.
FileName: taskQueue.h
Author : pairs & [email protected]
Version : 1.0
Date : 2016/04/25
Description:
Function List:
History:
<author> <time> <version> <desc>
pairs 16/04/25 1.0 build this moudle
*********************************************************************/
#ifndef __TASK_QUEUE_H__
#define __TASK_QUEUE_H__
#include <pthread.h>
#include <iostream>
#include <sstream>
#include <map>
#include <vector>
#include <queue>
#include <unistd.h>
#include <signal.h>
#include <errno.h>
#include <string.h>
using namespace std;
// forward declaration
class TaskQueueManager;
// data element
typedef struct __DataObj
{
// now data want to process is a int
int data_;
// call back function, tell how to process data, now is int
void (*callBack)(int i);
}DataObj;
typedef struct __WorkPthread
{
// thread id
pthread_t pthreadId_;
// control thread
int running_;
// interface to get date element form queue
TaskQueueManager *taskQueueMgr_;
}WorkPthread;
// class for mgr queue, provide two interface pop and push
class TaskQueueManager
{
public:
TaskQueueManager();
~TaskQueueManager();
DataObj *pop();
void push(DataObj *);
private:
pthread_mutex_t mutex_;
std::queue<DataObj*>datas_;
};
class DataProcessManager
{
public:
DataProcessManager(int , TaskQueueManager*);
int initlize();
void start();
~DataProcessManager();
private:
int judgePthreadStatus(pthread_t tid);
int createProcessThread(WorkPthread *);
// operate workThread map
int addWorkPthreadToMap(std::map<pthread_t,WorkPthread*>&KpidVPthreadMap);
int initWorkThreadMap(std::map<pthread_t,WorkPthread*>&KpidVPthreadMap, size_t thread_num);
int checkProcessThreadStatus(std::map<pthread_t,WorkPthread*>&KpidVPthreadMap);
// thread function
static void* managerThreadFunc(void *arg);
static void* processThreadFunc(void *arg);
size_t workThreadNum_;
TaskQueueManager *Itk_;
};
#endif