blob: 6640d82145b17b15afbca1652bb1a5a363af9ca2 (
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
|
#include "ReadJob.h"
#include "HttpServ.h"
ReadJob::ReadJob(Handle * as, Handle * ad) : s(as), d(ad) { }
ReadJob::~ReadJob() { }
int ReadJob::Do() throw (GeneralException) {
String buff;
cerr << "ReadJob running...\n";
while (!s->IsClosed()) {
switch (current) {
case 0:
try {
cerr << "Trying to read...\n";
*s >> buff;
}
catch (IOAgain e) {
cerr << "Suspending ReadJob to wait for reading...\n";
throw TaskSwitch();
}
cerr << "Read some bytes...\n";
case 1:
try {
*d << buff << endnl;
}
catch (IOAgain e) {
cerr << "Suspending ReadJob to wait for writing...\n";
current = 1;
throw TaskSwitch();
}
current = 0;
cerr << "Wrote some bytes...\n";
if (buff == "") return TASK_DONE;
}
}
return TASK_DONE;
}
String ReadJob::GetName() {
return (String("ReadJob from ") + s->GetName() + " to " + d->GetName());
}
|