2003-10-23 01:00:57 +02:00
|
|
|
/*
|
|
|
|
|
|
|
|
Copyright (c) 2003, Arvid Norberg
|
|
|
|
All rights reserved.
|
|
|
|
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
|
|
modification, are permitted provided that the following conditions
|
|
|
|
are met:
|
|
|
|
|
|
|
|
* Redistributions of source code must retain the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer.
|
|
|
|
* Redistributions in binary form must reproduce the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer in
|
|
|
|
the documentation and/or other materials provided with the distribution.
|
|
|
|
* Neither the name of the author nor the names of its
|
|
|
|
contributors may be used to endorse or promote products derived
|
|
|
|
from this software without specific prior written permission.
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
|
|
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef TORRENT_STORAGE_HPP_INCLUDE
|
|
|
|
#define TORRENT_STORAGE_HPP_INCLUDE
|
2003-12-10 01:39:47 +01:00
|
|
|
|
2003-10-23 01:00:57 +02:00
|
|
|
#include <vector>
|
2004-01-24 18:14:03 +01:00
|
|
|
#include <bitset>
|
2003-10-23 01:00:57 +02:00
|
|
|
|
2004-01-25 19:18:36 +01:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
#pragma warning(push, 1)
|
|
|
|
#endif
|
|
|
|
|
2003-10-23 01:00:57 +02:00
|
|
|
#include <boost/limits.hpp>
|
|
|
|
#include <boost/filesystem/path.hpp>
|
2003-10-31 05:02:51 +01:00
|
|
|
#include <boost/thread.hpp>
|
2004-04-14 14:14:28 +02:00
|
|
|
#include <boost/shared_ptr.hpp>
|
2003-10-23 01:00:57 +02:00
|
|
|
|
2004-01-25 19:18:36 +01:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
#pragma warning(pop)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2003-10-23 01:00:57 +02:00
|
|
|
#include "libtorrent/torrent_info.hpp"
|
2007-05-08 13:13:13 +02:00
|
|
|
#include "libtorrent/piece_picker.hpp"
|
2005-11-01 19:30:39 +01:00
|
|
|
#include "libtorrent/config.hpp"
|
2003-10-23 01:00:57 +02:00
|
|
|
|
|
|
|
namespace libtorrent
|
|
|
|
{
|
2006-10-11 16:02:21 +02:00
|
|
|
namespace aux
|
2003-10-30 00:28:09 +01:00
|
|
|
{
|
2004-01-05 00:51:54 +01:00
|
|
|
struct piece_checker_data;
|
2003-10-30 00:28:09 +01:00
|
|
|
}
|
2004-01-17 21:04:19 +01:00
|
|
|
|
2003-10-23 01:00:57 +02:00
|
|
|
class session;
|
2006-11-15 22:39:58 +01:00
|
|
|
struct file_pool;
|
2003-10-23 01:00:57 +02:00
|
|
|
|
2006-02-18 01:21:13 +01:00
|
|
|
#if defined(_WIN32) && defined(UNICODE)
|
2005-11-01 19:30:39 +01:00
|
|
|
|
|
|
|
TORRENT_EXPORT std::wstring safe_convert(std::string const& s);
|
2006-02-18 01:21:13 +01:00
|
|
|
|
|
|
|
#endif
|
2005-11-01 19:30:39 +01:00
|
|
|
|
|
|
|
TORRENT_EXPORT std::vector<std::pair<size_type, std::time_t> > get_filesizes(
|
2004-10-10 02:42:48 +02:00
|
|
|
torrent_info const& t
|
|
|
|
, boost::filesystem::path p);
|
2004-01-17 21:04:19 +01:00
|
|
|
|
2005-11-01 19:30:39 +01:00
|
|
|
TORRENT_EXPORT bool match_filesizes(
|
2004-10-10 02:42:48 +02:00
|
|
|
torrent_info const& t
|
|
|
|
, boost::filesystem::path p
|
2005-06-16 17:41:04 +02:00
|
|
|
, std::vector<std::pair<size_type, std::time_t> > const& sizes
|
2007-05-24 20:53:55 +02:00
|
|
|
, bool compact_mode
|
2005-06-16 17:41:04 +02:00
|
|
|
, std::string* error = 0);
|
2004-01-17 21:04:19 +01:00
|
|
|
|
2005-11-01 19:30:39 +01:00
|
|
|
struct TORRENT_EXPORT file_allocation_failed: std::exception
|
2003-10-23 01:00:57 +02:00
|
|
|
{
|
|
|
|
file_allocation_failed(const char* error_msg): m_msg(error_msg) {}
|
|
|
|
virtual const char* what() const throw() { return m_msg.c_str(); }
|
2004-01-13 04:08:59 +01:00
|
|
|
virtual ~file_allocation_failed() throw() {}
|
2003-10-23 01:00:57 +02:00
|
|
|
std::string m_msg;
|
|
|
|
};
|
|
|
|
|
2007-03-16 06:29:23 +01:00
|
|
|
struct TORRENT_EXPORT storage_interface
|
2003-12-07 02:26:57 +01:00
|
|
|
{
|
2007-04-19 05:06:15 +02:00
|
|
|
// create directories and set file sizes
|
2007-04-19 05:32:20 +02:00
|
|
|
// if allocate_files is true.
|
|
|
|
// allocate_files is true if allocation mode
|
|
|
|
// is set to full and sparse files are supported
|
|
|
|
virtual void initialize(bool allocate_files) = 0;
|
2007-04-19 05:06:15 +02:00
|
|
|
|
2004-01-25 19:18:36 +01:00
|
|
|
// may throw file_error if storage for slot does not exist
|
2007-03-16 06:29:23 +01:00
|
|
|
virtual size_type read(char* buf, int slot, int offset, int size) = 0;
|
2004-01-25 19:18:36 +01:00
|
|
|
|
|
|
|
// may throw file_error if storage for slot hasn't been allocated
|
2007-03-16 06:29:23 +01:00
|
|
|
virtual void write(const char* buf, int slot, int offset, int size) = 0;
|
2003-12-07 02:26:57 +01:00
|
|
|
|
2007-03-16 06:29:23 +01:00
|
|
|
virtual bool move_storage(boost::filesystem::path save_path) = 0;
|
2004-07-18 02:39:58 +02:00
|
|
|
|
2007-05-24 20:53:55 +02:00
|
|
|
// verify storage dependent fast resume entries
|
2007-03-28 01:49:05 +02:00
|
|
|
virtual bool verify_resume_data(entry& rd, std::string& error) = 0;
|
|
|
|
|
2007-05-24 20:53:55 +02:00
|
|
|
// write storage dependent fast resume entries
|
|
|
|
virtual void write_resume_data(entry& rd) const = 0;
|
|
|
|
|
2007-05-16 03:16:08 +02:00
|
|
|
// moves (or copies) the content in src_slot to dst_slot
|
2007-04-30 03:06:29 +02:00
|
|
|
virtual void move_slot(int src_slot, int dst_slot) = 0;
|
|
|
|
|
2007-05-16 03:16:08 +02:00
|
|
|
// swaps the data in slot1 and slot2
|
|
|
|
virtual void swap_slots(int slot1, int slot2) = 0;
|
|
|
|
|
|
|
|
// swaps the puts the data in slot1 in slot2, the data in slot2
|
|
|
|
// in slot3 and the data in slot3 in slot1
|
|
|
|
virtual void swap_slots3(int slot1, int slot2, int slot3) = 0;
|
|
|
|
|
2004-12-21 13:30:09 +01:00
|
|
|
// this will close all open files that are opened for
|
|
|
|
// writing. This is called when a torrent has finished
|
|
|
|
// downloading.
|
2007-03-16 06:29:23 +01:00
|
|
|
virtual void release_files() = 0;
|
|
|
|
virtual ~storage_interface() {}
|
|
|
|
};
|
2004-12-21 13:30:09 +01:00
|
|
|
|
2007-03-16 06:29:23 +01:00
|
|
|
typedef storage_interface* (&storage_constructor_type)(
|
|
|
|
torrent_info const&, boost::filesystem::path const&
|
|
|
|
, file_pool&);
|
2004-01-27 00:38:08 +01:00
|
|
|
|
2007-03-16 06:29:23 +01:00
|
|
|
TORRENT_EXPORT storage_interface* default_storage_constructor(torrent_info const& ti
|
|
|
|
, boost::filesystem::path const& path, file_pool& fp);
|
2003-12-07 02:26:57 +01:00
|
|
|
|
2007-04-18 02:36:09 +02:00
|
|
|
// returns true if the filesystem the path relies on supports
|
|
|
|
// sparse files or automatic zero filling of files.
|
|
|
|
TORRENT_EXPORT bool supports_sparse_files(boost::filesystem::path const& p);
|
|
|
|
|
2005-11-01 19:30:39 +01:00
|
|
|
class TORRENT_EXPORT piece_manager : boost::noncopyable
|
2003-11-26 15:11:25 +01:00
|
|
|
{
|
|
|
|
public:
|
2003-12-07 02:26:57 +01:00
|
|
|
|
|
|
|
piece_manager(
|
|
|
|
const torrent_info& info
|
2006-11-14 16:53:38 +01:00
|
|
|
, const boost::filesystem::path& path
|
2007-03-16 06:29:23 +01:00
|
|
|
, file_pool& fp
|
|
|
|
, storage_constructor_type sc);
|
2003-12-07 02:26:57 +01:00
|
|
|
|
2004-01-04 13:54:38 +01:00
|
|
|
~piece_manager();
|
|
|
|
|
2006-10-11 16:02:21 +02:00
|
|
|
bool check_fastresume(aux::piece_checker_data& d
|
2006-04-25 23:04:48 +02:00
|
|
|
, std::vector<bool>& pieces, int& num_pieces, bool compact_mode);
|
|
|
|
std::pair<bool, float> check_files(std::vector<bool>& pieces
|
2007-03-17 18:15:16 +01:00
|
|
|
, int& num_pieces, boost::recursive_mutex& mutex);
|
2003-12-07 02:26:57 +01:00
|
|
|
|
2005-03-10 12:26:55 +01:00
|
|
|
void release_files();
|
2004-12-21 13:30:09 +01:00
|
|
|
|
2007-05-24 20:53:55 +02:00
|
|
|
void write_resume_data(entry& rd) const;
|
2007-03-28 01:49:05 +02:00
|
|
|
bool verify_resume_data(entry& rd, std::string& error);
|
|
|
|
|
2005-10-17 15:45:53 +02:00
|
|
|
bool is_allocating() const;
|
2007-04-18 21:12:30 +02:00
|
|
|
bool allocate_slots(int num_slots, bool abort_on_disk = false);
|
2004-01-12 04:05:10 +01:00
|
|
|
void mark_failed(int index);
|
2003-12-07 02:26:57 +01:00
|
|
|
|
2004-01-24 18:14:03 +01:00
|
|
|
unsigned long piece_crc(
|
|
|
|
int slot_index
|
|
|
|
, int block_size
|
2007-05-08 13:13:13 +02:00
|
|
|
, piece_picker::block_info const* bi);
|
2004-01-24 18:14:03 +01:00
|
|
|
int slot_for_piece(int piece_index) const;
|
|
|
|
|
2004-01-25 19:18:36 +01:00
|
|
|
size_type read(
|
|
|
|
char* buf
|
|
|
|
, int piece_index
|
|
|
|
, int offset
|
|
|
|
, int size);
|
|
|
|
|
|
|
|
void write(
|
|
|
|
const char* buf
|
|
|
|
, int piece_index
|
|
|
|
, int offset
|
|
|
|
, int size);
|
2003-12-07 06:53:04 +01:00
|
|
|
|
2004-07-18 02:39:58 +02:00
|
|
|
boost::filesystem::path const& save_path() const;
|
|
|
|
bool move_storage(boost::filesystem::path const&);
|
2003-11-26 15:11:25 +01:00
|
|
|
|
2003-12-27 02:34:50 +01:00
|
|
|
// fills the vector that maps all allocated
|
|
|
|
// slots to the piece that is stored (or
|
2004-01-02 21:46:24 +01:00
|
|
|
// partially stored) there. -2 is the index
|
|
|
|
// of unassigned pieces and -1 is unallocated
|
2003-12-27 02:34:50 +01:00
|
|
|
void export_piece_map(std::vector<int>& pieces) const;
|
2003-12-25 13:11:31 +01:00
|
|
|
|
2007-04-17 23:54:40 +02:00
|
|
|
bool compact_allocation() const;
|
|
|
|
|
2003-11-26 15:11:25 +01:00
|
|
|
private:
|
2004-01-25 19:18:36 +01:00
|
|
|
class impl;
|
2004-01-04 13:54:38 +01:00
|
|
|
std::auto_ptr<impl> m_pimpl;
|
2003-10-23 01:00:57 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // TORRENT_STORAGE_HPP_INCLUDED
|
2003-11-26 15:11:25 +01:00
|
|
|
|