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 --> */
|
|
|
|
#ifndef _D_REQUEST_H_
|
|
|
|
#define _D_REQUEST_H_
|
|
|
|
#include <string>
|
|
|
|
#include <map>
|
|
|
|
#include <Segment.h>
|
|
|
|
#include "CookieBox.h"
|
2006-02-17 18:51:12 +00:00
|
|
|
#include "common.h"
|
2006-02-17 13:35:04 +00:00
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
2006-02-21 12:27:17 +00:00
|
|
|
#define MAX_TRY_COUNT 5
|
|
|
|
|
2006-02-17 13:35:04 +00:00
|
|
|
#define SAFE_CHARS "abcdefghijklmnopqrstuvwxyz"\
|
|
|
|
"ABCDEFGHIJKLMNOPQRSTUVWXYZ"\
|
|
|
|
"0123456789"\
|
|
|
|
":/?[]@"\
|
|
|
|
"!$&'()*+,;="\
|
|
|
|
"-._~"\
|
|
|
|
"%"
|
|
|
|
|
|
|
|
class Request {
|
|
|
|
private:
|
|
|
|
string url;
|
|
|
|
string currentUrl;
|
2006-02-18 03:59:26 +00:00
|
|
|
/**
|
|
|
|
* URL previously requested to the server. This is used as Referer
|
|
|
|
*/
|
|
|
|
string previousUrl;
|
|
|
|
/**
|
|
|
|
* URL used as Referer in the initial request
|
|
|
|
*/
|
|
|
|
string referer;
|
2006-02-17 13:35:04 +00:00
|
|
|
string protocol;
|
|
|
|
string host;
|
|
|
|
int port;
|
|
|
|
string dir;
|
|
|
|
string file;
|
|
|
|
map<string, int> defaultPorts;
|
2006-02-21 12:27:17 +00:00
|
|
|
int tryCount;
|
2006-02-17 13:35:04 +00:00
|
|
|
bool parseUrl(string url);
|
|
|
|
public:
|
|
|
|
Segment seg;
|
|
|
|
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(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(string url);
|
|
|
|
bool resetUrl();
|
2006-02-21 12:27:17 +00:00
|
|
|
void resetTryCount() { tryCount = 0; }
|
|
|
|
void addTryCount() { tryCount++; }
|
|
|
|
int getTryCount() const { return tryCount; }
|
|
|
|
bool noMoreTry() const { return tryCount >= MAX_TRY_COUNT; }
|
2006-02-17 13:35:04 +00:00
|
|
|
|
|
|
|
string getUrl() const { return url; }
|
|
|
|
string getCurrentUrl() const { return currentUrl; }
|
2006-02-18 03:59:26 +00:00
|
|
|
string getPreviousUrl() const { return previousUrl; }
|
|
|
|
string getReferer() const { return referer; }
|
|
|
|
void setReferer(string url) { referer = previousUrl = url; }
|
2006-02-17 13:35:04 +00:00
|
|
|
string getProtocol() const { return protocol; }
|
|
|
|
string getHost() const { return host; }
|
|
|
|
int getPort() const { return port; }
|
|
|
|
string getDir() const { return dir; }
|
|
|
|
string getFile() const { return file;}
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _D_REQUEST_H_
|