2003-06-11 23:36:48 +00:00
|
|
|
// The contents of this file are subject to the BOINC Public License
|
2002-06-10 06:14:18 +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-07-23 22:24:28 +00:00
|
|
|
//
|
2002-06-10 06:14:18 +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-07-23 22:24:28 +00:00
|
|
|
// under the License.
|
|
|
|
//
|
|
|
|
// The Original Code is the Berkeley Open Infrastructure for Network Computing.
|
|
|
|
//
|
2002-06-10 06:14:18 +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-07-23 22:24:28 +00:00
|
|
|
// University of California at Berkeley. All Rights Reserved.
|
|
|
|
//
|
2002-06-10 06:14:18 +00:00
|
|
|
// Contributor(s):
|
|
|
|
//
|
|
|
|
|
2003-10-27 17:10:48 +00:00
|
|
|
#ifndef _PERS_FILE_XFER_H
|
|
|
|
#define _PERS_FILE_XFER_H
|
|
|
|
|
2004-03-04 11:41:43 +00:00
|
|
|
#ifndef _WIN32
|
2002-08-07 22:52:10 +00:00
|
|
|
#include <time.h>
|
2004-03-04 11:41:43 +00:00
|
|
|
#endif
|
|
|
|
|
2002-08-07 22:52:10 +00:00
|
|
|
#include "client_types.h"
|
|
|
|
#include "file_xfer.h"
|
|
|
|
|
2002-12-20 02:12:27 +00:00
|
|
|
|
2002-06-10 06:14:18 +00:00
|
|
|
// PERS_FILE_XFER represents a persistent file transfer.
|
|
|
|
// A set of URL is given in the FILE_INFO.
|
|
|
|
|
|
|
|
// For download, the object attempts to download the file
|
|
|
|
// from any of the URLs.
|
|
|
|
// If one fails or is not available, try another,
|
|
|
|
// using an exponential backoff policy to avoid flooding servers.
|
|
|
|
|
|
|
|
// For upload, try to upload the file to the first URL;
|
2003-05-06 21:43:26 +00:00
|
|
|
// if that gets transient failure, try the others.
|
2002-06-10 06:14:18 +00:00
|
|
|
|
2003-06-11 22:15:25 +00:00
|
|
|
// Default values for exponential backoff
|
2002-12-20 02:12:27 +00:00
|
|
|
#define PERS_RETRY_DELAY_MIN 60 // 1 minute
|
2002-11-19 22:57:05 +00:00
|
|
|
#define PERS_RETRY_DELAY_MAX (60*60*4) // 4 hours
|
2003-02-04 21:47:12 +00:00
|
|
|
#define PERS_GIVEUP (60*60*24*7*2) // 2 weeks
|
2003-05-06 21:43:26 +00:00
|
|
|
// give up on xfer if this time elapses since last byte xferred
|
2002-12-20 02:12:27 +00:00
|
|
|
|
2002-06-10 06:14:18 +00:00
|
|
|
class PERS_FILE_XFER {
|
2002-11-19 22:57:05 +00:00
|
|
|
int nretry; // # of retries so far
|
|
|
|
int first_request_time; // UNIX time of first file request
|
2002-06-10 06:14:18 +00:00
|
|
|
bool is_upload;
|
|
|
|
|
2002-08-07 22:52:10 +00:00
|
|
|
public:
|
2003-02-04 21:47:12 +00:00
|
|
|
int next_request_time; // UNIX time to next retry the file request
|
2004-04-05 06:55:09 +00:00
|
|
|
double time_so_far;
|
|
|
|
// Total time there's been an active FILE_XFER for this PFX
|
|
|
|
// Currently not used for anything; not meaningful for throughput
|
|
|
|
// because could include repeated transfer
|
|
|
|
double last_time;
|
|
|
|
// when the above was last updated.
|
|
|
|
// Defined only while a transfer is active
|
2002-08-07 22:52:10 +00:00
|
|
|
bool xfer_done;
|
|
|
|
FILE_XFER* fxp; // nonzero if file xfer in progress
|
|
|
|
FILE_INFO* fip;
|
2003-07-23 22:24:28 +00:00
|
|
|
|
2003-02-06 19:01:49 +00:00
|
|
|
PERS_FILE_XFER();
|
2003-07-23 22:24:28 +00:00
|
|
|
~PERS_FILE_XFER();
|
2002-08-07 22:52:10 +00:00
|
|
|
int init(FILE_INFO*, bool is_file_upload);
|
2003-03-16 21:59:11 +00:00
|
|
|
bool poll(time_t now);
|
2003-05-20 00:03:39 +00:00
|
|
|
void handle_xfer_failure();
|
|
|
|
void retry_or_backoff();
|
2004-06-07 18:48:49 +00:00
|
|
|
void giveup(char*);
|
2004-06-12 04:45:36 +00:00
|
|
|
int write(MIOFILE& fout);
|
|
|
|
int parse(MIOFILE& fin);
|
2003-05-16 19:22:57 +00:00
|
|
|
int start_xfer();
|
2003-07-29 23:26:32 +00:00
|
|
|
void suspend();
|
2002-06-10 06:14:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class PERS_FILE_XFER_SET {
|
|
|
|
FILE_XFER_SET* file_xfers;
|
|
|
|
public:
|
2002-08-07 22:52:10 +00:00
|
|
|
vector<PERS_FILE_XFER*>pers_file_xfers;
|
2003-07-23 22:24:28 +00:00
|
|
|
|
2002-06-10 06:14:18 +00:00
|
|
|
PERS_FILE_XFER_SET(FILE_XFER_SET*);
|
|
|
|
int insert(PERS_FILE_XFER*);
|
|
|
|
int remove(PERS_FILE_XFER*);
|
2002-08-12 00:51:42 +00:00
|
|
|
bool poll();
|
2003-07-29 23:26:32 +00:00
|
|
|
void suspend();
|
2002-06-10 06:14:18 +00:00
|
|
|
};
|
2003-10-27 17:10:48 +00:00
|
|
|
|
|
|
|
#endif
|