mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
889a2b2433
Validated chunks are shared to other peers. Force check is now very simple since it just turns all chunks into "needs checking" mode and sums are asked to sources. Sources maintain a temporary cache of chunks. Since sums are requested sparsely, this should not affect the sources in terms of performance. We can still imagine precomputing and saving sha1 of chunks while hashing them. For backward compatibility reasons, the following has been setup *temporarily* in this version: - unvalidated chunks are still considered as already obtained, and are shared and saved - force check has been disabled - final file check is maintained - in case of file fail, the old checking mode will be used. All changes for next version are kept in the define 'USE_NEW_CHUNK_CHECKING_CODE' that will be made the default in a few weeks. At start, I expect most chunk to stya yellow during download, until most sources are able to provide chunk hashs. git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@5019 b45a01b8-16f6-495d-af2f-9b41ad6348cc
105 lines
3.6 KiB
C++
105 lines
3.6 KiB
C++
|
|
/*
|
|
* "$Id: rsdir.h,v 1.1 2007-02-19 20:08:30 rmf24 Exp $"
|
|
*
|
|
* RetroShare C++ Interface.
|
|
*
|
|
* Copyright 2004-2007 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 RSUTIL_DIRFNS_H
|
|
#define RSUTIL_DIRFNS_H
|
|
|
|
#include <string>
|
|
#include <list>
|
|
#include <stdint.h>
|
|
|
|
class RsThread;
|
|
|
|
#include <retroshare/rstypes.h>
|
|
|
|
namespace RsDirUtil {
|
|
|
|
std::string getTopDir(const std::string&);
|
|
std::string getRootDir(const std::string&);
|
|
std::string removeRootDir(const std::string& path);
|
|
std::string removeTopDir(const std::string& dir);
|
|
std::string removeRootDirs(const std::string& path, const std::string& root);
|
|
|
|
// Renames file from to file to. Files should be on the same file system.
|
|
// returns true if succeed, false otherwise.
|
|
bool renameFile(const std::string& from,const std::string& to) ;
|
|
//bool createBackup (const std::string& sFilename, unsigned int nCount = 5);
|
|
|
|
// returns the CRC32 of the data of length len
|
|
//
|
|
uint32_t rs_CRC32(const unsigned char *data,uint32_t len) ;
|
|
|
|
// Computes the CRC32 map of a complete file, with given size and chunk size.
|
|
//
|
|
bool crc32File(FILE *f,uint64_t file_size,uint32_t chunk_size,CRC32Map& map) ;
|
|
|
|
int breakupDirList(const std::string& path, std::list<std::string> &subdirs);
|
|
|
|
bool copyFile(const std::string& source,const std::string& dest);
|
|
bool checkFile(const std::string& filename);
|
|
bool checkDirectory(const std::string& dir);
|
|
bool checkCreateDirectory(const std::string& dir);
|
|
bool cleanupDirectory(const std::string& dir, const std::list<std::string> &keepFiles);
|
|
|
|
bool hashFile(const std::string& filepath, std::string &name, std::string &hash, uint64_t &size);
|
|
bool getFileHash(const std::string& filepath,std::string &hash, uint64_t &size, RsThread *thread = NULL);
|
|
|
|
Sha1CheckSum sha1sum(uint8_t *data,uint32_t size) ;
|
|
|
|
|
|
std::wstring getWideTopDir(std::wstring);
|
|
std::wstring getWideRootDir(std::wstring);
|
|
std::wstring removeWideRootDir(std::wstring path);
|
|
std::wstring removeWideTopDir(std::wstring dir);
|
|
std::wstring removeWideRootDirs(std::wstring path, std::wstring root);
|
|
|
|
// Renames file from to file to. Files should be on the same file system.
|
|
// returns true if succeed, false otherwise.
|
|
bool renameWideFile(const std::wstring& from,const std::wstring& to) ;
|
|
|
|
int breakupWideDirList(std::wstring path,
|
|
std::list<std::wstring> &subdirs);
|
|
|
|
bool checkWideDirectory(std::wstring dir);
|
|
bool checkWideCreateDirectory(std::wstring dir);
|
|
bool cleanupWideDirectory(std::wstring dir, std::list<std::wstring> keepFiles);
|
|
|
|
bool hashWideFile(std::wstring filepath,
|
|
std::wstring &name, std::string &hash, uint64_t &size);
|
|
|
|
bool getWideFileHash(std::wstring filepath,
|
|
std::string &hash, uint64_t &size);
|
|
|
|
FILE *rs_fopen(const char* filename, const char* mode);
|
|
|
|
std::string convertPathToUnix(std::string path);
|
|
std::string makePath(const std::string &path1, const std::string &path2);
|
|
}
|
|
|
|
|
|
#endif
|