2016-07-24 23:48:22 -04:00
|
|
|
#pragma once
|
|
|
|
|
2016-07-18 21:52:44 -04:00
|
|
|
#include <string>
|
2016-07-20 16:10:51 -04:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <list>
|
|
|
|
|
|
|
|
#include "retroshare/rsids.h"
|
|
|
|
#include "retroshare/rsfiles.h"
|
2016-07-18 21:52:44 -04:00
|
|
|
|
2016-07-31 09:59:58 -04:00
|
|
|
#define NOT_IMPLEMENTED() { std::cerr << __PRETTY_FUNCTION__ << ": not yet implemented." << std::endl; }
|
|
|
|
|
2016-07-21 00:16:12 -04:00
|
|
|
class InternalFileHierarchyStorage ;
|
|
|
|
|
2016-07-18 21:52:44 -04:00
|
|
|
class DirectoryStorage
|
|
|
|
{
|
|
|
|
public:
|
2016-08-11 08:07:45 -04:00
|
|
|
DirectoryStorage(const std::string& local_file_name,const RsPeerId& pid) ;
|
2016-07-20 16:10:51 -04:00
|
|
|
virtual ~DirectoryStorage() {}
|
|
|
|
|
2016-08-11 08:07:45 -04:00
|
|
|
typedef int32_t EntryIndex ;
|
2016-07-24 23:48:22 -04:00
|
|
|
static const EntryIndex NO_INDEX = 0xffffffff;
|
2016-07-18 21:52:44 -04:00
|
|
|
|
|
|
|
void save() const ;
|
|
|
|
|
2016-07-31 09:59:58 -04:00
|
|
|
virtual int searchTerms(const std::list<std::string>& terms, std::list<EntryIndex> &results) const { NOT_IMPLEMENTED() ; return 0;}
|
2016-08-20 10:23:11 -04:00
|
|
|
virtual int searchHash(const RsFileHash& hash, std::list<EntryIndex> &results) const ;
|
2016-07-31 09:59:58 -04:00
|
|
|
virtual int searchBoolExp(Expression * exp, std::list<EntryIndex> &results) const { NOT_IMPLEMENTED() ; return 0; }
|
2016-07-18 21:52:44 -04:00
|
|
|
|
2016-08-20 10:23:11 -04:00
|
|
|
bool getUpdateTS(EntryIndex index,time_t& recurs_max_modf_TS,time_t& last_update_TS) ;
|
2016-08-11 08:07:45 -04:00
|
|
|
uint32_t getEntryType(const EntryIndex& indx) ; // returns DIR_TYPE_*, not the internal directory storage stuff.
|
2016-08-16 17:44:48 -04:00
|
|
|
virtual bool extractData(const EntryIndex& indx,DirDetails& d);
|
2016-07-18 21:52:44 -04:00
|
|
|
|
|
|
|
// This class allows to abstractly browse the stored directory hierarchy in a depth-first manner.
|
|
|
|
// It gives access to sub-files and sub-directories below.
|
|
|
|
//
|
|
|
|
class DirIterator
|
|
|
|
{
|
|
|
|
public:
|
2016-07-21 00:16:12 -04:00
|
|
|
DirIterator(const DirIterator& d) ;
|
2016-07-24 23:48:22 -04:00
|
|
|
DirIterator(DirectoryStorage *d,EntryIndex i) ;
|
2016-07-18 21:52:44 -04:00
|
|
|
|
|
|
|
DirIterator& operator++() ;
|
2016-07-24 23:48:22 -04:00
|
|
|
EntryIndex operator*() const ;
|
2016-07-18 21:52:44 -04:00
|
|
|
|
2016-07-23 22:14:43 -04:00
|
|
|
operator bool() const ; // used in for loops. Returns true when the iterator is valid.
|
|
|
|
|
|
|
|
// info about the directory that is pointed by the iterator
|
|
|
|
|
2016-08-11 08:07:45 -04:00
|
|
|
std::string name() const ;
|
2016-08-20 10:23:11 -04:00
|
|
|
time_t last_modif_time() const ; // last time a file in this directory or in the directories below has been modified.
|
|
|
|
time_t last_update_time() const ; // last time this directory was updated
|
2016-07-24 23:48:22 -04:00
|
|
|
private:
|
|
|
|
EntryIndex mParentIndex ; // index of the parent dir.
|
|
|
|
uint32_t mDirTabIndex ; // index in the vector of subdirs.
|
|
|
|
InternalFileHierarchyStorage *mStorage ;
|
|
|
|
|
|
|
|
friend class DirectoryStorage ;
|
2016-07-23 22:14:43 -04:00
|
|
|
};
|
2016-07-18 21:52:44 -04:00
|
|
|
class FileIterator
|
|
|
|
{
|
|
|
|
public:
|
2016-07-24 23:48:22 -04:00
|
|
|
FileIterator(DirIterator& d); // crawls all files in specified directory
|
|
|
|
FileIterator(DirectoryStorage *d,EntryIndex e); // crawls all files in specified directory
|
2016-07-18 21:52:44 -04:00
|
|
|
|
|
|
|
FileIterator& operator++() ;
|
2016-07-24 23:48:22 -04:00
|
|
|
EntryIndex operator*() const ; // current file entry
|
2016-07-18 21:52:44 -04:00
|
|
|
|
2016-07-23 22:14:43 -04:00
|
|
|
operator bool() const ; // used in for loops. Returns true when the iterator is valid.
|
|
|
|
|
|
|
|
// info about the file that is pointed by the iterator
|
|
|
|
|
|
|
|
std::string name() const ;
|
|
|
|
uint64_t size() const ;
|
|
|
|
RsFileHash hash() const ;
|
|
|
|
time_t modtime() const ;
|
2016-07-24 23:48:22 -04:00
|
|
|
|
|
|
|
private:
|
|
|
|
EntryIndex mParentIndex ; // index of the parent dir.
|
|
|
|
uint32_t mFileTabIndex ; // index in the vector of subdirs.
|
|
|
|
InternalFileHierarchyStorage *mStorage ;
|
2016-07-23 22:14:43 -04:00
|
|
|
};
|
2016-07-18 21:52:44 -04:00
|
|
|
|
2016-07-28 03:29:15 -04:00
|
|
|
struct FileTS
|
|
|
|
{
|
|
|
|
uint64_t size ;
|
|
|
|
time_t modtime;
|
|
|
|
};
|
|
|
|
|
2016-07-27 15:22:59 -04:00
|
|
|
EntryIndex root() const ; // returns the index of the root directory entry.
|
2016-08-11 08:07:45 -04:00
|
|
|
const RsPeerId& peerId() const { return mPeerId ; }
|
|
|
|
int parentRow(EntryIndex e) const ;
|
2016-07-21 00:16:12 -04:00
|
|
|
|
2016-07-27 15:22:59 -04:00
|
|
|
bool updateSubDirectoryList(const EntryIndex& indx,const std::set<std::string>& subdirs) ;
|
2016-07-28 03:29:15 -04:00
|
|
|
bool updateSubFilesList(const EntryIndex& indx, const std::map<std::string, FileTS> &subfiles, std::map<std::string, FileTS> &new_files) ;
|
2016-07-27 15:22:59 -04:00
|
|
|
bool removeDirectory(const EntryIndex& indx) ;
|
2016-07-23 22:14:43 -04:00
|
|
|
|
2016-07-27 15:22:59 -04:00
|
|
|
bool updateFile(const EntryIndex& index,const RsFileHash& hash, const std::string& fname, uint64_t size, time_t modf_time) ;
|
|
|
|
bool updateHash(const EntryIndex& index,const RsFileHash& hash);
|
2016-07-24 23:48:22 -04:00
|
|
|
|
2016-07-27 18:48:28 -04:00
|
|
|
void print();
|
2016-07-24 23:48:22 -04:00
|
|
|
void cleanup();
|
|
|
|
|
2016-07-23 22:14:43 -04:00
|
|
|
private:
|
2016-07-18 21:52:44 -04:00
|
|
|
void load(const std::string& local_file_name) ;
|
|
|
|
void save(const std::string& local_file_name) ;
|
|
|
|
|
2016-07-21 00:16:12 -04:00
|
|
|
void loadNextTag(const unsigned char *data, uint32_t& offset, uint8_t& entry_tag, uint32_t& entry_size) ;
|
|
|
|
void saveNextTag(unsigned char *data,uint32_t& offset,uint8_t entry_tag,uint32_t entry_size) ;
|
|
|
|
|
|
|
|
// storage of internal structure. Totally hidden from the outside. EntryIndex is simply the index of the entry in the vector.
|
|
|
|
|
2016-07-27 15:22:59 -04:00
|
|
|
std::string mFileName;
|
2016-08-11 08:07:45 -04:00
|
|
|
RsPeerId mPeerId;
|
|
|
|
|
2016-07-27 15:22:59 -04:00
|
|
|
protected:
|
2016-08-11 08:07:45 -04:00
|
|
|
mutable RsMutex mDirStorageMtx ;
|
|
|
|
|
|
|
|
InternalFileHierarchyStorage *mFileHierarchy ;
|
2016-07-18 21:52:44 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
class RemoteDirectoryStorage: public DirectoryStorage
|
|
|
|
{
|
2016-07-20 16:10:51 -04:00
|
|
|
public:
|
2016-08-11 08:07:45 -04:00
|
|
|
RemoteDirectoryStorage(const RsPeerId& pid,const std::string& fname) : DirectoryStorage(fname,pid) {}
|
2016-07-20 16:10:51 -04:00
|
|
|
virtual ~RemoteDirectoryStorage() {}
|
2016-07-18 21:52:44 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
class LocalDirectoryStorage: public DirectoryStorage
|
|
|
|
{
|
2016-07-20 16:10:51 -04:00
|
|
|
public:
|
2016-08-11 08:07:45 -04:00
|
|
|
LocalDirectoryStorage(const std::string& fname,const RsPeerId& own_id) : DirectoryStorage(fname,own_id) {}
|
2016-07-20 16:10:51 -04:00
|
|
|
virtual ~LocalDirectoryStorage() {}
|
2016-07-21 00:16:12 -04:00
|
|
|
|
|
|
|
void setSharedDirectoryList(const std::list<SharedDirInfo>& lst) ;
|
|
|
|
void getSharedDirectoryList(std::list<SharedDirInfo>& lst) ;
|
|
|
|
|
2016-07-31 09:59:58 -04:00
|
|
|
void updateShareFlags(const SharedDirInfo& info) ;
|
|
|
|
bool convertSharedFilePath(const std::string& path_with_virtual_name,std::string& fullpath) ;
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* \brief getFileInfo Converts an index info a full file info structure.
|
|
|
|
* \param i index in the directory structure
|
|
|
|
* \param info structure to be filled in
|
|
|
|
* \return false if the file does not exist, or is a directory,...
|
|
|
|
*/
|
|
|
|
bool getFileInfo(DirectoryStorage::EntryIndex i,FileInfo& info) ;
|
2016-08-11 08:07:45 -04:00
|
|
|
|
|
|
|
virtual bool extractData(const EntryIndex& indx,DirDetails& d) ;
|
|
|
|
|
2016-07-21 00:16:12 -04:00
|
|
|
private:
|
2016-07-31 09:59:58 -04:00
|
|
|
std::string locked_findRealRootFromVirtualFilename(const std::string& virtual_rootdir) const;
|
2016-07-21 00:16:12 -04:00
|
|
|
|
2016-07-31 09:59:58 -04:00
|
|
|
std::map<std::string,SharedDirInfo> mLocalDirs ; // map is better for search. it->first=it->second.filename
|
2016-07-18 21:52:44 -04:00
|
|
|
};
|
|
|
|
|
2016-07-21 00:16:12 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|