RequestGroup.h 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449
  1. /* <!-- copyright */
  2. /*
  3. * aria2 - The high speed download utility
  4. *
  5. * Copyright (C) 2006 Tatsuhiro Tsujikawa
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. *
  21. * In addition, as a special exception, the copyright holders give
  22. * permission to link the code of portions of this program with the
  23. * OpenSSL library under certain conditions as described in each
  24. * individual source file, and distribute linked combinations
  25. * including the two.
  26. * You must obey the GNU General Public License in all respects
  27. * for all of the code used other than OpenSSL. If you modify
  28. * file(s) with this exception, you may extend this exception to your
  29. * version of the file(s), but you are not obligated to do so. If you
  30. * do not wish to do so, delete this exception statement from your
  31. * version. If you delete this exception statement from all source
  32. * files in the program, then also delete it here.
  33. */
  34. /* copyright --> */
  35. #ifndef _D_REQUEST_GROUP_H_
  36. #define _D_REQUEST_GROUP_H_
  37. #include "common.h"
  38. #include <string>
  39. #include <deque>
  40. #include "SharedHandle.h"
  41. #include "TransferStat.h"
  42. #include "TimeA2.h"
  43. #include "Request.h"
  44. #include "DownloadResult.h"
  45. #include "URIResult.h"
  46. namespace aria2 {
  47. class DownloadEngine;
  48. class SegmentMan;
  49. class SegmentManFactory;
  50. class Command;
  51. class DownloadCommand;
  52. class DownloadContext;
  53. class PieceStorage;
  54. class BtProgressInfoFile;
  55. class Dependency;
  56. class PreDownloadHandler;
  57. class PostDownloadHandler;
  58. class DiskWriterFactory;
  59. class Option;
  60. class Logger;
  61. class RequestGroup;
  62. class CheckIntegrityEntry;
  63. class DownloadResult;
  64. class ServerHost;
  65. class URISelector;
  66. #ifdef ENABLE_BITTORRENT
  67. class BtRuntime;
  68. class PeerStorage;
  69. #endif // ENABLE_BITTORRENT
  70. class RequestGroup {
  71. private:
  72. static int32_t _gidCounter;
  73. int32_t _gid;
  74. std::deque<std::string> _uris;
  75. std::deque<std::string> _spentUris;
  76. unsigned int _numConcurrentCommand;
  77. /**
  78. * This is the number of connections used in streaming protocol(http/ftp)
  79. */
  80. unsigned int _numStreamConnection;
  81. unsigned int _numCommand;
  82. SharedHandle<SegmentMan> _segmentMan;
  83. SharedHandle<SegmentManFactory> _segmentManFactory;
  84. SharedHandle<DownloadContext> _downloadContext;
  85. SharedHandle<PieceStorage> _pieceStorage;
  86. SharedHandle<BtProgressInfoFile> _progressInfoFile;
  87. SharedHandle<DiskWriterFactory> _diskWriterFactory;
  88. SharedHandle<Dependency> _dependency;
  89. std::deque<SharedHandle<ServerHost> > _serverHosts;
  90. bool _fileAllocationEnabled;
  91. bool _preLocalFileCheckEnabled;
  92. bool _haltRequested;
  93. bool _forceHaltRequested;
  94. // URIResult is stored in the ascending order of the time when its result is
  95. // available.
  96. std::deque<URIResult> _uriResults;
  97. bool _singleHostMultiConnectionEnabled;
  98. std::deque<SharedHandle<PreDownloadHandler> > _preDownloadHandlers;
  99. std::deque<SharedHandle<PostDownloadHandler> > _postDownloadHandlers;
  100. std::deque<std::string> _acceptFeatures;
  101. std::deque<std::string> _acceptTypes;
  102. SharedHandle<URISelector> _uriSelector;
  103. Time _lastModifiedTime;
  104. unsigned int _fileNotFoundCount;
  105. // Timeout used for HTTP/FTP downloads.
  106. time_t _timeout;
  107. // How many times HTTP/FTP download should retry.
  108. unsigned int _maxTries;
  109. #ifdef ENABLE_BITTORRENT
  110. WeakHandle<BtRuntime> _btRuntime;
  111. WeakHandle<PeerStorage> _peerStorage;
  112. #endif // ENABLE_BITTORRENT
  113. // This flag just indicates that the downloaded file is not saved disk but
  114. // just sits in memory.
  115. bool _inMemoryDownload;
  116. const Option* _option;
  117. Logger* _logger;
  118. void validateFilename(const std::string& expectedFilename,
  119. const std::string& actualFilename) const;
  120. void validateTotalLength(uint64_t expectedTotalLength,
  121. uint64_t actualTotalLength) const;
  122. void initializePreDownloadHandler();
  123. void initializePostDownloadHandler();
  124. bool tryAutoFileRenaming();
  125. // Returns the result code of this RequestGroup.
  126. // If the download finished, then returns DownloadResult::FINISHED.
  127. // If the download didn't finish and error result is available in _uriResults,
  128. // then last result code is returned.
  129. // Otherwise returns DownloadResult::UNKNOWN_ERROR.
  130. DownloadResult::RESULT downloadResult() const;
  131. public:
  132. RequestGroup(const Option* option, const std::deque<std::string>& uris);
  133. ~RequestGroup();
  134. /**
  135. * Reinitializes SegmentMan based on current property values and
  136. * returns new one.
  137. */
  138. SharedHandle<SegmentMan> initSegmentMan();
  139. SharedHandle<SegmentMan> getSegmentMan() const;
  140. // Returns first bootstrap commands to initiate a download.
  141. // If this is HTTP/FTP download and file size is unknown, only 1 command
  142. // (usually, HttpInitiateConnection or FtpInitiateConnection) will be created
  143. // with its Request object having Requet::METHOD_HEAD in its method.
  144. // This behavior can be changed by providing 3rd argument.
  145. // The method has effect only for using HTTP request including FTP via HTTP
  146. // proxy.
  147. void createInitialCommand(std::deque<Command*>& commands,
  148. DownloadEngine* e,
  149. const std::string& method = Request::METHOD_HEAD);
  150. void createNextCommandWithAdj(std::deque<Command*>& commands,
  151. DownloadEngine* e, int numAdj);
  152. void createNextCommand(std::deque<Command*>& commands,
  153. DownloadEngine* e, unsigned int numCommand,
  154. const std::string& method = Request::METHOD_GET);
  155. void addURI(const std::string& uri)
  156. {
  157. _uris.push_back(uri);
  158. }
  159. bool downloadFinished() const;
  160. bool allDownloadFinished() const;
  161. void closeFile();
  162. std::string getFilePath() const;
  163. uint64_t getTotalLength() const;
  164. uint64_t getCompletedLength() const;
  165. const std::deque<std::string>& getRemainingUris() const
  166. {
  167. return _uris;
  168. }
  169. const std::deque<std::string>& getSpentUris() const
  170. {
  171. return _spentUris;
  172. }
  173. void getURIs(std::deque<std::string>& uris) const;
  174. /**
  175. * Compares expected filename with specified actualFilename.
  176. * The expected filename refers to FileEntry::getBasename() of the first
  177. * element of DownloadContext::getFileEntries()
  178. */
  179. void validateFilename(const std::string& actualFilename) const;
  180. void validateTotalLength(uint64_t actualTotalLength) const;
  181. void setSegmentManFactory(const SharedHandle<SegmentManFactory>& segmentManFactory);
  182. void setNumConcurrentCommand(unsigned int num)
  183. {
  184. _numConcurrentCommand = num;
  185. }
  186. unsigned int getNumConcurrentCommand() const;
  187. int32_t getGID() const
  188. {
  189. return _gid;
  190. }
  191. TransferStat calculateStat();
  192. SharedHandle<DownloadContext> getDownloadContext() const;
  193. void setDownloadContext(const SharedHandle<DownloadContext>& downloadContext);
  194. SharedHandle<PieceStorage> getPieceStorage() const;
  195. void setPieceStorage(const SharedHandle<PieceStorage>& pieceStorage);
  196. SharedHandle<BtProgressInfoFile> getProgressInfoFile() const;
  197. void setProgressInfoFile(const SharedHandle<BtProgressInfoFile>& progressInfoFile);
  198. void increaseStreamConnection();
  199. void decreaseStreamConnection();
  200. unsigned int getNumConnection() const;
  201. void increaseNumCommand();
  202. void decreaseNumCommand();
  203. unsigned int getNumCommand() const
  204. {
  205. return _numCommand;
  206. }
  207. // TODO is it better to move the following 2 methods to SingleFileDownloadContext?
  208. void setDiskWriterFactory(const SharedHandle<DiskWriterFactory>& diskWriterFactory);
  209. SharedHandle<DiskWriterFactory> getDiskWriterFactory() const;
  210. void setFileAllocationEnabled(bool f)
  211. {
  212. _fileAllocationEnabled = f;
  213. }
  214. bool isFileAllocationEnabled() const
  215. {
  216. return _fileAllocationEnabled;
  217. }
  218. bool needsFileAllocation() const;
  219. /**
  220. * Setting _preLocalFileCheckEnabled to false, then skip the check to see
  221. * if a file is already exists and control file exists etc.
  222. * Always open file with DiskAdaptor::initAndOpenFile()
  223. */
  224. void setPreLocalFileCheckEnabled(bool f)
  225. {
  226. _preLocalFileCheckEnabled = f;
  227. }
  228. bool isPreLocalFileCheckEnabled() const
  229. {
  230. return _preLocalFileCheckEnabled;
  231. }
  232. void setHaltRequested(bool f);
  233. void setForceHaltRequested(bool f);
  234. bool isHaltRequested() const
  235. {
  236. return _haltRequested;
  237. }
  238. bool isForceHaltRequested() const
  239. {
  240. return _forceHaltRequested;
  241. }
  242. void addURIResult(std::string uri, DownloadResult::RESULT result);
  243. const std::deque<URIResult>& getURIResults() const;
  244. void dependsOn(const SharedHandle<Dependency>& dep);
  245. bool isDependencyResolved();
  246. void releaseRuntimeResource(DownloadEngine* e);
  247. void postDownloadProcessing(std::deque<SharedHandle<RequestGroup> >& groups);
  248. void addPostDownloadHandler(const SharedHandle<PostDownloadHandler>& handler);
  249. void clearPostDowloadHandler();
  250. void preDownloadProcessing();
  251. void addPreDownloadHandler(const SharedHandle<PreDownloadHandler>& handler);
  252. void clearPreDowloadHandler();
  253. void processCheckIntegrityEntry(std::deque<Command*>& commands,
  254. const SharedHandle<CheckIntegrityEntry>& entry,
  255. DownloadEngine* e);
  256. void initPieceStorage();
  257. bool downloadFinishedByFileLength();
  258. void loadAndOpenFile(const SharedHandle<BtProgressInfoFile>& progressInfoFile);
  259. void shouldCancelDownloadForSafety();
  260. SharedHandle<DownloadResult> createDownloadResult() const;
  261. const Option* getOption() const
  262. {
  263. return _option;
  264. }
  265. bool isSingleHostMultiConnectionEnabled() const
  266. {
  267. return _singleHostMultiConnectionEnabled;
  268. }
  269. void setSingleHostMultiConnectionEnabled(bool f)
  270. {
  271. _singleHostMultiConnectionEnabled = f;
  272. }
  273. /**
  274. * Registers given ServerHost.
  275. */
  276. void registerServerHost(const SharedHandle<ServerHost>& serverHost);
  277. /**
  278. * Returns ServerHost whose cuid is given cuid. If it is not found, returns
  279. * 0.
  280. */
  281. SharedHandle<ServerHost> searchServerHost(int32_t cuid) const;
  282. SharedHandle<ServerHost> searchServerHost(const std::string& hostname) const;
  283. void removeServerHost(int32_t cuid);
  284. void removeURIWhoseHostnameIs(const std::string& hostname);
  285. void removeIdenticalURI(const std::string& uri);
  286. void reportDownloadFinished();
  287. const std::deque<std::string>& getAcceptFeatures() const;
  288. void addAcceptFeatureHeader(const std::string& feature);
  289. void removeAcceptFeatureHeader(const std::string& feature);
  290. const std::deque<std::string>& getAcceptTypes() const;
  291. void addAcceptType(const std::string& type);
  292. void removeAcceptType(const std::string& type);
  293. static const std::string ACCEPT_METALINK;
  294. void setURISelector(const SharedHandle<URISelector>& uriSelector);
  295. void applyLastModifiedTimeToLocalFiles();
  296. void updateLastModifiedTime(const Time& time);
  297. void increaseAndValidateFileNotFoundCount();
  298. // Just set inMemoryDownload flag true.
  299. void markInMemoryDownload();
  300. // Returns inMemoryDownload flag.
  301. bool inMemoryDownload() const;
  302. void tuneDownloadCommand(DownloadCommand* command);
  303. void setTimeout(time_t timeout);
  304. time_t getTimeout() const;
  305. void setMaxTries(unsigned int maxTries);
  306. unsigned int getMaxTries() const;
  307. };
  308. typedef SharedHandle<RequestGroup> RequestGroupHandle;
  309. typedef WeakHandle<RequestGroup> RequestGroupWeakHandle;
  310. typedef std::deque<RequestGroupHandle> RequestGroups;
  311. } // namespace aria2
  312. #endif // _D_REQUEST_GROUP_H_