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

ReadJob::ReadJob(Handle * as, Handle * ad) : s(as), d(ad) {
    WaitFor(s);
    WaitFor(d);
}

ReadJob::~ReadJob() { }

int ReadJob::Do() throw (GeneralException) {
    String buff;
    
    cerr << "ReadJob running...\n";
    
    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;
    }
    
    if (!s->IsClosed()) {
	throw TaskSwitch();
    }
    
    return TASK_DONE;
}

String ReadJob::GetName() {
    return (String("ReadJob from ") + s->GetName() + " to " + d->GetName());
}