blob: bc7c7a01693feb8c5630c79e834144d24bd88546 (
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
|
#include <sys/time.h>
#include <iostream.h>
#include "TaskMan.h"
#include "Task.h"
#include "String.h"
Task::Task() : current(0), state(TASK_ON_HOLD), stopped(false), suspended(false), wbta(0) {
TaskMan::AddTask(this);
}
Task::~Task() {
TaskMan::RemoveFromWatches(this);
}
int Task::Do() throw (GeneralException) {
return TASK_ON_HOLD;
}
int Task::Run() {
cerr << "==== Task: \"" << GetName() << "\" running.\n";
try {
state = Do();
}
catch (TaskSwitch) {
cerr << "==== Task: \"" << GetName() << "\" caugh a task switch. returning " << (state == TASK_ON_HOLD ? "TASK_ON_HOLD" : "TASK_DONE") << endl;
return state;
}
catch (GeneralException e) {
cerr << "Task " << GetName() << " caused an unexpected exception. Terminating.\n";
return TASK_DONE;
}
cerr << "==== Task: \"" << GetName() << "\" exitted. returning " << (state == TASK_ON_HOLD ? "TASK_ON_HOLD" : "TASK_DONE") << endl;
return state;
}
int Task::GetState() {
return state;
}
String Task::GetName() {
return "Unknow Task";
}
void Task::Suspend(int newstate) throw (GeneralException) {
if (newstate != -1) {
state = newstate;
}
suspended = true;
throw TaskSwitch();
}
void Task::WaitFor(Handle * h, int flags) {
TaskMan::WaitFor(h, this, flags);
}
void Task::WaitFor(Task * t) {
t->wbta = this;
}
void Task::WaitFor(pid_t p) {
TaskMan::WaitFor(p, this);
}
void Task::WaitFor(timeval t, int flags) {
TaskMan::WaitFor(t, this, flags);
}
void Task::SetBurst() {
state = TASK_BURST;
}
void Task::Stop() {
stopped = true;
}
void Task::Restart() {
stopped = false;
}
bool Task::IsStopped() {
return stopped;
}
Task * Task::WaitedBy() {
return wbta;
}
|