#include "ReadJob.h" #include "HttpServ.h" ReadJob::ReadJob(Handle * as, Handle * ad) : s(as), d(ad) { WaitFor(s, W4_STICKY | W4_READING); WaitFor(d, W4_STICKY | W4_WRITING); } ReadJob::~ReadJob() { } int ReadJob::Do() throw (GeneralException) { String buff; switch (current) { case 0: try { *s >> buff; } catch (IOAgain e) { throw TaskSwitch(); } case 1: try { *d << buff << endnl; } catch (IOAgain e) { current = 1; throw TaskSwitch(); } current = 0; 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()); }