summaryrefslogtreecommitdiff
path: root/lib/Task.cc
blob: fd1bf3fdba23d318dea3ff192a22754685c467aa (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
#include <sys/time.h>
#include <iostream.h>
#include "TaskMan.h"
#include "Task.h"
#include "String.h"

Task::Task() : state(TASK_ON_HOLD), suspended(false) {
    TaskMan::AddTask(this);
}
Task::~Task() {
    TaskMan::RemoveTask(this);
}

int Task::Do() throw (GeneralException) {
    return TASK_ON_HOLD;
}

int Task::Run() {
    cerr << "Running task '" << GetName() << "'...\n";
    try {
	cerr << "Launching method Do()...\n";
	state = Do();
    }
    catch (TaskSwitch) {
	cerr << "Catch a task switching.\n";
	throw;
    }
    catch (GeneralException e) {
	cerr << "Task " << GetName() << " caused an unexpected exception: '" << e.GetMsg() << "', closing it.\n";
	return TASK_DONE;
    }
    
    cerr << "Task exitted normally.\n";
        
    return state;
}

int Task::GetState() {
    return state;
}

String Task::GetName() {
    return "Unknow Task";
}

void Task::Suspend() throw (GeneralException) {
    cerr << "Suspending task " << GetName() << "...\n";
    suspended = true;
    throw TaskSwitch();
}

void Task::WaitFor(Handle * h) {
    w4ha.push_back(h);
}

void Task::WaitFor(Task * t) {
    w4ta.push_back(t);
}

void Task::WaitFor(pid_t p) {
    w4pr.push_back(p);
}

void Task::WaitFor(timeval t) {
    w4to.push_back(t);
}