2008-07-02 09:19:59 -04:00
# 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 <list>
# include <iostream>
# include <string>
2010-08-06 05:40:23 -04:00
# include "rstypes.h"
2008-07-02 09:19:59 -04:00
class RsFiles ;
extern RsFiles * rsFiles ;
2016-09-13 06:05:22 -04:00
namespace RsRegularExpression { class Expression ; }
2008-07-02 09:19:59 -04:00
2008-08-09 13:03:24 -04:00
/* These are used mainly by ftController at the moment */
2010-07-09 17:04:29 -04:00
const uint32_t RS_FILE_CTRL_PAUSE = 0x00000100 ;
const uint32_t RS_FILE_CTRL_START = 0x00000200 ;
2017-09-10 13:58:57 -04:00
const uint32_t RS_FILE_CTRL_FORCE_CHECK = 0x00000400 ;
2008-07-02 09:19:59 -04:00
2016-10-29 11:59:03 -04:00
const uint32_t RS_FILE_CTRL_ENCRYPTION_POLICY_STRICT = 0x00000001 ;
const uint32_t RS_FILE_CTRL_ENCRYPTION_POLICY_PERMISSIVE = 0x00000002 ;
2017-06-26 17:35:01 -04:00
const uint32_t RS_FILE_PERM_DIRECT_DL_YES = 0x00000001 ;
const uint32_t RS_FILE_PERM_DIRECT_DL_NO = 0x00000002 ;
const uint32_t RS_FILE_PERM_DIRECT_DL_PER_USER = 0x00000003 ;
2008-08-09 13:03:24 -04:00
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 ;
2008-07-02 09:19:59 -04:00
2008-08-09 13:03:24 -04:00
const uint32_t RS_FILE_PEER_ONLINE = 0x00001000 ;
const uint32_t RS_FILE_PEER_OFFLINE = 0x00002000 ;
2008-07-02 09:19:59 -04:00
2017-09-24 11:53:06 -04:00
const uint32_t RS_FILE_SHARE_FLAGS_IGNORE_PREFIXES = 0x0001 ;
const uint32_t RS_FILE_SHARE_FLAGS_IGNORE_SUFFIXES = 0x0002 ;
const uint32_t RS_FILE_SHARE_FLAGS_IGNORE_DUPLICATES = 0x0004 ;
const uint32_t RS_FILE_SHARE_PARAMETER_DEFAULT_MAXIMUM_DEPTH = 8 ;
2017-09-10 13:58:57 -04:00
2008-07-06 11:05:59 -04:00
/************************************
* Used To indicate where to search .
2008-08-03 08:45:53 -04:00
*
2009-07-12 09:22:31 -04:00
* The Order of these is very important ,
2008-08-03 08:45:53 -04:00
* it specifies the search order too .
*
2008-07-06 11:05:59 -04:00
*/
2012-11-01 06:06:12 -04:00
// Flags used when requesting info about transfers, mostly to filter out the result.
//
2016-10-24 18:08:27 -04:00
const FileSearchFlags RS_FILE_HINTS_CACHE_deprecated ( 0x00000001 ) ;
const FileSearchFlags RS_FILE_HINTS_EXTRA ( 0x00000002 ) ;
const FileSearchFlags RS_FILE_HINTS_LOCAL ( 0x00000004 ) ;
const FileSearchFlags RS_FILE_HINTS_REMOTE ( 0x00000008 ) ;
const FileSearchFlags RS_FILE_HINTS_DOWNLOAD ( 0x00000010 ) ;
const FileSearchFlags RS_FILE_HINTS_UPLOAD ( 0x00000020 ) ;
const FileSearchFlags RS_FILE_HINTS_SPEC_ONLY ( 0x01000000 ) ;
2016-11-04 16:51:18 -04:00
const FileSearchFlags RS_FILE_HINTS_NETWORK_WIDE ( 0x00000080 ) ; // can be downloaded anonymously
2016-10-24 18:08:27 -04:00
const FileSearchFlags RS_FILE_HINTS_BROWSABLE ( 0x00000100 ) ; // browsable by friends
2016-11-04 16:51:18 -04:00
const FileSearchFlags RS_FILE_HINTS_SEARCHABLE ( 0x00000200 ) ; // can be searched anonymously
2016-11-02 16:31:14 -04:00
const FileSearchFlags RS_FILE_HINTS_PERMISSION_MASK ( 0x00000380 ) ; // OR of the last tree flags. Used to filter out.
2012-11-01 06:06:12 -04:00
// Flags used when requesting a transfer
//
2012-11-02 09:52:29 -04:00
const TransferRequestFlags RS_FILE_REQ_ANONYMOUS_ROUTING ( 0x00000040 ) ; // Use to ask turtle router to download the file.
2016-10-24 18:08:27 -04:00
const TransferRequestFlags RS_FILE_REQ_ENCRYPTED ( 0x00000080 ) ; // Asks for end-to-end encryption of file at the level of ftServer
2016-10-29 11:59:03 -04:00
const TransferRequestFlags RS_FILE_REQ_UNENCRYPTED ( 0x00000100 ) ; // Asks for no end-to-end encryption of file at the level of ftServer
2012-11-02 09:52:29 -04:00
const TransferRequestFlags RS_FILE_REQ_ASSUME_AVAILABILITY ( 0x00000200 ) ; // Assume full source availability. Used for cache files.
2016-10-24 18:08:27 -04:00
const TransferRequestFlags RS_FILE_REQ_CACHE_deprecated ( 0x00000400 ) ; // Old stuff used for cache files. Not used anymore.
2012-11-02 09:52:29 -04:00
const TransferRequestFlags RS_FILE_REQ_EXTRA ( 0x00000800 ) ;
2016-10-24 18:08:27 -04:00
const TransferRequestFlags RS_FILE_REQ_MEDIA ( 0x00001000 ) ;
const TransferRequestFlags RS_FILE_REQ_BACKGROUND ( 0x00002000 ) ; // To download slowly.
2012-11-02 09:52:29 -04:00
const TransferRequestFlags RS_FILE_REQ_NO_SEARCH ( 0x02000000 ) ; // disable searching for potential direct sources.
2012-11-01 06:06:12 -04:00
2016-10-29 11:59:03 -04:00
// const uint32_t RS_FILE_HINTS_SHARE_FLAGS_MASK = RS_FILE_HINTS_NETWORK_WIDE_OTHERS | RS_FILE_HINTS_BROWSABLE_OTHERS
2012-11-01 06:06:12 -04:00
// | RS_FILE_HINTS_NETWORK_WIDE_GROUPS | RS_FILE_HINTS_BROWSABLE_GROUPS ;
2008-07-06 11:05:59 -04:00
2008-10-29 16:53:14 -04:00
/* Callback Codes */
2008-11-09 17:17:20 -05:00
2008-07-02 09:19:59 -04:00
const uint32_t RS_FILE_EXTRA_DELETE = 0x0010 ;
2009-08-03 15:43:52 -04:00
struct SharedDirInfo
{
2016-11-21 10:14:11 -05:00
static bool sameLists ( const std : : list < RsNodeGroupId > & l1 , const std : : list < RsNodeGroupId > & l2 )
{
std : : list < RsNodeGroupId > : : const_iterator it1 ( l1 . begin ( ) ) ;
std : : list < RsNodeGroupId > : : const_iterator it2 ( l2 . begin ( ) ) ;
for ( ; ( it1 ! = l1 . end ( ) & & it2 ! = l2 . end ( ) ) ; + + it1 , + + it2 )
if ( * it1 ! = * it2 )
return false ;
return it1 = = l1 . end ( ) & & it2 = = l2 . end ( ) ;
}
2009-08-03 15:43:52 -04:00
std : : string filename ;
2010-09-17 14:27:30 -04:00
std : : string virtualname ;
2016-10-31 11:28:26 -04:00
FileStorageFlags shareflags ; // combnation of DIR_FLAGS_ANONYMOUS_DOWNLOAD | DIR_FLAGS_BROWSABLE | ...
2016-07-05 23:49:43 -04:00
std : : list < RsNodeGroupId > parent_groups ;
2009-08-03 15:43:52 -04:00
} ;
2008-07-02 09:19:59 -04:00
2016-11-11 14:25:11 -05:00
struct SharedDirStats
{
uint32_t total_number_of_files ;
uint64_t total_shared_size ;
} ;
2017-10-17 18:04:04 -04:00
// This class represents a tree of directories and files, only with their names size and hash. It is used to create collection links in the GUI
// and to transmit directory information between services. This class is independent from the existing FileHierarchy classes used in storage because
// we need a very copact serialization and storage size since we create links with it. Besides, we cannot afford to risk the leak of other local information
// by using the orignal classes.
class FileTree
{
public :
virtual ~ FileTree ( ) { }
2017-10-18 16:32:15 -04:00
static FileTree * create ( const DirDetails & dd , bool remote ) ;
2017-10-17 18:04:04 -04:00
static FileTree * create ( const std : : string & radix64_string ) ;
virtual std : : string toRadix64 ( ) const = 0 ;
// These methods allow the user to browse the hierarchy
struct FileData {
std : : string name ;
uint64_t size ;
RsFileHash hash ;
} ;
virtual uint32_t root ( ) const { return 0 ; }
virtual bool getDirectoryContent ( uint32_t index , std : : vector < uint32_t > & subdirs , std : : vector < FileData > & subfiles ) const = 0 ;
2017-10-18 16:32:15 -04:00
virtual void print ( ) const = 0 ;
2017-10-17 18:04:04 -04:00
uint32_t mTotalFiles ;
uint64_t mTotalSize ;
} ;
2008-07-02 09:19:59 -04:00
class RsFiles
{
public :
2010-01-16 10:42:26 -05:00
RsFiles ( ) { return ; }
virtual ~ RsFiles ( ) { return ; }
2015-03-08 09:46:07 -04:00
/**
* Provides file data for the gui : media streaming or rpc clients .
* It may return unverified chunks . This allows streaming without having to wait for hashes or completion of the file .
* This function returns an unspecified amount of bytes . Either as much data as available or a sensible maximum . Expect a block size of around 1 MiB .
* To get more data , call this function repeatedly with different offsets .
* Returns false in case
* - the files is not available on the local node
* - not downloading
* - the requested data was not downloaded yet
* - end of file was reached
* @ param hash hash of a file . The file has to be available on this node or it has to be in downloading state .
* @ param offset where the desired block starts
* @ param requested_size size of pre - allocated data . Will be updated by the function .
* @ param data pre - allocated memory chunk of size ' requested_size ' by the client
*/
virtual bool getFileData ( const RsFileHash & hash , uint64_t offset , uint32_t & requested_size , uint8_t * data ) = 0 ;
2010-01-16 10:42:26 -05:00
/***
* Control of Downloads .
* * */
2014-03-17 16:56:06 -04:00
virtual bool alreadyHaveFile ( const RsFileHash & hash , FileInfo & info ) = 0 ;
2010-01-16 10:42:26 -05:00
/// Returns false is we already have the file. Otherwise, initiates the dl and returns true.
2014-03-17 16:56:06 -04:00
virtual bool FileRequest ( const std : : string & fname , const RsFileHash & hash , uint64_t size , const std : : string & dest , TransferRequestFlags flags , const std : : list < RsPeerId > & srcIds ) = 0 ;
virtual bool FileCancel ( const RsFileHash & hash ) = 0 ;
virtual bool setDestinationDirectory ( const RsFileHash & hash , const std : : string & new_path ) = 0 ;
virtual bool setDestinationName ( const RsFileHash & hash , const std : : string & new_name ) = 0 ;
virtual bool setChunkStrategy ( const RsFileHash & hash , FileChunksInfo : : ChunkStrategy ) = 0 ;
2010-03-21 17:07:12 -04:00
virtual void setDefaultChunkStrategy ( FileChunksInfo : : ChunkStrategy ) = 0 ;
virtual FileChunksInfo : : ChunkStrategy defaultChunkStrategy ( ) = 0 ;
2010-05-21 16:49:48 -04:00
virtual uint32_t freeDiskSpaceLimit ( ) const = 0 ;
virtual void setFreeDiskSpaceLimit ( uint32_t size_in_mb ) = 0 ;
2014-03-17 16:56:06 -04:00
virtual bool FileControl ( const RsFileHash & hash , uint32_t flags ) = 0 ;
2010-01-16 10:42:26 -05:00
virtual bool FileClearCompleted ( ) = 0 ;
2017-06-26 17:35:01 -04:00
virtual void setDefaultEncryptionPolicy ( uint32_t policy ) = 0 ; // RS_FILE_CTRL_ENCRYPTION_POLICY_STRICT/PERMISSIVE
virtual uint32_t defaultEncryptionPolicy ( ) = 0 ;
virtual void setMaxUploadSlotsPerFriend ( uint32_t n ) = 0 ;
virtual uint32_t getMaxUploadSlotsPerFriend ( ) = 0 ;
virtual void setFilePermDirectDL ( uint32_t perm ) = 0 ;
virtual uint32_t filePermDirectDL ( ) = 0 ;
2010-01-16 10:42:26 -05:00
/***
* Control of Downloads Priority .
* * */
2010-03-06 18:29:47 -05:00
virtual uint32_t getQueueSize ( ) = 0 ;
virtual void setQueueSize ( uint32_t s ) = 0 ;
2014-03-17 16:56:06 -04:00
virtual bool changeQueuePosition ( const RsFileHash & hash , QueueMove mv ) = 0 ;
virtual bool changeDownloadSpeed ( const RsFileHash & hash , int speed ) = 0 ;
virtual bool getDownloadSpeed ( const RsFileHash & hash , int & speed ) = 0 ;
virtual bool clearDownload ( const RsFileHash & hash ) = 0 ;
2010-03-06 18:29:47 -05:00
// virtual void getDwlDetails(std::list<DwlDetails> & details) = 0;
2010-01-16 10:42:26 -05:00
/***
* Download / Upload Details .
* * */
2015-03-08 09:46:07 -04:00
virtual void FileDownloads ( std : : list < RsFileHash > & hashs ) = 0 ;
2014-03-17 16:56:06 -04:00
virtual bool FileUploads ( std : : list < RsFileHash > & hashs ) = 0 ;
virtual bool FileDetails ( const RsFileHash & hash , FileSearchFlags hintflags , FileInfo & info ) = 0 ;
2016-10-30 10:33:05 -04:00
virtual bool isEncryptedSource ( const RsPeerId & virtual_peer_id ) = 0 ;
2010-01-16 10:42:26 -05:00
/// Gives chunk details about the downloaded file with given hash.
2014-03-17 16:56:06 -04:00
virtual bool FileDownloadChunksDetails ( const RsFileHash & hash , FileChunksInfo & info ) = 0 ;
2010-01-16 10:42:26 -05:00
/// details about the upload with given hash
2014-03-17 16:56:06 -04:00
virtual bool FileUploadChunksDetails ( const RsFileHash & hash , const RsPeerId & peer_id , CompressedChunkMap & map ) = 0 ;
2010-01-16 10:42:26 -05:00
/***
* Extra List Access
* * */
2012-11-12 17:51:27 -05:00
//virtual bool ExtraFileAdd(std::string fname, std::string hash, uint64_t size, uint32_t period, TransferRequestFlags flags) = 0;
2014-03-17 16:56:06 -04:00
virtual bool ExtraFileRemove ( const RsFileHash & hash , TransferRequestFlags flags ) = 0 ;
2012-11-02 09:52:29 -04:00
virtual bool ExtraFileHash ( std : : string localpath , uint32_t period , TransferRequestFlags flags ) = 0 ;
2010-01-16 10:42:26 -05:00
virtual bool ExtraFileStatus ( std : : string localpath , FileInfo & info ) = 0 ;
2014-03-17 16:56:06 -04:00
virtual bool ExtraFileMove ( std : : string fname , const RsFileHash & hash , uint64_t size , std : : string destpath ) = 0 ;
2008-11-27 16:23:46 -05:00
2008-07-02 09:19:59 -04:00
2010-01-16 10:42:26 -05:00
/***
* Directory Listing / Search Interface
*/
2014-03-17 16:56:06 -04:00
virtual int RequestDirDetails ( const RsPeerId & uid , const std : : string & path , DirDetails & details ) = 0 ;
2012-11-02 09:52:29 -04:00
virtual int RequestDirDetails ( void * ref , DirDetails & details , FileSearchFlags flags ) = 0 ;
2016-09-15 04:41:40 -04:00
virtual bool findChildPointer ( void * ref , int row , void * & result , FileSearchFlags flags ) = 0 ;
virtual uint32_t getType ( void * ref , FileSearchFlags flags ) = 0 ;
2011-04-03 15:59:12 -04:00
2012-11-02 09:52:29 -04:00
virtual int SearchKeywords ( std : : list < std : : string > keywords , std : : list < DirDetails > & results , FileSearchFlags flags ) = 0 ;
2014-03-17 16:56:06 -04:00
virtual int SearchKeywords ( std : : list < std : : string > keywords , std : : list < DirDetails > & results , FileSearchFlags flags , const RsPeerId & peer_id ) = 0 ;
2016-09-13 06:05:22 -04:00
virtual int SearchBoolExp ( RsRegularExpression : : Expression * exp , std : : list < DirDetails > & results , FileSearchFlags flags ) = 0 ;
virtual int SearchBoolExp ( RsRegularExpression : : Expression * exp , std : : list < DirDetails > & results , FileSearchFlags flags , const RsPeerId & peer_id ) = 0 ;
2016-11-11 14:25:11 -05:00
virtual int getSharedDirStatistics ( const RsPeerId & pid , SharedDirStats & stats ) = 0 ;
2010-01-16 10:42:26 -05:00
/***
* Utility Functions .
* * */
virtual bool ConvertSharedFilePath ( std : : string path , std : : string & fullpath ) = 0 ;
virtual void ForceDirectoryCheck ( ) = 0 ;
2012-11-12 17:51:27 -05:00
virtual void updateSinceGroupPermissionsChanged ( ) = 0 ;
2010-01-16 10:42:26 -05:00
virtual bool InDirectoryCheck ( ) = 0 ;
2013-06-08 16:03:29 -04:00
virtual bool copyFile ( const std : : string & source , const std : : string & dest ) = 0 ;
2010-01-16 10:42:26 -05:00
/***
* Directory Control
* * */
2016-09-11 11:52:12 -04:00
virtual void requestDirUpdate ( void * ref ) = 0 ; // triggers the update of the given reference. Used when browsing.
2010-01-16 10:42:26 -05:00
virtual void setDownloadDirectory ( std : : string path ) = 0 ;
virtual void setPartialsDirectory ( std : : string path ) = 0 ;
virtual std : : string getDownloadDirectory ( ) = 0 ;
virtual std : : string getPartialsDirectory ( ) = 0 ;
2016-10-31 11:28:26 -04:00
virtual bool getSharedDirectories ( std : : list < SharedDirInfo > & dirs ) = 0 ;
virtual bool setSharedDirectories ( const std : : list < SharedDirInfo > & dirs ) = 0 ;
virtual bool addSharedDirectory ( const SharedDirInfo & dir ) = 0 ;
2010-01-16 10:42:26 -05:00
virtual bool updateShareFlags ( const SharedDirInfo & dir ) = 0 ; // updates the flags. The directory should already exist !
virtual bool removeSharedDirectory ( std : : string dir ) = 0 ;
2016-09-18 12:34:39 -04:00
2017-09-10 13:58:57 -04:00
virtual bool getIgnoreLists ( std : : list < std : : string > & ignored_prefixes , std : : list < std : : string > & ignored_suffixes , uint32_t & flags ) = 0 ;
virtual void setIgnoreLists ( const std : : list < std : : string > & ignored_prefixes , const std : : list < std : : string > & ignored_suffixes , uint32_t flags ) = 0 ;
2016-09-18 12:34:39 -04:00
virtual void setWatchPeriod ( int minutes ) = 0 ;
virtual void setWatchEnabled ( bool b ) = 0 ;
2017-09-10 13:58:57 -04:00
virtual int watchPeriod ( ) const = 0 ;
2016-09-18 12:34:39 -04:00
virtual bool watchEnabled ( ) = 0 ;
2016-11-24 17:42:56 -05:00
virtual bool followSymLinks ( ) const = 0 ;
virtual void setFollowSymLinks ( bool b ) = 0 ;
2017-09-10 16:07:36 -04:00
virtual void togglePauseHashingProcess ( ) = 0 ; // pauses/resumes the hashing process.
virtual bool hashingProcessPaused ( ) = 0 ;
2011-03-28 17:52:21 -04:00
2010-01-16 10:42:26 -05:00
virtual bool getShareDownloadDirectory ( ) = 0 ;
2011-03-08 15:05:36 -05:00
virtual bool shareDownloadDirectory ( bool share ) = 0 ;
2008-07-02 09:19:59 -04:00
2017-09-24 11:53:06 -04:00
virtual void setMaxShareDepth ( int depth ) = 0 ;
virtual int maxShareDepth ( ) const = 0 ;
virtual bool ignoreDuplicates ( ) = 0 ;
virtual void setIgnoreDuplicates ( bool ignore ) = 0 ;
2008-07-02 09:19:59 -04:00
} ;
# endif