2004-01-16 00:57:11 +01:00
|
|
|
/*
|
|
|
|
|
2014-02-23 20:12:25 +01:00
|
|
|
Copyright (c) 2003-2014, Arvid Norberg
|
2004-01-16 00:57:11 +01: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_FILE_HPP_INCLUDED
|
|
|
|
#define TORRENT_FILE_HPP_INCLUDED
|
|
|
|
|
|
|
|
#include <memory>
|
2008-07-01 01:14:31 +02:00
|
|
|
#include <string>
|
2004-01-16 00:57:11 +01:00
|
|
|
|
2015-04-18 04:33:39 +02:00
|
|
|
#include "libtorrent/config.hpp"
|
|
|
|
|
|
|
|
#include "aux_/disable_warnings_push.hpp"
|
2004-01-25 19:18:36 +01:00
|
|
|
|
2004-01-16 00:57:11 +01:00
|
|
|
#include <boost/noncopyable.hpp>
|
2015-01-06 09:08:49 +01:00
|
|
|
#include <boost/smart_ptr.hpp>
|
2015-04-18 04:33:39 +02:00
|
|
|
#include <boost/function.hpp>
|
2004-01-16 00:57:11 +01:00
|
|
|
|
2008-10-19 07:03:17 +02:00
|
|
|
#ifdef TORRENT_WINDOWS
|
|
|
|
// windows part
|
2009-06-23 19:52:05 +02:00
|
|
|
#ifndef WIN32_LEAN_AND_MEAN
|
2009-05-28 07:10:13 +02:00
|
|
|
#define WIN32_LEAN_AND_MEAN
|
2009-06-23 19:52:05 +02:00
|
|
|
#endif
|
2009-11-26 17:25:39 +01:00
|
|
|
#include <windows.h>
|
2008-10-19 07:03:17 +02:00
|
|
|
#include <winioctl.h>
|
2009-10-26 02:29:39 +01:00
|
|
|
#include <sys/types.h>
|
2008-10-19 07:03:17 +02:00
|
|
|
#else
|
|
|
|
// posix part
|
|
|
|
#define _FILE_OFFSET_BITS 64
|
2009-01-11 03:02:34 +01:00
|
|
|
|
|
|
|
#ifndef _GNU_SOURCE
|
|
|
|
#define _GNU_SOURCE
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef _XOPEN_SOURCE
|
|
|
|
#define _XOPEN_SOURCE 600
|
|
|
|
#endif
|
|
|
|
|
2008-10-19 07:03:17 +02:00
|
|
|
#include <unistd.h>
|
2009-01-01 02:47:57 +01:00
|
|
|
#include <sys/uio.h>
|
2008-10-19 07:03:17 +02:00
|
|
|
#include <fcntl.h>
|
|
|
|
#include <sys/types.h>
|
2009-10-26 02:29:39 +01:00
|
|
|
#include <dirent.h> // for DIR
|
2010-09-07 05:37:33 +02:00
|
|
|
|
|
|
|
#undef _FILE_OFFSET_BITS
|
|
|
|
|
2008-10-19 07:03:17 +02:00
|
|
|
#endif
|
2009-10-26 02:29:39 +01:00
|
|
|
|
2015-04-18 04:33:39 +02:00
|
|
|
#include "aux_/disable_warnings_pop.hpp"
|
|
|
|
|
|
|
|
#include "libtorrent/error_code.hpp"
|
|
|
|
#include "libtorrent/assert.hpp"
|
|
|
|
#include "libtorrent/time.hpp"
|
2014-07-06 21:18:00 +02:00
|
|
|
|
2004-01-16 00:57:11 +01:00
|
|
|
namespace libtorrent
|
|
|
|
{
|
2014-07-06 21:18:00 +02:00
|
|
|
#ifdef TORRENT_WINDOWS
|
|
|
|
typedef HANDLE handle_type;
|
|
|
|
#else
|
|
|
|
typedef int handle_type;
|
|
|
|
#endif
|
|
|
|
|
2009-10-26 02:29:39 +01:00
|
|
|
struct file_status
|
|
|
|
{
|
2014-12-03 05:32:50 +01:00
|
|
|
boost::int64_t file_size;
|
2014-02-15 03:45:04 +01:00
|
|
|
boost::uint64_t atime;
|
|
|
|
boost::uint64_t mtime;
|
|
|
|
boost::uint64_t ctime;
|
2009-10-26 02:29:39 +01:00
|
|
|
enum {
|
|
|
|
#if defined TORRENT_WINDOWS
|
2012-08-21 23:54:07 +02:00
|
|
|
fifo = 0x1000, // named pipe (fifo)
|
|
|
|
character_special = 0x2000, // character special
|
|
|
|
directory = 0x4000, // directory
|
|
|
|
regular_file = 0x8000 // regular
|
2009-10-26 02:29:39 +01:00
|
|
|
#else
|
2012-08-21 23:54:07 +02:00
|
|
|
fifo = 0010000, // named pipe (fifo)
|
|
|
|
character_special = 0020000, // character special
|
|
|
|
directory = 0040000, // directory
|
|
|
|
block_special = 0060000, // block special
|
|
|
|
regular_file = 0100000, // regular
|
|
|
|
link = 0120000, // symbolic link
|
|
|
|
socket = 0140000 // socket
|
2009-10-26 02:29:39 +01:00
|
|
|
#endif
|
|
|
|
} modes_t;
|
|
|
|
int mode;
|
|
|
|
};
|
|
|
|
|
2013-11-21 18:47:53 +01:00
|
|
|
// internal flags for stat_file
|
2013-07-20 01:53:32 +02:00
|
|
|
enum { dont_follow_links = 1 };
|
2015-02-18 04:32:49 +01:00
|
|
|
TORRENT_EXTRA_EXPORT void stat_file(std::string const& f, file_status* s
|
2010-04-01 02:44:29 +02:00
|
|
|
, error_code& ec, int flags = 0);
|
2013-07-20 01:53:32 +02:00
|
|
|
TORRENT_EXTRA_EXPORT void rename(std::string const& f
|
2009-10-26 02:29:39 +01:00
|
|
|
, std::string const& newf, error_code& ec);
|
2013-07-20 01:53:32 +02:00
|
|
|
TORRENT_EXTRA_EXPORT void create_directories(std::string const& f
|
2009-10-26 02:29:39 +01:00
|
|
|
, error_code& ec);
|
2013-07-20 01:53:32 +02:00
|
|
|
TORRENT_EXTRA_EXPORT void create_directory(std::string const& f
|
2009-10-26 02:29:39 +01:00
|
|
|
, error_code& ec);
|
2013-07-20 01:53:32 +02:00
|
|
|
TORRENT_EXTRA_EXPORT void remove_all(std::string const& f
|
2009-10-26 02:29:39 +01:00
|
|
|
, error_code& ec);
|
2013-07-20 01:53:32 +02:00
|
|
|
TORRENT_EXTRA_EXPORT void remove(std::string const& f, error_code& ec);
|
2014-12-26 22:25:37 +01:00
|
|
|
TORRENT_EXTRA_EXPORT bool exists(std::string const& f, error_code& ec);
|
2013-07-20 01:53:32 +02:00
|
|
|
TORRENT_EXTRA_EXPORT bool exists(std::string const& f);
|
2014-12-03 05:32:50 +01:00
|
|
|
TORRENT_EXTRA_EXPORT boost::int64_t file_size(std::string const& f);
|
2013-07-20 01:53:32 +02:00
|
|
|
TORRENT_EXTRA_EXPORT bool is_directory(std::string const& f
|
2009-10-26 02:29:39 +01:00
|
|
|
, error_code& ec);
|
2013-07-20 01:53:32 +02:00
|
|
|
TORRENT_EXTRA_EXPORT void recursive_copy(std::string const& old_path
|
2012-06-30 01:35:11 +02:00
|
|
|
, std::string const& new_path, error_code& ec);
|
2013-07-20 01:53:32 +02:00
|
|
|
TORRENT_EXTRA_EXPORT void copy_file(std::string const& f
|
2009-10-26 02:29:39 +01:00
|
|
|
, std::string const& newf, error_code& ec);
|
|
|
|
|
2015-03-21 01:12:40 +01:00
|
|
|
// file is expected to exist, link will be created to point to it. If hard
|
|
|
|
// links are not supported by the filesystem or OS, the file will be copied.
|
|
|
|
TORRENT_EXTRA_EXPORT void hard_link(std::string const& file
|
|
|
|
, std::string const& link, error_code& ec);
|
|
|
|
|
2013-07-20 01:53:32 +02:00
|
|
|
TORRENT_EXTRA_EXPORT std::string split_path(std::string const& f);
|
|
|
|
TORRENT_EXTRA_EXPORT char const* next_path_element(char const* p);
|
|
|
|
TORRENT_EXTRA_EXPORT std::string extension(std::string const& f);
|
2013-11-18 07:59:47 +01:00
|
|
|
TORRENT_EXTRA_EXPORT std::string remove_extension(std::string const& f);
|
2013-07-20 01:53:32 +02:00
|
|
|
TORRENT_EXTRA_EXPORT void replace_extension(std::string& f, std::string const& ext);
|
|
|
|
TORRENT_EXTRA_EXPORT bool is_root_path(std::string const& f);
|
2013-11-10 22:28:22 +01:00
|
|
|
|
|
|
|
|
|
|
|
// internal used by create_torrent.hpp
|
2015-01-01 21:25:39 +01:00
|
|
|
TORRENT_EXTRA_EXPORT std::string parent_path(std::string const& f);
|
2013-07-20 01:53:32 +02:00
|
|
|
TORRENT_EXTRA_EXPORT bool has_parent_path(std::string const& f);
|
2014-07-06 21:18:00 +02:00
|
|
|
TORRENT_EXTRA_EXPORT char const* filename_cstr(char const* f);
|
|
|
|
|
2013-11-10 22:28:22 +01:00
|
|
|
// internal used by create_torrent.hpp
|
2015-01-01 21:25:39 +01:00
|
|
|
TORRENT_EXTRA_EXPORT std::string filename(std::string const& f);
|
2013-07-20 01:53:32 +02:00
|
|
|
TORRENT_EXTRA_EXPORT std::string combine_path(std::string const& lhs
|
2009-10-26 02:29:39 +01:00
|
|
|
, std::string const& rhs);
|
2015-02-18 04:32:49 +01:00
|
|
|
TORRENT_EXTRA_EXPORT void append_path(std::string& branch
|
|
|
|
, std::string const& leaf);
|
|
|
|
TORRENT_EXTRA_EXPORT void append_path(std::string& branch
|
|
|
|
, char const* str, int len);
|
2013-11-10 22:28:22 +01:00
|
|
|
// internal used by create_torrent.hpp
|
2015-01-01 21:25:39 +01:00
|
|
|
TORRENT_EXTRA_EXPORT std::string complete(std::string const& f);
|
2013-07-20 01:53:32 +02:00
|
|
|
TORRENT_EXTRA_EXPORT bool is_complete(std::string const& f);
|
|
|
|
TORRENT_EXTRA_EXPORT std::string current_working_directory();
|
2012-04-28 23:13:55 +02:00
|
|
|
#if TORRENT_USE_UNC_PATHS
|
|
|
|
TORRENT_EXTRA_EXPORT std::string canonicalize_path(std::string const& f);
|
|
|
|
#endif
|
2009-10-26 02:29:39 +01:00
|
|
|
|
2014-11-17 04:10:00 +01:00
|
|
|
// TODO: move this into a separate header file, TU pair
|
2013-07-20 01:53:32 +02:00
|
|
|
class TORRENT_EXTRA_EXPORT directory : public boost::noncopyable
|
2009-10-26 02:29:39 +01:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
directory(std::string const& path, error_code& ec);
|
|
|
|
~directory();
|
|
|
|
void next(error_code& ec);
|
|
|
|
std::string file() const;
|
2014-01-19 05:11:49 +01:00
|
|
|
boost::uint64_t inode() const;
|
2009-10-26 02:29:39 +01:00
|
|
|
bool done() const { return m_done; }
|
|
|
|
private:
|
|
|
|
#ifdef TORRENT_WINDOWS
|
|
|
|
HANDLE m_handle;
|
2014-01-19 05:11:49 +01:00
|
|
|
int m_inode;
|
2010-02-15 06:49:10 +01:00
|
|
|
#if TORRENT_USE_WSTRING
|
|
|
|
WIN32_FIND_DATAW m_fd;
|
|
|
|
#else
|
|
|
|
WIN32_FIND_DATAA m_fd;
|
|
|
|
#endif
|
2009-10-26 02:29:39 +01:00
|
|
|
#else
|
|
|
|
DIR* m_handle;
|
|
|
|
// the dirent struct contains a zero-sized
|
|
|
|
// array at the end, it will end up referring
|
|
|
|
// to the m_name field
|
|
|
|
struct dirent m_dirent;
|
2010-03-07 07:00:12 +01:00
|
|
|
char m_name[TORRENT_MAX_PATH + 1]; // +1 to make room for null
|
2009-10-26 02:29:39 +01:00
|
|
|
#endif
|
|
|
|
bool m_done;
|
|
|
|
};
|
2004-01-16 00:57:11 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
struct file;
|
|
|
|
|
2015-04-18 04:33:39 +02:00
|
|
|
#ifdef TORRENT_DEBUG_FILE_LEAKS
|
2014-07-06 21:18:00 +02:00
|
|
|
struct file_handle
|
|
|
|
{
|
|
|
|
file_handle();
|
|
|
|
file_handle(file* f);
|
|
|
|
file_handle(file_handle const& fh);
|
|
|
|
~file_handle();
|
|
|
|
file* operator->();
|
|
|
|
file const* operator->() const;
|
|
|
|
file& operator*();
|
|
|
|
file const& operator*() const;
|
|
|
|
file* get();
|
|
|
|
file const* get() const;
|
|
|
|
operator bool() const;
|
|
|
|
file_handle& reset(file* f = NULL);
|
|
|
|
|
|
|
|
char stack[2048];
|
|
|
|
private:
|
2015-01-06 09:08:49 +01:00
|
|
|
boost::shared_ptr<file> m_file;
|
2014-07-06 21:18:00 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
void TORRENT_EXTRA_EXPORT print_open_files(char const* event, char const* name);
|
|
|
|
#else
|
2015-01-06 09:08:49 +01:00
|
|
|
typedef boost::shared_ptr<file> file_handle;
|
2014-07-06 21:18:00 +02:00
|
|
|
#endif
|
|
|
|
|
2015-01-06 09:08:49 +01:00
|
|
|
struct TORRENT_EXTRA_EXPORT file: boost::noncopyable
|
2004-01-16 00:57:11 +01:00
|
|
|
{
|
2013-11-21 18:47:53 +01:00
|
|
|
// the open mode for files. Used for the file constructor or
|
|
|
|
// file::open().
|
|
|
|
enum open_mode_t
|
2004-01-16 02:42:54 +01:00
|
|
|
{
|
2013-11-21 18:47:53 +01:00
|
|
|
// open the file for reading only
|
2009-01-21 08:31:49 +01:00
|
|
|
read_only = 0,
|
2013-11-21 18:47:53 +01:00
|
|
|
|
|
|
|
// open the file for writing only
|
2009-01-21 08:31:49 +01:00
|
|
|
write_only = 1,
|
2013-11-21 18:47:53 +01:00
|
|
|
|
|
|
|
// open the file for reading and writing
|
2009-01-21 08:31:49 +01:00
|
|
|
read_write = 2,
|
2013-11-21 18:47:53 +01:00
|
|
|
|
|
|
|
// the mask for the bits determining read or write mode
|
2009-01-11 23:27:43 +01:00
|
|
|
rw_mask = read_only | write_only | read_write,
|
2013-11-21 18:47:53 +01:00
|
|
|
|
|
|
|
// open the file in sparse mode (if supported by the
|
|
|
|
// filesystem).
|
2014-07-06 21:18:00 +02:00
|
|
|
sparse = 0x4,
|
2013-11-21 18:47:53 +01:00
|
|
|
|
|
|
|
// don't update the access timestamps on the file (if
|
|
|
|
// supported by the operating system and filesystem).
|
|
|
|
// this generally improves disk performance.
|
2014-07-06 21:18:00 +02:00
|
|
|
no_atime = 0x8,
|
|
|
|
|
2013-11-21 18:47:53 +01:00
|
|
|
// open the file for random acces. This disables read-ahead
|
|
|
|
// logic
|
2014-07-06 21:18:00 +02:00
|
|
|
random_access = 0x10,
|
2013-11-21 18:47:53 +01:00
|
|
|
|
|
|
|
// prevent the file from being opened by another process
|
|
|
|
// while it's still being held open by this handle
|
2014-07-06 21:18:00 +02:00
|
|
|
lock_file = 0x20,
|
|
|
|
|
|
|
|
// don't put any pressure on the OS disk cache
|
|
|
|
// because of access to this file. We expect our
|
|
|
|
// files to be fairly large, and there is already
|
|
|
|
// a cache at the bittorrent block level. This
|
|
|
|
// may improve overall system performance by
|
|
|
|
// leaving running applications in the page cache
|
|
|
|
no_cache = 0x40,
|
|
|
|
|
|
|
|
// this corresponds to Linux' O_DIRECT flag
|
|
|
|
// and may impose alignment restrictions
|
|
|
|
direct_io = 0x80,
|
|
|
|
|
|
|
|
// this is only used for readv/writev flags
|
|
|
|
coalesce_buffers = 0x100,
|
2009-01-21 08:31:49 +01:00
|
|
|
|
2013-11-21 18:47:53 +01:00
|
|
|
// when creating a file, set the hidden attribute (windows only)
|
2014-07-06 21:18:00 +02:00
|
|
|
attribute_hidden = 0x200,
|
2013-11-21 18:47:53 +01:00
|
|
|
|
|
|
|
// when creating a file, set the executable attribute
|
2014-07-06 21:18:00 +02:00
|
|
|
attribute_executable = 0x400,
|
2013-11-21 18:47:53 +01:00
|
|
|
|
|
|
|
// the mask of all attribute bits
|
2009-01-11 23:27:43 +01:00
|
|
|
attribute_mask = attribute_hidden | attribute_executable
|
2004-01-16 00:57:11 +01:00
|
|
|
};
|
|
|
|
|
2009-01-01 02:47:57 +01:00
|
|
|
#ifdef TORRENT_WINDOWS
|
|
|
|
struct iovec_t
|
|
|
|
{
|
|
|
|
void* iov_base;
|
|
|
|
size_t iov_len;
|
|
|
|
};
|
|
|
|
#else
|
|
|
|
typedef iovec iovec_t;
|
|
|
|
#endif
|
|
|
|
|
2009-08-30 09:38:52 +02:00
|
|
|
// use a typedef for the type of iovec_t::iov_base
|
|
|
|
// since it may differ
|
|
|
|
#ifdef TORRENT_SOLARIS
|
|
|
|
typedef char* iovec_base_t;
|
|
|
|
#else
|
|
|
|
typedef void* iovec_base_t;
|
|
|
|
#endif
|
|
|
|
|
2004-01-16 00:57:11 +01:00
|
|
|
file();
|
2009-10-26 02:29:39 +01:00
|
|
|
file(std::string const& p, int m, error_code& ec);
|
2004-01-16 00:57:11 +01:00
|
|
|
~file();
|
|
|
|
|
2009-10-26 02:29:39 +01:00
|
|
|
bool open(std::string const& p, int m, error_code& ec);
|
2008-07-20 13:14:54 +02:00
|
|
|
bool is_open() const;
|
2004-01-16 00:57:11 +01:00
|
|
|
void close();
|
2014-12-03 05:32:50 +01:00
|
|
|
bool set_size(boost::int64_t size, error_code& ec);
|
2004-01-16 00:57:11 +01:00
|
|
|
|
2009-01-17 09:35:48 +01:00
|
|
|
int open_mode() const { return m_open_mode; }
|
|
|
|
|
2014-12-03 05:32:50 +01:00
|
|
|
boost::int64_t writev(boost::int64_t file_offset, iovec_t const* bufs, int num_bufs
|
2014-07-06 21:18:00 +02:00
|
|
|
, error_code& ec, int flags = 0);
|
2014-12-03 05:32:50 +01:00
|
|
|
boost::int64_t readv(boost::int64_t file_offset, iovec_t const* bufs, int num_bufs
|
2014-07-06 21:18:00 +02:00
|
|
|
, error_code& ec, int flags = 0);
|
2009-01-01 02:47:57 +01:00
|
|
|
|
2014-12-03 05:32:50 +01:00
|
|
|
boost::int64_t get_size(error_code& ec) const;
|
2009-02-17 01:11:38 +01:00
|
|
|
|
|
|
|
// return the offset of the first byte that
|
|
|
|
// belongs to a data-region
|
2014-12-03 05:32:50 +01:00
|
|
|
boost::int64_t sparse_end(boost::int64_t start) const;
|
2008-02-14 04:48:20 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
handle_type native_handle() const { return m_file_handle; }
|
2009-09-05 09:21:10 +02:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
#ifdef TORRENT_DISK_STATS
|
|
|
|
boost::uint32_t file_id() const { return m_file_id; }
|
|
|
|
#endif
|
|
|
|
|
2015-04-18 04:33:39 +02:00
|
|
|
#ifdef TORRENT_DEBUG_FILE_LEAKS
|
2014-07-06 21:18:00 +02:00
|
|
|
void print_info(FILE* out) const;
|
2010-01-23 04:02:32 +01:00
|
|
|
#endif
|
|
|
|
|
2004-01-16 00:57:11 +01:00
|
|
|
private:
|
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
handle_type m_file_handle;
|
|
|
|
#ifdef TORRENT_DISK_STATS
|
|
|
|
boost::uint32_t m_file_id;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined TORRENT_WINDOWS && TORRENT_USE_WSTRING
|
2009-01-11 03:02:34 +01:00
|
|
|
std::wstring m_path;
|
2014-07-06 21:18:00 +02:00
|
|
|
#elif defined TORRENT_WINDOWS
|
2009-01-11 03:02:34 +01:00
|
|
|
std::string m_path;
|
2009-10-26 02:29:39 +01:00
|
|
|
#endif // TORRENT_WINDOWS
|
|
|
|
|
2009-01-11 03:02:34 +01:00
|
|
|
int m_open_mode;
|
2009-01-17 09:35:48 +01:00
|
|
|
#if defined TORRENT_WINDOWS || defined TORRENT_LINUX
|
|
|
|
mutable int m_sector_size;
|
2009-09-06 09:44:45 +02:00
|
|
|
#endif
|
|
|
|
#if defined TORRENT_WINDOWS
|
|
|
|
mutable int m_cluster_size;
|
2014-02-23 20:13:53 +01:00
|
|
|
|
|
|
|
static bool has_manage_volume_privs;
|
2009-01-17 09:35:48 +01:00
|
|
|
#endif
|
2014-07-06 21:18:00 +02:00
|
|
|
|
2015-04-18 04:33:39 +02:00
|
|
|
#ifdef TORRENT_DEBUG_FILE_LEAKS
|
2014-07-06 21:18:00 +02:00
|
|
|
std::string m_file_path;
|
|
|
|
#endif
|
2004-01-16 00:57:11 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // TORRENT_FILE_HPP_INCLUDED
|
|
|
|
|