2014-07-06 21:18:00 +02:00
|
|
|
/*
|
|
|
|
|
2016-01-18 00:57:46 +01:00
|
|
|
Copyright (c) 2012-2016, Arvid Norberg
|
2014-07-06 21:18:00 +02:00
|
|
|
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_DISK_INTERFACE_HPP
|
|
|
|
#define TORRENT_DISK_INTERFACE_HPP
|
|
|
|
|
2015-03-12 06:20:12 +01:00
|
|
|
#include "libtorrent/bdecode.hpp"
|
2014-07-06 21:18:00 +02:00
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
namespace libtorrent
|
|
|
|
{
|
|
|
|
struct disk_io_job;
|
2016-11-13 03:45:30 +01:00
|
|
|
struct storage_interface;
|
2014-07-06 21:18:00 +02:00
|
|
|
struct peer_request;
|
|
|
|
struct disk_observer;
|
|
|
|
struct file_pool;
|
|
|
|
struct add_torrent_params;
|
2015-09-18 06:23:45 +02:00
|
|
|
struct cache_status;
|
2014-07-06 21:18:00 +02:00
|
|
|
|
2015-11-19 01:51:17 +01:00
|
|
|
struct TORRENT_EXTRA_EXPORT disk_interface
|
2014-07-06 21:18:00 +02:00
|
|
|
{
|
2016-11-12 04:01:18 +01:00
|
|
|
enum return_t
|
|
|
|
{
|
|
|
|
// return values from check_fastresume, and move_storage
|
|
|
|
no_error = 0,
|
|
|
|
fatal_disk_error = -1,
|
|
|
|
need_full_check = -2,
|
|
|
|
disk_check_aborted = -3,
|
|
|
|
file_exist = -4
|
|
|
|
};
|
|
|
|
|
2016-11-13 03:45:30 +01:00
|
|
|
virtual void async_read(storage_interface* storage, peer_request const& r
|
2016-11-21 05:58:48 +01:00
|
|
|
, std::function<void(aux::block_cache_reference ref, char* block
|
|
|
|
, int flags, storage_error const& se)> handler, void* requester, int flags = 0) = 0;
|
2016-11-13 03:45:30 +01:00
|
|
|
virtual void async_write(storage_interface* storage, peer_request const& r
|
2016-06-16 14:24:41 +02:00
|
|
|
, disk_buffer_holder buffer
|
2016-11-21 05:58:48 +01:00
|
|
|
, std::function<void(storage_error const&)> handler
|
2014-07-06 21:18:00 +02:00
|
|
|
, int flags = 0) = 0;
|
2016-11-13 03:45:30 +01:00
|
|
|
virtual void async_hash(storage_interface* storage, int piece, int flags
|
2016-11-21 05:58:48 +01:00
|
|
|
, std::function<void(int, int, sha1_hash const&, storage_error const&)> handler, void* requester) = 0;
|
2016-11-13 03:45:30 +01:00
|
|
|
virtual void async_move_storage(storage_interface* storage, std::string const& p, int flags
|
2016-08-13 03:31:55 +02:00
|
|
|
, std::function<void(disk_io_job const*)> handler) = 0;
|
2016-11-13 03:45:30 +01:00
|
|
|
virtual void async_release_files(storage_interface* storage
|
2016-08-13 03:31:55 +02:00
|
|
|
, std::function<void(disk_io_job const*)> handler
|
|
|
|
= std::function<void(disk_io_job const*)>()) = 0;
|
2016-11-13 03:45:30 +01:00
|
|
|
virtual void async_check_files(storage_interface* storage
|
2016-02-15 00:17:32 +01:00
|
|
|
, add_torrent_params const* resume_data
|
2015-08-20 01:33:20 +02:00
|
|
|
, std::vector<std::string>& links
|
2016-08-13 03:31:55 +02:00
|
|
|
, std::function<void(disk_io_job const*)> handler) = 0;
|
2016-11-13 03:45:30 +01:00
|
|
|
virtual void async_flush_piece(storage_interface* storage, int piece
|
2016-08-13 03:31:55 +02:00
|
|
|
, std::function<void(disk_io_job const*)> handler
|
|
|
|
= std::function<void(disk_io_job const*)>()) = 0;
|
2016-11-13 03:45:30 +01:00
|
|
|
virtual void async_stop_torrent(storage_interface* storage
|
2016-08-13 03:31:55 +02:00
|
|
|
, std::function<void(disk_io_job const*)> handler)= 0;
|
2016-11-13 03:45:30 +01:00
|
|
|
virtual void async_rename_file(storage_interface* storage, int index, std::string const& name
|
2016-08-13 03:31:55 +02:00
|
|
|
, std::function<void(disk_io_job const*)> handler) = 0;
|
2016-11-13 03:45:30 +01:00
|
|
|
virtual void async_delete_files(storage_interface* storage, int options
|
2016-08-13 03:31:55 +02:00
|
|
|
, std::function<void(disk_io_job const*)> handler) = 0;
|
2016-11-13 03:45:30 +01:00
|
|
|
virtual void async_set_file_priority(storage_interface* storage
|
2016-06-18 20:01:38 +02:00
|
|
|
, std::vector<std::uint8_t> const& prio
|
2016-08-13 03:31:55 +02:00
|
|
|
, std::function<void(disk_io_job const*)> handler) = 0;
|
2014-07-06 21:18:00 +02:00
|
|
|
|
2016-11-13 03:45:30 +01:00
|
|
|
virtual void async_clear_piece(storage_interface* storage, int index
|
2016-08-13 03:31:55 +02:00
|
|
|
, std::function<void(disk_io_job const*)> handler) = 0;
|
2016-11-13 03:45:30 +01:00
|
|
|
virtual void clear_piece(storage_interface* storage, int index) = 0;
|
2014-07-06 21:18:00 +02:00
|
|
|
|
|
|
|
virtual void update_stats_counters(counters& c) const = 0;
|
|
|
|
virtual void get_cache_info(cache_status* ret, bool no_pieces = true
|
2016-11-13 03:45:30 +01:00
|
|
|
, storage_interface const* storage = 0) const = 0;
|
2014-07-06 21:18:00 +02:00
|
|
|
|
|
|
|
virtual file_pool& files() = 0;
|
|
|
|
|
2014-07-19 10:20:20 +02:00
|
|
|
#if TORRENT_USE_ASSERTS
|
2014-07-06 21:18:00 +02:00
|
|
|
virtual bool is_disk_buffer(char* buffer) const = 0;
|
|
|
|
#endif
|
2015-04-19 08:28:21 +02:00
|
|
|
protected:
|
|
|
|
~disk_interface() {}
|
2014-07-06 21:18:00 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|