#ifndef RS_FILES_GUI_INTERFACE_H #define RS_FILES_GUI_INTERFACE_H /* * libretroshare/src/rsiface: rsfiles.h * * RetroShare C++ Interface. * * 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". * */ #include #include #include #include "rstypes.h" class RsFiles; extern RsFiles *rsFiles; class Expression; /* These are used mainly by ftController at the moment */ const uint32_t RS_FILE_CTRL_PAUSE = 0x00000100; const uint32_t RS_FILE_CTRL_START = 0x00000200; const uint32_t RS_FILE_CTRL_FORCE_CHECK = 0x00000400; const uint32_t RS_FILE_RATE_TRICKLE = 0x00000001; const uint32_t RS_FILE_RATE_SLOW = 0x00000002; const uint32_t RS_FILE_RATE_STANDARD = 0x00000003; const uint32_t RS_FILE_RATE_FAST = 0x00000004; const uint32_t RS_FILE_RATE_STREAM_AUDIO = 0x00000005; const uint32_t RS_FILE_RATE_STREAM_VIDEO = 0x00000006; const uint32_t RS_FILE_PEER_ONLINE = 0x00001000; const uint32_t RS_FILE_PEER_OFFLINE = 0x00002000; /************************************ * Used To indicate where to search. * * The Order of these is very important, * it specifies the search order too. * */ const uint32_t RS_FILE_HINTS_MASK = 0x00ffffff; const uint32_t RS_FILE_HINTS_CACHE = 0x00000001; const uint32_t RS_FILE_HINTS_EXTRA = 0x00000002; const uint32_t RS_FILE_HINTS_LOCAL = 0x00000004; const uint32_t RS_FILE_HINTS_REMOTE = 0x00000008; const uint32_t RS_FILE_HINTS_DOWNLOAD = 0x00000010; const uint32_t RS_FILE_HINTS_UPLOAD = 0x00000020; const uint32_t RS_FILE_HINTS_NETWORK_WIDE = 0x00000080; // anonymously shared over network const uint32_t RS_FILE_HINTS_BROWSABLE = 0x00000100; // browsable by friends const uint32_t RS_FILE_HINTS_ASSUME_AVAILABILITY = 0x00000200; // Assume full source availability. Used for cache files. const uint32_t RS_FILE_HINTS_MEDIA = 0x00001000; const uint32_t RS_FILE_HINTS_BACKGROUND = 0x00002000; // To download slowly. const uint32_t RS_FILE_HINTS_SPEC_ONLY = 0x01000000; const uint32_t RS_FILE_HINTS_NO_SEARCH = 0x02000000; /* Callback Codes */ const uint32_t RS_FILE_EXTRA_DELETE = 0x0010; struct SharedDirInfo { std::string filename ; std::string virtualname ; uint32_t shareflags ; // RS_FILE_HINTS_NETWORK_WIDE | RS_FILE_HINTS_BROWSABLE }; class RsFiles { public: RsFiles() { return; } virtual ~RsFiles() { return; } /****************************************/ /* download */ /*** * Control of Downloads. ***/ virtual bool alreadyHaveFile(const std::string& hash, FileInfo &info) = 0; /// Returns false is we already have the file. Otherwise, initiates the dl and returns true. virtual bool FileRequest(const std::string& fname, const std::string& hash, uint64_t size, const std::string& dest, uint32_t flags, const std::list& srcIds) = 0; virtual bool FileCancel(const std::string& hash) = 0; virtual bool setChunkStrategy(const std::string& hash,FileChunksInfo::ChunkStrategy) = 0; virtual void setDefaultChunkStrategy(FileChunksInfo::ChunkStrategy) = 0; virtual FileChunksInfo::ChunkStrategy defaultChunkStrategy() = 0; virtual uint32_t freeDiskSpaceLimit() const =0; virtual void setFreeDiskSpaceLimit(uint32_t size_in_mb) =0; virtual bool FileControl(const std::string& hash, uint32_t flags) = 0; virtual bool FileClearCompleted() = 0; /*** * Control of Downloads Priority. ***/ virtual uint32_t getQueueSize() = 0 ; virtual void setQueueSize(uint32_t s) = 0 ; virtual bool changeQueuePosition(const std::string hash, QueueMove mv) = 0; virtual bool changeDownloadSpeed(const std::string hash, int speed) = 0; virtual bool getDownloadSpeed(const std::string hash, int & speed) = 0; virtual bool clearDownload(const std::string hash) = 0; // virtual void getDwlDetails(std::list & details) = 0; /*** * Download / Upload Details. ***/ virtual bool FileDownloads(std::list &hashs) = 0; virtual bool FileUploads(std::list &hashs) = 0; virtual bool FileDetails(const std::string &hash, uint32_t hintflags, FileInfo &info) = 0; /// Gives chunk details about the downloaded file with given hash. virtual bool FileDownloadChunksDetails(const std::string& hash,FileChunksInfo& info) = 0 ; /// details about the upload with given hash virtual bool FileUploadChunksDetails(const std::string& hash,const std::string& peer_id,CompressedChunkMap& map) = 0 ; /*** * Extra List Access ***/ virtual bool ExtraFileAdd(std::string fname, std::string hash, uint64_t size, uint32_t period, uint32_t flags) = 0; virtual bool ExtraFileRemove(std::string hash, uint32_t flags) = 0; virtual bool ExtraFileHash(std::string localpath, uint32_t period, uint32_t flags) = 0; virtual bool ExtraFileStatus(std::string localpath, FileInfo &info) = 0; virtual bool ExtraFileMove(std::string fname, std::string hash, uint64_t size, std::string destpath) = 0; /*** * Directory Listing / Search Interface */ virtual int RequestDirDetails(std::string uid, std::string path, DirDetails &details) = 0; virtual int RequestDirDetails(void *ref, DirDetails &details, uint32_t flags) = 0; virtual int SearchKeywords(std::list keywords, std::list &results,uint32_t flags) = 0; virtual int SearchBoolExp(Expression * exp, std::list &results,uint32_t flags) = 0; /*** * Utility Functions. ***/ virtual bool ConvertSharedFilePath(std::string path, std::string &fullpath) = 0; virtual void ForceDirectoryCheck() = 0; virtual bool InDirectoryCheck() = 0; virtual bool CopyFile(const std::string& source,const std::string& dest) = 0; /*** * Directory Control ***/ virtual void setDownloadDirectory(std::string path) = 0; virtual void setPartialsDirectory(std::string path) = 0; virtual std::string getDownloadDirectory() = 0; virtual std::string getPartialsDirectory() = 0; virtual bool getSharedDirectories(std::list &dirs) = 0; virtual bool addSharedDirectory(const SharedDirInfo& dir) = 0; virtual bool updateShareFlags(const SharedDirInfo& dir) = 0; // updates the flags. The directory should already exist ! virtual bool removeSharedDirectory(std::string dir) = 0; virtual void setShareDownloadDirectory(bool value) = 0; virtual bool getShareDownloadDirectory() = 0; virtual bool shareDownloadDirectory() = 0; virtual bool unshareDownloadDirectory() = 0; }; #endif