123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331 |
- /* <!-- 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 --> */
- #include "PeerInteractionCommand.h"
- #include <algorithm>
- #include "DownloadEngine.h"
- #include "PeerInitiateConnectionCommand.h"
- #include "DefaultBtInteractive.h"
- #include "DlAbortEx.h"
- #include "message.h"
- #include "prefs.h"
- #include "Socket.h"
- #include "Option.h"
- #include "BtContext.h"
- #include "BtRegistry.h"
- #include "Peer.h"
- #include "BtMessage.h"
- #include "BtRuntime.h"
- #include "PeerStorage.h"
- #include "DefaultBtMessageDispatcher.h"
- #include "DefaultBtMessageReceiver.h"
- #include "DefaultBtRequestFactory.h"
- #include "DefaultBtMessageFactory.h"
- #include "DefaultBtInteractive.h"
- #include "PeerConnection.h"
- #include "ExtensionMessageFactory.h"
- #include "CUIDCounter.h"
- #include "DHTRoutingTable.h"
- #include "DHTTaskQueue.h"
- #include "DHTTaskFactory.h"
- #include "DHTNode.h"
- #include "DHTSetup.h"
- #include "DHTRegistry.h"
- #include "PieceStorage.h"
- #include "RequestGroup.h"
- #include "BtAnnounce.h"
- #include "BtProgressInfoFile.h"
- #include "DefaultExtensionMessageFactory.h"
- namespace aria2 {
- PeerInteractionCommand::PeerInteractionCommand
- (int32_t cuid,
- RequestGroup* requestGroup,
- const PeerHandle& p,
- DownloadEngine* e,
- const SharedHandle<BtContext>& btContext,
- const SharedHandle<BtRuntime>& btRuntime,
- const SharedHandle<PieceStorage>& pieceStorage,
- const SocketHandle& s,
- Seq sequence,
- const PeerConnectionHandle& passedPeerConnection)
- :PeerAbstractCommand(cuid, p, e, s),
- RequestGroupAware(requestGroup),
- _btContext(btContext),
- _btRuntime(btRuntime),
- _pieceStorage(pieceStorage),
- sequence(sequence),
- maxDownloadSpeedLimit(0)
- {
- // TODO move following bunch of processing to separate method, like init()
- if(sequence == INITIATOR_SEND_HANDSHAKE) {
- disableReadCheckSocket();
- setWriteCheckSocket(socket);
- setTimeout(e->option->getAsInt(PREF_PEER_CONNECTION_TIMEOUT));
- }
- SharedHandle<BtRegistry> btRegistry = e->getBtRegistry();
- SharedHandle<PeerStorage> peerStorage =
- btRegistry->getPeerStorage(_btContext->getInfoHashAsString());
- SharedHandle<DefaultExtensionMessageFactory> extensionMessageFactory
- (new DefaultExtensionMessageFactory(_btContext, peer));
- extensionMessageFactory->setPeerStorage(peerStorage);
- SharedHandle<DefaultBtMessageFactory> factory(new DefaultBtMessageFactory());
- factory->setCuid(cuid);
- factory->setBtContext(_btContext);
- factory->setPieceStorage(pieceStorage);
- factory->setPeerStorage(peerStorage);
- factory->setExtensionMessageFactory(extensionMessageFactory);
- factory->setPeer(peer);
- factory->setLocalNode(DHTRegistry::_localNode);
- factory->setRoutingTable(DHTRegistry::_routingTable);
- factory->setTaskQueue(DHTRegistry::_taskQueue);
- factory->setTaskFactory(DHTRegistry::_taskFactory);
- PeerConnectionHandle peerConnection;
- if(passedPeerConnection.isNull()) {
- peerConnection.reset(new PeerConnection(cuid, socket, e->option));
- } else {
- peerConnection = passedPeerConnection;
- }
- SharedHandle<DefaultBtMessageDispatcher> dispatcher
- (new DefaultBtMessageDispatcher());
- dispatcher->setCuid(cuid);
- dispatcher->setPeer(peer);
- dispatcher->setBtContext(_btContext);
- dispatcher->setPieceStorage(pieceStorage);
- dispatcher->setPeerStorage(peerStorage);
- dispatcher->setMaxUploadSpeedLimit
- (e->option->getAsInt(PREF_MAX_UPLOAD_LIMIT));
- dispatcher->setRequestTimeout(e->option->getAsInt(PREF_BT_REQUEST_TIMEOUT));
- dispatcher->setBtMessageFactory(factory);
- DefaultBtMessageReceiverHandle receiver(new DefaultBtMessageReceiver());
- receiver->setCuid(cuid);
- receiver->setPeer(peer);
- receiver->setBtContext(_btContext);
- receiver->setPeerConnection(peerConnection);
- receiver->setDispatcher(dispatcher);
- receiver->setBtMessageFactory(factory);
- SharedHandle<DefaultBtRequestFactory> reqFactory
- (new DefaultBtRequestFactory());
- reqFactory->setCuid(cuid);
- reqFactory->setPeer(peer);
- reqFactory->setBtContext(_btContext);
- reqFactory->setPieceStorage(pieceStorage);
- reqFactory->setBtMessageDispatcher(dispatcher);
- reqFactory->setBtMessageFactory(factory);
- DefaultBtInteractiveHandle btInteractive
- (new DefaultBtInteractive(_btContext, peer));
- btInteractive->setBtRuntime(_btRuntime);
- btInteractive->setPieceStorage(_pieceStorage);
- btInteractive->setPeerStorage(peerStorage); // Note: Not a member variable.
- btInteractive->setCuid(cuid);
- btInteractive->setBtMessageReceiver(receiver);
- btInteractive->setDispatcher(dispatcher);
- btInteractive->setBtRequestFactory(reqFactory);
- btInteractive->setPeerConnection(peerConnection);
- btInteractive->setExtensionMessageFactory(extensionMessageFactory);
- btInteractive->setKeepAliveInterval
- (e->option->getAsInt(PREF_BT_KEEP_ALIVE_INTERVAL));
- btInteractive->setMaxDownloadSpeedLimit
- (e->option->getAsInt(PREF_MAX_DOWNLOAD_LIMIT));
- btInteractive->setBtMessageFactory(factory);
- if(!_btContext->isPrivate()) {
- if(e->option->getAsBool(PREF_ENABLE_PEER_EXCHANGE)) {
- btInteractive->setUTPexEnabled(true);
- }
- if(DHTSetup::initialized()) {
- btInteractive->setDHTEnabled(true);
- btInteractive->setLocalNode(DHTRegistry::_localNode);
- factory->setDHTEnabled(true);
- }
- }
- this->btInteractive = btInteractive;
- // reverse depends
- factory->setBtMessageDispatcher(dispatcher);
- factory->setBtRequestFactory(reqFactory);
- factory->setPeerConnection(peerConnection);
- setUploadLimit(e->option->getAsInt(PREF_MAX_UPLOAD_LIMIT));
- peer->allocateSessionResource(_btContext->getPieceLength(),
- _btContext->getTotalLength());
- peer->setBtMessageDispatcher(dispatcher);
- maxDownloadSpeedLimit = e->option->getAsInt(PREF_MAX_DOWNLOAD_LIMIT);
- _btRuntime->increaseConnections();
- }
- PeerInteractionCommand::~PeerInteractionCommand() {
- if(peer->getCompletedLength() > 0) {
- _pieceStorage->subtractPieceStats(peer->getBitfield(),
- peer->getBitfieldLength());
- }
- peer->releaseSessionResource();
-
- _btRuntime->decreaseConnections();
- //logger->debug("CUID#%d - unregistered message factory using ID:%s",
- //cuid, peer->getId().c_str());
- }
- bool PeerInteractionCommand::executeInternal() {
- setUploadLimitCheck(false);
- setNoCheck(false);
- switch(sequence) {
- case INITIATOR_SEND_HANDSHAKE:
- if(!socket->isWritable(0)) {
- break;
- }
- disableWriteCheckSocket();
- setReadCheckSocket(socket);
- //socket->setBlockingMode();
- setTimeout(e->option->getAsInt(PREF_BT_TIMEOUT));
- btInteractive->initiateHandshake();
- sequence = INITIATOR_WAIT_HANDSHAKE;
- break;
- case INITIATOR_WAIT_HANDSHAKE: {
- if(btInteractive->countPendingMessage() > 0) {
- btInteractive->sendPendingMessage();
- if(btInteractive->countPendingMessage() > 0) {
- break;
- }
- }
- BtMessageHandle handshakeMessage = btInteractive->receiveHandshake();
- if(handshakeMessage.isNull()) {
- break;
- }
- btInteractive->doPostHandshakeProcessing();
- sequence = WIRED;
- break;
- }
- case RECEIVER_WAIT_HANDSHAKE: {
- BtMessageHandle handshakeMessage = btInteractive->receiveAndSendHandshake();
- if(handshakeMessage.isNull()) {
- break;
- }
- btInteractive->doPostHandshakeProcessing();
- sequence = WIRED;
- break;
- }
- case WIRED:
- // See the comment for writable check below.
- // disableWriteCheckSocket();
- btInteractive->doInteractionProcessing();
- if(btInteractive->countReceivedMessageInIteration() > 0) {
- updateKeepAlive();
- }
- if((peer->amInterested() && !peer->peerChoking() &&
- (peer->getLatency() < 1500)) ||
- (peer->peerInterested() && !peer->amChoking())) {
- // Writable check causes CPU usage high because socket becomes writable
- // instantly. So don't do it.
- // if(btInteractive->isSendingMessageInProgress()) {
- // setWriteCheckSocket(socket);
- // }
- if(maxDownloadSpeedLimit > 0) {
- TransferStat stat = _requestGroup->calculateStat();
- if(maxDownloadSpeedLimit < stat.downloadSpeed) {
- disableReadCheckSocket();
- setNoCheck(true);
- } else {
- setReadCheckSocket(socket);
- }
- } else {
- setReadCheckSocket(socket);
- }
- } else {
- disableReadCheckSocket();
- }
- break;
- }
- if(btInteractive->countPendingMessage() > 0) {
- setNoCheck(true);
- }
- e->commands.push_back(this);
- return false;
- }
- // TODO this method removed when PeerBalancerCommand is implemented
- bool PeerInteractionCommand::prepareForNextPeer(time_t wait) {
- if(_peerStorage->isPeerAvailable() && _btRuntime->lessThanEqMinPeers()) {
- PeerHandle peer = _peerStorage->getUnusedPeer();
- peer->usedBy(CUIDCounterSingletonHolder::instance()->newID());
- PeerInitiateConnectionCommand* command =
- new PeerInitiateConnectionCommand(peer->usedBy(),
- _requestGroup,
- peer,
- e,
- _btContext,
- _btRuntime);
- command->setPeerStorage(_peerStorage);
- command->setPieceStorage(_pieceStorage);
- e->commands.push_back(command);
- }
- return true;
- }
- void PeerInteractionCommand::onAbort() {
- btInteractive->cancelAllPiece();
- _peerStorage->returnPeer(peer);
- }
- void PeerInteractionCommand::onFailure()
- {
- _requestGroup->setHaltRequested(true);
- }
- bool PeerInteractionCommand::exitBeforeExecute()
- {
- return _btRuntime->isHalt();
- }
- void PeerInteractionCommand::setPeerStorage
- (const SharedHandle<PeerStorage>& peerStorage)
- {
- _peerStorage = peerStorage;
- }
- } // namespace aria2
|