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"
|
|
|
|
|
|
|
|
namespace libtorrent
|
|
|
|
{
|
2003-10-30 00:28:09 +01:00
|
|
|
namespace detail
|
|
|
|
{
|
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;
|
|
|
|
|
2005-03-05 00:45:16 +01:00
|
|
|
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
|
|
|
|
|
|
|
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
|
|
|
|
, std::string* error = 0);
|
2004-01-17 21:04:19 +01:00
|
|
|
|
2003-10-23 01:00:57 +02:00
|
|
|
struct file_allocation_failed: std::exception
|
|
|
|
{
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
|
2003-12-07 02:26:57 +01:00
|
|
|
class storage
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
storage(
|
|
|
|
const torrent_info& info
|
|
|
|
, const boost::filesystem::path& path);
|
|
|
|
|
2003-12-07 17:26:16 +01:00
|
|
|
void swap(storage&);
|
|
|
|
|
2004-01-25 19:18:36 +01:00
|
|
|
// may throw file_error if storage for slot does not exist
|
|
|
|
size_type read(char* buf, int slot, int offset, int size);
|
|
|
|
|
|
|
|
// may throw file_error if storage for slot hasn't been allocated
|
|
|
|
void write(const char* buf, int slot, int offset, int size);
|
2003-12-07 02:26:57 +01:00
|
|
|
|
2004-10-10 02:42:48 +02:00
|
|
|
bool move_storage(boost::filesystem::path save_path);
|
2004-07-18 02:39:58 +02:00
|
|
|
|
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.
|
2005-03-10 12:26:55 +01:00
|
|
|
void release_files();
|
2004-12-21 13:30:09 +01:00
|
|
|
|
2004-01-27 00:38:08 +01:00
|
|
|
#ifndef NDEBUG
|
|
|
|
// overwrites some slots with the
|
|
|
|
// contents of others
|
|
|
|
void storage::shuffle();
|
|
|
|
#endif
|
|
|
|
|
2003-12-07 02:26:57 +01:00
|
|
|
private:
|
2004-01-25 19:18:36 +01:00
|
|
|
class impl;
|
2004-04-14 14:14:28 +02:00
|
|
|
boost::shared_ptr<impl> m_pimpl;
|
2003-12-07 02:26:57 +01:00
|
|
|
};
|
|
|
|
|
2003-12-07 17:26:16 +01:00
|
|
|
class 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
|
2005-05-13 02:39:39 +02:00
|
|
|
, const boost::filesystem::path& path);
|
2003-12-07 02:26:57 +01:00
|
|
|
|
2004-01-04 13:54:38 +01:00
|
|
|
~piece_manager();
|
|
|
|
|
2003-12-07 06:53:04 +01:00
|
|
|
void check_pieces(
|
|
|
|
boost::mutex& mutex
|
2005-05-13 02:39:39 +02:00
|
|
|
, detail::piece_checker_data& data
|
|
|
|
, std::vector<bool>& pieces
|
|
|
|
, bool compact_mode);
|
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
|
|
|
|
2003-12-07 02:26:57 +01:00
|
|
|
void allocate_slots(int num_slots);
|
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
|
|
|
|
, const std::bitset<256>& bitmask);
|
|
|
|
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
|
|
|
|
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
|
|
|
|