2008-07-03 09:11:20 -04:00
|
|
|
/*
|
|
|
|
* Retroshare file transfer module: ftTransferModule.h
|
|
|
|
*
|
|
|
|
* Copyright 2008 by Robert Fernie.
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License Version 2 as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This library 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
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
* USA.
|
|
|
|
*
|
|
|
|
* Please report all bugs and problems to "retroshare@lunamutt.com".
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef FT_TRANSFER_MODULE_HEADER
|
|
|
|
#define FT_TRANSFER_MODULE_HEADER
|
|
|
|
|
|
|
|
/*
|
|
|
|
* FUNCTION DESCRIPTION
|
|
|
|
*
|
|
|
|
* Each Transfer Module is paired up with a single File Creator, and responsible for the transfer of one file.
|
|
|
|
* The Transfer Module is responsible for sending requests to peers at the correct data rates, and storing the returned data
|
|
|
|
* in a FileCreator.
|
|
|
|
* There are multiple Transfer Modules in the File Transfer system. Their requests are multiplexed through the Client Module. * The Transfer Module contains all the algorithms for sensible Data Requests.
|
|
|
|
* It must be able to cope with varying data rates and dropped peers without flooding the system with too many requests.
|
|
|
|
*
|
|
|
|
*/
|
2008-09-08 04:44:37 -04:00
|
|
|
|
|
|
|
#include <map>
|
|
|
|
#include <list>
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
#include "ft/ftfilecreator.h"
|
|
|
|
#include "ft/ftdatamultiplex.h"
|
|
|
|
|
|
|
|
#include "util/rsthreads.h"
|
|
|
|
|
2008-07-29 11:16:31 -04:00
|
|
|
const int PQIPEER_INIT = 0x0000;
|
|
|
|
const int PQIPEER_NOT_ONLINE = 0x0001;
|
|
|
|
const int PQIPEER_DOWNLOADING = 0x0002;
|
|
|
|
const int PQIPEER_IDLE = 0x0004;
|
|
|
|
const int PQIPEER_SUSPEND = 0x0010;
|
2008-07-03 09:11:20 -04:00
|
|
|
|
2008-09-08 04:44:37 -04:00
|
|
|
const uint32_t PQIPEER_OFFLINE_CHECK = 120; /* check every 2 minutes */
|
|
|
|
const uint32_t PQIPEER_DOWNLOAD_TIMEOUT = 60; /* time it out, -> offline after 60 secs */
|
|
|
|
const uint32_t PQIPEER_DOWNLOAD_CHECK = 10; /* desired delta = 10 secs */
|
|
|
|
const uint32_t PQIPEER_DOWNLOAD_TOO_FAST = 8; /* 8 secs */
|
|
|
|
const uint32_t PQIPEER_DOWNLOAD_TOO_SLOW = 12; /* 12 secs */
|
|
|
|
const uint32_t PQIPEER_DOWNLOAD_MIN_DELTA = 5; /* 5 secs */
|
|
|
|
|
|
|
|
const uint32_t TRANSFER_START_MIN = 10000; /* 10000 byte min limit */
|
|
|
|
const uint32_t TRANSFER_START_MAX = 10000; /* 10000 byte max limit */
|
|
|
|
/*
|
2008-07-03 09:11:20 -04:00
|
|
|
class Request
|
|
|
|
{
|
2008-09-08 04:44:37 -04:00
|
|
|
public:
|
|
|
|
uint64_t offset;
|
|
|
|
uint32_t chunkSize;
|
|
|
|
};
|
|
|
|
*/
|
|
|
|
class peerInfo
|
|
|
|
{
|
|
|
|
public:
|
2008-09-08 10:04:10 -04:00
|
|
|
peerInfo(std::string peerId_in):peerId(peerId_in),state(PQIPEER_NOT_ONLINE),desiredRate(0),actualRate(0),
|
|
|
|
offset(0),chunkSize(TRANSFER_START_MIN),receivedSize(0),lastTS(0)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2008-09-08 04:44:37 -04:00
|
|
|
peerInfo(std::string peerId_in,uint32_t state_in,uint32_t maxRate_in):
|
|
|
|
peerId(peerId_in),state(state_in),desiredRate(maxRate_in),actualRate(0),
|
|
|
|
offset(0),chunkSize(TRANSFER_START_MIN),receivedSize(0),lastTS(0)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
std::string peerId;
|
|
|
|
uint32_t state;
|
|
|
|
double desiredRate;
|
|
|
|
double actualRate;
|
|
|
|
|
|
|
|
//current file data request
|
|
|
|
uint64_t offset;
|
|
|
|
uint32_t chunkSize;
|
|
|
|
|
2008-09-09 03:24:06 -04:00
|
|
|
//already received data size for current request
|
2008-09-08 04:44:37 -04:00
|
|
|
uint32_t receivedSize;
|
|
|
|
|
|
|
|
time_t lastTS;
|
|
|
|
};
|
|
|
|
|
|
|
|
class ftFileStatus
|
|
|
|
{
|
|
|
|
enum Status {
|
|
|
|
PQIFILE_INIT,
|
|
|
|
PQIFILE_NOT_ONLINE,
|
|
|
|
PQIFILE_DOWNLOADING,
|
|
|
|
PQIFILE_PAUSE,
|
|
|
|
PQIFILE_COMPLETE,
|
|
|
|
PQIFILE_FAIL,
|
|
|
|
PQIFILE_FAIL_CANCEL,
|
|
|
|
PQIFILE_FAIL_NOT_AVAIL,
|
|
|
|
PQIFILE_FAIL_NOT_OPEN,
|
|
|
|
PQIFILE_FAIL_NOT_SEEK,
|
|
|
|
PQIFILE_FAIL_NOT_WRITE,
|
|
|
|
PQIFILE_FAIL_NOT_READ,
|
|
|
|
PQIFILE_FAIL_BAD_PATH
|
|
|
|
};
|
|
|
|
public:
|
|
|
|
ftFileStatus(std::string hash_in):hash(hash_in),stat(PQIFILE_INIT)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
std::string hash;
|
|
|
|
Status stat;
|
|
|
|
};
|
|
|
|
|
|
|
|
class ftTransferModule
|
|
|
|
{
|
|
|
|
public:
|
2008-09-08 10:04:10 -04:00
|
|
|
ftTransferModule(ftFileCreator *fc, ftDataMultiplex *dm, ftController *fc);
|
2008-09-08 04:44:37 -04:00
|
|
|
~ftTransferModule();
|
|
|
|
|
|
|
|
//interface to download controller
|
|
|
|
bool setFileSources(std::list<std::string> peerIds);
|
|
|
|
bool setPeerState(std::string peerId,uint32_t state,uint32_t maxRate); //state = ONLINE/OFFLINE
|
|
|
|
uint32_t getDataRate(std::string peerId);
|
|
|
|
bool pauseTransfer();
|
|
|
|
bool resumeTransfer();
|
|
|
|
bool cancelTransfer();
|
|
|
|
bool completeFileTransfer();
|
|
|
|
|
|
|
|
//interface to multiplex module
|
|
|
|
bool recvFileData(std::string peerId, uint64_t offset,
|
|
|
|
uint32_t chunk_size, void *data);
|
|
|
|
void requestData(std::string peerId, uint64_t offset, uint32_t chunk_size);
|
|
|
|
|
|
|
|
//interface to file creator
|
|
|
|
bool getChunk(uint64_t &offset, uint32_t &chunk_size);
|
|
|
|
bool storeData(uint64_t offset, uint32_t chunk_size, void *data);
|
|
|
|
|
|
|
|
int tick();
|
|
|
|
|
|
|
|
std::string hash() { return mHash; }
|
|
|
|
uint64_t size() { return mSize; }
|
|
|
|
|
|
|
|
//internal used functions
|
2008-09-09 03:24:06 -04:00
|
|
|
bool queryInactive();
|
2008-09-08 04:44:37 -04:00
|
|
|
void adjustSpeed();
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
/* These have independent Mutexes / are const locally (no Mutex protection)*/
|
|
|
|
ftFileCreator *mFileCreator;
|
|
|
|
ftDataMultiplex *mMultiplexor;
|
2008-09-08 10:04:10 -04:00
|
|
|
ftController *mFtController;
|
2008-09-08 04:44:37 -04:00
|
|
|
|
|
|
|
std::string mHash;
|
|
|
|
uint64_t mSize;
|
|
|
|
|
|
|
|
RsMutex tfMtx; /* below is mutex protected */
|
|
|
|
|
2008-09-08 10:04:10 -04:00
|
|
|
std::list<std::string> mOnlinePeers;
|
|
|
|
std::map<std::string,peerInfo> mFileSources;
|
2008-09-08 04:44:37 -04:00
|
|
|
|
2008-09-09 03:24:06 -04:00
|
|
|
uint16_t mFlag; //2:file canceled, 1:transfer complete, 0: not complete
|
2008-09-08 04:44:37 -04:00
|
|
|
double desiredRate;
|
|
|
|
double actualRate;
|
|
|
|
|
|
|
|
ftFileStatus mFileStatus; //used for pause/resume file transfer
|
2008-07-03 09:11:20 -04:00
|
|
|
};
|
|
|
|
|
2008-09-08 04:44:37 -04:00
|
|
|
#endif //FT_TRANSFER_MODULE_HEADER
|