summaryrefslogtreecommitdiff
path: root/lib/ReadJob.cc
blob: a63eeca516ad73b7eafd08f489efe75bb3b77905 (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
#include "ReadJob.h"
#include "HttpServ.h"

ReadJob::ReadJob(Handle * as, Handle * ad) : s(as), d(ad), current(0) { }

ReadJob::~ReadJob() { }

int ReadJob::Do() {
    int r;
    String buff;
    
    cerr << "ReadJob running...\n";
    
    while (!s->IsClosed()) {
	if (!current) {
	    r = 0;
	    try {
		cerr << "Trying to read...\n";
		*s >> buff;
	    }
	    catch (IOAgain e) {
		cerr << "Suspending ReadJob to wait for reading...\n";
		r = 1;
	    }
	    if (r) Suspend();
	    cerr << "Read some bytes...\n";
	}
	r = 0;
	try {
	    *d << buff << endnl;
	}
	catch (IOAgain e) {
	    cerr << "Suspending ReadJob to wait for writing...\n";
	    r = 1;
	}
	if (r) Suspend();
	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());
}