aria2/src/Request.h

159 lines
4.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_REQUEST_H_
#define _D_REQUEST_H_
#include "common.h"
#include "SharedHandle.h"
#include <string>
#include <deque>
#define SAFE_CHARS "abcdefghijklmnopqrstuvwxyz"\
"ABCDEFGHIJKLMNOPQRSTUVWXYZ"\
"0123456789"\
":/?[]@"\
"!$&'()*+,;="\
"-._~"\
"%"\
"#"
namespace aria2 {
class CookieBox;
class Request {
public:
enum TRACKER_EVENT {
AUTO,
STARTED,
STOPPED,
COMPLETED,
AFTER_COMPLETED
};
private:
std::string url;
std::string currentUrl;
/**
* URL previously requested to the server. This is used as Referer
*/
std::string previousUrl;
/**
* URL used as Referer in the initial request
*/
std::string referer;
std::string protocol;
std::string host;
int32_t port;
std::string dir;
std::string file;
int32_t tryCount;
TRACKER_EVENT trackerEvent;
bool keepAlive;
std::string method;
std::string _username;
std::string _password;
bool parseUrl(const std::string& url);
bool isHexNumber(const char c) const;
std::string urlencode(const std::string& src) const;
public:
SharedHandle<CookieBox> cookieBox;
public:
Request();
virtual ~Request();
// Parses URL and sets url, host, port, dir, file fields.
// Returns true if parsing goes successful, otherwise returns false.
bool setUrl(const std::string& url);
// Parses URL and sets host, port, dir, file fields.
// url field are not altered by this method.
// Returns true if parsing goes successful, otherwise returns false.
bool redirectUrl(const std::string& url);
bool resetUrl();
void resetTryCount() { tryCount = 0; }
void addTryCount() { tryCount++; }
int32_t getTryCount() const { return tryCount; }
//bool noMoreTry() const { return tryCount >= PREF_MAX_TRY; }
std::string getUrl() const { return url; }
std::string getCurrentUrl() const { return currentUrl; }
std::string getPreviousUrl() const { return previousUrl; }
std::string getReferer() const { return referer; }
void setReferer(const std::string& url) { referer = previousUrl = url; }
std::string getProtocol() const { return protocol; }
std::string getHost() const { return host; }
int32_t getPort() const { return port; }
std::string getDir() const { return dir; }
std::string getFile() const { return file;}
bool isKeepAlive() const { return keepAlive; }
void setKeepAlive(bool keepAlive) { this->keepAlive = keepAlive; }
void setTrackerEvent(TRACKER_EVENT event) { trackerEvent = event; }
TRACKER_EVENT getTrackerEvent() const { return trackerEvent; }
void setMethod(const std::string& method) {
this->method = method;
}
const std::string& getUsername() const
{
return _username;
}
const std::string& getPassword() const
{
return _password;
}
const std::string& getMethod() const {
return method;
}
static const std::string METHOD_GET;
static const std::string METHOD_HEAD;
};
typedef SharedHandle<Request> RequestHandle;
typedef WeakHandle<Request> RequestWeakHandle;
typedef std::deque<RequestHandle> Requests;
} // namespace aria2
#endif // _D_REQUEST_H_