aria2/src/DownloadEngine.h

252 lines
6.6 KiB
C++

/* <!-- copyright */
/*
* aria2 - The high speed download utility
*
* Copyright (C) 2006 Tatsuhiro Tsujikawa
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
* In addition, as a special exception, the copyright holders give
* permission to link the code of portions of this program with the
* OpenSSL library under certain conditions as described in each
* individual source file, and distribute linked combinations
* including the two.
* You must obey the GNU General Public License in all respects
* for all of the code used other than OpenSSL. If you modify
* file(s) with this exception, you may extend this exception to your
* version of the file(s), but you are not obligated to do so. If you
* do not wish to do so, delete this exception statement from your
* version. If you delete this exception statement from all source
* files in the program, then also delete it here.
*/
/* copyright --> */
#ifndef _D_DOWNLOAD_ENGINE_H_
#define _D_DOWNLOAD_ENGINE_H_
#include "common.h"
#include <string>
#include <deque>
#include <map>
#include "SharedHandle.h"
#include "a2netcompat.h"
#include "TimeA2.h"
#include "a2io.h"
#ifdef ENABLE_ASYNC_DNS
# include "AsyncNameResolver.h"
#endif // ENABLE_ASYNC_DNS
#include "CUIDCounter.h"
#include "FileAllocationMan.h"
#include "CheckIntegrityMan.h"
namespace aria2 {
class Logger;
class Option;
class RequestGroupMan;
class StatCalc;
class SocketCore;
class CookieStorage;
class BtRegistry;
class DNSCache;
class AuthConfigFactory;
class Request;
class EventPoll;
class Command;
class DownloadEngine {
private:
void waitData();
SharedHandle<EventPoll> _eventPoll;
Logger* logger;
SharedHandle<StatCalc> _statCalc;
bool _haltRequested;
class SocketPoolEntry {
private:
SharedHandle<SocketCore> _socket;
std::map<std::string, std::string> _options;
time_t _timeout;
Time _registeredTime;
public:
SocketPoolEntry(const SharedHandle<SocketCore>& socket,
const std::map<std::string, std::string>& option,
time_t timeout);
~SocketPoolEntry();
bool isTimeout() const;
SharedHandle<SocketCore> getSocket() const;
const std::map<std::string, std::string>& getOptions() const;
};
// key = IP address:port, value = SocketPoolEntry
std::multimap<std::string, SocketPoolEntry> _socketPool;
Time _lastSocketPoolScan;
bool _noWait;
static const time_t DEFAULT_REFRESH_INTERVAL = 1;
time_t _refreshInterval;
std::deque<Command*> _routineCommands;
SharedHandle<CookieStorage> _cookieStorage;
SharedHandle<BtRegistry> _btRegistry;
CUIDCounter _cuidCounter;
SharedHandle<DNSCache> _dnsCache;
SharedHandle<AuthConfigFactory> _authConfigFactory;
/**
* Delegates to StatCalc
*/
void calculateStatistics();
void onEndOfRun();
void afterEachIteration();
void poolSocket(const std::string& ipaddr,
uint16_t port,
const SocketPoolEntry& entry);
std::multimap<std::string, SocketPoolEntry>::iterator
findSocketPoolEntry(const std::string& ipaddr, uint16_t port);
public:
std::deque<Command*> commands;
SharedHandle<RequestGroupMan> _requestGroupMan;
SharedHandle<FileAllocationMan> _fileAllocationMan;
SharedHandle<CheckIntegrityMan> _checkIntegrityMan;
const Option* option;
DownloadEngine(const SharedHandle<EventPoll>& eventPoll);
virtual ~DownloadEngine();
void run();
void cleanQueue();
bool addSocketForReadCheck(const SharedHandle<SocketCore>& socket,
Command* command);
bool deleteSocketForReadCheck(const SharedHandle<SocketCore>& socket,
Command* command);
bool addSocketForWriteCheck(const SharedHandle<SocketCore>& socket,
Command* command);
bool deleteSocketForWriteCheck(const SharedHandle<SocketCore>& socket,
Command* command);
#ifdef ENABLE_ASYNC_DNS
bool addNameResolverCheck(const SharedHandle<AsyncNameResolver>& resolver,
Command* command);
bool deleteNameResolverCheck(const SharedHandle<AsyncNameResolver>& resolver,
Command* command);
#endif // ENABLE_ASYNC_DNS
void addCommand(const std::deque<Command*>& commands);
void fillCommand();
void setStatCalc(const SharedHandle<StatCalc>& statCalc);
bool isHaltRequested() const
{
return _haltRequested;
}
void requestHalt();
void setNoWait(bool b);
void addRoutineCommand(Command* command);
void poolSocket(const std::string& ipaddr, uint16_t port,
const SharedHandle<SocketCore>& sock,
const std::map<std::string, std::string>& options,
time_t timeout = 15);
void poolSocket(const std::string& ipaddr, uint16_t port,
const SharedHandle<SocketCore>& sock,
time_t timeout = 15);
void poolSocket(const SharedHandle<Request>& request,
bool proxyDefined,
const SharedHandle<SocketCore>& socket,
const std::map<std::string, std::string>& options,
time_t timeout = 15);
void poolSocket(const SharedHandle<Request>& request,
bool proxyDefined,
const SharedHandle<SocketCore>& socket,
time_t timeout = 15);
SharedHandle<SocketCore> popPooledSocket(const std::string& ipaddr,
uint16_t port);
SharedHandle<SocketCore> popPooledSocket
(std::map<std::string, std::string>& options,
const std::string& ipaddr,
uint16_t port);
SharedHandle<SocketCore>
popPooledSocket(const std::deque<std::string>& ipaddrs, uint16_t port);
SharedHandle<SocketCore>
popPooledSocket
(std::map<std::string, std::string>& options,
const std::deque<std::string>& ipaddrs,
uint16_t port);
SharedHandle<CookieStorage> getCookieStorage() const;
SharedHandle<BtRegistry> getBtRegistry() const;
cuid_t newCUID();
const std::string& findCachedIPAddress(const std::string& hostname) const;
void cacheIPAddress(const std::string& hostname, const std::string& ipaddr);
void setAuthConfigFactory(const SharedHandle<AuthConfigFactory>& factory);
SharedHandle<AuthConfigFactory> getAuthConfigFactory() const;
void setRefreshInterval(time_t interval);
};
typedef SharedHandle<DownloadEngine> DownloadEngineHandle;
} // namespace aria2
#endif // _D_DOWNLOAD_ENGINE_H_