blob: 6a3849128eb8915cd5163b77fd539a6d8a6d774d (
plain)
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
|
#include <signal.h>
#include <wait.h>
#include <vector.h>
#include "TaskMan.h"
bool TaskMan::inited = false;
static int got_sigchild = 0;
static vector<pid_t> process;
static int nbprocess = 0;
void taskman_sigchild(int sig) {
got_sigchild = 1;
process.push_back(wait(NULL));
signal(SIGCHLD, taskman_sigchild);
nbprocess++;
}
TaskMan::TaskMan() throw (GeneralException) {
throw GeneralException("You can't instanciate a Task Manager.");
}
void TaskMan::Init() throw (GeneralException) {
if (inited) {
throw GeneralException("Task Manager already initialised.");
}
signal(SIGCHLD, taskman_sigchild);
inited = true;
number = 0;
}
int TaskMan::AddTask(Task * t) {
TaskList.push_back(t);
number++;
return 0;
}
int TaskMan::RemoveTask(Task * t) {
int i;
for (i = 0; i < number; i++) {
if (TaskList[i] == t) {
TaskList.erase(&TaskList[i]);
number--;
return 0;
}
}
return -1;
}
void TaskMan::MainLoop() throw (GeneralException) {
Task ** p, * t;
while (1) {
if (number == 0) {
throw GeneralException("TaskMan: No more task to manage.");
}
p = TaskList.begin();
while (1) {
t = *p;
#ifdef HAVE_POLL
#else
#endif
try {
t->Do();
}
catch (TaskSwitch) {
continue;
}
if (t->GetState() == TASK_DONE) {
TaskList.erase(p);
}
if (p == TaskList.end()) {
break;
}
p++;
}
}
}
|