aria2/src/Request.cc

129 lines
3.3 KiB
C++
Raw Normal View History

2006-02-17 13:35:04 +00:00
/* <!-- copyright */
/*
* aria2 - a simple utility for downloading files faster
*
* 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
/* copyright --> */
#include "Request.h"
#include "Util.h"
2006-03-21 14:12:51 +00:00
Request::Request():port(0), tryCount(0), isTorrent(false) {
2006-02-17 13:35:04 +00:00
defaultPorts["http"] = 80;
2006-03-27 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com> * configure.in: Added gnutls support. Added several CPP macros. * m4/openssl.m4: Added. * src/SocketCore.{h,cc}: Drop const quarifier from writeData(), readData(), peekData(). Added gnutls support. * src/HttpDownloadCommand.cc: Removed SleepCommand.h * src/TrackerWatcherCommand.{h,cc}: Added. This command creates TrackerInitCommand periodicaly(TorrentMan::minInterval). * src/TorrentMan.cc: Remove downloadedSize == 0 check from save(). Instead, added a check for whether setup method has executed successfully. * src/TorrentMan.h: Added member vaiable setupComplete. Updated DEFAULT_ANNOUNCE_INTERVAL and DEFAULT_ANNOUNCE_MIN_INTERVAL to 300. * src/Makefile.am: Updated. * src/messageDigest.h: Added. This is a macro calculating SHA1 digest using whether OpenSSL or gcrypt, depending on the result of configure script. * src/ShaVisitor.{h,cc}: Removed direct dependency on OpenSSL by using messageDigest.h. * src/TorrentAutoSaveCommand.h: Removed unused variable cuid. * src/PeerListenCommand.cc: Added log about port binded successfully. Fixed memory leak. * src/main.cc: Added gnutls support. Replaced LIB_SSL with ENABLE_BITTORRENT where they are not related to OpenSSL but BitTorrent. Removed instantiation of TrackerInitCommand. Instead, TrackerWatcherCommand is instantiated and pushed to the command queue. * src/InitiateConnectionCommandFactory.cc: Replaced HAVE_LIBSSL with ENABLE_SSL. * src/Request.cc: Replaced HAVE_LIBSSL with ENABLE_SSL. * src/RequestSlotMan.cc: (deleteCompletedRequestSlot) If a piece is already acquired by another command, delete the request slots for the piece. * src/TrackerUpdateCommand.cc: (execute) Changed log level of MSG_TRACKER_WARNING_MESSAGE from info to warn. Added a check whether peer list is null. Fixed the bug that causes sending completed event to the tracker several times. * src/TrackerInitCommand.cc: (execute) Fixed the bug that causes sending completed event to the tracker several times. * src/AbstractDiskWriter.{h,cc}: Removed direct dependency on OpenSSL by using messageDigest.h. 2006-03-26 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com> * PeerConnection.cc: Replaced log message "keep-alive" with "keep alive". * PeerInteractionCommand.{h,cc}: Close connection if peer is choking localhost long time. * TorrentMan.cc: When adding new peer with duplicate = true, if the number of peer list is equal to or grater than MAX_PEER_LIST, delete at most 100 failure entry from the list. If with duplicate = false, MAX_PEER_LIST is not checked. * PeerListenCommand.cc: Fixed the argument order of log message. 2006-03-25 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com> * Logger.h: Moved enum LEVEL from SimpleLogger.h to here. Added warn(). * SimpleLogger.h: Moved enum LEVEL to Logger.h. Implemented warn(). Defined 2 macros(WRITE_LOG, WRITE_LOG_EX) to avoid duplicated code.
2006-03-27 14:47:26 +00:00
#ifdef ENABLE_SSL
// for SSL
defaultPorts["https"] = 443;
2006-03-27 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com> * configure.in: Added gnutls support. Added several CPP macros. * m4/openssl.m4: Added. * src/SocketCore.{h,cc}: Drop const quarifier from writeData(), readData(), peekData(). Added gnutls support. * src/HttpDownloadCommand.cc: Removed SleepCommand.h * src/TrackerWatcherCommand.{h,cc}: Added. This command creates TrackerInitCommand periodicaly(TorrentMan::minInterval). * src/TorrentMan.cc: Remove downloadedSize == 0 check from save(). Instead, added a check for whether setup method has executed successfully. * src/TorrentMan.h: Added member vaiable setupComplete. Updated DEFAULT_ANNOUNCE_INTERVAL and DEFAULT_ANNOUNCE_MIN_INTERVAL to 300. * src/Makefile.am: Updated. * src/messageDigest.h: Added. This is a macro calculating SHA1 digest using whether OpenSSL or gcrypt, depending on the result of configure script. * src/ShaVisitor.{h,cc}: Removed direct dependency on OpenSSL by using messageDigest.h. * src/TorrentAutoSaveCommand.h: Removed unused variable cuid. * src/PeerListenCommand.cc: Added log about port binded successfully. Fixed memory leak. * src/main.cc: Added gnutls support. Replaced LIB_SSL with ENABLE_BITTORRENT where they are not related to OpenSSL but BitTorrent. Removed instantiation of TrackerInitCommand. Instead, TrackerWatcherCommand is instantiated and pushed to the command queue. * src/InitiateConnectionCommandFactory.cc: Replaced HAVE_LIBSSL with ENABLE_SSL. * src/Request.cc: Replaced HAVE_LIBSSL with ENABLE_SSL. * src/RequestSlotMan.cc: (deleteCompletedRequestSlot) If a piece is already acquired by another command, delete the request slots for the piece. * src/TrackerUpdateCommand.cc: (execute) Changed log level of MSG_TRACKER_WARNING_MESSAGE from info to warn. Added a check whether peer list is null. Fixed the bug that causes sending completed event to the tracker several times. * src/TrackerInitCommand.cc: (execute) Fixed the bug that causes sending completed event to the tracker several times. * src/AbstractDiskWriter.{h,cc}: Removed direct dependency on OpenSSL by using messageDigest.h. 2006-03-26 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com> * PeerConnection.cc: Replaced log message "keep-alive" with "keep alive". * PeerInteractionCommand.{h,cc}: Close connection if peer is choking localhost long time. * TorrentMan.cc: When adding new peer with duplicate = true, if the number of peer list is equal to or grater than MAX_PEER_LIST, delete at most 100 failure entry from the list. If with duplicate = false, MAX_PEER_LIST is not checked. * PeerListenCommand.cc: Fixed the argument order of log message. 2006-03-25 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com> * Logger.h: Moved enum LEVEL from SimpleLogger.h to here. Added warn(). * SimpleLogger.h: Moved enum LEVEL to Logger.h. Implemented warn(). Defined 2 macros(WRITE_LOG, WRITE_LOG_EX) to avoid duplicated code.
2006-03-27 14:47:26 +00:00
#endif // ENABLE_SSL
2006-02-21 12:27:17 +00:00
defaultPorts["ftp"] = 21;
2006-02-17 13:35:04 +00:00
seg.sp = 0;
seg.ep = 0;
seg.ds = 0;
seg.finish = false;
cookieBox = new CookieBox();
}
Request::~Request() {
delete cookieBox;
}
2006-02-17 13:35:04 +00:00
bool Request::setUrl(const string& url) {
2006-02-17 13:35:04 +00:00
this->url = url;
return parseUrl(url);
}
bool Request::resetUrl() {
2006-02-18 03:59:26 +00:00
previousUrl = referer;
2006-02-17 13:35:04 +00:00
return setUrl(url);
}
bool Request::redirectUrl(const string& url) {
2006-02-18 03:59:26 +00:00
previousUrl = currentUrl;
2006-02-17 13:35:04 +00:00
return parseUrl(url);
}
bool Request::parseUrl(const string& url) {
2006-07-20 15:57:25 +00:00
#ifdef ENABLE_METALINK
bool metalinkEnabled = true;
#else
bool metalinkEnabled = false;
#endif
string tempUrl;
string::size_type sharpIndex = url.find("#");
if(sharpIndex != string::npos) {
2006-07-20 15:57:25 +00:00
if(metalinkEnabled && url.find(METALINK_MARK) == sharpIndex) {
tempUrl = url.substr(sharpIndex+strlen(METALINK_MARK));
} else {
tempUrl = url.substr(0, sharpIndex);
}
} else {
tempUrl = url;
}
currentUrl = tempUrl;
string query;
2006-02-17 13:35:04 +00:00
host = "";
port = 0;
dir = "";
file = "";
if(tempUrl.find_first_not_of(SAFE_CHARS) != string::npos) {
2006-02-17 13:35:04 +00:00
return false;
}
string::size_type startQueryIndex = tempUrl.find("?");
if(startQueryIndex != string::npos) {
query = tempUrl.substr(startQueryIndex);
tempUrl.erase(startQueryIndex);
}
string::size_type hp = tempUrl.find("://");
2006-02-17 13:35:04 +00:00
if(hp == string::npos) return false;
protocol = tempUrl.substr(0, hp);
2006-02-17 13:35:04 +00:00
int defPort;
if((defPort = defaultPorts[protocol]) == 0) {
return false;
}
hp += 3;
if(tempUrl.size() <= hp) return false;
string::size_type hep = tempUrl.find("/", hp);
2006-02-17 13:35:04 +00:00
if(hep == string::npos) {
hep = tempUrl.size();
2006-02-17 13:35:04 +00:00
}
pair<string, string> hostAndPort;
Util::split(hostAndPort, tempUrl.substr(hp, hep-hp), ':');
2006-02-17 13:35:04 +00:00
host = hostAndPort.first;
if(hostAndPort.second != "") {
port = (int)strtol(hostAndPort.second.c_str(), NULL, 10);
if(!(0 < port && port <= 65535)) {
return false;
}
} else {
2006-02-22 11:18:47 +00:00
// If port is not specified, then we set it to default port of its protocol..
2006-02-17 13:35:04 +00:00
port = defPort;
}
string::size_type direp = tempUrl.find_last_of("/");
2006-02-17 13:35:04 +00:00
if(direp == string::npos || direp <= hep) {
dir = "/";
direp = hep;
} else {
dir = tempUrl.substr(hep, direp-hep);
2006-02-17 13:35:04 +00:00
}
if(tempUrl.size() > direp+1) {
file = tempUrl.substr(direp+1);
2006-02-17 13:35:04 +00:00
}
file += query;
2006-02-17 13:35:04 +00:00
return true;
}