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>
|
|
|
|
|
|
|
|
#include <boost/limits.hpp>
|
|
|
|
#include <boost/filesystem/path.hpp>
|
2003-10-31 05:02:51 +01:00
|
|
|
#include <boost/thread.hpp>
|
2003-10-23 01:00:57 +02:00
|
|
|
|
|
|
|
#include "libtorrent/entry.hpp"
|
|
|
|
#include "libtorrent/torrent_info.hpp"
|
2003-12-09 09:49:49 +01:00
|
|
|
#include "libtorrent/opaque_value_ptr.hpp"
|
2003-10-23 01:00:57 +02:00
|
|
|
|
|
|
|
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
|
|
|
}
|
2003-10-23 01:00:57 +02:00
|
|
|
class session;
|
|
|
|
|
|
|
|
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(); }
|
|
|
|
virtual ~file_allocation_failed() throw() {}
|
|
|
|
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&);
|
|
|
|
|
2003-12-07 02:26:57 +01:00
|
|
|
typedef entry::integer_type size_type;
|
2003-11-26 15:11:25 +01:00
|
|
|
|
2003-12-07 02:26:57 +01:00
|
|
|
size_type read(char* buf, int slot, size_type offset, size_type size);
|
|
|
|
void write(const char* buf, int slot, size_type offset, size_type size);
|
|
|
|
|
|
|
|
private:
|
2003-12-09 09:49:49 +01:00
|
|
|
struct impl;
|
|
|
|
opaque_value_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
|
|
|
typedef entry::integer_type size_type;
|
|
|
|
|
|
|
|
piece_manager(
|
|
|
|
const torrent_info& info
|
2003-12-09 09:55:03 +01: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
|
2003-12-09 09:55:03 +01:00
|
|
|
, detail::piece_checker_data& data
|
|
|
|
, std::vector<bool>& pieces);
|
2003-12-07 02:26:57 +01:00
|
|
|
|
|
|
|
void allocate_slots(int num_slots);
|
|
|
|
|
|
|
|
size_type read(char* buf, int piece_index, size_type offset, size_type size);
|
2003-12-07 06:53:04 +01:00
|
|
|
void write(const char* buf, int piece_index, size_type offset, size_type size);
|
|
|
|
|
2003-12-09 09:49:49 +01:00
|
|
|
const boost::filesystem::path& save_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:
|
2003-12-09 09:49:49 +01:00
|
|
|
struct 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
|
|
|
|