blob: 42147d37485b026e34e48efcfacfddad8c098bf6 (
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
|
#include <iostream.h>
#include "Task.h"
#include "String.h"
Task::Task() : state(TASK_ON_HOLD), suspended(false) {}
Task::~Task() {}
int Task::Do() {
return TASK_ON_HOLD;
}
int Task::Run() {
cerr << "Running task '" << GetName() << "'...\n";
try {
state = Do();
}
catch (TaskSwitch) {
Resume(1);
throw;
}
catch (GeneralException e) {
cerr << "Task " << GetName() << " caused an unexpected exception: '" << e.GetMsg() << "', closing it.\n";
return TASK_DONE;
}
return state;
}
int Task::GetState() {
return state;
}
String Task::GetName() {
return "Unknow Task";
}
int Task::Suspend() throw (GeneralException) {
int r;
cerr << "Suspending task " << GetName() << "...\n";
suspended = true;
r = setjmp(env);
if (!r) throw TaskSwitch();
return r;
}
void Task::Resume(int val) throw (GeneralException) {
if (suspended) {
cerr << "Resuming task " << GetName() << "...\n";
suspended = false;
longjmp(env, val);
} else {
throw GeneralException(String("Task ") + GetName() + " was not suspended.");
}
}
|