DownloadEngine.h 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. /* <!-- copyright */
  2. /*
  3. * aria2 - a simple utility for downloading files faster
  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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  20. */
  21. /* copyright --> */
  22. #ifndef _D_DOWNLOAD_ENGINE_H_
  23. #define _D_DOWNLOAD_ENGINE_H_
  24. #include "Command.h"
  25. #include "Socket.h"
  26. #include "SegmentMan.h"
  27. #include "common.h"
  28. #include "Logger.h"
  29. #include "Option.h"
  30. #include <sys/time.h>
  31. #include <deque>
  32. typedef deque<Socket*> Sockets;
  33. typedef deque<Command*> Commands;
  34. typedef multimap<Socket*, Command*> SockCmdMap;
  35. class DownloadEngine {
  36. private:
  37. void waitData(Sockets& activeSockets);
  38. Sockets rsockets;
  39. Sockets wsockets;
  40. SockCmdMap sockCmdMap;
  41. void shortSleep() const;
  42. bool addSocket(Sockets& sockets, Socket* socket, Command* command);
  43. bool deleteSocket(Sockets& sockets, Socket* socket);
  44. protected:
  45. const Logger* logger;
  46. virtual void initStatistics() = 0;
  47. virtual void calculateStatistics() = 0;
  48. virtual void onEndOfRun() = 0;
  49. virtual void afterEachIteration() {}
  50. public:
  51. bool noWait;
  52. Commands commands;
  53. SegmentMan* segmentMan;
  54. const Option* option;
  55. DownloadEngine();
  56. virtual ~DownloadEngine();
  57. void run();
  58. void cleanQueue();
  59. bool addSocketForReadCheck(Socket* socket, Command* command);
  60. bool deleteSocketForReadCheck(Socket* socket);
  61. bool addSocketForWriteCheck(Socket* socket, Command* command);
  62. bool deleteSocketForWriteCheck(Socket* socket);
  63. };
  64. #endif // _D_DOWNLOAD_ENGINE_H_