/* */ #include "StreamFileAllocationEntry.h" #include #include "DownloadEngine.h" #include "Option.h" #include "prefs.h" #include "RequestGroup.h" #include "DownloadContext.h" #include "Command.h" #include "RequestGroupMan.h" #include "CheckIntegrityEntry.h" #include "ServerStatMan.h" namespace aria2 { StreamFileAllocationEntry::StreamFileAllocationEntry(RequestGroup* requestGroup, Command* nextCommand): FileAllocationEntry(requestGroup, nextCommand) {} StreamFileAllocationEntry::~StreamFileAllocationEntry() {} void StreamFileAllocationEntry::prepareForNextAction (std::vector& commands, DownloadEngine* e) { // For DownloadContext::resetDownloadStartTime(), see also // RequestGroup::createInitialCommand() getRequestGroup()->getDownloadContext()->resetDownloadStartTime(); if(getNextCommand()) { // give _nextCommand a chance to execute in the next execution loop. getNextCommand()->setStatus(Command::STATUS_ONESHOT_REALTIME); e->setNoWait(true); commands.push_back(popNextCommand()); // try remaining uris getRequestGroup()->createNextCommandWithAdj(commands, e, -1); } else { getRequestGroup()->createNextCommandWithAdj(commands, e, 0); } } } // namespace aria2