mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-06 08:05:18 -04:00
- Removed old file indexing code.
- Switched file sizes from 32bits -> 64 bits so rs can handle large files. - combined Cache/Service Ids are now located in serialiser/rsserviceids.h git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@273 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
470ceaa73b
commit
07d33009b9
15 changed files with 24 additions and 1355 deletions
|
@ -23,6 +23,8 @@
|
|||
|
||||
#include "dbase/fimonitor.h"
|
||||
#include "util/rsdir.h"
|
||||
#include "serialiser/rsserviceids.h"
|
||||
|
||||
#include <iostream>
|
||||
#include <sstream>
|
||||
#include <iomanip>
|
||||
|
@ -37,7 +39,7 @@
|
|||
#define FIM_DEBUG 1
|
||||
|
||||
FileIndexMonitor::FileIndexMonitor(std::string cachedir, std::string pid)
|
||||
:CacheSource(CACHE_TYPE_FILE_INDEX, false, cachedir), fi(pid),
|
||||
:CacheSource(RS_SERVICE_TYPE_FILE_INDEX, false, cachedir), fi(pid),
|
||||
pendingDirs(false), pendingForceCacheWrite(false)
|
||||
|
||||
{
|
||||
|
@ -52,7 +54,7 @@ FileIndexMonitor::~FileIndexMonitor()
|
|||
}
|
||||
|
||||
bool FileIndexMonitor::findLocalFile(std::string hash,
|
||||
std::string &fullpath, uint32_t &size)
|
||||
std::string &fullpath, uint64_t &size)
|
||||
{
|
||||
std::list<FileEntry *> results;
|
||||
bool ok = false;
|
||||
|
@ -494,7 +496,7 @@ void FileIndexMonitor::updateCycle()
|
|||
#endif
|
||||
|
||||
std::string calchash;
|
||||
uint32_t size;
|
||||
uint64_t size;
|
||||
|
||||
fi.saveIndex(fname, calchash, size);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue