2003-06-11 23:36:48 +00:00
|
|
|
// The contents of this file are subject to the BOINC Public License
|
2002-04-30 22:22:54 +00:00
|
|
|
// Version 1.0 (the "License"); you may not use this file except in
|
|
|
|
// compliance with the License. You may obtain a copy of the License at
|
2003-06-11 23:36:48 +00:00
|
|
|
// http://boinc.berkeley.edu/license_1.0.txt
|
2003-08-22 00:15:51 +00:00
|
|
|
//
|
2002-04-30 22:22:54 +00:00
|
|
|
// Software distributed under the License is distributed on an "AS IS"
|
|
|
|
// basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
|
|
|
|
// License for the specific language governing rights and limitations
|
2003-08-22 00:15:51 +00:00
|
|
|
// under the License.
|
|
|
|
//
|
|
|
|
// The Original Code is the Berkeley Open Infrastructure for Network Computing.
|
|
|
|
//
|
2002-04-30 22:22:54 +00:00
|
|
|
// The Initial Developer of the Original Code is the SETI@home project.
|
|
|
|
// Portions created by the SETI@home project are Copyright (C) 2002
|
2003-08-22 00:15:51 +00:00
|
|
|
// University of California at Berkeley. All Rights Reserved.
|
|
|
|
//
|
2002-04-30 22:22:54 +00:00
|
|
|
// Contributor(s):
|
|
|
|
//
|
|
|
|
|
2002-07-05 05:33:40 +00:00
|
|
|
// HTTP_OP represents an HTTP operation.
|
2004-01-31 23:21:07 +00:00
|
|
|
// There are variants for GET and POST,
|
|
|
|
// and for the data source/sink (see below).
|
2002-07-05 05:33:40 +00:00
|
|
|
|
2002-04-30 22:22:54 +00:00
|
|
|
#ifndef _HTTP_
|
|
|
|
#define _HTTP_
|
|
|
|
|
2004-03-27 00:45:27 +00:00
|
|
|
#include "proxy.h"
|
2002-04-30 22:22:54 +00:00
|
|
|
|
2002-08-26 22:57:17 +00:00
|
|
|
// official HTTP status codes
|
|
|
|
#define HTTP_STATUS_OK 200
|
|
|
|
#define HTTP_STATUS_RANGE_REQUEST_ERROR 416
|
|
|
|
#define HTTP_STATUS_MOVED_PERM 301
|
|
|
|
#define HTTP_STATUS_MOVED_TEMP 302
|
2003-09-30 18:09:58 +00:00
|
|
|
#define HTTP_STATUS_NOT_FOUND 404
|
2002-08-26 22:57:17 +00:00
|
|
|
|
2002-04-30 22:22:54 +00:00
|
|
|
struct HTTP_REPLY_HEADER {
|
2003-09-30 18:09:58 +00:00
|
|
|
int http_status;
|
2002-04-30 22:22:54 +00:00
|
|
|
int content_length;
|
2003-08-22 00:15:51 +00:00
|
|
|
string redirect_location;
|
|
|
|
string recv_buf;
|
|
|
|
|
|
|
|
void init();
|
|
|
|
int read_reply(int socket);
|
|
|
|
void parse();
|
2002-04-30 22:22:54 +00:00
|
|
|
};
|
|
|
|
|
2002-07-15 23:21:20 +00:00
|
|
|
#define HTTP_OP_NONE 0
|
2002-07-05 05:33:40 +00:00
|
|
|
// For the first 4, data source/sink are files
|
2002-04-30 22:22:54 +00:00
|
|
|
#define HTTP_OP_GET 1
|
|
|
|
#define HTTP_OP_POST 2
|
2002-06-10 06:14:18 +00:00
|
|
|
#define HTTP_OP_HEAD 4
|
2002-07-05 05:33:40 +00:00
|
|
|
#define HTTP_OP_POST2 5
|
|
|
|
// a POST operation where the request comes from a combination
|
|
|
|
// of a string and a file w/offset,
|
|
|
|
// and the reply goes into a memory buffer
|
2002-04-30 22:22:54 +00:00
|
|
|
|
2004-03-27 00:45:27 +00:00
|
|
|
class HTTP_OP : public PROXY {
|
2002-04-30 22:22:54 +00:00
|
|
|
public:
|
|
|
|
HTTP_OP();
|
|
|
|
~HTTP_OP();
|
|
|
|
|
2002-12-09 03:07:36 +00:00
|
|
|
int port;
|
2002-04-30 22:22:54 +00:00
|
|
|
char filename[256];
|
2004-02-05 22:36:55 +00:00
|
|
|
char url_hostname[256];
|
|
|
|
// the hostname part of the URL.
|
|
|
|
// May not be the host we connect to (if using proxy)
|
2002-07-05 05:33:40 +00:00
|
|
|
char* req1;
|
2002-04-30 22:22:54 +00:00
|
|
|
char infile[256];
|
|
|
|
char outfile[256];
|
|
|
|
int content_length;
|
2002-07-05 05:33:40 +00:00
|
|
|
double file_offset;
|
|
|
|
char request_header[256];
|
2002-04-30 22:22:54 +00:00
|
|
|
HTTP_REPLY_HEADER hrh;
|
|
|
|
int http_op_state; // values below
|
|
|
|
int http_op_type;
|
|
|
|
int http_op_retval;
|
2003-09-30 18:09:58 +00:00
|
|
|
// zero if success, or a BOINC error code, or an HTTP status code
|
2002-04-30 22:22:54 +00:00
|
|
|
|
2003-08-22 00:15:51 +00:00
|
|
|
int init_head(const char* url);
|
|
|
|
int init_get(const char* url, char* outfile, bool del_old_file, double offset=0);
|
|
|
|
int init_post(const char* url, char* infile, char* outfile);
|
2002-07-05 05:33:40 +00:00
|
|
|
int init_post2(
|
2003-08-22 00:15:51 +00:00
|
|
|
const char* url, char* req1, char* infile, double offset
|
2002-07-05 05:33:40 +00:00
|
|
|
);
|
2002-04-30 22:22:54 +00:00
|
|
|
bool http_op_done();
|
|
|
|
};
|
|
|
|
|
|
|
|
// represents a set of HTTP requests in progress
|
|
|
|
//
|
|
|
|
class HTTP_OP_SET {
|
|
|
|
vector<HTTP_OP*> http_ops;
|
|
|
|
NET_XFER_SET* net_xfers;
|
|
|
|
public:
|
|
|
|
HTTP_OP_SET(NET_XFER_SET*);
|
|
|
|
bool poll();
|
|
|
|
int insert(HTTP_OP*);
|
|
|
|
int remove(HTTP_OP*);
|
|
|
|
};
|
|
|
|
|
|
|
|
#define HTTP_STATE_IDLE 0
|
|
|
|
#define HTTP_STATE_CONNECTING 1
|
2004-03-27 00:45:27 +00:00
|
|
|
#define HTTP_STATE_SOCKS_CONNECT 2
|
|
|
|
#define HTTP_STATE_REQUEST_HEADER 3
|
|
|
|
#define HTTP_STATE_REQUEST_BODY1 4
|
2002-08-26 22:57:17 +00:00
|
|
|
// sending the string part of a POST2 operation
|
2004-03-27 00:45:27 +00:00
|
|
|
#define HTTP_STATE_REQUEST_BODY 5
|
|
|
|
#define HTTP_STATE_REPLY_HEADER 6
|
|
|
|
#define HTTP_STATE_REPLY_BODY 7
|
|
|
|
#define HTTP_STATE_DONE 8
|
2002-04-30 22:22:54 +00:00
|
|
|
|
2003-08-22 00:15:51 +00:00
|
|
|
extern void parse_url(const char* url, char* host, int &port, char* file);
|
2002-04-30 22:22:54 +00:00
|
|
|
|
|
|
|
#endif
|