2008-07-02 09:19:59 -04:00
|
|
|
/*
|
|
|
|
* libretroshare/src/ft: ftserver.h
|
|
|
|
*
|
|
|
|
* File Transfer for RetroShare.
|
|
|
|
*
|
|
|
|
* 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_SERVER_HEADER
|
|
|
|
#define FT_SERVER_HEADER
|
|
|
|
|
2009-07-12 09:22:31 -04:00
|
|
|
/*
|
2008-07-02 09:19:59 -04:00
|
|
|
* ftServer.
|
|
|
|
*
|
|
|
|
* Top level File Transfer interface.
|
|
|
|
* (replaces old filedexserver)
|
|
|
|
*
|
|
|
|
* sets up the whole File Transfer class structure.
|
|
|
|
* sets up the File Indexing side of cache system too.
|
|
|
|
*
|
|
|
|
* provides rsFiles interface for external control.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <map>
|
|
|
|
#include <list>
|
|
|
|
#include <iostream>
|
|
|
|
|
2008-08-03 08:45:53 -04:00
|
|
|
#include "ft/ftdata.h"
|
2008-07-23 18:01:59 -04:00
|
|
|
#include "rsiface/rsfiles.h"
|
2008-08-09 13:03:24 -04:00
|
|
|
//#include "dbase/cachestrapper.h"
|
2008-07-02 09:19:59 -04:00
|
|
|
|
2008-08-03 08:45:53 -04:00
|
|
|
#include "pqi/pqi.h"
|
2008-07-02 09:19:59 -04:00
|
|
|
#include "pqi/p3cfgmgr.h"
|
|
|
|
|
|
|
|
class p3ConnectMgr;
|
|
|
|
class p3AuthMgr;
|
|
|
|
|
|
|
|
class CacheStrapper;
|
2008-08-09 13:03:24 -04:00
|
|
|
class CacheTransfer;
|
|
|
|
|
|
|
|
class NotifyBase; /* needed by FiStore */
|
|
|
|
class ftCacheStrapper;
|
|
|
|
class ftFiStore;
|
|
|
|
class ftFiMonitor;
|
2008-07-02 09:19:59 -04:00
|
|
|
|
2008-07-23 18:01:59 -04:00
|
|
|
class ftController;
|
|
|
|
class ftExtraList;
|
2008-08-03 08:45:53 -04:00
|
|
|
class ftFileSearch;
|
2008-07-02 09:19:59 -04:00
|
|
|
|
2008-08-03 08:45:53 -04:00
|
|
|
class ftDataMultiplex;
|
2009-05-26 17:42:45 -04:00
|
|
|
class p3turtle;
|
2008-08-03 08:45:53 -04:00
|
|
|
|
2009-07-26 11:00:29 -04:00
|
|
|
class ftDwlQueue;
|
|
|
|
|
2008-08-17 11:23:11 -04:00
|
|
|
class ftServer: public RsFiles, public ftDataSend, public RsThread
|
2008-07-02 09:19:59 -04:00
|
|
|
{
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
/***************************************************************/
|
|
|
|
/******************** Setup ************************************/
|
|
|
|
/***************************************************************/
|
|
|
|
|
2008-08-09 13:03:24 -04:00
|
|
|
ftServer(p3AuthMgr *authMgr, p3ConnectMgr *connMgr);
|
2008-07-02 09:19:59 -04:00
|
|
|
|
|
|
|
/* Assign important variables */
|
|
|
|
void setConfigDirectory(std::string path);
|
|
|
|
|
2008-08-17 11:23:11 -04:00
|
|
|
void setP3Interface(P3Interface *pqi);
|
2008-07-02 09:19:59 -04:00
|
|
|
|
|
|
|
/* add Config Items (Extra, Controller) */
|
|
|
|
void addConfigComponents(p3ConfigMgr *mgr);
|
|
|
|
|
2008-08-03 08:45:53 -04:00
|
|
|
CacheStrapper *getCacheStrapper();
|
2008-07-02 09:19:59 -04:00
|
|
|
CacheTransfer *getCacheTransfer();
|
2008-10-29 16:58:23 -04:00
|
|
|
std::string OwnId();
|
2008-07-02 09:19:59 -04:00
|
|
|
|
2008-08-03 08:45:53 -04:00
|
|
|
/* Final Setup (once everything is assigned) */
|
2008-08-09 13:03:24 -04:00
|
|
|
//void SetupFtServer();
|
|
|
|
void SetupFtServer(NotifyBase *cb);
|
2009-05-26 17:42:45 -04:00
|
|
|
void connectToTurtleRouter(p3turtle *p) ;
|
2008-08-09 13:03:24 -04:00
|
|
|
|
2008-08-03 08:45:53 -04:00
|
|
|
void StartupThreads();
|
|
|
|
|
2008-08-17 11:23:11 -04:00
|
|
|
/* own thread */
|
|
|
|
virtual void run();
|
|
|
|
|
2008-07-02 09:19:59 -04:00
|
|
|
/***************************************************************/
|
|
|
|
/*************** Control Interface *****************************/
|
|
|
|
/************** (Implements RsFiles) ***************************/
|
|
|
|
/***************************************************************/
|
|
|
|
|
2009-05-26 17:42:45 -04:00
|
|
|
// member access
|
|
|
|
|
|
|
|
ftDataMultiplex *getMultiplexer() const { return mFtDataplex ; }
|
|
|
|
ftController *getController() const { return mFtController ; }
|
|
|
|
|
2008-08-03 08:45:53 -04:00
|
|
|
/***
|
|
|
|
* Control of Downloads
|
|
|
|
***/
|
2009-07-12 09:22:31 -04:00
|
|
|
virtual bool FileRequest(std::string fname, std::string hash, uint64_t size,
|
2008-08-09 13:03:24 -04:00
|
|
|
std::string dest, uint32_t flags, std::list<std::string> srcIds);
|
2008-07-02 12:58:13 -04:00
|
|
|
virtual bool FileCancel(std::string hash);
|
|
|
|
virtual bool FileControl(std::string hash, uint32_t flags);
|
|
|
|
virtual bool FileClearCompleted();
|
2008-07-02 09:19:59 -04:00
|
|
|
|
2009-07-26 11:00:29 -04:00
|
|
|
/***
|
|
|
|
* Control of Downloads Priority.
|
|
|
|
***/
|
|
|
|
virtual bool changePriority(const std::string hash, int priority);
|
|
|
|
virtual bool getPriority(const std::string hash, int & priority);
|
|
|
|
virtual bool clearDownload(const std::string hash);
|
|
|
|
virtual void clearQueue();
|
|
|
|
|
2008-08-03 08:45:53 -04:00
|
|
|
/***
|
2009-07-12 09:22:31 -04:00
|
|
|
* Download/Upload Details
|
2008-08-03 08:45:53 -04:00
|
|
|
***/
|
2008-07-02 09:19:59 -04:00
|
|
|
virtual bool FileDownloads(std::list<std::string> &hashs);
|
|
|
|
virtual bool FileUploads(std::list<std::string> &hashs);
|
|
|
|
virtual bool FileDetails(std::string hash, uint32_t hintflags, FileInfo &info);
|
|
|
|
|
2008-08-03 08:45:53 -04:00
|
|
|
/***
|
|
|
|
* Extra List Access
|
|
|
|
***/
|
2009-07-12 09:22:31 -04:00
|
|
|
virtual bool ExtraFileAdd(std::string fname, std::string hash, uint64_t size,
|
2008-08-03 08:45:53 -04:00
|
|
|
uint32_t period, uint32_t flags);
|
2008-07-23 18:01:59 -04:00
|
|
|
virtual bool ExtraFileRemove(std::string hash, uint32_t flags);
|
2009-07-12 09:22:31 -04:00
|
|
|
virtual bool ExtraFileHash(std::string localpath,
|
2008-08-03 08:45:53 -04:00
|
|
|
uint32_t period, uint32_t flags);
|
2008-07-02 09:19:59 -04:00
|
|
|
virtual bool ExtraFileStatus(std::string localpath, FileInfo &info);
|
2008-11-27 16:23:46 -05:00
|
|
|
virtual bool ExtraFileMove(std::string fname, std::string hash, uint64_t size,
|
|
|
|
std::string destpath);
|
2008-07-02 09:19:59 -04:00
|
|
|
|
2008-08-03 08:45:53 -04:00
|
|
|
|
|
|
|
/***
|
|
|
|
* Directory Listing / Search Interface
|
|
|
|
***/
|
2008-07-02 09:19:59 -04:00
|
|
|
virtual int RequestDirDetails(std::string uid, std::string path, DirDetails &details);
|
|
|
|
virtual int RequestDirDetails(void *ref, DirDetails &details, uint32_t flags);
|
|
|
|
|
2009-03-15 18:45:40 -04:00
|
|
|
virtual int SearchKeywords(std::list<std::string> keywords, std::list<FileDetail> &results,uint32_t flags);
|
2008-07-02 09:19:59 -04:00
|
|
|
virtual int SearchBoolExp(Expression * exp, std::list<FileDetail> &results);
|
|
|
|
|
2008-08-03 08:45:53 -04:00
|
|
|
/***
|
2009-07-12 09:22:31 -04:00
|
|
|
* Utility Functions
|
2008-08-03 08:45:53 -04:00
|
|
|
***/
|
2008-07-02 09:19:59 -04:00
|
|
|
virtual bool ConvertSharedFilePath(std::string path, std::string &fullpath);
|
|
|
|
virtual void ForceDirectoryCheck();
|
|
|
|
virtual bool InDirectoryCheck();
|
|
|
|
|
2008-08-03 08:45:53 -04:00
|
|
|
/***
|
2009-07-12 09:22:31 -04:00
|
|
|
* Directory Handling
|
2008-08-03 08:45:53 -04:00
|
|
|
***/
|
2008-07-02 09:19:59 -04:00
|
|
|
virtual void setDownloadDirectory(std::string path);
|
|
|
|
virtual void setPartialsDirectory(std::string path);
|
2008-07-02 12:58:13 -04:00
|
|
|
virtual std::string getDownloadDirectory();
|
|
|
|
virtual std::string getPartialsDirectory();
|
2008-07-02 09:19:59 -04:00
|
|
|
|
|
|
|
virtual bool getSharedDirectories(std::list<std::string> &dirs);
|
2008-08-09 13:03:24 -04:00
|
|
|
virtual bool setSharedDirectories(std::list<std::string> &dirs);
|
2008-07-02 12:58:13 -04:00
|
|
|
virtual bool addSharedDirectory(std::string dir);
|
|
|
|
virtual bool removeSharedDirectory(std::string dir);
|
|
|
|
|
2009-07-12 09:22:31 -04:00
|
|
|
virtual void setShareDownloadDirectory(bool value);
|
|
|
|
virtual bool getShareDownloadDirectory();
|
|
|
|
virtual bool shareDownloadDirectory();
|
|
|
|
virtual bool unshareDownloadDirectory();
|
2008-07-02 09:19:59 -04:00
|
|
|
|
|
|
|
/***************************************************************/
|
|
|
|
/*************** Control Interface *****************************/
|
|
|
|
/***************************************************************/
|
|
|
|
|
2008-07-23 18:01:59 -04:00
|
|
|
/***************************************************************/
|
|
|
|
/*************** Data Transfer Interface ***********************/
|
|
|
|
/***************************************************************/
|
2008-08-03 08:45:53 -04:00
|
|
|
public:
|
|
|
|
virtual bool sendData(std::string peerId, std::string hash, uint64_t size,
|
|
|
|
uint64_t offset, uint32_t chunksize, void *data);
|
2009-07-12 09:22:31 -04:00
|
|
|
virtual bool sendDataRequest(std::string peerId,
|
2008-08-03 08:45:53 -04:00
|
|
|
std::string hash, uint64_t size,
|
|
|
|
uint64_t offset, uint32_t chunksize);
|
|
|
|
|
|
|
|
/*************** Internal Transfer Fns *************************/
|
|
|
|
virtual int tick();
|
2008-07-23 18:01:59 -04:00
|
|
|
|
2008-11-15 15:00:29 -05:00
|
|
|
/* Configuration */
|
|
|
|
bool addConfiguration(p3ConfigMgr *cfgmgr);
|
|
|
|
bool ResumeTransfers();
|
|
|
|
|
2008-08-03 08:45:53 -04:00
|
|
|
private:
|
|
|
|
bool handleInputQueues();
|
|
|
|
bool handleCacheData();
|
|
|
|
bool handleFileData();
|
2008-07-23 18:01:59 -04:00
|
|
|
|
2008-07-02 09:19:59 -04:00
|
|
|
/******************* p3 Config Overload ************************/
|
|
|
|
protected:
|
|
|
|
/* Key Functions to be overloaded for Full Configuration */
|
|
|
|
virtual RsSerialiser *setupSerialiser();
|
|
|
|
virtual std::list<RsItem *> saveList(bool &cleanup);
|
|
|
|
virtual bool loadList(std::list<RsItem *> load);
|
|
|
|
|
|
|
|
private:
|
|
|
|
bool loadConfigMap(std::map<std::string, std::string> &configMap);
|
|
|
|
/******************* p3 Config Overload ************************/
|
|
|
|
|
|
|
|
/*************************** p3 Config Overload ********************/
|
2008-08-03 08:45:53 -04:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
/**** INTERNAL FUNCTIONS ***/
|
2008-08-16 11:02:24 -04:00
|
|
|
//virtual int reScanDirs();
|
|
|
|
//virtual int check_dBUpdate();
|
2008-08-03 08:45:53 -04:00
|
|
|
|
2008-07-02 09:19:59 -04:00
|
|
|
private:
|
|
|
|
|
2009-07-12 09:22:31 -04:00
|
|
|
/* no need for Mutex protection -
|
2008-07-02 09:19:59 -04:00
|
|
|
* as each component is protected independently.
|
|
|
|
*/
|
|
|
|
|
2008-08-03 08:45:53 -04:00
|
|
|
P3Interface *mP3iface; /* XXX THIS NEEDS PROTECTION */
|
|
|
|
p3AuthMgr *mAuthMgr;
|
|
|
|
p3ConnectMgr *mConnMgr;
|
|
|
|
|
2008-08-09 13:03:24 -04:00
|
|
|
ftCacheStrapper *mCacheStrapper;
|
|
|
|
ftFiStore *mFiStore;
|
|
|
|
ftFiMonitor *mFiMon;
|
2008-08-03 08:45:53 -04:00
|
|
|
|
2008-07-02 09:19:59 -04:00
|
|
|
ftController *mFtController;
|
|
|
|
ftExtraList *mFtExtra;
|
|
|
|
|
2008-08-03 08:45:53 -04:00
|
|
|
ftDataMultiplex *mFtDataplex;
|
2009-05-26 17:42:45 -04:00
|
|
|
p3turtle *mTurtleRouter ;
|
2008-08-03 08:45:53 -04:00
|
|
|
|
|
|
|
|
|
|
|
ftFileSearch *mFtSearch;
|
2008-07-02 09:19:59 -04:00
|
|
|
|
2009-07-26 11:00:29 -04:00
|
|
|
ftDwlQueue *mFtDwlQueue;
|
|
|
|
|
2008-07-02 09:19:59 -04:00
|
|
|
RsMutex srvMutex;
|
|
|
|
std::string mConfigPath;
|
|
|
|
std::string mDownloadPath;
|
|
|
|
std::string mPartialsPath;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|