mirror of
https://github.com/aria2/aria2.git
synced 2025-04-05 05:27:38 +03:00
2008-08-05 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>
Implemented download speed based URI selection algorithm. Introduced new option --uri-selector. If --uri-selector=feedback is given, aria2 uses download speed observed in the previous downloads and chooses fastest server in the URI list. Currently at most 10 URIs are considered to introduce randomeness for finding better servers. The speed is average download speed in the downloads. On the other hand, if --uri-selector=inorder is given, which is default, URI is tried in order in URI list. The usage text for the new option has not been written yet. * src/AbstractCommand.cc * src/DownloadCommand.cc * src/DownloadEngine.cc * src/DownloadEngineFactory.cc * src/InOrderURISelector.cc * src/InOrderURISelector.h * src/OptionHandlerFactory.cc * src/PeerStat.h * src/RequestGroup.cc * src/RequestGroup.h * src/RequestGroupMan.cc * src/RequestGroupMan.h * src/SegmentMan.cc * src/SegmentMan.h * src/ServerStat.cc * src/ServerStat.h * src/ServerStatMan.cc * src/ServerStatMan.h * src/ServerStatURISelector.cc * src/ServerStatURISelector.h * src/URISelector.h * src/option_processing.cc * src/prefs.cc * src/prefs.h * test/InOrderURISelectorTest.cc * test/RequestGroupManTest.cc * test/ServerStatManTest.cc * test/ServerStatURISelectorTest.cc
This commit is contained in:
parent
7449aba847
commit
d64c8e75f6
33 changed files with 1192 additions and 29 deletions
|
@ -6,6 +6,7 @@
|
|||
#include "Option.h"
|
||||
#include "DownloadResult.h"
|
||||
#include "FileEntry.h"
|
||||
#include "ServerStatMan.h"
|
||||
#include <cppunit/extensions/HelperMacros.h>
|
||||
|
||||
namespace aria2 {
|
||||
|
@ -53,7 +54,7 @@ void RequestGroupManTest::testIsSameFileBeingDownloaded()
|
|||
rgs.push_back(rg1);
|
||||
rgs.push_back(rg2);
|
||||
|
||||
RequestGroupMan gm(rgs, 1);
|
||||
RequestGroupMan gm(rgs, 1, &option);
|
||||
|
||||
CPPUNIT_ASSERT(gm.isSameFileBeingDownloaded(rg1.get()));
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue