97 lines
3.2 KiB
C++
97 lines
3.2 KiB
C++
/*
|
|
|
|
Copyright (c) 2003-2016, 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_UTILS_HPP_INCLUDE
|
|
#define TORRENT_STORAGE_UTILS_HPP_INCLUDE
|
|
|
|
#include <cstdint>
|
|
|
|
#include "libtorrent/config.hpp"
|
|
#include "libtorrent/span.hpp"
|
|
#include "libtorrent/units.hpp"
|
|
#include "libtorrent/storage_defs.hpp" // for status_t
|
|
|
|
#ifndef TORRENT_WINDOWS
|
|
#include <sys/uio.h> // for iovec
|
|
#endif
|
|
|
|
namespace libtorrent
|
|
{
|
|
class file_storage;
|
|
struct part_file;
|
|
struct storage_error;
|
|
|
|
#ifdef TORRENT_WINDOWS
|
|
struct iovec_t
|
|
{
|
|
void* iov_base;
|
|
size_t iov_len;
|
|
};
|
|
#else
|
|
using iovec_t = ::iovec;
|
|
#endif
|
|
|
|
TORRENT_EXTRA_EXPORT int copy_bufs(span<iovec_t const> bufs, int bytes, span<iovec_t> target);
|
|
TORRENT_EXTRA_EXPORT span<iovec_t> advance_bufs(span<iovec_t> bufs, int bytes);
|
|
|
|
// this identifies a read or write operation so that readwritev() knows
|
|
// what to do when it's actually touching the file
|
|
struct fileop
|
|
{
|
|
virtual int file_op(file_index_t const file_index, std::int64_t const file_offset
|
|
, span<iovec_t const> bufs, storage_error& ec) = 0;
|
|
|
|
protected:
|
|
~fileop() {}
|
|
};
|
|
|
|
// this function is responsible for turning read and write operations in the
|
|
// torrent space (pieces) into read and write operations in the filesystem
|
|
// space (files on disk).
|
|
TORRENT_EXTRA_EXPORT int readwritev(file_storage const& files
|
|
, span<iovec_t const> bufs, piece_index_t piece, int offset
|
|
, fileop& op, storage_error& ec);
|
|
|
|
// moves the files in file_storage f from ``save_path`` to
|
|
// ``destination_save_path`` according to the rules defined by ``flags``.
|
|
// returns the status code and the new save_path.
|
|
TORRENT_EXTRA_EXPORT std::pair<status_t, std::string>
|
|
move_storage(file_storage const& f
|
|
, std::string const& save_path
|
|
, std::string const& destination_save_path
|
|
, part_file* pf
|
|
, int const flags, storage_error& ec);
|
|
}
|
|
|
|
#endif
|
|
|