2007-06-10 22:46:09 +02:00
|
|
|
/*
|
|
|
|
|
|
|
|
Copyright (c) 2007, 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.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2007-12-17 23:07:03 +01:00
|
|
|
#ifndef TORRENT_DISK_IO_THREAD
|
|
|
|
#define TORRENT_DISK_IO_THREAD
|
|
|
|
|
2009-05-04 08:42:24 +02:00
|
|
|
#if defined TORRENT_DISK_STATS || defined TORRENT_STATS
|
2007-09-17 10:15:54 +02:00
|
|
|
#include <fstream>
|
|
|
|
#endif
|
|
|
|
|
2007-06-10 22:46:09 +02:00
|
|
|
#include "libtorrent/storage.hpp"
|
2009-01-15 18:09:36 +01:00
|
|
|
#include "libtorrent/allocator.hpp"
|
2009-11-23 09:38:50 +01:00
|
|
|
#include "libtorrent/io_service.hpp"
|
|
|
|
|
|
|
|
#include <boost/function/function0.hpp>
|
|
|
|
#include <boost/function/function2.hpp>
|
2007-06-10 22:46:09 +02:00
|
|
|
#include <boost/noncopyable.hpp>
|
2008-02-08 11:22:05 +01:00
|
|
|
#include <boost/shared_array.hpp>
|
2008-02-25 00:14:10 +01:00
|
|
|
#include <list>
|
2007-06-10 22:46:09 +02:00
|
|
|
#include "libtorrent/config.hpp"
|
2008-04-09 07:19:11 +02:00
|
|
|
#ifndef TORRENT_DISABLE_POOL_ALLOCATOR
|
|
|
|
#include <boost/pool/pool.hpp>
|
|
|
|
#endif
|
2009-01-21 08:31:49 +01:00
|
|
|
#include "libtorrent/session_settings.hpp"
|
2009-10-20 04:49:56 +02:00
|
|
|
#include "libtorrent/thread.hpp"
|
2007-06-10 22:46:09 +02:00
|
|
|
|
|
|
|
namespace libtorrent
|
|
|
|
{
|
2008-02-08 11:22:05 +01:00
|
|
|
struct cached_piece_info
|
|
|
|
{
|
|
|
|
int piece;
|
|
|
|
std::vector<bool> blocks;
|
2008-02-22 05:11:04 +01:00
|
|
|
ptime last_use;
|
2008-07-11 12:29:26 +02:00
|
|
|
enum kind_t { read_cache = 0, write_cache = 1 };
|
|
|
|
kind_t kind;
|
2008-02-08 11:22:05 +01:00
|
|
|
};
|
|
|
|
|
2007-06-10 22:46:09 +02:00
|
|
|
struct disk_io_job
|
|
|
|
{
|
|
|
|
disk_io_job()
|
|
|
|
: action(read)
|
|
|
|
, buffer(0)
|
|
|
|
, buffer_size(0)
|
|
|
|
, piece(0)
|
|
|
|
, offset(0)
|
2009-09-05 09:21:10 +02:00
|
|
|
, phys_offset(-1)
|
2007-09-16 03:34:06 +02:00
|
|
|
, priority(0)
|
2007-06-10 22:46:09 +02:00
|
|
|
{}
|
|
|
|
|
|
|
|
enum action_t
|
|
|
|
{
|
|
|
|
read
|
|
|
|
, write
|
|
|
|
, hash
|
|
|
|
, move_storage
|
|
|
|
, release_files
|
2007-10-13 05:33:33 +02:00
|
|
|
, delete_files
|
2008-03-08 07:06:31 +01:00
|
|
|
, check_fastresume
|
|
|
|
, check_files
|
2008-04-13 20:54:36 +02:00
|
|
|
, save_resume_data
|
2008-05-28 10:44:40 +02:00
|
|
|
, rename_file
|
2008-06-09 06:46:34 +02:00
|
|
|
, abort_thread
|
2008-07-18 17:31:22 +02:00
|
|
|
, clear_read_cache
|
2008-11-17 02:19:46 +01:00
|
|
|
, abort_torrent
|
2009-01-10 06:46:02 +01:00
|
|
|
, update_settings
|
2009-02-03 08:46:24 +01:00
|
|
|
, read_and_hash
|
2007-06-10 22:46:09 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
action_t action;
|
|
|
|
|
|
|
|
char* buffer;
|
2008-04-05 23:18:27 +02:00
|
|
|
int buffer_size;
|
2007-06-10 22:46:09 +02:00
|
|
|
boost::intrusive_ptr<piece_manager> storage;
|
|
|
|
// arguments used for read and write
|
|
|
|
int piece, offset;
|
2009-09-05 09:21:10 +02:00
|
|
|
size_type phys_offset;
|
2008-05-28 10:44:40 +02:00
|
|
|
// used for move_storage and rename_file. On errors, this is set
|
2007-06-10 22:46:09 +02:00
|
|
|
// to the error message
|
|
|
|
std::string str;
|
|
|
|
|
2008-04-13 00:08:07 +02:00
|
|
|
// on error, this is set to the path of the
|
|
|
|
// file the disk operation failed on
|
|
|
|
std::string error_file;
|
|
|
|
|
2007-09-16 03:34:06 +02:00
|
|
|
// priority decides whether or not this
|
|
|
|
// job will skip entries in the queue or
|
|
|
|
// not. It always skips in front of entries
|
|
|
|
// with lower priority
|
|
|
|
int priority;
|
|
|
|
|
2008-04-13 20:54:36 +02:00
|
|
|
boost::shared_ptr<entry> resume_data;
|
|
|
|
|
2008-07-18 01:41:46 +02:00
|
|
|
// the error code from the file operation
|
|
|
|
error_code error;
|
|
|
|
|
2007-06-10 22:46:09 +02:00
|
|
|
// this is called when operation completes
|
|
|
|
boost::function<void(int, disk_io_job const&)> callback;
|
|
|
|
};
|
|
|
|
|
2009-09-05 09:21:10 +02:00
|
|
|
// returns true if the disk job requires ordering
|
|
|
|
// some jobs may not be processed until all jobs
|
|
|
|
// ahead of it in the queue have been processed
|
|
|
|
// jobs that require this are fence operation
|
|
|
|
bool is_fence_operation(disk_io_job const& j);
|
|
|
|
|
|
|
|
// returns true if the fundamental operation
|
|
|
|
// of the given disk job is a read operation
|
|
|
|
bool is_read_operation(disk_io_job const& j);
|
|
|
|
|
|
|
|
// this is true if the buffer field in the disk_io_job
|
|
|
|
// points to a disk buffer
|
|
|
|
bool operation_has_buffer(disk_io_job const& j);
|
|
|
|
|
2008-02-08 11:22:05 +01:00
|
|
|
struct cache_status
|
|
|
|
{
|
2008-02-22 05:11:04 +01:00
|
|
|
cache_status()
|
|
|
|
: blocks_written(0)
|
|
|
|
, writes(0)
|
|
|
|
, blocks_read(0)
|
|
|
|
, blocks_read_hit(0)
|
|
|
|
, reads(0)
|
|
|
|
, cache_size(0)
|
|
|
|
, read_cache_size(0)
|
2009-05-02 08:52:57 +02:00
|
|
|
, total_used_buffers(0)
|
2008-02-22 05:11:04 +01:00
|
|
|
{}
|
|
|
|
|
2008-02-08 11:22:05 +01:00
|
|
|
// the number of 16kB blocks written
|
|
|
|
size_type blocks_written;
|
|
|
|
// the number of write operations used
|
|
|
|
size_type writes;
|
|
|
|
// (blocks_written - writes) / blocks_written represents the
|
|
|
|
// "cache hit" ratio in the write cache
|
2008-02-22 05:11:04 +01:00
|
|
|
// the number of blocks read
|
|
|
|
|
|
|
|
// the number of blocks passed back to the bittorrent engine
|
|
|
|
size_type blocks_read;
|
|
|
|
// the number of blocks that was just copied from the read cache
|
|
|
|
size_type blocks_read_hit;
|
|
|
|
// the number of read operations used
|
|
|
|
size_type reads;
|
|
|
|
|
2009-07-21 06:32:27 +02:00
|
|
|
mutable size_type queued_bytes;
|
|
|
|
|
2008-02-22 05:11:04 +01:00
|
|
|
// the number of blocks in the cache (both read and write)
|
|
|
|
int cache_size;
|
|
|
|
|
|
|
|
// the number of blocks in the cache used for read cache
|
|
|
|
int read_cache_size;
|
2009-05-02 08:52:57 +02:00
|
|
|
|
|
|
|
// the total number of blocks that are currently in use
|
|
|
|
// this includes send and receive buffers
|
|
|
|
mutable int total_used_buffers;
|
2008-02-08 11:22:05 +01:00
|
|
|
};
|
|
|
|
|
2009-12-02 18:46:25 +01:00
|
|
|
struct TORRENT_EXPORT disk_buffer_pool : boost::noncopyable
|
2007-06-10 22:46:09 +02:00
|
|
|
{
|
2009-01-21 08:31:49 +01:00
|
|
|
disk_buffer_pool(int block_size);
|
2009-05-03 05:16:15 +02:00
|
|
|
#ifdef TORRENT_DEBUG
|
|
|
|
~disk_buffer_pool();
|
|
|
|
#endif
|
2009-01-21 08:31:49 +01:00
|
|
|
|
2009-08-05 21:02:51 +02:00
|
|
|
#if defined TORRENT_DEBUG || defined TORRENT_DISK_STATS
|
2009-05-23 17:50:38 +02:00
|
|
|
bool is_disk_buffer(char* buffer
|
2009-10-20 04:49:56 +02:00
|
|
|
, mutex::scoped_lock& l) const;
|
2009-01-21 08:31:49 +01:00
|
|
|
bool is_disk_buffer(char* buffer) const;
|
|
|
|
#endif
|
|
|
|
|
2009-01-23 10:13:31 +01:00
|
|
|
char* allocate_buffer(char const* category);
|
2009-01-21 08:31:49 +01:00
|
|
|
void free_buffer(char* buf);
|
|
|
|
|
2009-01-23 10:13:31 +01:00
|
|
|
char* allocate_buffers(int blocks, char const* category);
|
2009-01-21 08:31:49 +01:00
|
|
|
void free_buffers(char* buf, int blocks);
|
|
|
|
|
|
|
|
int block_size() const { return m_block_size; }
|
2007-06-10 22:46:09 +02:00
|
|
|
|
2007-09-29 18:14:03 +02:00
|
|
|
#ifdef TORRENT_STATS
|
|
|
|
int disk_allocations() const
|
|
|
|
{ return m_allocations; }
|
|
|
|
#endif
|
2007-12-24 09:15:10 +01:00
|
|
|
|
2009-06-15 00:20:23 +02:00
|
|
|
#ifdef TORRENT_DISK_STATS
|
|
|
|
std::ofstream m_disk_access_log;
|
|
|
|
#endif
|
|
|
|
|
2009-01-21 08:31:49 +01:00
|
|
|
void release_memory();
|
|
|
|
|
2009-05-01 10:00:58 +02:00
|
|
|
int in_use() const { return m_in_use; }
|
|
|
|
|
2009-02-06 10:46:13 +01:00
|
|
|
protected:
|
|
|
|
|
2009-01-21 08:31:49 +01:00
|
|
|
// number of bytes per block. The BitTorrent
|
|
|
|
// protocol defines the block size to 16 KiB.
|
|
|
|
const int m_block_size;
|
|
|
|
|
2009-05-01 10:00:58 +02:00
|
|
|
// number of disk buffers currently allocated
|
|
|
|
int m_in_use;
|
|
|
|
|
2009-02-06 10:46:13 +01:00
|
|
|
session_settings m_settings;
|
|
|
|
|
2009-01-21 08:31:49 +01:00
|
|
|
private:
|
|
|
|
|
2009-10-20 04:49:56 +02:00
|
|
|
mutable mutex m_pool_mutex;
|
|
|
|
|
2009-01-21 08:31:49 +01:00
|
|
|
#ifndef TORRENT_DISABLE_POOL_ALLOCATOR
|
|
|
|
// memory pool for read and write operations
|
|
|
|
// and disk cache
|
|
|
|
boost::pool<page_aligned_allocator> m_pool;
|
|
|
|
#endif
|
|
|
|
|
2009-05-04 08:42:24 +02:00
|
|
|
#if defined TORRENT_DISK_STATS || defined TORRENT_STATS
|
2009-01-21 08:31:49 +01:00
|
|
|
int m_allocations;
|
2009-04-30 03:42:30 +02:00
|
|
|
#endif
|
|
|
|
#ifdef TORRENT_DISK_STATS
|
2009-06-01 00:38:49 +02:00
|
|
|
public:
|
2009-05-23 18:19:04 +02:00
|
|
|
void rename_buffer(char* buf, char const* category);
|
2009-06-01 00:38:49 +02:00
|
|
|
protected:
|
2009-05-04 08:42:24 +02:00
|
|
|
std::map<std::string, int> m_categories;
|
|
|
|
std::map<char*, std::string> m_buf_to_category;
|
2009-01-23 10:13:31 +01:00
|
|
|
std::ofstream m_log;
|
2009-05-19 09:00:05 +02:00
|
|
|
private:
|
2009-05-03 05:16:15 +02:00
|
|
|
#endif
|
|
|
|
#ifdef TORRENT_DEBUG
|
|
|
|
int m_magic;
|
2009-01-21 08:31:49 +01:00
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
|
|
|
// this is a singleton consisting of the thread and a queue
|
|
|
|
// of disk io jobs
|
2009-12-02 18:46:25 +01:00
|
|
|
struct TORRENT_EXPORT disk_io_thread : disk_buffer_pool
|
2009-01-21 08:31:49 +01:00
|
|
|
{
|
2009-06-10 10:30:55 +02:00
|
|
|
disk_io_thread(io_service& ios
|
|
|
|
, boost::function<void()> const& queue_callback
|
|
|
|
, int block_size = 16 * 1024);
|
2009-01-21 08:31:49 +01:00
|
|
|
~disk_io_thread();
|
|
|
|
|
2007-12-24 09:15:10 +01:00
|
|
|
void join();
|
|
|
|
|
2007-06-10 22:46:09 +02:00
|
|
|
// aborts read operations
|
|
|
|
void stop(boost::intrusive_ptr<piece_manager> s);
|
|
|
|
void add_job(disk_io_job const& j
|
|
|
|
, boost::function<void(int, disk_io_job const&)> const& f
|
|
|
|
= boost::function<void(int, disk_io_job const&)>());
|
|
|
|
|
|
|
|
// keep track of the number of bytes in the job queue
|
|
|
|
// at any given time. i.e. the sum of all buffer_size.
|
|
|
|
// this is used to slow down the download global download
|
|
|
|
// speed when the queue buffer size is too big.
|
2009-07-21 06:32:27 +02:00
|
|
|
size_type queue_buffer_size() const;
|
2007-06-10 22:46:09 +02:00
|
|
|
|
2008-02-08 11:22:05 +01:00
|
|
|
void get_cache_info(sha1_hash const& ih
|
|
|
|
, std::vector<cached_piece_info>& ret) const;
|
|
|
|
|
|
|
|
cache_status status() const;
|
|
|
|
|
2009-10-20 04:49:56 +02:00
|
|
|
void thread_fun();
|
2007-06-10 22:46:09 +02:00
|
|
|
|
2008-11-29 22:33:21 +01:00
|
|
|
#ifdef TORRENT_DEBUG
|
2008-02-22 05:11:04 +01:00
|
|
|
void check_invariant() const;
|
|
|
|
#endif
|
|
|
|
|
2009-06-10 10:30:55 +02:00
|
|
|
struct cached_block_entry
|
|
|
|
{
|
|
|
|
cached_block_entry(): buf(0) {}
|
|
|
|
// the buffer pointer (this is a disk_pool buffer)
|
|
|
|
// or 0
|
|
|
|
char* buf;
|
|
|
|
|
|
|
|
// callback for when this block is flushed to disk
|
|
|
|
boost::function<void(int, disk_io_job const&)> callback;
|
|
|
|
};
|
|
|
|
|
2008-02-08 11:22:05 +01:00
|
|
|
struct cached_piece_entry
|
|
|
|
{
|
|
|
|
int piece;
|
|
|
|
// storage this piece belongs to
|
|
|
|
boost::intrusive_ptr<piece_manager> storage;
|
|
|
|
// the last time a block was writting to this piece
|
2008-02-22 05:11:04 +01:00
|
|
|
ptime last_use;
|
2008-02-08 11:22:05 +01:00
|
|
|
// the number of blocks in the cache for this piece
|
|
|
|
int num_blocks;
|
|
|
|
// the pointers to the block data
|
2009-06-10 10:30:55 +02:00
|
|
|
boost::shared_array<cached_block_entry> blocks;
|
2008-02-08 11:22:05 +01:00
|
|
|
};
|
|
|
|
|
2008-02-25 00:14:10 +01:00
|
|
|
typedef std::list<cached_piece_entry> cache_t;
|
|
|
|
|
2009-05-23 09:35:45 +02:00
|
|
|
private:
|
|
|
|
|
2009-10-20 04:49:56 +02:00
|
|
|
void add_job(disk_io_job const& j
|
|
|
|
, mutex::scoped_lock& l
|
|
|
|
, boost::function<void(int, disk_io_job const&)> const& f
|
|
|
|
= boost::function<void(int, disk_io_job const&)>());
|
|
|
|
|
2008-07-18 01:41:46 +02:00
|
|
|
bool test_error(disk_io_job& j);
|
2009-03-31 10:05:46 +02:00
|
|
|
void post_callback(boost::function<void(int, disk_io_job const&)> const& handler
|
|
|
|
, disk_io_job const& j, int ret);
|
2008-07-18 01:41:46 +02:00
|
|
|
|
2008-02-22 05:11:04 +01:00
|
|
|
// cache operations
|
2008-02-25 00:14:10 +01:00
|
|
|
cache_t::iterator find_cached_piece(
|
|
|
|
cache_t& cache, disk_io_job const& j
|
2009-10-20 04:49:56 +02:00
|
|
|
, mutex::scoped_lock& l);
|
2009-02-03 08:46:24 +01:00
|
|
|
int copy_from_piece(cache_t::iterator p, bool& hit
|
2009-10-20 04:49:56 +02:00
|
|
|
, disk_io_job const& j, mutex::scoped_lock& l);
|
2008-02-22 05:11:04 +01:00
|
|
|
|
|
|
|
// write cache operations
|
2009-05-24 02:12:53 +02:00
|
|
|
enum options_t { dont_flush_write_blocks = 1, ignore_cache_size = 2 };
|
2009-10-20 04:49:56 +02:00
|
|
|
int flush_cache_blocks(mutex::scoped_lock& l
|
2009-06-10 10:30:55 +02:00
|
|
|
, int blocks, cache_t::iterator ignore
|
|
|
|
, int options = 0);
|
2008-06-12 06:40:37 +02:00
|
|
|
void flush_expired_pieces();
|
2009-10-20 04:49:56 +02:00
|
|
|
int flush_and_remove(cache_t::iterator i, mutex::scoped_lock& l);
|
2009-05-23 09:35:45 +02:00
|
|
|
int flush_contiguous_blocks(disk_io_thread::cache_t::iterator e
|
2009-10-20 04:49:56 +02:00
|
|
|
, mutex::scoped_lock& l, int lower_limit = 0);
|
|
|
|
int flush_range(cache_t::iterator i, int start, int end, mutex::scoped_lock& l);
|
2009-06-10 10:30:55 +02:00
|
|
|
int cache_block(disk_io_job& j
|
|
|
|
, boost::function<void(int,disk_io_job const&)>& handler
|
2009-10-20 04:49:56 +02:00
|
|
|
, mutex::scoped_lock& l);
|
2008-02-08 11:22:05 +01:00
|
|
|
|
2008-02-22 05:11:04 +01:00
|
|
|
// read cache operations
|
2009-05-24 17:32:14 +02:00
|
|
|
int clear_oldest_read_piece(int num_blocks, cache_t::iterator ignore
|
2009-10-20 04:49:56 +02:00
|
|
|
, mutex::scoped_lock& l);
|
2009-02-03 08:46:24 +01:00
|
|
|
int read_into_piece(cached_piece_entry& p, int start_block
|
2009-10-20 04:49:56 +02:00
|
|
|
, int options, int num_blocks, mutex::scoped_lock& l);
|
|
|
|
int cache_read_block(disk_io_job const& j, mutex::scoped_lock& l);
|
|
|
|
int cache_read_piece(disk_io_job const& j, mutex::scoped_lock& l);
|
|
|
|
int free_piece(cached_piece_entry& p, mutex::scoped_lock& l);
|
2008-06-12 06:40:37 +02:00
|
|
|
int try_read_from_cache(disk_io_job const& j);
|
2009-02-03 08:46:24 +01:00
|
|
|
int read_piece_from_cache_and_hash(disk_io_job const& j, sha1_hash& h);
|
2008-02-22 05:11:04 +01:00
|
|
|
|
2008-06-12 06:40:37 +02:00
|
|
|
// this mutex only protects m_jobs, m_queue_buffer_size
|
|
|
|
// and m_abort
|
2009-10-20 04:49:56 +02:00
|
|
|
mutable mutex m_queue_mutex;
|
|
|
|
condition m_signal;
|
2007-06-10 22:46:09 +02:00
|
|
|
bool m_abort;
|
2009-05-22 08:32:39 +02:00
|
|
|
bool m_waiting_to_shutdown;
|
2008-02-26 21:08:33 +01:00
|
|
|
std::list<disk_io_job> m_jobs;
|
2007-06-10 22:46:09 +02:00
|
|
|
size_type m_queue_buffer_size;
|
|
|
|
|
2009-05-22 08:32:39 +02:00
|
|
|
ptime m_last_file_check;
|
|
|
|
|
2008-06-12 06:40:37 +02:00
|
|
|
// this protects the piece cache and related members
|
2009-10-20 04:49:56 +02:00
|
|
|
mutable mutex m_piece_mutex;
|
2008-02-22 05:11:04 +01:00
|
|
|
// write cache
|
2008-02-25 00:14:10 +01:00
|
|
|
cache_t m_pieces;
|
2008-02-22 05:11:04 +01:00
|
|
|
|
|
|
|
// read cache
|
2008-02-25 00:14:10 +01:00
|
|
|
cache_t m_read_pieces;
|
2008-02-22 05:11:04 +01:00
|
|
|
|
|
|
|
// total number of blocks in use by both the read
|
|
|
|
// and the write cache. This is not supposed to
|
|
|
|
// exceed m_cache_size
|
|
|
|
cache_status m_cache_stats;
|
|
|
|
|
2007-09-17 10:15:54 +02:00
|
|
|
#ifdef TORRENT_DISK_STATS
|
|
|
|
std::ofstream m_log;
|
|
|
|
#endif
|
2008-02-08 11:22:05 +01:00
|
|
|
|
2008-05-03 18:05:42 +02:00
|
|
|
io_service& m_ios;
|
2008-02-08 11:22:05 +01:00
|
|
|
|
2009-06-10 10:30:55 +02:00
|
|
|
boost::function<void()> m_queue_callback;
|
|
|
|
|
2009-05-13 19:17:33 +02:00
|
|
|
// this keeps the io_service::run() call blocked from
|
|
|
|
// returning. When shutting down, it's possible that
|
|
|
|
// the event queue is drained before the disk_io_thread
|
|
|
|
// has posted its last callback. When this happens, the
|
|
|
|
// io_service will have a pending callback from the
|
|
|
|
// disk_io_thread, but the event loop is not running.
|
|
|
|
// this means that the event is destructed after the
|
|
|
|
// disk_io_thread. If the event refers to a disk buffer
|
|
|
|
// it will try to free it, but the buffer pool won't
|
|
|
|
// exist anymore, and crash. This prevents that.
|
2009-11-23 09:38:50 +01:00
|
|
|
boost::optional<io_service::work> m_work;
|
2009-05-13 19:17:33 +02:00
|
|
|
|
2007-06-10 22:46:09 +02:00
|
|
|
// thread for performing blocking disk io operations
|
2009-10-20 04:49:56 +02:00
|
|
|
thread m_disk_io_thread;
|
2007-06-10 22:46:09 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2007-12-17 23:07:03 +01:00
|
|
|
#endif
|
|
|
|
|