2007-06-10 22:46:09 +02:00
|
|
|
/*
|
|
|
|
|
2015-06-03 07:18:48 +02:00
|
|
|
Copyright (c) 2007-2015, Arvid Norberg
|
2007-06-10 22:46:09 +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.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2015-08-16 18:17:23 +02:00
|
|
|
#include "libtorrent/config.hpp"
|
2007-06-10 22:46:09 +02:00
|
|
|
#include "libtorrent/storage.hpp"
|
|
|
|
#include "libtorrent/disk_io_thread.hpp"
|
2008-04-13 00:08:07 +02:00
|
|
|
#include "libtorrent/disk_buffer_holder.hpp"
|
2009-01-11 03:02:34 +01:00
|
|
|
#include "libtorrent/alloca.hpp"
|
|
|
|
#include "libtorrent/invariant_check.hpp"
|
2009-02-03 08:46:24 +01:00
|
|
|
#include "libtorrent/error_code.hpp"
|
2009-11-23 09:38:50 +01:00
|
|
|
#include "libtorrent/error.hpp"
|
2010-01-23 04:02:32 +01:00
|
|
|
#include "libtorrent/file_pool.hpp"
|
2008-02-22 05:11:04 +01:00
|
|
|
#include <boost/scoped_array.hpp>
|
2009-11-23 09:38:50 +01:00
|
|
|
#include <boost/bind.hpp>
|
2014-07-06 21:18:00 +02:00
|
|
|
#include <boost/tuple/tuple.hpp>
|
|
|
|
#include <set>
|
|
|
|
#include <vector>
|
2007-06-10 22:46:09 +02:00
|
|
|
|
2007-09-17 10:15:54 +02:00
|
|
|
#include "libtorrent/time.hpp"
|
2014-07-06 21:18:00 +02:00
|
|
|
#include "libtorrent/disk_buffer_pool.hpp"
|
|
|
|
#include "libtorrent/disk_io_job.hpp"
|
|
|
|
#include "libtorrent/alert_types.hpp"
|
|
|
|
#include "libtorrent/uncork_interface.hpp"
|
|
|
|
#include "libtorrent/performance_counters.hpp"
|
2015-04-03 22:15:48 +02:00
|
|
|
#include "libtorrent/alert_manager.hpp"
|
2007-09-17 10:15:54 +02:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
#include "libtorrent/debug.hpp"
|
2010-03-10 08:14:10 +01:00
|
|
|
|
2010-03-12 04:17:25 +01:00
|
|
|
#if TORRENT_USE_RLIMIT
|
|
|
|
#include <sys/resource.h>
|
|
|
|
#endif
|
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
#define DEBUG_DISK_THREAD 0
|
|
|
|
|
2015-08-02 21:55:05 +02:00
|
|
|
#if __cplusplus >= 201103L
|
|
|
|
|
|
|
|
#if DEBUG_DISK_THREAD
|
|
|
|
#define DLOG(...) debug_log(__VA_ARGS__)
|
|
|
|
#else
|
|
|
|
#define DLOG(...) do {} while(false)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
2015-04-27 04:21:12 +02:00
|
|
|
#if DEBUG_DISK_THREAD
|
|
|
|
#define DLOG debug_log
|
|
|
|
#else
|
|
|
|
#define DLOG TORRENT_WHILE_0 debug_log
|
|
|
|
#endif
|
2010-07-24 04:54:42 +02:00
|
|
|
|
2015-08-02 21:55:05 +02:00
|
|
|
#endif // cplusplus
|
|
|
|
|
2007-06-10 22:46:09 +02:00
|
|
|
namespace libtorrent
|
|
|
|
{
|
2014-07-06 21:18:00 +02:00
|
|
|
|
|
|
|
#if TORRENT_USE_ASSERTS
|
2015-04-20 06:52:49 +02:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
#define TORRENT_PIECE_ASSERT(cond, piece) \
|
2015-04-27 04:21:12 +02:00
|
|
|
do { if (!(cond)) { assert_print_piece(piece); assert_fail(#cond, __LINE__, __FILE__, TORRENT_FUNCTION, 0); } } TORRENT_WHILE_0
|
2014-07-06 21:18:00 +02:00
|
|
|
|
|
|
|
#else
|
2015-04-27 04:21:12 +02:00
|
|
|
#define TORRENT_PIECE_ASSERT(cond, piece) do {} TORRENT_WHILE_0
|
2014-07-06 21:18:00 +02:00
|
|
|
#endif
|
|
|
|
|
2015-04-21 02:23:00 +02:00
|
|
|
namespace {
|
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
void debug_log(char const* fmt, ...)
|
|
|
|
{
|
|
|
|
#if DEBUG_DISK_THREAD
|
|
|
|
static mutex log_mutex;
|
2015-06-14 22:00:04 +02:00
|
|
|
static const time_point start = clock_type::now();
|
2014-07-06 21:18:00 +02:00
|
|
|
va_list v;
|
|
|
|
va_start(v, fmt);
|
|
|
|
|
|
|
|
char usr[2048];
|
|
|
|
int len = vsnprintf(usr, sizeof(usr), fmt, v);
|
|
|
|
|
|
|
|
static bool prepend_time = true;
|
|
|
|
if (!prepend_time)
|
|
|
|
{
|
|
|
|
prepend_time = (usr[len-1] == '\n');
|
|
|
|
mutex::scoped_lock l(log_mutex);
|
|
|
|
fputs(usr, stderr);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
va_end(v);
|
|
|
|
char buf[2300];
|
2015-06-14 22:00:04 +02:00
|
|
|
int t = total_milliseconds(clock_type::now() - start);
|
|
|
|
snprintf(buf, sizeof(buf), "%05d: [%p] %s", t, pthread_self(), usr);
|
2014-07-06 21:18:00 +02:00
|
|
|
prepend_time = (usr[len-1] == '\n');
|
|
|
|
mutex::scoped_lock l(log_mutex);
|
|
|
|
fputs(buf, stderr);
|
2015-04-21 02:23:00 +02:00
|
|
|
#else
|
|
|
|
TORRENT_UNUSED(fmt);
|
2014-07-06 21:18:00 +02:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2015-04-21 02:23:00 +02:00
|
|
|
int file_flags_for_job(disk_io_job* j)
|
2014-07-06 21:18:00 +02:00
|
|
|
{
|
|
|
|
int ret = 0;
|
|
|
|
|
|
|
|
if (!(j->flags & disk_io_job::sequential_access)) ret |= file::random_access;
|
|
|
|
if (j->flags & disk_io_job::coalesce_buffers) ret |= file::coalesce_buffers;
|
|
|
|
return ret;
|
|
|
|
}
|
2010-01-12 02:56:48 +01:00
|
|
|
|
2015-04-21 02:23:00 +02:00
|
|
|
} // anonymous namespace
|
|
|
|
|
2009-01-21 08:31:49 +01:00
|
|
|
// ------- disk_io_thread ------
|
|
|
|
|
2009-11-23 09:38:50 +01:00
|
|
|
disk_io_thread::disk_io_thread(io_service& ios
|
2014-08-01 08:07:48 +02:00
|
|
|
, counters& cnt
|
2014-07-06 21:18:00 +02:00
|
|
|
, void* userdata
|
2009-06-10 10:30:55 +02:00
|
|
|
, int block_size)
|
2014-07-06 21:18:00 +02:00
|
|
|
: m_num_threads(0)
|
2015-06-14 22:00:04 +02:00
|
|
|
, m_abort(false)
|
2014-07-06 21:18:00 +02:00
|
|
|
, m_num_running_threads(0)
|
|
|
|
, m_userdata(userdata)
|
|
|
|
, m_last_cache_expiry(min_time())
|
2015-03-12 05:34:54 +01:00
|
|
|
, m_last_file_check(clock_type::now())
|
2014-07-06 21:18:00 +02:00
|
|
|
, m_file_pool(40)
|
2015-04-03 22:15:48 +02:00
|
|
|
, m_disk_cache(block_size, ios, boost::bind(&disk_io_thread::trigger_cache_trim, this))
|
2014-08-01 08:07:48 +02:00
|
|
|
, m_stats_counters(cnt)
|
2009-01-21 08:31:49 +01:00
|
|
|
, m_ios(ios)
|
2014-07-06 21:18:00 +02:00
|
|
|
, m_last_disk_aio_performance_warning(min_time())
|
|
|
|
, m_outstanding_reclaim_message(false)
|
2014-02-03 02:55:26 +01:00
|
|
|
#if TORRENT_USE_ASSERTS
|
|
|
|
, m_magic(0x1337)
|
|
|
|
#endif
|
2009-01-21 08:31:49 +01:00
|
|
|
{
|
2014-07-06 21:18:00 +02:00
|
|
|
#if defined TORRENT_ASIO_DEBUGGING
|
|
|
|
add_outstanding_async("disk_io_thread::work");
|
|
|
|
#endif
|
2015-04-03 22:15:48 +02:00
|
|
|
error_code ec;
|
|
|
|
m_disk_cache.set_settings(m_settings, ec);
|
|
|
|
TORRENT_ASSERT(!ec);
|
2014-07-06 21:18:00 +02:00
|
|
|
|
|
|
|
#if TORRENT_USE_RLIMIT
|
|
|
|
// ---- auto-cap open files ----
|
|
|
|
|
|
|
|
struct rlimit rl;
|
|
|
|
if (getrlimit(RLIMIT_NOFILE, &rl) == 0)
|
|
|
|
{
|
|
|
|
// deduct some margin for epoll/kqueue, log files,
|
|
|
|
// futexes, shared objects etc.
|
|
|
|
rl.rlim_cur -= 20;
|
|
|
|
|
|
|
|
// 80% of the available file descriptors should go to connections
|
|
|
|
// 20% goes towards regular files
|
|
|
|
m_file_pool.resize((std::min)(m_file_pool.size_limit(), int(rl.rlim_cur * 2 / 10)));
|
|
|
|
}
|
|
|
|
#endif // TORRENT_USE_RLIMIT
|
2007-09-17 10:15:54 +02:00
|
|
|
}
|
2007-06-10 22:46:09 +02:00
|
|
|
|
|
|
|
disk_io_thread::~disk_io_thread()
|
|
|
|
{
|
2014-07-06 21:18:00 +02:00
|
|
|
DLOG("destructing disk_io_thread\n");
|
|
|
|
|
|
|
|
#if TORRENT_USE_ASSERTS
|
|
|
|
// by now, all pieces should have been evicted
|
|
|
|
std::pair<block_cache::iterator, block_cache::iterator> pieces
|
|
|
|
= m_disk_cache.all_pieces();
|
|
|
|
TORRENT_ASSERT(pieces.first == pieces.second);
|
|
|
|
#endif
|
|
|
|
|
2014-02-03 02:55:26 +01:00
|
|
|
TORRENT_ASSERT(m_magic == 0x1337);
|
|
|
|
#if TORRENT_USE_ASSERTS
|
|
|
|
m_magic = 0xdead;
|
|
|
|
#endif
|
2007-06-10 22:46:09 +02:00
|
|
|
}
|
|
|
|
|
2015-06-14 22:00:04 +02:00
|
|
|
void disk_io_thread::abort(bool wait)
|
|
|
|
{
|
|
|
|
m_abort = true;
|
|
|
|
if (m_num_threads == 0)
|
|
|
|
{
|
|
|
|
abort_jobs();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
set_num_threads(0, wait);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-31 15:41:35 +01:00
|
|
|
// TODO: 1 it would be nice to have the number of threads be set dynamically
|
2014-07-06 21:18:00 +02:00
|
|
|
void disk_io_thread::set_num_threads(int i, bool wait)
|
2007-12-24 09:15:10 +01:00
|
|
|
{
|
2014-02-03 02:55:26 +01:00
|
|
|
TORRENT_ASSERT(m_magic == 0x1337);
|
2014-07-06 21:18:00 +02:00
|
|
|
if (i == m_num_threads) return;
|
2014-02-03 02:55:26 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
if (i > m_num_threads)
|
|
|
|
{
|
|
|
|
while (m_num_threads < i)
|
|
|
|
{
|
|
|
|
int thread_id = (++m_num_threads) - 1;
|
|
|
|
thread_type_t type = generic_thread;
|
|
|
|
|
2015-06-14 22:00:04 +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.
|
|
|
|
boost::shared_ptr<io_service::work> work =
|
2015-06-14 22:42:52 +02:00
|
|
|
boost::make_shared<io_service::work>(boost::ref(m_ios));
|
2015-06-14 22:00:04 +02:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
// the magic number 3 is also used in add_job()
|
|
|
|
// every 4:th thread is a hasher thread
|
|
|
|
if ((thread_id & 0x3) == 3) type = hasher_thread;
|
|
|
|
m_threads.push_back(boost::shared_ptr<thread>(
|
2015-06-14 22:00:04 +02:00
|
|
|
new thread(boost::bind(&disk_io_thread::thread_fun, this
|
|
|
|
, thread_id, type, work))));
|
2014-07-06 21:18:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
while (m_num_threads > i) { --m_num_threads; }
|
|
|
|
mutex::scoped_lock l(m_job_mutex);
|
|
|
|
m_job_cond.notify_all();
|
|
|
|
m_hash_job_cond.notify_all();
|
|
|
|
l.unlock();
|
|
|
|
if (wait) for (int i = m_num_threads; i < m_threads.size(); ++i) m_threads[i]->join();
|
|
|
|
// this will detach the threads
|
|
|
|
m_threads.resize(m_num_threads);
|
|
|
|
}
|
2010-07-14 06:16:38 +02:00
|
|
|
}
|
2007-12-24 09:15:10 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
char* disk_io_thread::async_allocate_disk_buffer(char const* category
|
|
|
|
, boost::function<void(char*)> const& handler)
|
|
|
|
{ return m_disk_cache.async_allocate_buffer(category, handler); }
|
|
|
|
|
|
|
|
void disk_io_thread::reclaim_block(block_cache_reference ref)
|
2010-07-14 06:16:38 +02:00
|
|
|
{
|
2014-02-03 02:55:26 +01:00
|
|
|
TORRENT_ASSERT(m_magic == 0x1337);
|
2014-07-06 21:18:00 +02:00
|
|
|
TORRENT_ASSERT(ref.storage);
|
|
|
|
m_blocks_to_reclaim.push_back(ref);
|
|
|
|
if (m_outstanding_reclaim_message) return;
|
2014-02-03 02:55:26 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
m_ios.post(boost::bind(&disk_io_thread::commit_reclaimed_blocks, this));
|
|
|
|
m_outstanding_reclaim_message = true;
|
2007-12-24 09:15:10 +01:00
|
|
|
}
|
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
void disk_io_thread::commit_reclaimed_blocks()
|
2011-02-13 23:27:02 +01:00
|
|
|
{
|
2014-02-03 02:55:26 +01:00
|
|
|
TORRENT_ASSERT(m_magic == 0x1337);
|
2014-07-06 21:18:00 +02:00
|
|
|
TORRENT_ASSERT(m_outstanding_reclaim_message);
|
|
|
|
m_outstanding_reclaim_message = false;
|
|
|
|
mutex::scoped_lock l(m_cache_mutex);
|
|
|
|
for (int i = 0; i < m_blocks_to_reclaim.size(); ++i)
|
|
|
|
m_disk_cache.reclaim_block(m_blocks_to_reclaim[i]);
|
|
|
|
m_blocks_to_reclaim.clear();
|
2011-02-13 23:27:02 +01:00
|
|
|
}
|
|
|
|
|
2015-05-29 07:27:53 +02:00
|
|
|
void disk_io_thread::set_settings(settings_pack const* pack, alert_manager& alerts)
|
2011-06-26 21:45:33 +02:00
|
|
|
{
|
2014-02-03 02:55:26 +01:00
|
|
|
TORRENT_ASSERT(m_magic == 0x1337);
|
2014-07-06 21:18:00 +02:00
|
|
|
mutex::scoped_lock l(m_cache_mutex);
|
|
|
|
apply_pack(pack, m_settings);
|
2015-04-03 22:15:48 +02:00
|
|
|
error_code ec;
|
|
|
|
m_disk_cache.set_settings(m_settings, ec);
|
|
|
|
if (ec && alerts.should_post<mmap_cache_alert>())
|
|
|
|
{
|
|
|
|
alerts.emplace_alert<mmap_cache_alert>(ec);
|
|
|
|
}
|
2011-06-26 21:45:33 +02:00
|
|
|
}
|
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
// flush all blocks that are below p->hash.offset, since we've
|
|
|
|
// already hashed those blocks, they won't cause any read-back
|
|
|
|
int disk_io_thread::try_flush_hashed(cached_piece_entry* p, int cont_block
|
|
|
|
, tailqueue& completed_jobs, mutex::scoped_lock& l)
|
2008-02-08 11:22:05 +01:00
|
|
|
{
|
2014-02-03 02:55:26 +01:00
|
|
|
TORRENT_ASSERT(m_magic == 0x1337);
|
2014-07-06 21:18:00 +02:00
|
|
|
TORRENT_ASSERT(l.locked());
|
|
|
|
TORRENT_ASSERT(cont_block > 0);
|
|
|
|
if (p->hash == 0 && !p->hashing_done)
|
|
|
|
{
|
|
|
|
DLOG("try_flush_hashed: (%d) no hash\n", int(p->piece));
|
|
|
|
return 0;
|
|
|
|
}
|
2014-02-03 02:55:26 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
if (p->num_dirty == 0)
|
|
|
|
{
|
|
|
|
DLOG("try_flush_hashed: no dirty blocks\n");
|
|
|
|
return 0;
|
2008-02-08 11:22:05 +01:00
|
|
|
}
|
2010-03-03 08:09:04 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
// end is one past the end
|
|
|
|
// round offset up to include the last block, which might
|
|
|
|
// have an odd size
|
|
|
|
int block_size = m_disk_cache.block_size();
|
|
|
|
int end = p->hashing_done ? p->blocks_in_piece : (p->hash->offset + block_size - 1) / block_size;
|
2010-03-03 08:09:04 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
// nothing has been hashed yet, don't flush anything
|
|
|
|
if (end == 0 && !p->need_readback) return 0;
|
2010-03-03 08:09:04 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
// the number of contiguous blocks we need to be allowed to flush
|
|
|
|
int block_limit = (std::min)(cont_block, int(p->blocks_in_piece));
|
2008-02-08 11:22:05 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
// if everything has been hashed, we might as well flush everything
|
|
|
|
// regardless of the contiguous block restriction
|
|
|
|
if (end == int(p->blocks_in_piece)) block_limit = 1;
|
|
|
|
|
|
|
|
if (p->need_readback)
|
|
|
|
{
|
|
|
|
// if this piece needs a read-back already, don't
|
|
|
|
// try to keep it from being flushed, since we'll
|
|
|
|
// need to read it back regardless. Flushing will
|
|
|
|
// save blocks that can be used to "save" other
|
|
|
|
// pieces from being fllushed prematurely
|
|
|
|
end = int(p->blocks_in_piece);
|
|
|
|
}
|
|
|
|
|
|
|
|
// count number of blocks that would be flushed
|
|
|
|
int num_blocks = 0;
|
|
|
|
for (int i = end-1; i >= 0; --i)
|
|
|
|
num_blocks += (p->blocks[i].dirty && !p->blocks[i].pending);
|
|
|
|
|
|
|
|
// we did not satisfy the block_limit requirement
|
|
|
|
// i.e. too few blocks would be flushed at this point, put it off
|
|
|
|
if (block_limit > num_blocks) return 0;
|
|
|
|
|
|
|
|
// if the cache line size is larger than a whole piece, hold
|
|
|
|
// off flushing this piece until enough adjacent pieces are
|
|
|
|
// full as well.
|
|
|
|
int cont_pieces = cont_block / p->blocks_in_piece;
|
|
|
|
|
|
|
|
// at this point, we may enforce flushing full cache stripes even when
|
|
|
|
// they span multiple pieces. This won't necessarily work in the general
|
|
|
|
// case, because it assumes that the piece picker will have an affinity
|
|
|
|
// to download whole stripes at a time. This is why this setting is turned
|
|
|
|
// off by default, flushing only one piece at a time
|
|
|
|
|
|
|
|
if (cont_pieces <= 1 || m_settings.get_bool(settings_pack::allow_partial_disk_writes))
|
|
|
|
{
|
|
|
|
DLOG("try_flush_hashed: (%d) blocks_in_piece: %d end: %d\n"
|
|
|
|
, int(p->piece), int(p->blocks_in_piece), end);
|
|
|
|
|
2015-05-18 07:32:18 +02:00
|
|
|
return flush_range(p, 0, end, completed_jobs, l);
|
2014-07-06 21:18:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// piece range
|
|
|
|
int range_start = (p->piece / cont_pieces) * cont_pieces;
|
|
|
|
int range_end = (std::min)(range_start + cont_pieces, p->storage->files()->num_pieces());
|
|
|
|
|
|
|
|
// look through all the pieces in this range to see if
|
|
|
|
// they are ready to be flushed. If so, flush them all,
|
|
|
|
// otherwise, hold off
|
|
|
|
bool range_full = true;
|
|
|
|
|
|
|
|
cached_piece_entry* first_piece = NULL;
|
|
|
|
DLOG("try_flush_hashed: multi-piece: ");
|
|
|
|
for (int i = range_start; i < range_end; ++i)
|
2007-06-10 22:46:09 +02:00
|
|
|
{
|
2014-07-06 21:18:00 +02:00
|
|
|
if (i == p->piece)
|
2007-06-10 22:46:09 +02:00
|
|
|
{
|
2014-07-06 21:18:00 +02:00
|
|
|
if (i == range_start) first_piece = p;
|
|
|
|
DLOG("[%d self] ", i);
|
2007-06-10 22:46:09 +02:00
|
|
|
continue;
|
|
|
|
}
|
2014-07-06 21:18:00 +02:00
|
|
|
cached_piece_entry* pe = m_disk_cache.find_piece(p->storage.get(), i);
|
|
|
|
if (pe == NULL)
|
2008-06-09 06:46:34 +02:00
|
|
|
{
|
2014-07-06 21:18:00 +02:00
|
|
|
DLOG("[%d NULL] ", i);
|
|
|
|
range_full = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (i == range_start) first_piece = pe;
|
|
|
|
|
|
|
|
// if this is a read-cache piece, it has already been flushed
|
|
|
|
if (pe->cache_state != cached_piece_entry::write_lru)
|
|
|
|
{
|
|
|
|
DLOG("[%d read-cache] ", i);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
int hash_cursor = pe->hash ? pe->hash->offset / block_size : 0;
|
|
|
|
|
|
|
|
// if the piece has all blocks, and they're all dirty, and they've
|
|
|
|
// all been hashed, then this piece is eligible for flushing
|
|
|
|
if (pe->num_dirty == pe->blocks_in_piece
|
|
|
|
&& (pe->hashing_done
|
|
|
|
|| hash_cursor == pe->blocks_in_piece
|
|
|
|
|| m_settings.get_bool(settings_pack::disable_hash_checks)))
|
|
|
|
{
|
|
|
|
DLOG("[%d hash-done] ", i);
|
2008-06-09 06:46:34 +02:00
|
|
|
continue;
|
|
|
|
}
|
2007-06-10 22:46:09 +02:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
if (pe->num_dirty < pe->blocks_in_piece)
|
|
|
|
{
|
|
|
|
DLOG("[%d dirty:%d] ", i, int(pe->num_dirty));
|
|
|
|
}
|
|
|
|
else if (pe->hashing_done == 0 && hash_cursor < pe->blocks_in_piece)
|
|
|
|
{
|
|
|
|
DLOG("[%d cursor:%d] ", i, hash_cursor);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
DLOG("[%d xx] ", i);
|
|
|
|
}
|
2010-01-27 05:25:45 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
// TOOD: in this case, the piece should probably not be flushed yet. are there
|
|
|
|
// any more cases where it should?
|
2008-02-10 01:58:25 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
range_full = false;
|
|
|
|
break;
|
|
|
|
}
|
2008-06-12 06:40:37 +02:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
if (!range_full)
|
2008-02-10 01:58:25 +01:00
|
|
|
{
|
2014-07-06 21:18:00 +02:00
|
|
|
DLOG("not flushing\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
DLOG("\n");
|
|
|
|
|
|
|
|
// now, build a iovec for all pieces that we want to flush, so that they
|
|
|
|
// can be flushed in a single atomic operation. This is especially important
|
|
|
|
// when there are more than 1 disk thread, to make sure they don't
|
|
|
|
// interleave in undesired places.
|
|
|
|
// in order to remember where each piece boundary ended up in the iovec,
|
|
|
|
// we keep the indices in the iovec_offset array
|
|
|
|
|
|
|
|
cont_pieces = range_end - range_start;
|
|
|
|
|
|
|
|
file::iovec_t* iov = TORRENT_ALLOCA(file::iovec_t, p->blocks_in_piece * cont_pieces);
|
|
|
|
int* flushing = TORRENT_ALLOCA(int, p->blocks_in_piece * cont_pieces);
|
|
|
|
// this is the offset into iov and flushing for each piece
|
|
|
|
int* iovec_offset = TORRENT_ALLOCA(int, cont_pieces + 1);
|
|
|
|
int iov_len = 0;
|
|
|
|
// this is the block index each piece starts at
|
|
|
|
int block_start = 0;
|
|
|
|
// keep track of the pieces that have had their refcount incremented
|
|
|
|
// so we know to decrement them later
|
|
|
|
int* refcount_pieces = TORRENT_ALLOCA(int, cont_pieces);
|
|
|
|
for (int i = 0; i < cont_pieces; ++i)
|
|
|
|
{
|
|
|
|
cached_piece_entry* pe;
|
|
|
|
if (i == p->piece) pe = p;
|
|
|
|
else pe = m_disk_cache.find_piece(p->storage.get(), range_start + i);
|
|
|
|
if (pe == NULL
|
|
|
|
|| pe->cache_state != cached_piece_entry::write_lru)
|
2011-03-26 20:06:58 +01:00
|
|
|
{
|
2014-07-06 21:18:00 +02:00
|
|
|
refcount_pieces[i] = 0;
|
|
|
|
iovec_offset[i] = iov_len;
|
|
|
|
block_start += p->blocks_in_piece;
|
|
|
|
continue;
|
2011-03-26 20:06:58 +01:00
|
|
|
}
|
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
iovec_offset[i] = iov_len;
|
|
|
|
refcount_pieces[i] = 1;
|
|
|
|
TORRENT_ASSERT_VAL(pe->cache_state <= cached_piece_entry::read_lru1 || pe->cache_state == cached_piece_entry::read_lru2, pe);
|
|
|
|
#if TORRENT_USE_ASSERTS
|
|
|
|
pe->piece_log.push_back(piece_log_t(piece_log_t::flushing, -1));
|
|
|
|
#endif
|
|
|
|
++pe->piece_refcount;
|
2008-12-27 03:38:14 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
iov_len += build_iovec(pe, 0, p->blocks_in_piece
|
|
|
|
, iov + iov_len, flushing + iov_len, block_start);
|
2010-01-15 17:45:42 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
block_start += p->blocks_in_piece;
|
2010-01-31 17:29:52 +01:00
|
|
|
}
|
2014-07-06 21:18:00 +02:00
|
|
|
iovec_offset[cont_pieces] = iov_len;
|
2010-05-13 17:01:20 +02:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
// ok, now we have one (or more, but hopefully one) contiguous
|
|
|
|
// iovec array. Now, flush it to disk
|
2010-05-13 17:01:20 +02:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
TORRENT_ASSERT(first_piece != NULL);
|
|
|
|
|
|
|
|
if (iov_len == 0)
|
2010-05-13 17:01:20 +02:00
|
|
|
{
|
2014-07-06 21:18:00 +02:00
|
|
|
// we may not exit here if we incremented any piece refcounters
|
|
|
|
TORRENT_ASSERT(cont_pieces == 0);
|
|
|
|
DLOG(" iov_len: 0 cont_pieces: %d range_start: %d range_end: %d\n"
|
|
|
|
, cont_pieces, range_start, range_end);
|
|
|
|
return 0;
|
2010-05-13 17:01:20 +02:00
|
|
|
}
|
2008-02-10 01:58:25 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
l.unlock();
|
2008-02-22 05:11:04 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
storage_error error;
|
|
|
|
flush_iovec(first_piece, iov, flushing, iov_len, error);
|
|
|
|
|
|
|
|
l.lock();
|
|
|
|
|
|
|
|
block_start = 0;
|
|
|
|
for (int i = 0; i < cont_pieces; ++i)
|
2008-02-22 05:11:04 +01:00
|
|
|
{
|
2014-07-06 21:18:00 +02:00
|
|
|
cached_piece_entry* pe;
|
|
|
|
if (i == p->piece) pe = p;
|
|
|
|
else pe = m_disk_cache.find_piece(p->storage.get(), range_start + i);
|
|
|
|
if (pe == NULL)
|
|
|
|
{
|
|
|
|
DLOG("iovec_flushed: piece %d gone!\n", range_start + i);
|
|
|
|
TORRENT_PIECE_ASSERT(refcount_pieces[i] == 0, pe);
|
|
|
|
block_start += p->blocks_in_piece;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (refcount_pieces[i])
|
|
|
|
{
|
|
|
|
TORRENT_PIECE_ASSERT(pe->piece_refcount > 0, pe);
|
|
|
|
--pe->piece_refcount;
|
|
|
|
m_disk_cache.maybe_free_piece(pe);
|
|
|
|
}
|
|
|
|
int num_blocks = iovec_offset[i+1] - iovec_offset[i];
|
|
|
|
iovec_flushed(pe, flushing + iovec_offset[i], num_blocks
|
|
|
|
, block_start, error, completed_jobs);
|
|
|
|
block_start += p->blocks_in_piece;
|
2008-02-22 05:11:04 +01:00
|
|
|
}
|
2014-07-06 21:18:00 +02:00
|
|
|
|
|
|
|
// if the cache is under high pressure, we need to evict
|
|
|
|
// the blocks we just flushed to make room for more write pieces
|
|
|
|
int evict = m_disk_cache.num_to_evict(0);
|
|
|
|
if (evict > 0) m_disk_cache.try_evict_blocks(evict);
|
|
|
|
|
|
|
|
return iov_len;
|
2008-02-22 05:11:04 +01:00
|
|
|
}
|
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
// iov and flushing are expected to be arrays to at least pe->blocks_in_piece
|
|
|
|
// items in them. Returns the numner of iovecs written to the iov array.
|
|
|
|
// The same number of block indices are written to the flushing array. These
|
|
|
|
// are block indices that the respecivec iovec structure refers to, since
|
|
|
|
// we might not be able to flush everything as a single contiguous block,
|
|
|
|
// the block indices indicates where the block run is broken
|
|
|
|
// the cache needs to be locked when calling this function
|
|
|
|
// block_base_index is the offset added to every block index written to
|
|
|
|
// the flushing array. This can be used when building iovecs spanning
|
|
|
|
// multiple pieces, the subsequent pieces after the first one, must have
|
|
|
|
// their block indices start where the previous one left off
|
|
|
|
int disk_io_thread::build_iovec(cached_piece_entry* pe, int start, int end
|
|
|
|
, file::iovec_t* iov, int* flushing, int block_base_index)
|
2008-02-22 05:11:04 +01:00
|
|
|
{
|
|
|
|
INVARIANT_CHECK;
|
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
DLOG("build_iovec: piece=%d [%d, %d)\n"
|
|
|
|
, int(pe->piece), start, end);
|
|
|
|
TORRENT_PIECE_ASSERT(start >= 0, pe);
|
|
|
|
TORRENT_PIECE_ASSERT(start < end, pe);
|
|
|
|
end = (std::min)(end, int(pe->blocks_in_piece));
|
2010-01-27 05:25:45 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
int piece_size = pe->storage->files()->piece_size(pe->piece);
|
|
|
|
TORRENT_PIECE_ASSERT(piece_size > 0, pe);
|
|
|
|
|
|
|
|
int iov_len = 0;
|
|
|
|
// the blocks we're flushing
|
|
|
|
int num_flushing = 0;
|
2009-05-24 17:32:14 +02:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
#if DEBUG_DISK_THREAD
|
|
|
|
DLOG("build_iov: piece: %d [", int(pe->piece));
|
|
|
|
for (int i = 0; i < start; ++i) DLOG(".");
|
|
|
|
#endif
|
2010-05-17 01:14:47 +02:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
int block_size = m_disk_cache.block_size();
|
|
|
|
int size_left = piece_size;
|
|
|
|
for (int i = start; i < end; ++i, size_left -= block_size)
|
2010-01-27 05:25:45 +01:00
|
|
|
{
|
2014-07-06 21:18:00 +02:00
|
|
|
TORRENT_PIECE_ASSERT(size_left > 0, pe);
|
|
|
|
// don't flush blocks that are empty (buf == 0), not dirty
|
|
|
|
// (read cache blocks), or pending (already being written)
|
|
|
|
if (pe->blocks[i].buf == NULL
|
|
|
|
|| pe->blocks[i].pending
|
|
|
|
|| !pe->blocks[i].dirty)
|
2010-01-27 05:25:45 +01:00
|
|
|
{
|
2014-07-06 21:18:00 +02:00
|
|
|
DLOG("-");
|
|
|
|
continue;
|
2009-05-24 17:32:14 +02:00
|
|
|
}
|
2014-07-06 21:18:00 +02:00
|
|
|
|
|
|
|
// if we fail to lock the block, it' no longer in the cache
|
|
|
|
bool locked = m_disk_cache.inc_block_refcount(pe, i, block_cache::ref_flushing);
|
|
|
|
|
|
|
|
// it should always suceed, since it's a dirty block, and
|
|
|
|
// should never have been marked as volatile
|
|
|
|
TORRENT_ASSERT(locked);
|
2015-05-19 05:13:49 +02:00
|
|
|
TORRENT_ASSERT(pe->cache_state != cached_piece_entry::volatile_read_lru);
|
|
|
|
TORRENT_UNUSED(locked);
|
2014-07-06 21:18:00 +02:00
|
|
|
|
|
|
|
flushing[num_flushing++] = i + block_base_index;
|
|
|
|
iov[iov_len].iov_base = pe->blocks[i].buf;
|
|
|
|
iov[iov_len].iov_len = (std::min)(block_size, size_left);
|
|
|
|
++iov_len;
|
|
|
|
pe->blocks[i].pending = true;
|
|
|
|
|
|
|
|
DLOG("x");
|
2008-02-22 05:11:04 +01:00
|
|
|
}
|
2014-07-06 21:18:00 +02:00
|
|
|
DLOG("]\n");
|
2010-05-17 01:14:47 +02:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
TORRENT_PIECE_ASSERT(iov_len == num_flushing, pe);
|
|
|
|
return iov_len;
|
2008-02-22 05:11:04 +01:00
|
|
|
}
|
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
// does the actual writing to disk
|
|
|
|
// the cached_piece_entry is supposed to point to the
|
|
|
|
// first piece, if the iovec spans multiple pieces
|
|
|
|
void disk_io_thread::flush_iovec(cached_piece_entry* pe
|
|
|
|
, file::iovec_t const* iov, int const* flushing
|
|
|
|
, int num_blocks, storage_error& error)
|
2009-05-23 09:35:45 +02:00
|
|
|
{
|
2014-07-06 21:18:00 +02:00
|
|
|
TORRENT_PIECE_ASSERT(!error, pe);
|
|
|
|
TORRENT_PIECE_ASSERT(num_blocks > 0, pe);
|
2014-08-01 08:07:48 +02:00
|
|
|
m_stats_counters.inc_stats_counter(counters::num_writing_threads, 1);
|
2014-07-06 21:18:00 +02:00
|
|
|
|
2015-03-12 05:34:54 +01:00
|
|
|
time_point start_time = clock_type::now();
|
2014-07-06 21:18:00 +02:00
|
|
|
int block_size = m_disk_cache.block_size();
|
|
|
|
|
|
|
|
#if DEBUG_DISK_THREAD
|
|
|
|
DLOG("flush_iovec: piece: %d [ ", int(pe->piece));
|
|
|
|
for (int i = 0; i < num_blocks; ++i)
|
|
|
|
DLOG("%d ", flushing[i]);
|
|
|
|
DLOG("]\n");
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// issue the actual write operation
|
|
|
|
file::iovec_t const* iov_start = iov;
|
|
|
|
int flushing_start = 0;
|
|
|
|
int piece = pe->piece;
|
|
|
|
int blocks_in_piece = pe->blocks_in_piece;
|
|
|
|
bool failed = false;
|
|
|
|
for (int i = 1; i <= num_blocks; ++i)
|
2009-05-23 09:35:45 +02:00
|
|
|
{
|
2014-07-06 21:18:00 +02:00
|
|
|
if (i < num_blocks && flushing[i] == flushing[i-1]+1) continue;
|
2014-07-28 03:06:00 +02:00
|
|
|
int ret = pe->storage->get_storage_impl()->writev(iov_start
|
|
|
|
, i - flushing_start
|
2014-07-06 21:18:00 +02:00
|
|
|
, piece + flushing[flushing_start] / blocks_in_piece
|
2014-07-28 03:06:00 +02:00
|
|
|
, (flushing[flushing_start] % blocks_in_piece) * block_size
|
|
|
|
, 0, error);
|
2014-07-06 21:18:00 +02:00
|
|
|
if (ret < 0 || error) failed = true;
|
|
|
|
iov_start = &iov[i];
|
|
|
|
flushing_start = i;
|
2009-05-23 09:35:45 +02:00
|
|
|
}
|
2014-07-06 21:18:00 +02:00
|
|
|
|
2014-08-01 08:07:48 +02:00
|
|
|
m_stats_counters.inc_stats_counter(counters::num_writing_threads, -1);
|
2014-07-06 21:18:00 +02:00
|
|
|
|
|
|
|
if (!failed)
|
|
|
|
{
|
|
|
|
TORRENT_PIECE_ASSERT(!error, pe);
|
2015-03-12 05:34:54 +01:00
|
|
|
boost::uint32_t write_time = total_microseconds(clock_type::now() - start_time);
|
2014-07-06 21:18:00 +02:00
|
|
|
m_write_time.add_sample(write_time / num_blocks);
|
|
|
|
|
2014-08-01 08:07:48 +02:00
|
|
|
m_stats_counters.inc_stats_counter(counters::num_blocks_written, num_blocks);
|
|
|
|
m_stats_counters.inc_stats_counter(counters::num_write_ops);
|
|
|
|
m_stats_counters.inc_stats_counter(counters::disk_write_time, write_time);
|
|
|
|
m_stats_counters.inc_stats_counter(counters::disk_job_time, write_time);
|
2014-07-06 21:18:00 +02:00
|
|
|
#if DEBUG_DISK_THREAD
|
|
|
|
DLOG("flush_iovec: %d\n", num_blocks);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
#if DEBUG_DISK_THREAD
|
|
|
|
else
|
|
|
|
{
|
|
|
|
DLOG("flush_iovec: error: (%d) %s\n"
|
|
|
|
, error.ec.value(), error.ec.message().c_str());
|
|
|
|
}
|
|
|
|
#endif
|
2009-05-23 09:35:45 +02:00
|
|
|
}
|
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
// It is necessary to call this function with the blocks produced by
|
|
|
|
// build_iovec, to reset their state to not being flushed anymore
|
|
|
|
// the cache needs to be locked when calling this function
|
|
|
|
void disk_io_thread::iovec_flushed(cached_piece_entry* pe
|
|
|
|
, int* flushing, int num_blocks, int block_offset
|
|
|
|
, storage_error const& error
|
|
|
|
, tailqueue& completed_jobs)
|
2009-05-23 09:35:45 +02:00
|
|
|
{
|
2014-07-06 21:18:00 +02:00
|
|
|
for (int i = 0; i < num_blocks; ++i)
|
|
|
|
flushing[i] -= block_offset;
|
|
|
|
|
|
|
|
#if DEBUG_DISK_THREAD
|
|
|
|
DLOG("iovec_flushed: piece: %d block_offset: %d [ "
|
|
|
|
, int(pe->piece), block_offset);
|
|
|
|
for (int i = 0; i < num_blocks; ++i)
|
|
|
|
DLOG("%d ", flushing[i]);
|
|
|
|
DLOG("]\n");
|
|
|
|
#endif
|
|
|
|
m_disk_cache.blocks_flushed(pe, flushing, num_blocks);
|
2011-09-27 12:46:56 +02:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
int block_size = m_disk_cache.block_size();
|
|
|
|
|
|
|
|
if (error)
|
2011-09-27 06:05:05 +02:00
|
|
|
{
|
2014-07-06 21:18:00 +02:00
|
|
|
fail_jobs_impl(error, pe->jobs, completed_jobs);
|
2011-09-27 06:05:05 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-07-06 21:18:00 +02:00
|
|
|
disk_io_job* j = (disk_io_job*)pe->jobs.get_all();
|
|
|
|
while (j)
|
2011-09-27 09:50:58 +02:00
|
|
|
{
|
2014-07-06 21:18:00 +02:00
|
|
|
disk_io_job* next = (disk_io_job*)j->next;
|
|
|
|
j->next = NULL;
|
|
|
|
TORRENT_PIECE_ASSERT((j->flags & disk_io_job::in_progress) || !j->storage, pe);
|
|
|
|
TORRENT_PIECE_ASSERT(j->piece == pe->piece, pe);
|
|
|
|
if (j->completed(pe, block_size))
|
|
|
|
{
|
|
|
|
j->ret = j->d.io.buffer_size;
|
|
|
|
j->error = error;
|
|
|
|
completed_jobs.push_back(j);
|
|
|
|
}
|
2011-09-27 12:46:56 +02:00
|
|
|
else
|
2009-05-23 09:35:45 +02:00
|
|
|
{
|
2014-07-06 21:18:00 +02:00
|
|
|
pe->jobs.push_back(j);
|
2009-05-23 09:35:45 +02:00
|
|
|
}
|
2014-07-06 21:18:00 +02:00
|
|
|
j = next;
|
2009-05-23 09:35:45 +02:00
|
|
|
}
|
|
|
|
}
|
2014-07-06 21:18:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// issues write operations for blocks in the given
|
|
|
|
// range on the given piece.
|
|
|
|
int disk_io_thread::flush_range(cached_piece_entry* pe, int start, int end
|
2015-05-18 07:32:18 +02:00
|
|
|
, tailqueue& completed_jobs, mutex::scoped_lock& l)
|
2014-07-06 21:18:00 +02:00
|
|
|
{
|
|
|
|
TORRENT_ASSERT(l.locked());
|
|
|
|
INVARIANT_CHECK;
|
|
|
|
|
|
|
|
DLOG("flush_range: piece=%d [%d, %d)\n"
|
|
|
|
, int(pe->piece), start, end);
|
|
|
|
TORRENT_PIECE_ASSERT(start >= 0, pe);
|
|
|
|
TORRENT_PIECE_ASSERT(start < end, pe);
|
2015-05-18 07:32:18 +02:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
file::iovec_t* iov = TORRENT_ALLOCA(file::iovec_t, pe->blocks_in_piece);
|
|
|
|
int* flushing = TORRENT_ALLOCA(int, pe->blocks_in_piece);
|
|
|
|
int iov_len = build_iovec(pe, start, end, iov, flushing, 0);
|
|
|
|
if (iov_len == 0) return 0;
|
|
|
|
|
|
|
|
TORRENT_PIECE_ASSERT(pe->cache_state <= cached_piece_entry::read_lru1 || pe->cache_state == cached_piece_entry::read_lru2, pe);
|
|
|
|
#if TORRENT_USE_ASSERTS
|
|
|
|
pe->piece_log.push_back(piece_log_t(piece_log_t::flush_range, -1));
|
|
|
|
#endif
|
|
|
|
++pe->piece_refcount;
|
|
|
|
|
|
|
|
l.unlock();
|
|
|
|
|
|
|
|
storage_error error;
|
|
|
|
flush_iovec(pe, iov, flushing, iov_len, error);
|
|
|
|
|
|
|
|
l.lock();
|
|
|
|
|
|
|
|
TORRENT_PIECE_ASSERT(pe->piece_refcount > 0, pe);
|
|
|
|
--pe->piece_refcount;
|
|
|
|
iovec_flushed(pe, flushing, iov_len, 0, error, completed_jobs);
|
|
|
|
|
|
|
|
// if the cache is under high pressure, we need to evict
|
|
|
|
// the blocks we just flushed to make room for more write pieces
|
|
|
|
int evict = m_disk_cache.num_to_evict(0);
|
|
|
|
if (evict > 0) m_disk_cache.try_evict_blocks(evict);
|
2009-05-23 09:35:45 +02:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
m_disk_cache.maybe_free_piece(pe);
|
|
|
|
|
|
|
|
return iov_len;
|
2009-05-23 09:35:45 +02:00
|
|
|
}
|
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
void disk_io_thread::fail_jobs(storage_error const& e, tailqueue& jobs_)
|
2011-03-21 07:31:48 +01:00
|
|
|
{
|
2014-07-06 21:18:00 +02:00
|
|
|
tailqueue jobs;
|
|
|
|
fail_jobs_impl(e, jobs_, jobs);
|
|
|
|
if (jobs.size()) add_completed_jobs(jobs);
|
2011-03-21 07:31:48 +01:00
|
|
|
}
|
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
void disk_io_thread::fail_jobs_impl(storage_error const& e, tailqueue& src, tailqueue& dst)
|
2008-02-08 11:22:05 +01:00
|
|
|
{
|
2014-07-06 21:18:00 +02:00
|
|
|
while (src.size())
|
|
|
|
{
|
|
|
|
disk_io_job* j = (disk_io_job*)src.pop_front();
|
|
|
|
TORRENT_ASSERT((j->flags & disk_io_job::in_progress) || !j->storage);
|
|
|
|
j->ret = -1;
|
|
|
|
j->error = e;
|
|
|
|
dst.push_back(j);
|
|
|
|
}
|
|
|
|
}
|
2009-05-24 02:12:53 +02:00
|
|
|
|
2015-01-01 11:10:13 +01:00
|
|
|
void disk_io_thread::flush_piece(cached_piece_entry* pe, int flags
|
|
|
|
, tailqueue& completed_jobs, mutex::scoped_lock& l)
|
2014-07-06 21:18:00 +02:00
|
|
|
{
|
|
|
|
TORRENT_ASSERT(l.locked());
|
|
|
|
if (flags & flush_delete_cache)
|
|
|
|
{
|
|
|
|
// delete dirty blocks and post handlers with
|
|
|
|
// operation_aborted error code
|
2015-01-01 11:10:13 +01:00
|
|
|
fail_jobs_impl(storage_error(boost::asio::error::operation_aborted)
|
|
|
|
, pe->jobs, completed_jobs);
|
|
|
|
fail_jobs_impl(storage_error(boost::asio::error::operation_aborted)
|
|
|
|
, pe->read_jobs, completed_jobs);
|
2014-07-06 21:18:00 +02:00
|
|
|
m_disk_cache.abort_dirty(pe);
|
|
|
|
}
|
|
|
|
else if ((flags & flush_write_cache) && pe->num_dirty > 0)
|
|
|
|
{
|
|
|
|
// issue write commands
|
2015-05-18 07:32:18 +02:00
|
|
|
flush_range(pe, 0, INT_MAX, completed_jobs, l);
|
2011-04-17 07:33:33 +02:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
// if we're also flushing the read cache, this piece
|
|
|
|
// should be removed as soon as all write jobs finishes
|
|
|
|
// otherwise it will turn into a read piece
|
|
|
|
}
|
2008-02-22 05:11:04 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
// mark_for_deletion may erase the piece from the cache, that's
|
|
|
|
// why we don't have the 'i' iterator referencing it at this point
|
|
|
|
if (flags & (flush_read_cache | flush_delete_cache))
|
|
|
|
{
|
|
|
|
fail_jobs_impl(storage_error(boost::asio::error::operation_aborted), pe->jobs, completed_jobs);
|
|
|
|
m_disk_cache.mark_for_deletion(pe);
|
|
|
|
}
|
|
|
|
}
|
2011-03-26 20:06:58 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
void disk_io_thread::flush_cache(piece_manager* storage, boost::uint32_t flags
|
|
|
|
, tailqueue& completed_jobs, mutex::scoped_lock& l)
|
|
|
|
{
|
|
|
|
if (storage)
|
2009-05-23 09:35:45 +02:00
|
|
|
{
|
2014-07-06 21:18:00 +02:00
|
|
|
boost::unordered_set<cached_piece_entry*> const& pieces = storage->cached_pieces();
|
|
|
|
std::vector<int> piece_index;
|
|
|
|
piece_index.reserve(pieces.size());
|
|
|
|
for (boost::unordered_set<cached_piece_entry*>::const_iterator i = pieces.begin()
|
|
|
|
, end(pieces.end()); i != end; ++i)
|
2009-05-23 09:35:45 +02:00
|
|
|
{
|
2015-01-01 11:10:13 +01:00
|
|
|
if ((*i)->get_storage() != storage) continue;
|
2014-07-06 21:18:00 +02:00
|
|
|
piece_index.push_back((*i)->piece);
|
2009-05-23 09:35:45 +02:00
|
|
|
}
|
2014-07-06 21:18:00 +02:00
|
|
|
|
|
|
|
for (std::vector<int>::iterator i = piece_index.begin()
|
|
|
|
, end(piece_index.end()); i != end; ++i)
|
2009-05-23 09:35:45 +02:00
|
|
|
{
|
2014-07-06 21:18:00 +02:00
|
|
|
cached_piece_entry* pe = m_disk_cache.find_piece(storage, *i);
|
|
|
|
if (pe == NULL) continue;
|
|
|
|
TORRENT_PIECE_ASSERT(pe->storage.get() == storage, pe);
|
|
|
|
flush_piece(pe, flags, completed_jobs, l);
|
2009-05-23 09:35:45 +02:00
|
|
|
}
|
2014-07-06 21:18:00 +02:00
|
|
|
#if TORRENT_USE_ASSERTS
|
|
|
|
TORRENT_ASSERT(l.locked());
|
|
|
|
// if the user asked to delete the cache for this storage
|
|
|
|
// we really should not have any pieces left. This is only called
|
|
|
|
// from disk_io_thread::do_delete, which is a fence job and should
|
|
|
|
// have any other jobs active, i.e. there should not be any references
|
|
|
|
// keeping pieces or blocks alive
|
|
|
|
if ((flags & flush_delete_cache) && (flags & flush_expect_clear))
|
2011-03-20 06:47:27 +01:00
|
|
|
{
|
2014-07-06 21:18:00 +02:00
|
|
|
boost::unordered_set<cached_piece_entry*> const& storage_pieces = storage->cached_pieces();
|
|
|
|
for (boost::unordered_set<cached_piece_entry*>::const_iterator i = storage_pieces.begin()
|
|
|
|
, end(storage_pieces.end()); i != end; ++i)
|
|
|
|
{
|
|
|
|
cached_piece_entry* pe = m_disk_cache.find_piece(storage, (*i)->piece);
|
|
|
|
TORRENT_PIECE_ASSERT(pe->num_dirty == 0, pe);
|
|
|
|
}
|
2011-03-20 06:47:27 +01:00
|
|
|
}
|
2014-07-06 21:18:00 +02:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
std::pair<block_cache::iterator, block_cache::iterator> range = m_disk_cache.all_pieces();
|
|
|
|
while (range.first != range.second)
|
2011-03-20 06:47:27 +01:00
|
|
|
{
|
2015-01-01 11:10:13 +01:00
|
|
|
// TODO: it would be nice to optimize this by having the cache
|
|
|
|
// pieces also ordered by
|
|
|
|
if ((flags & (flush_read_cache | flush_delete_cache)) == 0)
|
2014-07-06 21:18:00 +02:00
|
|
|
{
|
2015-01-01 11:10:13 +01:00
|
|
|
// if we're not flushing the read cache, and not deleting the
|
|
|
|
// cache, skip pieces with no dirty blocks, i.e. read cache
|
|
|
|
// pieces
|
|
|
|
while (range.first->num_dirty == 0)
|
|
|
|
{
|
|
|
|
++range.first;
|
|
|
|
if (range.first == range.second) return;
|
|
|
|
}
|
2014-07-06 21:18:00 +02:00
|
|
|
}
|
|
|
|
cached_piece_entry* pe = const_cast<cached_piece_entry*>(&*range.first);
|
|
|
|
flush_piece(pe, flags, completed_jobs, l);
|
|
|
|
range = m_disk_cache.all_pieces();
|
2011-03-20 06:47:27 +01:00
|
|
|
}
|
|
|
|
}
|
2008-02-08 11:22:05 +01:00
|
|
|
}
|
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
// this is called if we're exceeding (or about to exceed) the cache
|
|
|
|
// size limit. This means we should not restrict ourselves to contiguous
|
|
|
|
// blocks of write cache line size, but try to flush all old blocks
|
|
|
|
// this is why we pass in 1 as cont_block to the flushing functions
|
|
|
|
void disk_io_thread::try_flush_write_blocks(int num, tailqueue& completed_jobs
|
|
|
|
, mutex::scoped_lock& l)
|
2008-02-08 11:22:05 +01:00
|
|
|
{
|
2014-07-06 21:18:00 +02:00
|
|
|
DLOG("try_flush_write_blocks: %d\n", num);
|
2009-05-27 18:50:46 +02:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
list_iterator range = m_disk_cache.write_lru_pieces();
|
|
|
|
std::vector<std::pair<piece_manager*, int> > pieces;
|
|
|
|
pieces.reserve(m_disk_cache.num_write_lru_pieces());
|
2009-05-27 18:50:46 +02:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
for (list_iterator p = range; p.get() && num > 0; p.next())
|
|
|
|
{
|
|
|
|
cached_piece_entry* e = (cached_piece_entry*)p.get();
|
|
|
|
if (e->num_dirty == 0) continue;
|
|
|
|
pieces.push_back(std::make_pair(e->storage.get(), int(e->piece)));
|
|
|
|
}
|
|
|
|
|
|
|
|
for (std::vector<std::pair<piece_manager*, int> >::iterator i = pieces.begin()
|
|
|
|
, end(pieces.end()); i != end; ++i)
|
|
|
|
{
|
|
|
|
// TODO: instead of doing a lookup each time through the loop, save
|
|
|
|
// cached_piece_entry pointers with piece_refcount incremented to pin them
|
|
|
|
cached_piece_entry* pe = m_disk_cache.find_piece(i->first, i->second);
|
|
|
|
if (pe == NULL) continue;
|
|
|
|
|
|
|
|
// another thread may flush this piece while we're looping and
|
|
|
|
// evict it into a read piece and then also evict it to ghost
|
|
|
|
if (pe->cache_state != cached_piece_entry::write_lru) continue;
|
|
|
|
|
|
|
|
#if TORRENT_USE_ASSERTS
|
|
|
|
pe->piece_log.push_back(piece_log_t(piece_log_t::try_flush_write_blocks, -1));
|
2008-02-10 01:58:25 +01:00
|
|
|
#endif
|
2014-07-06 21:18:00 +02:00
|
|
|
++pe->piece_refcount;
|
|
|
|
kick_hasher(pe, l);
|
|
|
|
num -= try_flush_hashed(pe, 1, completed_jobs, l);
|
|
|
|
--pe->piece_refcount;
|
|
|
|
}
|
2009-01-03 09:11:31 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
// when the write cache is under high pressure, it is likely
|
|
|
|
// counter productive to actually do this, since a piece may
|
|
|
|
// not have had its flush_hashed job run on it
|
|
|
|
// so only do it if no other thread is currently flushing
|
2009-01-03 09:11:31 +01:00
|
|
|
|
2014-08-01 08:07:48 +02:00
|
|
|
if (num == 0 || m_stats_counters[counters::num_writing_threads] > 0) return;
|
2014-07-06 21:18:00 +02:00
|
|
|
|
|
|
|
// if we still need to flush blocks, start over and flush
|
|
|
|
// everything in LRU order (degrade to lru cache eviction)
|
|
|
|
for (std::vector<std::pair<piece_manager*, int> >::iterator i = pieces.begin()
|
|
|
|
, end(pieces.end()); i != end; ++i)
|
2008-02-08 11:22:05 +01:00
|
|
|
{
|
2014-07-06 21:18:00 +02:00
|
|
|
cached_piece_entry* pe = m_disk_cache.find_piece(i->first, i->second);
|
|
|
|
if (pe == NULL) continue;
|
|
|
|
if (pe->num_dirty == 0) continue;
|
2009-01-03 09:11:31 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
// another thread may flush this piece while we're looping and
|
|
|
|
// evict it into a read piece and then also evict it to ghost
|
|
|
|
if (pe->cache_state != cached_piece_entry::write_lru) continue;
|
2011-03-11 08:37:12 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
// don't flush blocks that are being hashed by another thread
|
|
|
|
if (pe->num_dirty == 0 || pe->hashing) continue;
|
2008-02-08 11:22:05 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
#if TORRENT_USE_ASSERTS
|
|
|
|
pe->piece_log.push_back(piece_log_t(piece_log_t::try_flush_write_blocks2, -1));
|
|
|
|
#endif
|
|
|
|
++pe->piece_refcount;
|
2008-02-08 11:22:05 +01:00
|
|
|
|
2015-05-18 07:32:18 +02:00
|
|
|
num -= flush_range(pe, 0, INT_MAX, completed_jobs, l);
|
2014-07-06 21:18:00 +02:00
|
|
|
--pe->piece_refcount;
|
2009-06-10 10:30:55 +02:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
m_disk_cache.maybe_free_piece(pe);
|
|
|
|
}
|
2008-02-08 11:22:05 +01:00
|
|
|
}
|
|
|
|
|
2015-04-20 06:52:49 +02:00
|
|
|
void disk_io_thread::flush_expired_write_blocks(tailqueue& completed_jobs
|
|
|
|
, mutex::scoped_lock& l)
|
2008-02-22 05:11:04 +01:00
|
|
|
{
|
2014-07-06 21:18:00 +02:00
|
|
|
DLOG("flush_expired_write_blocks\n");
|
2009-11-28 04:14:08 +01:00
|
|
|
|
2015-03-12 05:34:54 +01:00
|
|
|
time_point now = aux::time_now();
|
2014-07-06 21:18:00 +02:00
|
|
|
time_duration expiration_limit = seconds(m_settings.get_int(settings_pack::cache_expiry));
|
2009-11-28 04:14:08 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
#if TORRENT_USE_ASSERTS
|
2015-03-12 05:34:54 +01:00
|
|
|
time_point timeout = min_time();
|
2014-07-06 21:18:00 +02:00
|
|
|
#endif
|
2009-11-28 04:14:08 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
cached_piece_entry** to_flush = TORRENT_ALLOCA(cached_piece_entry*, 200);
|
|
|
|
int num_flush = 0;
|
2009-11-28 04:14:08 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
for (list_iterator p = m_disk_cache.write_lru_pieces(); p.get(); p.next())
|
2008-02-22 05:11:04 +01:00
|
|
|
{
|
2014-07-06 21:18:00 +02:00
|
|
|
cached_piece_entry* e = (cached_piece_entry*)p.get();
|
|
|
|
#if TORRENT_USE_ASSERTS
|
|
|
|
TORRENT_PIECE_ASSERT(e->expire >= timeout, e);
|
|
|
|
timeout = e->expire;
|
|
|
|
#endif
|
2009-11-28 04:14:08 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
// since we're iterating in order of last use, if this piece
|
|
|
|
// shouldn't be evicted, none of the following ones will either
|
|
|
|
if (now - e->expire < expiration_limit) break;
|
|
|
|
if (e->num_dirty == 0) continue;
|
2008-02-22 05:11:04 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
TORRENT_PIECE_ASSERT(e->cache_state <= cached_piece_entry::read_lru1 || e->cache_state == cached_piece_entry::read_lru2, e);
|
|
|
|
#if TORRENT_USE_ASSERTS
|
|
|
|
e->piece_log.push_back(piece_log_t(piece_log_t::flush_expired, -1));
|
|
|
|
#endif
|
|
|
|
++e->piece_refcount;
|
|
|
|
// We can rely on the piece entry not being removed by
|
|
|
|
// incrementing the piece_refcount
|
|
|
|
to_flush[num_flush++] = e;
|
|
|
|
if (num_flush == 200) break;
|
2008-02-22 05:11:04 +01:00
|
|
|
}
|
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
for (int i = 0; i < num_flush; ++i)
|
2009-11-28 04:14:08 +01:00
|
|
|
{
|
2015-05-18 07:32:18 +02:00
|
|
|
flush_range(to_flush[i], 0, INT_MAX, completed_jobs, l);
|
2014-07-06 21:18:00 +02:00
|
|
|
TORRENT_ASSERT(to_flush[i]->piece_refcount > 0);
|
|
|
|
--to_flush[i]->piece_refcount;
|
|
|
|
m_disk_cache.maybe_free_piece(to_flush[i]);
|
2009-11-28 04:14:08 +01:00
|
|
|
}
|
2014-07-06 21:18:00 +02:00
|
|
|
}
|
|
|
|
|
2015-04-20 06:52:49 +02:00
|
|
|
namespace {
|
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
typedef int (disk_io_thread::*disk_io_fun_t)(disk_io_job* j, tailqueue& completed_jobs);
|
|
|
|
|
|
|
|
// this is a jump-table for disk I/O jobs
|
2015-04-20 06:52:49 +02:00
|
|
|
const disk_io_fun_t job_functions[] =
|
2014-07-06 21:18:00 +02:00
|
|
|
{
|
|
|
|
&disk_io_thread::do_read,
|
|
|
|
&disk_io_thread::do_write,
|
|
|
|
&disk_io_thread::do_hash,
|
|
|
|
&disk_io_thread::do_move_storage,
|
|
|
|
&disk_io_thread::do_release_files,
|
|
|
|
&disk_io_thread::do_delete_files,
|
|
|
|
&disk_io_thread::do_check_fastresume,
|
|
|
|
&disk_io_thread::do_save_resume_data,
|
|
|
|
&disk_io_thread::do_rename_file,
|
|
|
|
&disk_io_thread::do_stop_torrent,
|
|
|
|
&disk_io_thread::do_cache_piece,
|
|
|
|
#ifndef TORRENT_NO_DEPRECATE
|
|
|
|
&disk_io_thread::do_finalize_file,
|
|
|
|
#endif
|
|
|
|
&disk_io_thread::do_flush_piece,
|
|
|
|
&disk_io_thread::do_flush_hashed,
|
|
|
|
&disk_io_thread::do_flush_storage,
|
|
|
|
&disk_io_thread::do_trim_cache,
|
|
|
|
&disk_io_thread::do_file_priority,
|
|
|
|
&disk_io_thread::do_load_torrent,
|
|
|
|
&disk_io_thread::do_clear_piece,
|
|
|
|
&disk_io_thread::do_tick,
|
|
|
|
};
|
2009-11-28 04:14:08 +01:00
|
|
|
|
2015-04-20 06:52:49 +02:00
|
|
|
} // anonymous namespace
|
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
// evict and/or flush blocks if we're exceeding the cache size
|
|
|
|
// or used to exceed it and haven't dropped below the low watermark yet
|
|
|
|
// the low watermark is dynamic, based on the number of peers waiting
|
|
|
|
// on buffers to free up. The more waiters, the lower the low watermark
|
|
|
|
// is. Because of this, the target for flushing jobs may have dropped
|
|
|
|
// below the number of blocks we flushed by the time we're done flushing
|
|
|
|
// that's why we need to call this fairly often. Both before and after
|
|
|
|
// a disk job is executed
|
|
|
|
void disk_io_thread::check_cache_level(mutex::scoped_lock& l, tailqueue& completed_jobs)
|
|
|
|
{
|
|
|
|
int evict = m_disk_cache.num_to_evict(0);
|
|
|
|
if (evict > 0)
|
2009-01-03 09:11:31 +01:00
|
|
|
{
|
2014-07-06 21:18:00 +02:00
|
|
|
evict = m_disk_cache.try_evict_blocks(evict);
|
|
|
|
// don't evict write jobs if at least one other thread
|
|
|
|
// is flushing right now. Doing so could result in
|
|
|
|
// unnecessary flushing of the wrong pieces
|
2014-08-01 08:07:48 +02:00
|
|
|
if (evict > 0 && m_stats_counters[counters::num_writing_threads] == 0)
|
2009-11-28 04:14:08 +01:00
|
|
|
{
|
2014-07-06 21:18:00 +02:00
|
|
|
try_flush_write_blocks(evict, completed_jobs, l);
|
2009-05-21 18:15:05 +02:00
|
|
|
}
|
2009-01-03 09:11:31 +01:00
|
|
|
}
|
2008-02-22 05:11:04 +01:00
|
|
|
}
|
2009-02-03 08:46:24 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
void disk_io_thread::perform_job(disk_io_job* j, tailqueue& completed_jobs)
|
2008-02-22 05:11:04 +01:00
|
|
|
{
|
|
|
|
INVARIANT_CHECK;
|
2014-07-06 21:18:00 +02:00
|
|
|
TORRENT_ASSERT(j->next == 0);
|
|
|
|
TORRENT_ASSERT((j->flags & disk_io_job::in_progress) || !j->storage);
|
2008-02-22 05:11:04 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
mutex::scoped_lock l(m_cache_mutex);
|
2010-01-31 20:14:00 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
check_cache_level(l, completed_jobs);
|
2010-01-15 17:45:42 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
DLOG("perform_job job: %s ( %s%s) piece: %d offset: %d outstanding: %d\n"
|
|
|
|
, job_action_name[j->action]
|
|
|
|
, (j->flags & disk_io_job::fence) ? "fence ": ""
|
|
|
|
, (j->flags & disk_io_job::force_copy) ? "force_copy ": ""
|
|
|
|
, j->piece, j->d.io.offset
|
|
|
|
, j->storage ? j->storage->num_outstanding_jobs() : -1);
|
2008-02-22 05:11:04 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
l.unlock();
|
2008-02-22 05:11:04 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
boost::shared_ptr<piece_manager> storage = j->storage;
|
2009-05-24 02:12:53 +02:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
// TODO: instead of doing this. pass in the settings to each storage_interface
|
|
|
|
// call. Each disk thread could hold its most recent understanding of the settings
|
|
|
|
// in a shared_ptr, and update it every time it wakes up from a job. That way
|
|
|
|
// each access to the settings won't require a mutex to be held.
|
|
|
|
if (storage && storage->get_storage_impl()->m_settings == 0)
|
|
|
|
storage->get_storage_impl()->m_settings = &m_settings;
|
2008-02-22 05:11:04 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
TORRENT_ASSERT(j->action < sizeof(job_functions)/sizeof(job_functions[0]));
|
2010-01-27 05:25:45 +01:00
|
|
|
|
2015-03-12 05:34:54 +01:00
|
|
|
time_point start_time = clock_type::now();
|
2008-02-22 05:11:04 +01:00
|
|
|
|
2014-10-25 22:07:50 +02:00
|
|
|
m_stats_counters.inc_stats_counter(counters::num_running_disk_jobs, 1);
|
2008-02-22 05:11:04 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
// call disk function
|
|
|
|
int ret = (this->*(job_functions[j->action]))(j, completed_jobs);
|
|
|
|
|
2014-10-13 01:49:51 +02:00
|
|
|
// note that -2 erros are OK
|
|
|
|
TORRENT_ASSERT(ret != -1 || (j->error.ec && j->error.operation != 0));
|
|
|
|
|
2014-10-25 22:07:50 +02:00
|
|
|
m_stats_counters.inc_stats_counter(counters::num_running_disk_jobs, -1);
|
2014-07-06 21:18:00 +02:00
|
|
|
|
|
|
|
if (ret == retry_job)
|
2008-02-22 05:11:04 +01:00
|
|
|
{
|
2014-07-06 21:18:00 +02:00
|
|
|
mutex::scoped_lock l(m_job_mutex);
|
|
|
|
// to avoid busy looping here, give up
|
|
|
|
// our quanta in case there aren't any other
|
|
|
|
// jobs to run in between
|
|
|
|
|
|
|
|
// TODO: a potentially more efficient solution would be to have a special
|
|
|
|
// queue for retry jobs, that's only ever run when a job completes, in
|
2014-10-25 22:07:50 +02:00
|
|
|
// any thread. It would only work if counters::num_running_disk_jobs > 0
|
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
TORRENT_ASSERT((j->flags & disk_io_job::in_progress) || !j->storage);
|
2008-02-22 05:11:04 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
bool need_sleep = m_queued_jobs.empty();
|
|
|
|
m_queued_jobs.push_back(j);
|
|
|
|
l.unlock();
|
|
|
|
if (need_sleep) sleep(0);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
#if TORRENT_USE_ASSERT
|
|
|
|
// TODO: it should clear the hash state even when there's an error, right?
|
|
|
|
if (j->action == disk_io_job::hash && !j->error.ec)
|
2008-02-22 05:11:04 +01:00
|
|
|
{
|
2014-07-06 21:18:00 +02:00
|
|
|
// a hash job should never return without clearing pe->hash
|
|
|
|
l.lock();
|
|
|
|
cached_piece_entry* pe = m_disk_cache.find_piece(j);
|
|
|
|
if (pe != NULL)
|
2008-02-22 05:11:04 +01:00
|
|
|
{
|
2014-07-06 21:18:00 +02:00
|
|
|
TORRENT_PIECE_ASSERT(pe->hash == NULL, pe);
|
2008-02-22 05:11:04 +01:00
|
|
|
}
|
2014-07-06 21:18:00 +02:00
|
|
|
l.unlock();
|
2008-02-22 05:11:04 +01:00
|
|
|
}
|
2014-07-06 21:18:00 +02:00
|
|
|
#endif
|
2008-02-22 05:11:04 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
if (ret == defer_handler) return;
|
2008-02-22 05:11:04 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
j->ret = ret;
|
2009-05-19 09:00:05 +02:00
|
|
|
|
2015-03-12 05:34:54 +01:00
|
|
|
time_point now = clock_type::now();
|
2014-07-06 21:18:00 +02:00
|
|
|
m_job_time.add_sample(total_microseconds(now - start_time));
|
|
|
|
completed_jobs.push_back(j);
|
2008-02-22 05:11:04 +01:00
|
|
|
}
|
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
int disk_io_thread::do_uncached_read(disk_io_job* j)
|
2008-02-22 05:11:04 +01:00
|
|
|
{
|
2015-05-16 22:41:37 +02:00
|
|
|
j->buffer.disk_block = m_disk_cache.allocate_buffer("send buffer");
|
|
|
|
if (j->buffer.disk_block == 0)
|
2014-07-06 21:18:00 +02:00
|
|
|
{
|
|
|
|
j->error.ec = error::no_memory;
|
|
|
|
j->error.operation = storage_error::alloc_cache_piece;
|
|
|
|
return -1;
|
|
|
|
}
|
2008-02-22 05:11:04 +01:00
|
|
|
|
2015-03-12 05:34:54 +01:00
|
|
|
time_point start_time = clock_type::now();
|
2008-02-22 05:11:04 +01:00
|
|
|
|
2014-07-28 03:06:00 +02:00
|
|
|
int file_flags = file_flags_for_job(j);
|
2015-05-16 22:41:37 +02:00
|
|
|
file::iovec_t b = { j->buffer.disk_block, size_t(j->d.io.buffer_size) };
|
2014-07-06 21:18:00 +02:00
|
|
|
|
|
|
|
int ret = j->storage->get_storage_impl()->readv(&b, 1
|
2014-07-28 03:06:00 +02:00
|
|
|
, j->piece, j->d.io.offset, file_flags, j->error);
|
2014-07-06 21:18:00 +02:00
|
|
|
|
2014-10-13 01:49:51 +02:00
|
|
|
TORRENT_ASSERT(ret >= 0 || j->error.ec);
|
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
if (!j->error.ec)
|
2010-01-27 05:25:45 +01:00
|
|
|
{
|
2015-03-12 05:34:54 +01:00
|
|
|
boost::uint32_t read_time = total_microseconds(clock_type::now() - start_time);
|
2014-07-06 21:18:00 +02:00
|
|
|
m_read_time.add_sample(read_time);
|
2014-08-01 08:07:48 +02:00
|
|
|
|
|
|
|
m_stats_counters.inc_stats_counter(counters::num_read_back);
|
|
|
|
m_stats_counters.inc_stats_counter(counters::num_blocks_read);
|
|
|
|
m_stats_counters.inc_stats_counter(counters::num_read_ops);
|
|
|
|
m_stats_counters.inc_stats_counter(counters::disk_read_time, read_time);
|
|
|
|
m_stats_counters.inc_stats_counter(counters::disk_job_time, read_time);
|
2008-02-22 05:11:04 +01:00
|
|
|
}
|
2010-01-15 17:45:42 +01:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
int disk_io_thread::do_read(disk_io_job* j, tailqueue& completed_jobs)
|
2010-01-15 17:45:42 +01:00
|
|
|
{
|
2014-07-06 21:18:00 +02:00
|
|
|
if (!m_settings.get_bool(settings_pack::use_read_cache)
|
|
|
|
|| m_settings.get_int(settings_pack::cache_size) == 0)
|
|
|
|
{
|
|
|
|
// we're not using a cache. This is the simple path
|
|
|
|
// just read straight from the file
|
|
|
|
int ret = do_uncached_read(j);
|
|
|
|
|
|
|
|
mutex::scoped_lock l(m_cache_mutex);
|
|
|
|
cached_piece_entry* pe = m_disk_cache.find_piece(j);
|
|
|
|
if (pe) maybe_issue_queued_read_jobs(pe, completed_jobs);
|
|
|
|
return ret;
|
|
|
|
}
|
2010-01-15 17:45:42 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
int block_size = m_disk_cache.block_size();
|
|
|
|
int piece_size = j->storage->files()->piece_size(j->piece);
|
|
|
|
int blocks_in_piece = (piece_size + block_size - 1) / block_size;
|
|
|
|
int iov_len = m_disk_cache.pad_job(j, blocks_in_piece
|
|
|
|
, m_settings.get_int(settings_pack::read_cache_line_size));
|
2010-01-31 20:14:00 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
file::iovec_t* iov = TORRENT_ALLOCA(file::iovec_t, iov_len);
|
2011-08-07 09:27:38 +02:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
mutex::scoped_lock l(m_cache_mutex);
|
2011-08-07 09:27:38 +02:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
int evict = m_disk_cache.num_to_evict(iov_len);
|
|
|
|
if (evict > 0) m_disk_cache.try_evict_blocks(evict);
|
2010-01-15 17:45:42 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
cached_piece_entry* pe = m_disk_cache.find_piece(j);
|
|
|
|
if (pe == NULL)
|
2009-02-03 08:46:24 +01:00
|
|
|
{
|
2014-07-06 21:18:00 +02:00
|
|
|
// this isn't supposed to happen. The piece is supposed
|
|
|
|
// to be allocated when the read job is posted to the
|
|
|
|
// queue, and have 'outstanding_read' set to 1
|
|
|
|
TORRENT_ASSERT(false);
|
|
|
|
|
|
|
|
int cache_state = (j->flags & disk_io_job::volatile_read)
|
|
|
|
? cached_piece_entry::volatile_read_lru
|
|
|
|
: cached_piece_entry::read_lru1;
|
|
|
|
pe = m_disk_cache.allocate_piece(j, cache_state);
|
|
|
|
if (pe == NULL)
|
2008-02-22 05:11:04 +01:00
|
|
|
{
|
2014-07-06 21:18:00 +02:00
|
|
|
j->error.ec = error::no_memory;
|
|
|
|
j->error.operation = storage_error::alloc_cache_piece;
|
|
|
|
m_disk_cache.free_iovec(iov, iov_len);
|
|
|
|
return -1;
|
2008-02-22 05:11:04 +01:00
|
|
|
}
|
2014-07-06 21:18:00 +02:00
|
|
|
#if TORRENT_USE_ASSERTS
|
|
|
|
pe->piece_log.push_back(piece_log_t(piece_log_t::set_outstanding_jobs));
|
|
|
|
#endif
|
|
|
|
pe->outstanding_read = 1;
|
2009-02-03 08:46:24 +01:00
|
|
|
}
|
2014-07-06 21:18:00 +02:00
|
|
|
TORRENT_PIECE_ASSERT(pe->outstanding_read == 1, pe);
|
2009-02-03 08:46:24 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
l.unlock();
|
2009-02-03 08:46:24 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
// then we'll actually allocate the buffers
|
|
|
|
int ret = m_disk_cache.allocate_iovec(iov, iov_len);
|
2009-05-24 02:12:53 +02:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
ret = do_uncached_read(j);
|
|
|
|
|
|
|
|
mutex::scoped_lock l(m_cache_mutex);
|
|
|
|
cached_piece_entry* pe = m_disk_cache.find_piece(j);
|
|
|
|
if (pe) maybe_issue_queued_read_jobs(pe, completed_jobs);
|
|
|
|
return ret;
|
2008-02-22 05:11:04 +01:00
|
|
|
}
|
2009-02-03 08:46:24 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
// this is the offset that's aligned to block boundaries
|
2014-12-03 05:32:50 +01:00
|
|
|
boost::int64_t adjusted_offset = j->d.io.offset & ~(block_size-1);
|
2014-07-06 21:18:00 +02:00
|
|
|
|
|
|
|
// if this is the last piece, adjust the size of the
|
|
|
|
// last buffer to match up
|
|
|
|
iov[iov_len-1].iov_len = (std::min)(int(piece_size - adjusted_offset)
|
|
|
|
- (iov_len-1) * block_size, block_size);
|
|
|
|
TORRENT_ASSERT(iov[iov_len-1].iov_len > 0);
|
|
|
|
|
|
|
|
// at this point, all the buffers are allocated and iov is initizalied
|
|
|
|
// and the blocks have their refcounters incremented, so no other thread
|
|
|
|
// can remove them. We can now release the cache mutex and dive into the
|
|
|
|
// disk operations.
|
|
|
|
|
2014-07-28 03:06:00 +02:00
|
|
|
int file_flags = file_flags_for_job(j);
|
2015-03-12 05:34:54 +01:00
|
|
|
time_point start_time = clock_type::now();
|
2014-02-03 02:55:26 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
ret = j->storage->get_storage_impl()->readv(iov, iov_len
|
2014-07-28 03:06:00 +02:00
|
|
|
, j->piece, adjusted_offset, file_flags, j->error);
|
2009-02-03 08:46:24 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
if (!j->error.ec)
|
2013-09-04 06:09:33 +02:00
|
|
|
{
|
2015-03-12 05:34:54 +01:00
|
|
|
boost::uint32_t read_time = total_microseconds(clock_type::now() - start_time);
|
2014-07-06 21:18:00 +02:00
|
|
|
m_read_time.add_sample(read_time / iov_len);
|
2014-08-01 08:07:48 +02:00
|
|
|
|
|
|
|
m_stats_counters.inc_stats_counter(counters::num_blocks_read, iov_len);
|
|
|
|
m_stats_counters.inc_stats_counter(counters::num_read_ops);
|
|
|
|
m_stats_counters.inc_stats_counter(counters::disk_read_time, read_time);
|
|
|
|
m_stats_counters.inc_stats_counter(counters::disk_job_time, read_time);
|
2013-09-04 06:09:33 +02:00
|
|
|
}
|
2009-02-03 08:46:24 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
l.lock();
|
2009-02-03 08:46:24 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
if (ret < 0)
|
2009-02-03 08:46:24 +01:00
|
|
|
{
|
2014-07-06 21:18:00 +02:00
|
|
|
// read failed. free buffers and return error
|
|
|
|
m_disk_cache.free_iovec(iov, iov_len);
|
2010-01-15 17:45:42 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
cached_piece_entry* pe = m_disk_cache.find_piece(j);
|
|
|
|
if (pe == NULL)
|
|
|
|
{
|
|
|
|
// the piece is supposed to be allocated when the
|
|
|
|
// disk job is allocated
|
|
|
|
TORRENT_ASSERT(false);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
TORRENT_PIECE_ASSERT(pe->outstanding_read == 1, pe);
|
2010-01-27 05:25:45 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
if (pe->read_jobs.size() > 0)
|
|
|
|
fail_jobs_impl(j->error, pe->read_jobs, completed_jobs);
|
|
|
|
TORRENT_PIECE_ASSERT(pe->read_jobs.size() == 0, pe);
|
|
|
|
pe->outstanding_read = 0;
|
|
|
|
#if TORRENT_USE_ASSERTS
|
|
|
|
pe->piece_log.push_back(piece_log_t(piece_log_t::clear_outstanding_jobs));
|
|
|
|
#endif
|
|
|
|
m_disk_cache.maybe_free_piece(pe);
|
|
|
|
return ret;
|
2009-02-03 08:46:24 +01:00
|
|
|
}
|
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
int block = j->d.io.offset / block_size;
|
|
|
|
#if TORRENT_USE_ASSERT
|
|
|
|
pe->piece_log.push_back(piece_log_t(j->action, block));
|
|
|
|
#endif
|
|
|
|
// as soon we insert the blocks they may be evicted
|
|
|
|
// (if using purgeable memory). In order to prevent that
|
|
|
|
// until we can read from them, increment the refcounts
|
|
|
|
m_disk_cache.insert_blocks(pe, block, iov, iov_len, j, block_cache::blocks_inc_refcount);
|
2009-02-03 08:46:24 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
TORRENT_ASSERT(pe->blocks[block].buf);
|
2009-02-03 08:46:24 +01:00
|
|
|
|
2014-08-01 08:07:48 +02:00
|
|
|
int tmp = m_disk_cache.try_read(j, true);
|
2015-05-19 05:13:49 +02:00
|
|
|
|
|
|
|
// This should always succeed because we just checked to see there is a
|
|
|
|
// buffer for this block
|
2014-07-06 21:18:00 +02:00
|
|
|
TORRENT_ASSERT(tmp >= 0);
|
2015-05-19 05:13:49 +02:00
|
|
|
TORRENT_UNUSED(tmp);
|
2008-02-22 05:11:04 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
maybe_issue_queued_read_jobs(pe, completed_jobs);
|
|
|
|
|
|
|
|
for (int i = 0; i < iov_len; ++i, ++block)
|
|
|
|
m_disk_cache.dec_block_refcount(pe, block, block_cache::ref_reading);
|
2014-02-03 02:55:26 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
return j->d.io.buffer_size;
|
2009-06-10 10:30:55 +02:00
|
|
|
}
|
|
|
|
|
2015-04-20 06:52:49 +02:00
|
|
|
void disk_io_thread::maybe_issue_queued_read_jobs(cached_piece_entry* pe
|
|
|
|
, tailqueue& completed_jobs)
|
2011-11-16 08:09:12 +01:00
|
|
|
{
|
2014-07-06 21:18:00 +02:00
|
|
|
TORRENT_PIECE_ASSERT(pe->outstanding_read == 1, pe);
|
2011-11-16 08:09:12 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
// if we're shutting down, just cancel the jobs
|
2015-06-14 22:00:04 +02:00
|
|
|
if (m_abort)
|
2011-11-16 08:09:12 +01:00
|
|
|
{
|
2015-04-20 06:52:49 +02:00
|
|
|
fail_jobs_impl(storage_error(boost::asio::error::operation_aborted)
|
|
|
|
, pe->read_jobs, completed_jobs);
|
2014-07-06 21:18:00 +02:00
|
|
|
TORRENT_PIECE_ASSERT(pe->read_jobs.size() == 0, pe);
|
|
|
|
pe->outstanding_read = 0;
|
|
|
|
#if TORRENT_USE_ASSERTS
|
|
|
|
pe->piece_log.push_back(piece_log_t(piece_log_t::clear_outstanding_jobs));
|
|
|
|
#endif
|
|
|
|
m_disk_cache.maybe_free_piece(pe);
|
|
|
|
return;
|
2011-11-16 08:09:12 +01:00
|
|
|
}
|
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
// while we were reading, there may have been a few jobs
|
|
|
|
// that got queued up also wanting to read from this piece.
|
|
|
|
// Any job that is a cache hit now, complete it immediately.
|
|
|
|
// Then, issue the first non-cache-hit job. Once it complete
|
|
|
|
// it will keep working off this list
|
|
|
|
tailqueue stalled_jobs;
|
|
|
|
pe->read_jobs.swap(stalled_jobs);
|
2014-02-03 02:55:26 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
// the next job to issue (i.e. this is a cache-miss)
|
|
|
|
disk_io_job* next_job = NULL;
|
2009-10-20 04:49:56 +02:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
while (stalled_jobs.size() > 0)
|
2011-11-16 08:09:12 +01:00
|
|
|
{
|
2014-07-06 21:18:00 +02:00
|
|
|
disk_io_job* j = (disk_io_job*)stalled_jobs.pop_front();
|
|
|
|
TORRENT_ASSERT(j->flags & disk_io_job::in_progress);
|
|
|
|
|
|
|
|
int ret = m_disk_cache.try_read(j);
|
|
|
|
if (ret >= 0)
|
|
|
|
{
|
|
|
|
// cache-hit
|
2014-08-01 08:07:48 +02:00
|
|
|
m_stats_counters.inc_stats_counter(counters::num_blocks_cache_hits);
|
2014-07-06 21:18:00 +02:00
|
|
|
DLOG("do_read: cache hit\n");
|
|
|
|
j->flags |= disk_io_job::cache_hit;
|
|
|
|
j->ret = ret;
|
|
|
|
completed_jobs.push_back(j);
|
|
|
|
}
|
|
|
|
else if (ret == -2)
|
2011-11-16 08:09:12 +01:00
|
|
|
{
|
2014-07-06 21:18:00 +02:00
|
|
|
// error
|
|
|
|
j->ret = disk_io_job::operation_failed;
|
|
|
|
completed_jobs.push_back(j);
|
2011-11-16 08:09:12 +01:00
|
|
|
}
|
2014-07-06 21:18:00 +02:00
|
|
|
else
|
2011-11-16 08:09:12 +01:00
|
|
|
{
|
2014-07-06 21:18:00 +02:00
|
|
|
// cache-miss, issue the first one
|
|
|
|
// put back the rest
|
|
|
|
if (next_job == NULL)
|
|
|
|
{
|
|
|
|
next_job = j;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
TORRENT_PIECE_ASSERT(j->piece == pe->piece, pe);
|
|
|
|
pe->read_jobs.push_back(j);
|
|
|
|
}
|
2011-11-16 08:09:12 +01:00
|
|
|
}
|
|
|
|
}
|
2014-02-03 02:55:26 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
if (next_job)
|
|
|
|
{
|
2015-06-14 22:00:04 +02:00
|
|
|
add_job(next_job, false);
|
2014-07-06 21:18:00 +02:00
|
|
|
}
|
|
|
|
else
|
2008-07-18 01:41:46 +02:00
|
|
|
{
|
2014-07-06 21:18:00 +02:00
|
|
|
TORRENT_PIECE_ASSERT(pe->read_jobs.size() == 0, pe);
|
|
|
|
pe->outstanding_read = 0;
|
|
|
|
#if TORRENT_USE_ASSERTS
|
|
|
|
pe->piece_log.push_back(piece_log_t(piece_log_t::clear_outstanding_jobs));
|
|
|
|
#endif
|
|
|
|
m_disk_cache.maybe_free_piece(pe);
|
2008-07-18 01:41:46 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
int disk_io_thread::do_uncached_write(disk_io_job* j)
|
2011-10-19 07:46:49 +02:00
|
|
|
{
|
2015-03-12 05:34:54 +01:00
|
|
|
time_point start_time = clock_type::now();
|
2009-03-31 10:05:46 +02:00
|
|
|
|
2015-05-16 22:41:37 +02:00
|
|
|
file::iovec_t b = { j->buffer.disk_block, size_t(j->d.io.buffer_size) };
|
2014-07-28 03:06:00 +02:00
|
|
|
int file_flags = file_flags_for_job(j);
|
2015-06-14 22:00:04 +02:00
|
|
|
|
2014-08-01 08:07:48 +02:00
|
|
|
m_stats_counters.inc_stats_counter(counters::num_writing_threads, 1);
|
2009-09-05 09:21:10 +02:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
// the actual write operation
|
|
|
|
int ret = j->storage->get_storage_impl()->writev(&b, 1
|
2014-07-28 03:06:00 +02:00
|
|
|
, j->piece, j->d.io.offset, file_flags, j->error);
|
2015-06-14 22:00:04 +02:00
|
|
|
|
2014-08-01 08:07:48 +02:00
|
|
|
m_stats_counters.inc_stats_counter(counters::num_writing_threads, -1);
|
2009-09-05 09:21:10 +02:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
if (!j->error.ec)
|
|
|
|
{
|
2015-03-12 05:34:54 +01:00
|
|
|
boost::uint32_t write_time = total_microseconds(clock_type::now() - start_time);
|
2014-07-06 21:18:00 +02:00
|
|
|
m_write_time.add_sample(write_time);
|
2014-08-01 08:07:48 +02:00
|
|
|
|
|
|
|
m_stats_counters.inc_stats_counter(counters::num_blocks_written);
|
|
|
|
m_stats_counters.inc_stats_counter(counters::num_write_ops);
|
|
|
|
m_stats_counters.inc_stats_counter(counters::disk_write_time, write_time);
|
|
|
|
m_stats_counters.inc_stats_counter(counters::disk_job_time, write_time);
|
2014-07-06 21:18:00 +02:00
|
|
|
}
|
2009-09-05 09:21:10 +02:00
|
|
|
|
2015-05-16 22:41:37 +02:00
|
|
|
m_disk_cache.free_buffer(j->buffer.disk_block);
|
|
|
|
j->buffer.disk_block = NULL;
|
2009-09-05 09:21:10 +02:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
return ret;
|
2009-09-05 09:21:10 +02:00
|
|
|
}
|
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
int disk_io_thread::do_write(disk_io_job* j, tailqueue& completed_jobs)
|
2007-06-10 22:46:09 +02:00
|
|
|
{
|
2014-07-06 21:18:00 +02:00
|
|
|
INVARIANT_CHECK;
|
|
|
|
TORRENT_ASSERT(j->d.io.buffer_size <= m_disk_cache.block_size());
|
2011-02-11 08:20:11 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
// should we put this write job in the cache?
|
|
|
|
// if we don't use the cache we shouldn't.
|
|
|
|
if (m_settings.get_bool(settings_pack::use_write_cache)
|
|
|
|
&& m_settings.get_int(settings_pack::cache_size) > 0)
|
2011-02-11 08:20:11 +01:00
|
|
|
{
|
2014-07-06 21:18:00 +02:00
|
|
|
mutex::scoped_lock l(m_cache_mutex);
|
|
|
|
|
|
|
|
cached_piece_entry* pe = m_disk_cache.find_piece(j);
|
|
|
|
if (pe && pe->hashing_done)
|
2011-02-11 08:20:11 +01:00
|
|
|
{
|
2014-07-06 21:18:00 +02:00
|
|
|
#if TORRENT_USE_ASSERT
|
|
|
|
print_piece_log(pe->piece_log);
|
2011-02-11 08:20:11 +01:00
|
|
|
#endif
|
2015-05-16 22:41:37 +02:00
|
|
|
TORRENT_ASSERT(pe->blocks[j->d.io.offset / 16 / 1024].buf != j->buffer.disk_block);
|
2014-07-06 21:18:00 +02:00
|
|
|
TORRENT_ASSERT(pe->blocks[j->d.io.offset / 16 / 1024].buf != NULL);
|
|
|
|
j->error.ec = error::operation_aborted;
|
|
|
|
j->error.operation = storage_error::write;
|
|
|
|
return -1;
|
|
|
|
}
|
2009-09-05 09:21:10 +02:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
pe = m_disk_cache.add_dirty_block(j);
|
2010-01-12 02:56:48 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
if (pe)
|
|
|
|
{
|
|
|
|
#if TORRENT_USE_ASSERT
|
|
|
|
pe->piece_log.push_back(piece_log_t(j->action, j->d.io.offset / 0x4000));
|
2007-09-17 10:15:54 +02:00
|
|
|
#endif
|
2011-10-19 07:46:49 +02:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
if (!pe->hashing_done
|
|
|
|
&& pe->hash == 0
|
|
|
|
&& !m_settings.get_bool(settings_pack::disable_hash_checks))
|
|
|
|
{
|
|
|
|
pe->hash = new partial_hash;
|
|
|
|
m_disk_cache.update_cache_state(pe);
|
|
|
|
}
|
2011-10-19 07:46:49 +02:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
TORRENT_PIECE_ASSERT(pe->cache_state <= cached_piece_entry::read_lru1 || pe->cache_state == cached_piece_entry::read_lru2, pe);
|
|
|
|
++pe->piece_refcount;
|
2008-03-08 07:06:31 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
// see if we can progress the hash cursor with this new block
|
|
|
|
kick_hasher(pe, l);
|
2011-10-19 07:46:49 +02:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
TORRENT_PIECE_ASSERT(pe->cache_state <= cached_piece_entry::read_lru1 || pe->cache_state == cached_piece_entry::read_lru2, pe);
|
2011-10-19 07:46:49 +02:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
// flushes the piece to disk in case
|
|
|
|
// it satisfies the condition for a write
|
|
|
|
// piece to be flushed
|
2015-04-20 06:52:49 +02:00
|
|
|
try_flush_hashed(pe, m_settings.get_int(
|
|
|
|
settings_pack::write_cache_line_size), completed_jobs, l);
|
2009-03-14 10:24:58 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
--pe->piece_refcount;
|
|
|
|
m_disk_cache.maybe_free_piece(pe);
|
2014-02-03 02:55:26 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
return defer_handler;
|
2008-06-09 06:46:34 +02:00
|
|
|
}
|
2014-07-06 21:18:00 +02:00
|
|
|
}
|
2007-06-10 22:46:09 +02:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
// ok, we should just perform this job right now.
|
|
|
|
return do_uncached_write(j);
|
|
|
|
}
|
|
|
|
|
|
|
|
void disk_io_thread::async_read(piece_manager* storage, peer_request const& r
|
|
|
|
, boost::function<void(disk_io_job const*)> const& handler, void* requester
|
|
|
|
, int flags)
|
|
|
|
{
|
|
|
|
INVARIANT_CHECK;
|
|
|
|
|
|
|
|
#ifdef TORRENT_DEBUG
|
|
|
|
// the caller must increment the torrent refcount before
|
|
|
|
// issuing an async disk request
|
|
|
|
storage->assert_torrent_refcount();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
TORRENT_ASSERT(r.length <= m_disk_cache.block_size());
|
|
|
|
TORRENT_ASSERT(r.length <= 16 * 1024);
|
2009-09-05 09:21:10 +02:00
|
|
|
|
2014-11-17 04:10:00 +01:00
|
|
|
DLOG("do_read piece: %d block: %d\n", r.piece, r.start / m_disk_cache.block_size());
|
2011-03-20 07:37:19 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
disk_io_job* j = allocate_job(disk_io_job::read);
|
|
|
|
j->storage = storage->shared_from_this();
|
|
|
|
j->piece = r.piece;
|
|
|
|
j->d.io.offset = r.start;
|
|
|
|
j->d.io.buffer_size = r.length;
|
2015-05-16 22:41:37 +02:00
|
|
|
j->buffer.disk_block = 0;
|
2014-07-06 21:18:00 +02:00
|
|
|
j->flags = flags;
|
|
|
|
j->requester = requester;
|
|
|
|
j->callback = handler;
|
2011-03-27 10:21:26 +02:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
mutex::scoped_lock l(m_cache_mutex);
|
|
|
|
int ret = prep_read_job_impl(j);
|
|
|
|
l.unlock();
|
2011-12-19 06:53:11 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
switch (ret)
|
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
if (handler) handler(j);
|
|
|
|
free_job(j);
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
add_job(j);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// this function checks to see if a read job is a cache hit,
|
|
|
|
// and if it doesn't have a picece allocated, it allocates
|
|
|
|
// one and it sets outstanding_read flag and possibly queues
|
|
|
|
// up the job in the piece read job list
|
|
|
|
// the cache mutex must be held when calling this
|
|
|
|
//
|
|
|
|
// returns 0 if the job succeeded immediately
|
|
|
|
// 1 if it needs to be added to the job queue
|
|
|
|
// 2 if it was deferred and will be performed later (no need to
|
|
|
|
// add it to the queue)
|
|
|
|
int disk_io_thread::prep_read_job_impl(disk_io_job* j, bool check_fence)
|
|
|
|
{
|
|
|
|
TORRENT_ASSERT(j->action == disk_io_job::read);
|
|
|
|
|
|
|
|
if (m_settings.get_bool(settings_pack::use_read_cache)
|
|
|
|
&& m_settings.get_int(settings_pack::cache_size) > 0)
|
|
|
|
{
|
|
|
|
int ret = m_disk_cache.try_read(j);
|
|
|
|
if (ret >= 0)
|
|
|
|
{
|
2014-08-01 08:07:48 +02:00
|
|
|
m_stats_counters.inc_stats_counter(counters::num_blocks_cache_hits);
|
2014-07-06 21:18:00 +02:00
|
|
|
DLOG("do_read: cache hit\n");
|
|
|
|
j->flags |= disk_io_job::cache_hit;
|
|
|
|
j->ret = ret;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
else if (ret == -2)
|
2011-03-27 10:21:26 +02:00
|
|
|
{
|
2014-07-06 21:18:00 +02:00
|
|
|
j->error.ec = error::no_memory;
|
|
|
|
j->error.operation = storage_error::alloc_cache_piece;
|
|
|
|
j->ret = disk_io_job::operation_failed;
|
|
|
|
return 0;
|
2011-03-27 10:21:26 +02:00
|
|
|
}
|
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
if (check_fence && j->storage->is_blocked(j))
|
|
|
|
{
|
|
|
|
// this means the job was queued up inside storage
|
2014-10-25 22:07:50 +02:00
|
|
|
m_stats_counters.inc_stats_counter(counters::blocked_disk_jobs);
|
2014-07-06 21:18:00 +02:00
|
|
|
DLOG("blocked job: %s (torrent: %d total: %d)\n"
|
|
|
|
, job_action_name[j->action], j->storage ? j->storage->num_blocked() : 0
|
2014-10-25 22:07:50 +02:00
|
|
|
, int(m_stats_counters[counters::blocked_disk_jobs]));
|
2014-07-06 21:18:00 +02:00
|
|
|
return 2;
|
|
|
|
}
|
2011-03-20 20:17:59 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
cached_piece_entry* pe = m_disk_cache.allocate_piece(j, cached_piece_entry::read_lru1);
|
|
|
|
if (pe == NULL)
|
2009-09-05 09:21:10 +02:00
|
|
|
{
|
2014-07-06 21:18:00 +02:00
|
|
|
j->ret = -1;
|
|
|
|
j->error.ec = error::no_memory;
|
|
|
|
j->error.operation = storage_error::read;
|
|
|
|
return 0;
|
|
|
|
}
|
2010-03-03 05:32:06 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
if (pe->outstanding_read)
|
|
|
|
{
|
|
|
|
TORRENT_PIECE_ASSERT(j->piece == pe->piece, pe);
|
|
|
|
pe->read_jobs.push_back(j);
|
|
|
|
return 2;
|
|
|
|
}
|
2009-09-05 09:21:10 +02:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
#if TORRENT_USE_ASSERTS
|
|
|
|
pe->piece_log.push_back(piece_log_t(piece_log_t::set_outstanding_jobs));
|
|
|
|
#endif
|
|
|
|
pe->outstanding_read = 1;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
2009-09-05 09:21:10 +02:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
void disk_io_thread::async_write(piece_manager* storage, peer_request const& r
|
|
|
|
, disk_buffer_holder& buffer
|
|
|
|
, boost::function<void(disk_io_job const*)> const& handler
|
|
|
|
, int flags)
|
|
|
|
{
|
|
|
|
INVARIANT_CHECK;
|
2010-01-12 02:56:48 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
#ifdef TORRENT_DEBUG
|
|
|
|
// the caller must increment the torrent refcount before
|
|
|
|
// issuing an async disk request
|
|
|
|
storage->assert_torrent_refcount();
|
|
|
|
#endif
|
2009-09-05 09:21:10 +02:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
TORRENT_ASSERT(r.length <= m_disk_cache.block_size());
|
|
|
|
TORRENT_ASSERT(r.length <= 16 * 1024);
|
|
|
|
|
|
|
|
disk_io_job* j = allocate_job(disk_io_job::write);
|
|
|
|
j->storage = storage->shared_from_this();
|
|
|
|
j->piece = r.piece;
|
|
|
|
j->d.io.offset = r.start;
|
|
|
|
j->d.io.buffer_size = r.length;
|
2015-05-16 22:41:37 +02:00
|
|
|
j->buffer.disk_block = buffer.get();
|
2014-07-06 21:18:00 +02:00
|
|
|
j->callback = handler;
|
|
|
|
j->flags = flags;
|
|
|
|
|
|
|
|
#if TORRENT_USE_ASSERT
|
|
|
|
mutex::scoped_lock l3_(m_cache_mutex);
|
|
|
|
cached_piece_entry* pe = m_disk_cache.find_piece(j);
|
|
|
|
if (pe)
|
|
|
|
{
|
|
|
|
// we should never add a new dirty block to a piece
|
|
|
|
// whose hash we have calculated. The piece needs
|
|
|
|
// to be cleared first, (async_clear_piece).
|
|
|
|
TORRENT_ASSERT(pe->hashing_done == 0);
|
2011-04-26 09:03:05 +02:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
TORRENT_ASSERT(pe->blocks[r.start / 0x4000].refcount == 0 || pe->blocks[r.start / 0x4000].buf == NULL);
|
|
|
|
}
|
|
|
|
l3_.unlock();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if TORRENT_USE_ASSERT && defined TORRENT_EXPENSIVE_INVARIANT_CHECKS
|
|
|
|
mutex::scoped_lock l2_(m_cache_mutex);
|
|
|
|
std::pair<block_cache::iterator, block_cache::iterator> range = m_disk_cache.all_pieces();
|
|
|
|
for (block_cache::iterator i = range.first; i != range.second; ++i)
|
|
|
|
{
|
|
|
|
cached_piece_entry const& p = *i;
|
|
|
|
int bs = m_disk_cache.block_size();
|
|
|
|
int piece_size = p.storage->files()->piece_size(p.piece);
|
|
|
|
int blocks_in_piece = (piece_size + bs - 1) / bs;
|
|
|
|
for (int k = 0; k < blocks_in_piece; ++k)
|
2015-05-16 22:41:37 +02:00
|
|
|
TORRENT_PIECE_ASSERT(p.blocks[k].buf != j->buffer.disk_block, &p);
|
2014-07-06 21:18:00 +02:00
|
|
|
}
|
|
|
|
l2_.unlock();
|
2010-01-12 02:56:48 +01:00
|
|
|
#endif
|
2011-03-15 03:21:28 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
#if !defined TORRENT_DISABLE_POOL_ALLOCATOR && TORRENT_USE_ASSERTS
|
|
|
|
mutex::scoped_lock l_(m_cache_mutex);
|
2015-05-16 22:41:37 +02:00
|
|
|
TORRENT_ASSERT(m_disk_cache.is_disk_buffer(j->buffer.disk_block));
|
2014-07-06 21:18:00 +02:00
|
|
|
l_.unlock();
|
|
|
|
#endif
|
|
|
|
if (m_settings.get_int(settings_pack::cache_size) > 0
|
|
|
|
&& m_settings.get_bool(settings_pack::use_write_cache))
|
|
|
|
{
|
2015-05-19 05:13:49 +02:00
|
|
|
TORRENT_ASSERT((r.start % m_disk_cache.block_size()) == 0);
|
2011-03-20 20:17:59 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
if (storage->is_blocked(j))
|
2010-01-12 02:56:48 +01:00
|
|
|
{
|
2014-07-06 21:18:00 +02:00
|
|
|
// this means the job was queued up inside storage
|
2014-10-25 22:07:50 +02:00
|
|
|
m_stats_counters.inc_stats_counter(counters::blocked_disk_jobs);
|
2014-07-06 21:18:00 +02:00
|
|
|
DLOG("blocked job: %s (torrent: %d total: %d)\n"
|
|
|
|
, job_action_name[j->action], j->storage ? j->storage->num_blocked() : 0
|
2014-10-25 22:07:50 +02:00
|
|
|
, int(m_stats_counters[counters::blocked_disk_jobs]));
|
2014-07-06 21:18:00 +02:00
|
|
|
// make the holder give up ownership of the buffer
|
|
|
|
// since the job was successfully queued up
|
|
|
|
buffer.release();
|
|
|
|
return;
|
|
|
|
}
|
2011-03-20 20:17:59 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
mutex::scoped_lock l(m_cache_mutex);
|
|
|
|
// if we succeed in adding the block to the cache, the job will
|
|
|
|
// be added along with it. we may not free j if so
|
|
|
|
cached_piece_entry* pe = m_disk_cache.add_dirty_block(j);
|
2009-12-16 11:49:15 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
// if the buffer was successfully added to the cache
|
|
|
|
// our holder should no longer own it
|
|
|
|
if (pe) buffer.release();
|
2010-04-24 23:53:45 +02:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
if (pe && pe->outstanding_flush == 0)
|
|
|
|
{
|
|
|
|
pe->outstanding_flush = 1;
|
|
|
|
l.unlock();
|
2009-09-05 09:21:10 +02:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
// the block and write job were successfully inserted
|
|
|
|
// into the cache. Now, see if we should trigger a flush
|
|
|
|
j = allocate_job(disk_io_job::flush_hashed);
|
|
|
|
j->storage = storage->shared_from_this();
|
|
|
|
j->piece = r.piece;
|
|
|
|
j->flags = flags;
|
|
|
|
add_job(j);
|
|
|
|
}
|
|
|
|
// if we added the block (regardless of whether we also
|
|
|
|
// issued a flush job or not), we're done.
|
|
|
|
if (pe) return;
|
|
|
|
l.unlock();
|
|
|
|
}
|
2009-09-05 09:21:10 +02:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
add_job(j);
|
|
|
|
buffer.release();
|
|
|
|
}
|
2009-09-05 09:21:10 +02:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
void disk_io_thread::async_hash(piece_manager* storage, int piece, int flags
|
|
|
|
, boost::function<void(disk_io_job const*)> const& handler, void* requester)
|
|
|
|
{
|
|
|
|
#ifdef TORRENT_DEBUG
|
|
|
|
// the caller must increment the torrent refcount before
|
|
|
|
// issuing an async disk request
|
|
|
|
storage->assert_torrent_refcount();
|
|
|
|
#endif
|
2009-09-05 09:21:10 +02:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
disk_io_job* j = allocate_job(disk_io_job::hash);
|
|
|
|
j->storage = storage->shared_from_this();
|
|
|
|
j->piece = piece;
|
|
|
|
j->callback = handler;
|
|
|
|
j->flags = flags;
|
|
|
|
j->requester = requester;
|
2009-09-05 09:21:10 +02:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
int piece_size = storage->files()->piece_size(piece);
|
2011-10-19 07:46:49 +02:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
// first check to see if the hashing is already done
|
|
|
|
mutex::scoped_lock l(m_cache_mutex);
|
|
|
|
cached_piece_entry* pe = m_disk_cache.find_piece(j);
|
|
|
|
if (pe && !pe->hashing && pe->hash && pe->hash->offset == piece_size)
|
|
|
|
{
|
|
|
|
sha1_hash result = pe->hash->h.final();
|
|
|
|
memcpy(j->d.piece_hash, &result[0], 20);
|
2008-04-13 00:08:07 +02:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
delete pe->hash;
|
|
|
|
pe->hash = NULL;
|
2007-06-10 22:46:09 +02:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
if (pe->cache_state != cached_piece_entry::volatile_read_lru)
|
|
|
|
pe->hashing_done = 1;
|
2007-06-10 22:46:09 +02:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
#if TORRENT_USE_ASSERTS
|
|
|
|
++pe->hash_passes;
|
2008-02-14 04:48:20 +01:00
|
|
|
#endif
|
2015-06-14 22:00:04 +02:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
l.unlock();
|
|
|
|
if (handler) handler(j);
|
|
|
|
free_job(j);
|
|
|
|
return;
|
|
|
|
}
|
2015-06-14 22:00:04 +02:00
|
|
|
l.unlock();
|
2010-01-31 20:14:00 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
add_job(j);
|
|
|
|
}
|
2009-01-21 08:31:49 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
void disk_io_thread::async_move_storage(piece_manager* storage, std::string const& p, int flags
|
|
|
|
, boost::function<void(disk_io_job const*)> const& handler)
|
|
|
|
{
|
|
|
|
#ifdef TORRENT_DEBUG
|
|
|
|
// the caller must increment the torrent refcount before
|
|
|
|
// issuing an async disk request
|
|
|
|
storage->assert_torrent_refcount();
|
2009-01-10 06:46:02 +01:00
|
|
|
#endif
|
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
disk_io_job* j = allocate_job(disk_io_job::move_storage);
|
|
|
|
j->storage = storage->shared_from_this();
|
2015-05-16 22:41:37 +02:00
|
|
|
j->buffer.string = strdup(p.c_str());
|
2014-07-06 21:18:00 +02:00
|
|
|
j->callback = handler;
|
|
|
|
j->flags = flags;
|
2012-04-06 05:02:50 +02:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
add_fence_job(storage, j);
|
|
|
|
}
|
2010-02-21 09:52:26 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
void disk_io_thread::async_release_files(piece_manager* storage
|
|
|
|
, boost::function<void(disk_io_job const*)> const& handler)
|
|
|
|
{
|
|
|
|
disk_io_job* j = allocate_job(disk_io_job::release_files);
|
|
|
|
j->storage = storage->shared_from_this();
|
|
|
|
j->callback = handler;
|
2010-02-21 09:52:26 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
add_fence_job(storage, j);
|
|
|
|
}
|
|
|
|
|
|
|
|
void disk_io_thread::async_delete_files(piece_manager* storage
|
|
|
|
, boost::function<void(disk_io_job const*)> const& handler)
|
|
|
|
{
|
|
|
|
#ifdef TORRENT_DEBUG
|
|
|
|
// the caller must increment the torrent refcount before
|
|
|
|
// issuing an async disk request
|
|
|
|
storage->assert_torrent_refcount();
|
2008-12-30 09:20:25 +01:00
|
|
|
#endif
|
2008-06-12 06:40:37 +02:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
// remove cache blocks belonging to this torrent
|
|
|
|
tailqueue completed_jobs;
|
2010-01-12 02:56:48 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
// remove outstanding jobs belonging to this torrent
|
|
|
|
mutex::scoped_lock l2(m_job_mutex);
|
2009-05-13 19:17:33 +02:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
// TODO: maybe the tailqueue_iterator should contain a pointer-pointer
|
|
|
|
// instead and have an unlink function
|
|
|
|
disk_io_job* qj = (disk_io_job*)m_queued_jobs.get_all();
|
|
|
|
tailqueue to_abort;
|
|
|
|
|
|
|
|
while (qj)
|
|
|
|
{
|
|
|
|
disk_io_job* next = (disk_io_job*)qj->next;
|
|
|
|
#if TORRENT_USE_ASSERTS
|
|
|
|
qj->next = NULL;
|
2009-06-03 09:46:50 +02:00
|
|
|
#endif
|
2014-07-06 21:18:00 +02:00
|
|
|
if (qj->storage.get() == storage)
|
|
|
|
to_abort.push_back(qj);
|
|
|
|
else
|
|
|
|
m_queued_jobs.push_back(qj);
|
|
|
|
qj = next;
|
|
|
|
}
|
|
|
|
l2.unlock();
|
2009-02-03 08:46:24 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
mutex::scoped_lock l(m_cache_mutex);
|
|
|
|
flush_cache(storage, flush_delete_cache, completed_jobs, l);
|
|
|
|
l.unlock();
|
2009-02-03 08:46:24 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
disk_io_job* j = allocate_job(disk_io_job::delete_files);
|
|
|
|
j->storage = storage->shared_from_this();
|
|
|
|
j->callback = handler;
|
|
|
|
add_fence_job(storage, j);
|
2009-05-28 03:19:48 +02:00
|
|
|
|
2015-04-20 06:52:49 +02:00
|
|
|
fail_jobs_impl(storage_error(boost::asio::error::operation_aborted)
|
|
|
|
, to_abort, completed_jobs);
|
2009-02-03 08:46:24 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
if (completed_jobs.size())
|
|
|
|
add_completed_jobs(completed_jobs);
|
|
|
|
}
|
|
|
|
|
|
|
|
void disk_io_thread::async_check_fastresume(piece_manager* storage
|
2015-03-12 06:20:12 +01:00
|
|
|
, bdecode_node const* resume_data
|
2015-03-21 01:12:40 +01:00
|
|
|
, std::auto_ptr<std::vector<std::string> >& links
|
2014-07-06 21:18:00 +02:00
|
|
|
, boost::function<void(disk_io_job const*)> const& handler)
|
|
|
|
{
|
|
|
|
#ifdef TORRENT_DEBUG
|
|
|
|
// the caller must increment the torrent refcount before
|
|
|
|
// issuing an async disk request
|
|
|
|
storage->assert_torrent_refcount();
|
2009-06-03 09:46:50 +02:00
|
|
|
#endif
|
2008-02-22 05:11:04 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
disk_io_job* j = allocate_job(disk_io_job::check_fastresume);
|
|
|
|
j->storage = storage->shared_from_this();
|
2015-05-16 22:41:37 +02:00
|
|
|
j->buffer.string = (char*)resume_data;
|
2015-03-21 01:12:40 +01:00
|
|
|
j->d.links = links.get();
|
2014-07-06 21:18:00 +02:00
|
|
|
j->callback = handler;
|
2009-05-23 05:05:21 +02:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
add_fence_job(storage, j);
|
2015-03-21 01:12:40 +01:00
|
|
|
links.release();
|
2014-07-06 21:18:00 +02:00
|
|
|
}
|
2008-04-13 23:26:57 +02:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
void disk_io_thread::async_save_resume_data(piece_manager* storage
|
|
|
|
, boost::function<void(disk_io_job const*)> const& handler)
|
|
|
|
{
|
|
|
|
#ifdef TORRENT_DEBUG
|
|
|
|
// the caller must increment the torrent refcount before
|
|
|
|
// issuing an async disk request
|
|
|
|
storage->assert_torrent_refcount();
|
2007-09-17 10:15:54 +02:00
|
|
|
#endif
|
2009-05-23 09:35:45 +02:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
disk_io_job* j = allocate_job(disk_io_job::save_resume_data);
|
|
|
|
j->storage = storage->shared_from_this();
|
2015-05-16 22:41:37 +02:00
|
|
|
j->buffer.resume_data = NULL;
|
2014-07-06 21:18:00 +02:00
|
|
|
j->callback = handler;
|
2010-01-31 20:14:00 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
add_fence_job(storage, j);
|
|
|
|
}
|
2009-05-23 09:35:45 +02:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
void disk_io_thread::async_rename_file(piece_manager* storage, int index, std::string const& name
|
|
|
|
, boost::function<void(disk_io_job const*)> const& handler)
|
|
|
|
{
|
|
|
|
#ifdef TORRENT_DEBUG
|
|
|
|
// the caller must increment the torrent refcount before
|
|
|
|
// issuing an async disk request
|
|
|
|
storage->assert_torrent_refcount();
|
|
|
|
#endif
|
2009-05-23 09:35:45 +02:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
disk_io_job* j = allocate_job(disk_io_job::rename_file);
|
|
|
|
j->storage = storage->shared_from_this();
|
|
|
|
j->piece = index;
|
2015-05-16 22:41:37 +02:00
|
|
|
j->buffer.string = strdup(name.c_str());
|
2014-07-06 21:18:00 +02:00
|
|
|
j->callback = handler;
|
|
|
|
add_fence_job(storage, j);
|
|
|
|
}
|
2010-01-15 17:45:42 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
void disk_io_thread::async_stop_torrent(piece_manager* storage
|
|
|
|
, boost::function<void(disk_io_job const*)> const& handler)
|
|
|
|
{
|
|
|
|
// remove outstanding hash jobs belonging to this torrent
|
|
|
|
mutex::scoped_lock l2(m_job_mutex);
|
2010-01-15 17:45:42 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
disk_io_job* qj = (disk_io_job*)m_queued_hash_jobs.get_all();
|
|
|
|
tailqueue to_abort;
|
2010-01-15 17:45:42 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
while (qj)
|
|
|
|
{
|
|
|
|
disk_io_job* next = (disk_io_job*)qj->next;
|
|
|
|
#if TORRENT_USE_ASSERTS
|
|
|
|
qj->next = NULL;
|
2007-09-17 10:15:54 +02:00
|
|
|
#endif
|
2014-07-06 21:18:00 +02:00
|
|
|
if (qj->storage.get() == storage)
|
|
|
|
to_abort.push_back(qj);
|
|
|
|
else
|
|
|
|
m_queued_hash_jobs.push_back(qj);
|
|
|
|
qj = next;
|
|
|
|
}
|
|
|
|
l2.unlock();
|
2008-03-10 09:19:31 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
disk_io_job* j = allocate_job(disk_io_job::stop_torrent);
|
|
|
|
j->storage = storage->shared_from_this();
|
|
|
|
j->callback = handler;
|
|
|
|
add_fence_job(storage, j);
|
2011-03-19 23:52:29 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
tailqueue completed_jobs;
|
2015-04-20 06:52:49 +02:00
|
|
|
fail_jobs_impl(storage_error(boost::asio::error::operation_aborted)
|
|
|
|
, to_abort, completed_jobs);
|
2014-07-06 21:18:00 +02:00
|
|
|
if (completed_jobs.size())
|
|
|
|
add_completed_jobs(completed_jobs);
|
|
|
|
}
|
2011-03-19 23:52:29 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
void disk_io_thread::async_cache_piece(piece_manager* storage, int piece
|
|
|
|
, boost::function<void(disk_io_job const*)> const& handler)
|
|
|
|
{
|
|
|
|
#ifdef TORRENT_DEBUG
|
|
|
|
// the caller must increment the torrent refcount before
|
|
|
|
// issuing an async disk request
|
|
|
|
storage->assert_torrent_refcount();
|
|
|
|
#endif
|
2009-08-02 08:40:45 +02:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
disk_io_job* j = allocate_job(disk_io_job::cache_piece);
|
|
|
|
j->storage = storage->shared_from_this();
|
|
|
|
j->piece = piece;
|
|
|
|
j->callback = handler;
|
2011-03-20 02:19:14 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
add_job(j);
|
|
|
|
}
|
2011-03-14 06:21:46 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
#ifndef TORRENT_NO_DEPRECATE
|
|
|
|
void disk_io_thread::async_finalize_file(piece_manager* storage, int file
|
|
|
|
, boost::function<void(disk_io_job const*)> const& handler)
|
|
|
|
{
|
|
|
|
#ifdef TORRENT_DEBUG
|
|
|
|
// the caller must increment the torrent refcount before
|
|
|
|
// issuing an async disk request
|
|
|
|
storage->assert_torrent_refcount();
|
2007-09-17 10:15:54 +02:00
|
|
|
#endif
|
2008-02-08 11:22:05 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
disk_io_job* j = allocate_job(disk_io_job::finalize_file);
|
|
|
|
j->storage = storage->shared_from_this();
|
|
|
|
j->piece = file;
|
|
|
|
j->callback = handler;
|
2008-03-10 09:19:31 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
add_job(j);
|
|
|
|
}
|
|
|
|
#endif
|
2009-01-21 08:31:49 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
void disk_io_thread::async_flush_piece(piece_manager* storage, int piece
|
|
|
|
, boost::function<void(disk_io_job const*)> const& handler)
|
|
|
|
{
|
|
|
|
#ifdef TORRENT_DEBUG
|
|
|
|
// the caller must increment the torrent refcount before
|
|
|
|
// issuing an async disk request
|
|
|
|
storage->assert_torrent_refcount();
|
2008-07-18 17:31:22 +02:00
|
|
|
#endif
|
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
disk_io_job* j = allocate_job(disk_io_job::flush_piece);
|
|
|
|
j->storage = storage->shared_from_this();
|
|
|
|
j->piece = piece;
|
|
|
|
j->callback = handler;
|
2008-07-18 17:31:22 +02:00
|
|
|
|
2015-06-14 22:00:04 +02:00
|
|
|
if (m_abort)
|
2014-07-06 21:18:00 +02:00
|
|
|
{
|
2015-06-06 07:22:53 +02:00
|
|
|
j->error.ec = boost::asio::error::operation_aborted;
|
2014-07-06 21:18:00 +02:00
|
|
|
if (handler) handler(j);
|
|
|
|
free_job(j);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
add_job(j);
|
|
|
|
}
|
|
|
|
|
|
|
|
void disk_io_thread::async_set_file_priority(piece_manager* storage
|
|
|
|
, std::vector<boost::uint8_t> const& prios
|
|
|
|
, boost::function<void(disk_io_job const*)> const& handler)
|
|
|
|
{
|
|
|
|
#ifdef TORRENT_DEBUG
|
|
|
|
// the caller must increment the torrent refcount before
|
|
|
|
// issuing an async disk request
|
|
|
|
storage->assert_torrent_refcount();
|
2007-10-13 05:33:33 +02:00
|
|
|
#endif
|
2008-02-08 11:22:05 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
std::vector<boost::uint8_t>* p = new std::vector<boost::uint8_t>(prios);
|
2008-03-10 09:19:31 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
disk_io_job* j = allocate_job(disk_io_job::file_priority);
|
|
|
|
j->storage = storage->shared_from_this();
|
2015-05-16 22:41:37 +02:00
|
|
|
j->buffer.priorities = p;
|
2014-07-06 21:18:00 +02:00
|
|
|
j->callback = handler;
|
2008-02-08 11:22:05 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
add_fence_job(storage, j);
|
|
|
|
}
|
|
|
|
|
|
|
|
void disk_io_thread::async_load_torrent(add_torrent_params* params
|
|
|
|
, boost::function<void(disk_io_job const*)> const& handler)
|
|
|
|
{
|
|
|
|
disk_io_job* j = allocate_job(disk_io_job::load_torrent);
|
|
|
|
j->requester = (char*)params;
|
|
|
|
j->callback = handler;
|
|
|
|
|
|
|
|
add_job(j);
|
|
|
|
}
|
|
|
|
|
|
|
|
void disk_io_thread::async_tick_torrent(piece_manager* storage
|
|
|
|
, boost::function<void(disk_io_job const*)> const& handler)
|
|
|
|
{
|
|
|
|
disk_io_job* j = allocate_job(disk_io_job::tick_storage);
|
|
|
|
j->storage = storage->shared_from_this();
|
|
|
|
j->callback = handler;
|
|
|
|
|
|
|
|
add_job(j);
|
|
|
|
}
|
|
|
|
|
|
|
|
void disk_io_thread::clear_read_cache(piece_manager* storage)
|
|
|
|
{
|
|
|
|
mutex::scoped_lock l(m_cache_mutex);
|
|
|
|
|
|
|
|
tailqueue jobs;
|
|
|
|
boost::unordered_set<cached_piece_entry*> const& cache = storage->cached_pieces();
|
2015-04-29 07:11:55 +02:00
|
|
|
|
|
|
|
// note that i is incremented in the body!
|
2014-07-06 21:18:00 +02:00
|
|
|
for (boost::unordered_set<cached_piece_entry*>::const_iterator i = cache.begin()
|
2015-04-29 07:11:55 +02:00
|
|
|
, end(cache.end()); i != end; )
|
2014-07-06 21:18:00 +02:00
|
|
|
{
|
|
|
|
tailqueue temp;
|
2015-04-29 07:11:55 +02:00
|
|
|
if (m_disk_cache.evict_piece(*(i++), temp))
|
|
|
|
jobs.append(temp);
|
2014-07-06 21:18:00 +02:00
|
|
|
}
|
|
|
|
fail_jobs(storage_error(boost::asio::error::operation_aborted), jobs);
|
|
|
|
}
|
|
|
|
|
|
|
|
void disk_io_thread::async_clear_piece(piece_manager* storage, int index
|
|
|
|
, boost::function<void(disk_io_job const*)> const& handler)
|
|
|
|
{
|
|
|
|
#ifdef TORRENT_DEBUG
|
|
|
|
// the caller must increment the torrent refcount before
|
|
|
|
// issuing an async disk request
|
|
|
|
storage->assert_torrent_refcount();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
disk_io_job* j = allocate_job(disk_io_job::clear_piece);
|
|
|
|
j->storage = storage->shared_from_this();
|
|
|
|
j->piece = index;
|
|
|
|
j->callback = handler;
|
|
|
|
|
|
|
|
// regular jobs are not guaranteed to be executed in-order
|
|
|
|
// since clear piece must guarantee that all write jobs that
|
|
|
|
// have been issued finish before the clear piece job completes
|
|
|
|
|
|
|
|
// TODO: this is potentially very expensive. One way to solve
|
|
|
|
// it would be to have a fence for just this one piece.
|
|
|
|
add_fence_job(storage, j);
|
|
|
|
}
|
|
|
|
|
2015-06-14 22:00:04 +02:00
|
|
|
void disk_io_thread::clear_piece(piece_manager* storage, int index)
|
2014-07-06 21:18:00 +02:00
|
|
|
{
|
|
|
|
mutex::scoped_lock l(m_cache_mutex);
|
|
|
|
|
|
|
|
cached_piece_entry* pe = m_disk_cache.find_piece(storage, index);
|
|
|
|
if (pe == 0) return;
|
|
|
|
TORRENT_PIECE_ASSERT(pe->hashing == false, pe);
|
|
|
|
pe->hashing_done = 0;
|
|
|
|
delete pe->hash;
|
|
|
|
pe->hash = NULL;
|
|
|
|
|
|
|
|
// evict_piece returns true if the piece was in fact
|
|
|
|
// evicted. A piece may fail to be evicted if there
|
|
|
|
// are still outstanding operations on it, which should
|
|
|
|
// never be the case when this function is used
|
|
|
|
// in fact, no jobs should really be hung on this piece
|
|
|
|
// at this point
|
|
|
|
tailqueue jobs;
|
|
|
|
bool ok = m_disk_cache.evict_piece(pe, jobs);
|
|
|
|
TORRENT_PIECE_ASSERT(ok, pe);
|
2015-05-19 05:13:49 +02:00
|
|
|
TORRENT_UNUSED(ok);
|
2014-07-06 21:18:00 +02:00
|
|
|
fail_jobs(storage_error(boost::asio::error::operation_aborted), jobs);
|
|
|
|
}
|
|
|
|
|
|
|
|
void disk_io_thread::kick_hasher(cached_piece_entry* pe, mutex::scoped_lock& l)
|
|
|
|
{
|
|
|
|
if (!pe->hash) return;
|
|
|
|
if (pe->hashing) return;
|
|
|
|
|
|
|
|
int piece_size = pe->storage.get()->files()->piece_size(pe->piece);
|
|
|
|
partial_hash* ph = pe->hash;
|
|
|
|
|
|
|
|
// are we already done?
|
|
|
|
if (ph->offset >= piece_size) return;
|
|
|
|
|
|
|
|
int block_size = m_disk_cache.block_size();
|
|
|
|
int cursor = ph->offset / block_size;
|
|
|
|
int end = cursor;
|
|
|
|
TORRENT_PIECE_ASSERT(ph->offset % block_size == 0, pe);
|
|
|
|
|
|
|
|
for (int i = cursor; i < pe->blocks_in_piece; ++i)
|
|
|
|
{
|
|
|
|
cached_block_entry& bl = pe->blocks[i];
|
|
|
|
if (bl.buf == 0) break;
|
|
|
|
|
|
|
|
// if we fail to lock the block, it' no longer in the cache
|
|
|
|
if (m_disk_cache.inc_block_refcount(pe, i, block_cache::ref_hashing) == false)
|
|
|
|
break;
|
|
|
|
|
|
|
|
++end;
|
|
|
|
}
|
|
|
|
|
|
|
|
// no blocks to hash?
|
|
|
|
if (end == cursor) return;
|
|
|
|
|
|
|
|
pe->hashing = 1;
|
|
|
|
|
|
|
|
DLOG("kick_hasher: %d - %d (piece: %d offset: %d)\n"
|
|
|
|
, cursor, end, int(pe->piece), ph->offset);
|
|
|
|
|
|
|
|
l.unlock();
|
|
|
|
|
2015-03-12 05:34:54 +01:00
|
|
|
time_point start_time = clock_type::now();
|
2014-07-06 21:18:00 +02:00
|
|
|
|
|
|
|
for (int i = cursor; i < end; ++i)
|
|
|
|
{
|
|
|
|
cached_block_entry& bl = pe->blocks[i];
|
|
|
|
int size = (std::min)(block_size, piece_size - ph->offset);
|
|
|
|
ph->h.update(bl.buf, size);
|
|
|
|
ph->offset += size;
|
|
|
|
}
|
|
|
|
|
2015-03-12 05:34:54 +01:00
|
|
|
boost::uint64_t hash_time = total_microseconds(clock_type::now() - start_time);
|
2014-07-06 21:18:00 +02:00
|
|
|
|
|
|
|
l.lock();
|
|
|
|
|
|
|
|
TORRENT_PIECE_ASSERT(pe->hashing, pe);
|
|
|
|
TORRENT_PIECE_ASSERT(pe->hash, pe);
|
|
|
|
|
|
|
|
m_hash_time.add_sample(hash_time / (end - cursor));
|
2014-08-01 08:07:48 +02:00
|
|
|
|
|
|
|
m_stats_counters.inc_stats_counter(counters::num_blocks_hashed, end - cursor);
|
|
|
|
m_stats_counters.inc_stats_counter(counters::disk_hash_time, hash_time);
|
|
|
|
m_stats_counters.inc_stats_counter(counters::disk_job_time, hash_time);
|
2014-07-06 21:18:00 +02:00
|
|
|
|
|
|
|
pe->hashing = 0;
|
|
|
|
|
|
|
|
// decrement the block refcounters
|
|
|
|
for (int i = cursor; i < end; ++i)
|
|
|
|
m_disk_cache.dec_block_refcount(pe, i, block_cache::ref_hashing);
|
|
|
|
|
|
|
|
// did we complete the hash?
|
|
|
|
if (pe->hash->offset != piece_size) return;
|
|
|
|
|
|
|
|
// if there are any hash-jobs hanging off of this piece
|
|
|
|
// we should post them now
|
|
|
|
disk_io_job* j = (disk_io_job*)pe->jobs.get_all();
|
|
|
|
tailqueue hash_jobs;
|
|
|
|
while (j)
|
|
|
|
{
|
|
|
|
TORRENT_PIECE_ASSERT((j->flags & disk_io_job::in_progress) || !j->storage, pe);
|
|
|
|
disk_io_job* next = (disk_io_job*)j->next;
|
|
|
|
j->next = NULL;
|
|
|
|
TORRENT_PIECE_ASSERT(j->piece == pe->piece, pe);
|
|
|
|
if (j->action == disk_io_job::hash) hash_jobs.push_back(j);
|
|
|
|
else pe->jobs.push_back(j);
|
|
|
|
j = next;
|
|
|
|
}
|
|
|
|
if (hash_jobs.size())
|
|
|
|
{
|
|
|
|
sha1_hash result = pe->hash->h.final();
|
|
|
|
|
|
|
|
for (tailqueue_iterator i = hash_jobs.iterate(); i.get(); i.next())
|
|
|
|
{
|
|
|
|
disk_io_job* j = (disk_io_job*)i.get();
|
|
|
|
memcpy(j->d.piece_hash, &result[0], 20);
|
|
|
|
j->ret = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
delete pe->hash;
|
|
|
|
pe->hash = NULL;
|
|
|
|
if (pe->cache_state != cached_piece_entry::volatile_read_lru)
|
|
|
|
pe->hashing_done = 1;
|
|
|
|
#if TORRENT_USE_ASSERTS
|
|
|
|
++pe->hash_passes;
|
|
|
|
#endif
|
|
|
|
add_completed_jobs(hash_jobs);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int disk_io_thread::do_uncached_hash(disk_io_job* j)
|
|
|
|
{
|
|
|
|
// we're not using a cache. This is the simple path
|
|
|
|
// just read straight from the file
|
|
|
|
TORRENT_ASSERT(m_magic == 0x1337);
|
|
|
|
|
|
|
|
int piece_size = j->storage->files()->piece_size(j->piece);
|
|
|
|
int block_size = m_disk_cache.block_size();
|
|
|
|
int blocks_in_piece = (piece_size + block_size - 1) / block_size;
|
|
|
|
int file_flags = file_flags_for_job(j);
|
|
|
|
|
|
|
|
file::iovec_t iov;
|
|
|
|
iov.iov_base = m_disk_cache.allocate_buffer("hashing");
|
|
|
|
hasher h;
|
|
|
|
int ret = 0;
|
|
|
|
int offset = 0;
|
|
|
|
for (int i = 0; i < blocks_in_piece; ++i)
|
|
|
|
{
|
|
|
|
DLOG("do_hash: (uncached) reading (piece: %d block: %d)\n"
|
|
|
|
, int(j->piece), i);
|
|
|
|
|
2015-03-12 05:34:54 +01:00
|
|
|
time_point start_time = clock_type::now();
|
2014-07-06 21:18:00 +02:00
|
|
|
|
|
|
|
iov.iov_len = (std::min)(block_size, piece_size - offset);
|
|
|
|
ret = j->storage->get_storage_impl()->readv(&iov, 1, j->piece
|
|
|
|
, offset, file_flags, j->error);
|
|
|
|
if (ret < 0) break;
|
|
|
|
|
|
|
|
if (!j->error.ec)
|
|
|
|
{
|
2015-03-12 05:34:54 +01:00
|
|
|
boost::uint32_t read_time = total_microseconds(clock_type::now() - start_time);
|
2014-07-06 21:18:00 +02:00
|
|
|
m_read_time.add_sample(read_time);
|
2014-08-01 08:07:48 +02:00
|
|
|
|
|
|
|
m_stats_counters.inc_stats_counter(counters::num_blocks_read);
|
|
|
|
m_stats_counters.inc_stats_counter(counters::num_read_ops);
|
|
|
|
m_stats_counters.inc_stats_counter(counters::disk_read_time, read_time);
|
|
|
|
m_stats_counters.inc_stats_counter(counters::disk_job_time, read_time);
|
2014-07-06 21:18:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
offset += block_size;
|
|
|
|
h.update((char const*)iov.iov_base, iov.iov_len);
|
|
|
|
}
|
|
|
|
|
|
|
|
m_disk_cache.free_buffer((char*)iov.iov_base);
|
|
|
|
|
|
|
|
sha1_hash piece_hash = h.final();
|
|
|
|
memcpy(j->d.piece_hash, &piece_hash[0], 20);
|
|
|
|
return ret >= 0 ? 0 : -1;
|
|
|
|
}
|
|
|
|
|
2015-04-20 06:52:49 +02:00
|
|
|
int disk_io_thread::do_hash(disk_io_job* j, tailqueue& /* completed_jobs */ )
|
2014-07-06 21:18:00 +02:00
|
|
|
{
|
|
|
|
INVARIANT_CHECK;
|
|
|
|
|
|
|
|
if (m_settings.get_int(settings_pack::cache_size) == 0)
|
|
|
|
return do_uncached_hash(j);
|
|
|
|
|
|
|
|
int piece_size = j->storage->files()->piece_size(j->piece);
|
|
|
|
int file_flags = file_flags_for_job(j);
|
|
|
|
|
|
|
|
mutex::scoped_lock l(m_cache_mutex);
|
|
|
|
|
|
|
|
cached_piece_entry* pe = m_disk_cache.find_piece(j);
|
|
|
|
if (pe)
|
|
|
|
{
|
2014-07-12 21:23:31 +02:00
|
|
|
TORRENT_ASSERT(pe->in_use);
|
2014-07-06 21:18:00 +02:00
|
|
|
#if TORRENT_USE_ASSERTS
|
|
|
|
pe->piece_log.push_back(piece_log_t(j->action));
|
|
|
|
#endif
|
|
|
|
m_disk_cache.cache_hit(pe, j->requester, j->flags & disk_io_job::volatile_read);
|
|
|
|
|
|
|
|
TORRENT_PIECE_ASSERT(pe->cache_state <= cached_piece_entry::read_lru1 || pe->cache_state == cached_piece_entry::read_lru2, pe);
|
|
|
|
++pe->piece_refcount;
|
|
|
|
kick_hasher(pe, l);
|
|
|
|
--pe->piece_refcount;
|
|
|
|
|
|
|
|
TORRENT_PIECE_ASSERT(pe->cache_state <= cached_piece_entry::read_lru1 || pe->cache_state == cached_piece_entry::read_lru2, pe);
|
|
|
|
|
|
|
|
// are we already done hashing?
|
|
|
|
if (pe->hash && !pe->hashing && pe->hash->offset == piece_size)
|
|
|
|
{
|
|
|
|
DLOG("do_hash: (%d) (already done)\n", int(pe->piece));
|
|
|
|
sha1_hash piece_hash = pe->hash->h.final();
|
|
|
|
memcpy(j->d.piece_hash, &piece_hash[0], 20);
|
|
|
|
delete pe->hash;
|
|
|
|
pe->hash = NULL;
|
|
|
|
if (pe->cache_state != cached_piece_entry::volatile_read_lru)
|
|
|
|
pe->hashing_done = 1;
|
|
|
|
#if TORRENT_USE_ASSERTS
|
|
|
|
++pe->hash_passes;
|
|
|
|
#endif
|
|
|
|
m_disk_cache.update_cache_state(pe);
|
|
|
|
m_disk_cache.maybe_free_piece(pe);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pe == NULL && !m_settings.get_bool(settings_pack::use_read_cache))
|
|
|
|
{
|
|
|
|
l.unlock();
|
|
|
|
// if there's no piece in the cache, and the read cache is disabled
|
|
|
|
// it means it's already been flushed to disk, and there's no point
|
|
|
|
// in reading it into the cache, since we're not using read cache
|
|
|
|
// so just use the uncached version
|
|
|
|
return do_uncached_hash(j);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pe == NULL)
|
|
|
|
{
|
|
|
|
int cache_state = (j->flags & disk_io_job::volatile_read)
|
|
|
|
? cached_piece_entry::volatile_read_lru
|
|
|
|
: cached_piece_entry::read_lru1;
|
|
|
|
pe = m_disk_cache.allocate_piece(j, cache_state);
|
|
|
|
}
|
|
|
|
if (pe == NULL)
|
|
|
|
{
|
|
|
|
j->error.ec = error::no_memory;
|
|
|
|
j->error.operation = storage_error::alloc_cache_piece;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pe->hashing)
|
|
|
|
{
|
|
|
|
TORRENT_PIECE_ASSERT(pe->hash, pe);
|
|
|
|
// another thread is hashing this piece right now
|
|
|
|
// try again in a little bit
|
|
|
|
DLOG("do_hash: retry\n");
|
|
|
|
// TODO: we should probably just hang the job on the piece and make sure the hasher gets kicked
|
|
|
|
return retry_job;
|
|
|
|
}
|
|
|
|
|
|
|
|
pe->hashing = 1;
|
|
|
|
|
2014-07-20 10:59:02 +02:00
|
|
|
TORRENT_PIECE_ASSERT(pe->cache_state <= cached_piece_entry::read_lru1
|
|
|
|
|| pe->cache_state == cached_piece_entry::read_lru2, pe);
|
2014-07-06 21:18:00 +02:00
|
|
|
++pe->piece_refcount;
|
|
|
|
|
|
|
|
if (pe->hash == NULL)
|
|
|
|
{
|
|
|
|
pe->hashing_done = 0;
|
|
|
|
pe->hash = new partial_hash;
|
|
|
|
}
|
|
|
|
partial_hash* ph = pe->hash;
|
|
|
|
|
|
|
|
int block_size = m_disk_cache.block_size();
|
|
|
|
int blocks_in_piece = (piece_size + block_size - 1) / block_size;
|
|
|
|
|
|
|
|
// keep track of which blocks we have locked by incrementing
|
|
|
|
// their refcounts. This is used to decrement only these blocks
|
|
|
|
// later.
|
|
|
|
int* locked_blocks = TORRENT_ALLOCA(int, blocks_in_piece);
|
|
|
|
memset(locked_blocks, 0, blocks_in_piece * sizeof(int));
|
|
|
|
int num_locked_blocks = 0;
|
|
|
|
|
|
|
|
// increment the refcounts of all
|
|
|
|
// blocks up front, and then hash them without holding the lock
|
|
|
|
TORRENT_PIECE_ASSERT(ph->offset % block_size == 0, pe);
|
|
|
|
for (int i = ph->offset / block_size; i < blocks_in_piece; ++i)
|
|
|
|
{
|
|
|
|
// is the block not in the cache?
|
|
|
|
if (pe->blocks[i].buf == NULL) continue;
|
|
|
|
|
|
|
|
// if we fail to lock the block, it' no longer in the cache
|
|
|
|
if (m_disk_cache.inc_block_refcount(pe, i, block_cache::ref_hashing) == false)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
locked_blocks[num_locked_blocks++] = i;
|
|
|
|
}
|
|
|
|
|
|
|
|
l.unlock();
|
|
|
|
|
2015-05-04 00:21:19 +02:00
|
|
|
int ret = 0;
|
2014-07-06 21:18:00 +02:00
|
|
|
int next_locked_block = 0;
|
|
|
|
for (int i = ph->offset / block_size; i < blocks_in_piece; ++i)
|
|
|
|
{
|
2015-05-04 00:21:19 +02:00
|
|
|
file::iovec_t iov;
|
2014-07-06 21:18:00 +02:00
|
|
|
iov.iov_len = (std::min)(block_size, piece_size - ph->offset);
|
|
|
|
|
|
|
|
if (next_locked_block < num_locked_blocks
|
|
|
|
&& locked_blocks[next_locked_block] == i)
|
|
|
|
{
|
|
|
|
++next_locked_block;
|
|
|
|
TORRENT_PIECE_ASSERT(pe->blocks[i].buf, pe);
|
|
|
|
TORRENT_PIECE_ASSERT(ph->offset == i * block_size, pe);
|
|
|
|
ph->offset += iov.iov_len;
|
|
|
|
ph->h.update(pe->blocks[i].buf, iov.iov_len);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
iov.iov_base = m_disk_cache.allocate_buffer("hashing");
|
|
|
|
|
|
|
|
if (iov.iov_base == NULL)
|
|
|
|
{
|
|
|
|
l.lock();
|
|
|
|
// TODO: introduce a holder class that automatically increments
|
|
|
|
// and decrements the piece_refcount
|
|
|
|
|
|
|
|
// decrement the refcounts of the blocks we just hashed
|
|
|
|
for (int i = 0; i < num_locked_blocks; ++i)
|
|
|
|
m_disk_cache.dec_block_refcount(pe, locked_blocks[i], block_cache::ref_hashing);
|
|
|
|
|
|
|
|
--pe->piece_refcount;
|
|
|
|
pe->hashing = false;
|
|
|
|
delete pe->hash;
|
|
|
|
pe->hash = NULL;
|
|
|
|
|
|
|
|
m_disk_cache.maybe_free_piece(pe);
|
|
|
|
|
|
|
|
j->error.ec = errors::no_memory;
|
|
|
|
j->error.operation = storage_error::alloc_cache_piece;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
DLOG("do_hash: reading (piece: %d block: %d)\n", int(pe->piece), i);
|
|
|
|
|
2015-03-12 05:34:54 +01:00
|
|
|
time_point start_time = clock_type::now();
|
2014-07-06 21:18:00 +02:00
|
|
|
|
|
|
|
TORRENT_PIECE_ASSERT(ph->offset == i * block_size, pe);
|
|
|
|
ret = j->storage->get_storage_impl()->readv(&iov, 1, j->piece
|
|
|
|
, ph->offset, file_flags, j->error);
|
|
|
|
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
m_disk_cache.free_buffer((char*)iov.iov_base);
|
|
|
|
l.lock();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2014-07-20 10:59:02 +02:00
|
|
|
// treat a short read as an error. The hash will be invalid, the
|
|
|
|
// block cannot be cached and the main thread should skip the rest
|
|
|
|
// of this file
|
|
|
|
if (ret != iov.iov_len)
|
|
|
|
{
|
|
|
|
ret = -1;
|
|
|
|
j->error.ec.assign(boost::asio::error::eof
|
|
|
|
, boost::asio::error::get_misc_category());
|
|
|
|
m_disk_cache.free_buffer((char*)iov.iov_base);
|
|
|
|
l.lock();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
if (!j->error.ec)
|
|
|
|
{
|
2015-03-12 05:34:54 +01:00
|
|
|
boost::uint32_t read_time = total_microseconds(clock_type::now() - start_time);
|
2014-07-06 21:18:00 +02:00
|
|
|
m_read_time.add_sample(read_time);
|
2014-08-01 08:07:48 +02:00
|
|
|
|
|
|
|
m_stats_counters.inc_stats_counter(counters::num_read_back);
|
|
|
|
m_stats_counters.inc_stats_counter(counters::num_blocks_read);
|
|
|
|
m_stats_counters.inc_stats_counter(counters::num_read_ops);
|
|
|
|
m_stats_counters.inc_stats_counter(counters::disk_read_time, read_time);
|
|
|
|
m_stats_counters.inc_stats_counter(counters::disk_job_time, read_time);
|
2014-07-06 21:18:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
TORRENT_PIECE_ASSERT(ph->offset == i * block_size, pe);
|
|
|
|
ph->offset += iov.iov_len;
|
|
|
|
ph->h.update((char const*)iov.iov_base, iov.iov_len);
|
|
|
|
|
|
|
|
l.lock();
|
|
|
|
m_disk_cache.insert_blocks(pe, i, &iov, 1, j);
|
|
|
|
l.unlock();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
l.lock();
|
|
|
|
|
|
|
|
// decrement the refcounts of the blocks we just hashed
|
|
|
|
for (int i = 0; i < num_locked_blocks; ++i)
|
|
|
|
m_disk_cache.dec_block_refcount(pe, locked_blocks[i], block_cache::ref_hashing);
|
|
|
|
|
|
|
|
--pe->piece_refcount;
|
|
|
|
|
|
|
|
pe->hashing = 0;
|
|
|
|
|
|
|
|
if (ret >= 0)
|
|
|
|
{
|
|
|
|
sha1_hash piece_hash = ph->h.final();
|
|
|
|
memcpy(j->d.piece_hash, &piece_hash[0], 20);
|
|
|
|
|
|
|
|
delete pe->hash;
|
|
|
|
pe->hash = NULL;
|
|
|
|
if (pe->cache_state != cached_piece_entry::volatile_read_lru)
|
|
|
|
pe->hashing_done = 1;
|
|
|
|
#if TORRENT_USE_ASSERTS
|
|
|
|
++pe->hash_passes;
|
|
|
|
#endif
|
|
|
|
m_disk_cache.update_cache_state(pe);
|
|
|
|
}
|
|
|
|
|
|
|
|
m_disk_cache.maybe_free_piece(pe);
|
|
|
|
|
2014-10-13 01:49:51 +02:00
|
|
|
TORRENT_ASSERT(ret >= 0 || (j->error.ec && j->error.operation != 0));
|
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
return ret < 0 ? ret : 0;
|
|
|
|
}
|
|
|
|
|
2015-04-20 06:52:49 +02:00
|
|
|
int disk_io_thread::do_move_storage(disk_io_job* j, tailqueue& /* completed_jobs */ )
|
2014-07-06 21:18:00 +02:00
|
|
|
{
|
|
|
|
// if this assert fails, something's wrong with the fence logic
|
|
|
|
TORRENT_ASSERT(j->storage->num_outstanding_jobs() == 1);
|
|
|
|
|
|
|
|
// if files have to be closed, that's the storage's responsibility
|
2015-05-16 22:41:37 +02:00
|
|
|
return j->storage->get_storage_impl()->move_storage(j->buffer.string
|
|
|
|
, j->flags, j->error);
|
2014-07-06 21:18:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int disk_io_thread::do_release_files(disk_io_job* j, tailqueue& completed_jobs)
|
|
|
|
{
|
|
|
|
INVARIANT_CHECK;
|
|
|
|
|
|
|
|
// if this assert fails, something's wrong with the fence logic
|
|
|
|
TORRENT_ASSERT(j->storage->num_outstanding_jobs() == 1);
|
|
|
|
|
|
|
|
mutex::scoped_lock l(m_cache_mutex);
|
|
|
|
flush_cache(j->storage.get(), flush_write_cache, completed_jobs, l);
|
|
|
|
l.unlock();
|
|
|
|
|
|
|
|
j->storage->get_storage_impl()->release_files(j->error);
|
|
|
|
return j->error ? -1 : 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int disk_io_thread::do_delete_files(disk_io_job* j, tailqueue& completed_jobs)
|
|
|
|
{
|
2015-05-16 22:41:37 +02:00
|
|
|
TORRENT_ASSERT(j->buffer.string == 0);
|
2014-07-06 21:18:00 +02:00
|
|
|
INVARIANT_CHECK;
|
|
|
|
|
|
|
|
// if this assert fails, something's wrong with the fence logic
|
|
|
|
TORRENT_ASSERT(j->storage->num_outstanding_jobs() == 1);
|
|
|
|
|
|
|
|
mutex::scoped_lock l(m_cache_mutex);
|
|
|
|
#if TORRENT_USE_ASSERTS
|
|
|
|
m_disk_cache.mark_deleted(*j->storage->files());
|
|
|
|
#endif
|
|
|
|
|
2015-04-20 06:52:49 +02:00
|
|
|
flush_cache(j->storage.get(), flush_delete_cache | flush_expect_clear
|
|
|
|
, completed_jobs, l);
|
2014-07-06 21:18:00 +02:00
|
|
|
l.unlock();
|
|
|
|
|
|
|
|
j->storage->get_storage_impl()->delete_files(j->error);
|
|
|
|
return j->error ? -1 : 0;
|
|
|
|
}
|
|
|
|
|
2015-04-20 06:52:49 +02:00
|
|
|
int disk_io_thread::do_check_fastresume(disk_io_job* j, tailqueue& /* completed_jobs */ )
|
2014-07-06 21:18:00 +02:00
|
|
|
{
|
|
|
|
// if this assert fails, something's wrong with the fence logic
|
|
|
|
TORRENT_ASSERT(j->storage->num_outstanding_jobs() == 1);
|
|
|
|
|
2015-05-16 22:41:37 +02:00
|
|
|
bdecode_node const* rd = j->buffer.check_resume_data;
|
2015-03-12 06:20:12 +01:00
|
|
|
bdecode_node tmp;
|
2014-07-06 21:18:00 +02:00
|
|
|
if (rd == NULL) rd = &tmp;
|
|
|
|
|
2015-03-21 01:12:40 +01:00
|
|
|
std::auto_ptr<std::vector<std::string> > links(j->d.links);
|
|
|
|
return j->storage->check_fastresume(*rd, links.get(), j->error);
|
2014-07-06 21:18:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int disk_io_thread::do_save_resume_data(disk_io_job* j, tailqueue& completed_jobs)
|
|
|
|
{
|
|
|
|
// if this assert fails, something's wrong with the fence logic
|
|
|
|
TORRENT_ASSERT(j->storage->num_outstanding_jobs() == 1);
|
|
|
|
|
|
|
|
mutex::scoped_lock l(m_cache_mutex);
|
|
|
|
flush_cache(j->storage.get(), flush_write_cache, completed_jobs, l);
|
|
|
|
l.unlock();
|
|
|
|
|
|
|
|
entry* resume_data = new entry(entry::dictionary_t);
|
|
|
|
j->storage->get_storage_impl()->write_resume_data(*resume_data, j->error);
|
2015-05-16 22:41:37 +02:00
|
|
|
TORRENT_ASSERT(j->buffer.resume_data == 0);
|
|
|
|
j->buffer.resume_data = resume_data;
|
2014-07-06 21:18:00 +02:00
|
|
|
return j->error ? -1 : 0;
|
|
|
|
}
|
|
|
|
|
2015-04-20 06:52:49 +02:00
|
|
|
int disk_io_thread::do_rename_file(disk_io_job* j, tailqueue& /* completed_jobs */ )
|
2014-07-06 21:18:00 +02:00
|
|
|
{
|
|
|
|
// if this assert fails, something's wrong with the fence logic
|
|
|
|
TORRENT_ASSERT(j->storage->num_outstanding_jobs() == 1);
|
|
|
|
|
|
|
|
// if files need to be closed, that's the storage's responsibility
|
2015-05-16 22:41:37 +02:00
|
|
|
j->storage->get_storage_impl()->rename_file(j->piece, j->buffer.string
|
|
|
|
, j->error);
|
2014-07-06 21:18:00 +02:00
|
|
|
return j->error ? -1 : 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int disk_io_thread::do_stop_torrent(disk_io_job* j, tailqueue& completed_jobs)
|
|
|
|
{
|
|
|
|
// if this assert fails, something's wrong with the fence logic
|
|
|
|
TORRENT_ASSERT(j->storage->num_outstanding_jobs() == 1);
|
|
|
|
|
|
|
|
// issue write commands for all dirty blocks
|
|
|
|
// and clear all read jobs
|
|
|
|
mutex::scoped_lock l(m_cache_mutex);
|
2015-04-20 06:52:49 +02:00
|
|
|
flush_cache(j->storage.get(), flush_read_cache | flush_write_cache
|
|
|
|
, completed_jobs, l);
|
2014-07-06 21:18:00 +02:00
|
|
|
l.unlock();
|
|
|
|
|
|
|
|
m_disk_cache.release_memory();
|
|
|
|
|
2014-07-20 02:23:12 +02:00
|
|
|
j->storage->get_storage_impl()->release_files(j->error);
|
|
|
|
return j->error ? -1 : 0;
|
2014-07-06 21:18:00 +02:00
|
|
|
}
|
|
|
|
|
2015-04-20 06:52:49 +02:00
|
|
|
int disk_io_thread::do_cache_piece(disk_io_job* j, tailqueue& /* completed_jobs */ )
|
2014-07-06 21:18:00 +02:00
|
|
|
{
|
|
|
|
INVARIANT_CHECK;
|
2015-05-16 22:41:37 +02:00
|
|
|
TORRENT_ASSERT(j->buffer.disk_block == 0);
|
2014-07-06 21:18:00 +02:00
|
|
|
|
|
|
|
if (m_settings.get_int(settings_pack::cache_size) == 0
|
|
|
|
|| m_settings.get_bool(settings_pack::use_read_cache) == false)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
int file_flags = file_flags_for_job(j);
|
|
|
|
|
|
|
|
mutex::scoped_lock l(m_cache_mutex);
|
|
|
|
|
|
|
|
cached_piece_entry* pe = m_disk_cache.find_piece(j);
|
|
|
|
if (pe == NULL)
|
|
|
|
{
|
|
|
|
int cache_state = (j->flags & disk_io_job::volatile_read)
|
|
|
|
? cached_piece_entry::volatile_read_lru
|
|
|
|
: cached_piece_entry::read_lru1;
|
|
|
|
pe = m_disk_cache.allocate_piece(j, cache_state);
|
|
|
|
}
|
|
|
|
if (pe == NULL)
|
|
|
|
{
|
|
|
|
j->error.ec = error::no_memory;
|
|
|
|
j->error.operation = storage_error::alloc_cache_piece;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
#if TORRENT_USE_ASSERTS
|
|
|
|
pe->piece_log.push_back(piece_log_t(j->action));
|
|
|
|
#endif
|
2015-04-20 06:52:49 +02:00
|
|
|
TORRENT_PIECE_ASSERT(pe->cache_state <= cached_piece_entry::read_lru1
|
|
|
|
|| pe->cache_state == cached_piece_entry::read_lru2, pe);
|
2014-07-06 21:18:00 +02:00
|
|
|
++pe->piece_refcount;
|
|
|
|
|
|
|
|
int block_size = m_disk_cache.block_size();
|
|
|
|
int piece_size = j->storage->files()->piece_size(j->piece);
|
|
|
|
int blocks_in_piece = (piece_size + block_size - 1) / block_size;
|
|
|
|
|
|
|
|
file::iovec_t iov;
|
|
|
|
int ret = 0;
|
|
|
|
int offset = 0;
|
|
|
|
|
|
|
|
// TODO: it would be nice to not have to lock the mutex every
|
|
|
|
// turn through this loop
|
|
|
|
for (int i = 0; i < blocks_in_piece; ++i)
|
|
|
|
{
|
|
|
|
iov.iov_len = (std::min)(block_size, piece_size - offset);
|
|
|
|
|
|
|
|
// is the block already in the cache?
|
|
|
|
if (pe->blocks[i].buf) continue;
|
|
|
|
l.unlock();
|
|
|
|
|
|
|
|
iov.iov_base = m_disk_cache.allocate_buffer("read cache");
|
|
|
|
|
|
|
|
if (iov.iov_base == NULL)
|
|
|
|
{
|
|
|
|
//#error introduce a holder class that automatically increments and decrements the piece_refcount
|
|
|
|
--pe->piece_refcount;
|
|
|
|
m_disk_cache.maybe_free_piece(pe);
|
|
|
|
j->error.ec = errors::no_memory;
|
|
|
|
j->error.operation = storage_error::alloc_cache_piece;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
DLOG("do_cache_piece: reading (piece: %d block: %d)\n"
|
|
|
|
, int(pe->piece), i);
|
|
|
|
|
2015-03-12 05:34:54 +01:00
|
|
|
time_point start_time = clock_type::now();
|
2014-07-06 21:18:00 +02:00
|
|
|
|
|
|
|
ret = j->storage->get_storage_impl()->readv(&iov, 1, j->piece
|
|
|
|
, offset, file_flags, j->error);
|
|
|
|
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
l.lock();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!j->error.ec)
|
|
|
|
{
|
2015-03-12 05:34:54 +01:00
|
|
|
boost::uint32_t read_time = total_microseconds(clock_type::now() - start_time);
|
2014-07-06 21:18:00 +02:00
|
|
|
m_read_time.add_sample(read_time);
|
2014-08-01 08:07:48 +02:00
|
|
|
|
|
|
|
m_stats_counters.inc_stats_counter(counters::num_blocks_read);
|
|
|
|
m_stats_counters.inc_stats_counter(counters::num_read_ops);
|
|
|
|
m_stats_counters.inc_stats_counter(counters::disk_read_time, read_time);
|
|
|
|
m_stats_counters.inc_stats_counter(counters::disk_job_time, read_time);
|
2014-07-06 21:18:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
offset += block_size;
|
|
|
|
|
|
|
|
l.lock();
|
|
|
|
m_disk_cache.insert_blocks(pe, i, &iov, 1, j);
|
|
|
|
}
|
|
|
|
|
|
|
|
--pe->piece_refcount;
|
|
|
|
m_disk_cache.maybe_free_piece(pe);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef TORRENT_NO_DEPRECATE
|
2015-04-20 06:52:49 +02:00
|
|
|
int disk_io_thread::do_finalize_file(disk_io_job* j, tailqueue& /* completed_jobs */)
|
2014-07-06 21:18:00 +02:00
|
|
|
{
|
|
|
|
j->storage->get_storage_impl()->finalize_file(j->piece, j->error);
|
|
|
|
return j->error ? -1 : 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-04-21 02:23:00 +02:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
void get_cache_info_impl(cached_piece_info& info, cached_piece_entry const* i
|
|
|
|
, int block_size)
|
2014-07-06 21:18:00 +02:00
|
|
|
{
|
|
|
|
info.piece = i->piece;
|
|
|
|
info.storage = i->storage.get();
|
|
|
|
info.last_use = i->expire;
|
|
|
|
info.need_readback = i->need_readback;
|
|
|
|
info.next_to_hash = i->hash == 0 ? -1 : (i->hash->offset + block_size - 1) / block_size;
|
|
|
|
info.kind = i->cache_state == cached_piece_entry::write_lru
|
|
|
|
? cached_piece_info::write_cache
|
|
|
|
: i->cache_state == cached_piece_entry::volatile_read_lru
|
|
|
|
? cached_piece_info::volatile_read_cache
|
|
|
|
: cached_piece_info::read_cache;
|
|
|
|
int blocks_in_piece = i->blocks_in_piece;
|
|
|
|
info.blocks.resize(blocks_in_piece);
|
|
|
|
for (int b = 0; b < blocks_in_piece; ++b)
|
|
|
|
info.blocks[b] = i->blocks[b].buf != 0;
|
|
|
|
}
|
|
|
|
|
2015-04-21 02:23:00 +02:00
|
|
|
} // anonymous namespace
|
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
void disk_io_thread::update_stats_counters(counters& c) const
|
|
|
|
{
|
|
|
|
// These are atomic_counts, so it's safe to access them from
|
|
|
|
// a different thread
|
|
|
|
mutex::scoped_lock jl(m_job_mutex);
|
|
|
|
|
|
|
|
c.set_value(counters::num_read_jobs, read_jobs_in_use());
|
|
|
|
c.set_value(counters::num_write_jobs, write_jobs_in_use());
|
|
|
|
c.set_value(counters::num_jobs, jobs_in_use());
|
2014-10-25 22:07:50 +02:00
|
|
|
c.set_value(counters::queued_disk_jobs, m_queued_jobs.size()
|
|
|
|
+ m_queued_hash_jobs.size());
|
2014-07-06 21:18:00 +02:00
|
|
|
|
|
|
|
jl.unlock();
|
|
|
|
|
|
|
|
mutex::scoped_lock l(m_cache_mutex);
|
|
|
|
|
|
|
|
// gauges
|
|
|
|
c.set_value(counters::disk_blocks_in_use, m_disk_cache.in_use());
|
|
|
|
|
|
|
|
m_disk_cache.update_stats_counters(c);
|
|
|
|
}
|
|
|
|
|
|
|
|
void disk_io_thread::get_cache_info(cache_status* ret, bool no_pieces
|
|
|
|
, piece_manager const* storage) const
|
|
|
|
{
|
2014-10-25 22:07:50 +02:00
|
|
|
mutex::scoped_lock l(m_cache_mutex);
|
2014-07-06 21:18:00 +02:00
|
|
|
|
2014-08-01 08:07:48 +02:00
|
|
|
#ifndef TORRENT_NO_DEPRECATE
|
2014-10-25 22:07:50 +02:00
|
|
|
ret->total_used_buffers = m_disk_cache.in_use();
|
|
|
|
|
2014-08-01 08:07:48 +02:00
|
|
|
ret->blocks_read_hit = m_stats_counters[counters::num_blocks_cache_hits];
|
|
|
|
ret->blocks_read = m_stats_counters[counters::num_blocks_read];
|
|
|
|
ret->blocks_written = m_stats_counters[counters::num_blocks_written];
|
|
|
|
ret->writes = m_stats_counters[counters::num_write_ops];
|
|
|
|
ret->reads = m_stats_counters[counters::num_read_ops];
|
|
|
|
|
|
|
|
int num_read_jobs = (std::max)(boost::int64_t(1)
|
|
|
|
, m_stats_counters[counters::num_read_ops]);
|
|
|
|
int num_write_jobs = (std::max)(boost::int64_t(1)
|
|
|
|
, m_stats_counters[counters::num_write_ops]);
|
|
|
|
int num_hash_jobs = (std::max)(boost::int64_t(1)
|
|
|
|
, m_stats_counters[counters::num_blocks_hashed]);
|
|
|
|
|
|
|
|
ret->average_read_time = m_stats_counters[counters::disk_read_time] / num_read_jobs;
|
|
|
|
ret->average_write_time = m_stats_counters[counters::disk_write_time] / num_write_jobs;
|
|
|
|
ret->average_hash_time = m_stats_counters[counters::disk_hash_time] / num_hash_jobs;
|
|
|
|
ret->average_job_time = m_stats_counters[counters::disk_job_time]
|
|
|
|
/ (num_read_jobs + num_write_jobs + num_hash_jobs);
|
|
|
|
ret->cumulative_job_time = m_stats_counters[counters::disk_job_time];
|
|
|
|
ret->cumulative_read_time = m_stats_counters[counters::disk_read_time];
|
|
|
|
ret->cumulative_write_time = m_stats_counters[counters::disk_write_time];
|
|
|
|
ret->cumulative_hash_time = m_stats_counters[counters::disk_hash_time];
|
|
|
|
ret->total_read_back = m_stats_counters[counters::num_read_back];
|
|
|
|
|
2014-10-25 22:07:50 +02:00
|
|
|
ret->blocked_jobs = m_stats_counters[counters::blocked_disk_jobs];
|
2014-07-06 21:18:00 +02:00
|
|
|
|
|
|
|
ret->num_jobs = jobs_in_use();
|
|
|
|
ret->num_read_jobs = read_jobs_in_use();
|
2014-10-25 23:28:57 +02:00
|
|
|
ret->read_queue_size = read_jobs_in_use();
|
2014-07-06 21:18:00 +02:00
|
|
|
ret->num_write_jobs = write_jobs_in_use();
|
2014-10-25 22:07:50 +02:00
|
|
|
ret->pending_jobs = m_stats_counters[counters::num_running_disk_jobs];
|
2014-08-01 08:07:48 +02:00
|
|
|
ret->num_writing_threads = m_stats_counters[counters::num_writing_threads];
|
2014-07-06 21:18:00 +02:00
|
|
|
|
2014-10-25 23:28:57 +02:00
|
|
|
for (int i = 0; i < disk_io_job::num_job_ids; ++i)
|
|
|
|
ret->num_fence_jobs[i] = m_stats_counters[counters::num_fenced_read + i];
|
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
m_disk_cache.get_stats(ret);
|
|
|
|
|
2014-10-25 22:07:50 +02:00
|
|
|
#endif
|
2014-07-06 21:18:00 +02:00
|
|
|
|
2014-10-25 22:07:50 +02:00
|
|
|
ret->pieces.clear();
|
2014-07-06 21:18:00 +02:00
|
|
|
|
2014-10-25 22:07:50 +02:00
|
|
|
if (no_pieces == false)
|
2014-07-06 21:18:00 +02:00
|
|
|
{
|
2014-10-25 22:07:50 +02:00
|
|
|
int block_size = m_disk_cache.block_size();
|
|
|
|
|
|
|
|
if (storage)
|
2014-07-06 21:18:00 +02:00
|
|
|
{
|
2014-10-25 22:07:50 +02:00
|
|
|
ret->pieces.reserve(storage->num_pieces());
|
|
|
|
|
|
|
|
for (boost::unordered_set<cached_piece_entry*>::iterator i
|
|
|
|
= storage->cached_pieces().begin(), end(storage->cached_pieces().end());
|
|
|
|
i != end; ++i)
|
|
|
|
{
|
|
|
|
TORRENT_ASSERT((*i)->storage.get() == storage);
|
|
|
|
|
|
|
|
if ((*i)->cache_state == cached_piece_entry::read_lru2_ghost
|
|
|
|
|| (*i)->cache_state == cached_piece_entry::read_lru1_ghost)
|
|
|
|
continue;
|
|
|
|
ret->pieces.push_back(cached_piece_info());
|
|
|
|
get_cache_info_impl(ret->pieces.back(), *i, block_size);
|
|
|
|
}
|
2014-07-06 21:18:00 +02:00
|
|
|
}
|
2014-10-25 22:07:50 +02:00
|
|
|
else
|
2014-07-06 21:18:00 +02:00
|
|
|
{
|
2014-10-25 22:07:50 +02:00
|
|
|
ret->pieces.reserve(m_disk_cache.num_pieces());
|
|
|
|
|
|
|
|
std::pair<block_cache::iterator, block_cache::iterator> range
|
|
|
|
= m_disk_cache.all_pieces();
|
|
|
|
|
|
|
|
for (block_cache::iterator i = range.first; i != range.second; ++i)
|
|
|
|
{
|
|
|
|
if (i->cache_state == cached_piece_entry::read_lru2_ghost
|
|
|
|
|| i->cache_state == cached_piece_entry::read_lru1_ghost)
|
|
|
|
continue;
|
|
|
|
ret->pieces.push_back(cached_piece_info());
|
|
|
|
get_cache_info_impl(ret->pieces.back(), &*i, block_size);
|
|
|
|
}
|
2014-07-06 21:18:00 +02:00
|
|
|
}
|
|
|
|
}
|
2014-10-25 22:07:50 +02:00
|
|
|
|
|
|
|
l.unlock();
|
|
|
|
|
|
|
|
#ifndef TORRENT_NO_DEPRECATE
|
|
|
|
mutex::scoped_lock jl(m_job_mutex);
|
|
|
|
ret->queued_jobs = m_queued_jobs.size() + m_queued_hash_jobs.size();
|
|
|
|
jl.unlock();
|
|
|
|
#endif
|
2014-07-06 21:18:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int disk_io_thread::do_flush_piece(disk_io_job* j, tailqueue& completed_jobs)
|
|
|
|
{
|
|
|
|
mutex::scoped_lock l(m_cache_mutex);
|
|
|
|
|
|
|
|
cached_piece_entry* pe = m_disk_cache.find_piece(j);
|
|
|
|
if (pe == NULL) return 0;
|
|
|
|
|
|
|
|
#if TORRENT_USE_ASSERTS
|
|
|
|
pe->piece_log.push_back(piece_log_t(j->action));
|
|
|
|
#endif
|
2015-04-20 06:52:49 +02:00
|
|
|
try_flush_hashed(pe, m_settings.get_int(
|
|
|
|
settings_pack::write_cache_line_size), completed_jobs, l);
|
2014-07-06 21:18:00 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// this is triggered every time we insert a new dirty block in a piece
|
|
|
|
// by the time this gets executed, the block may already have been flushed
|
|
|
|
// triggered by another mechanism.
|
|
|
|
int disk_io_thread::do_flush_hashed(disk_io_job* j, tailqueue& completed_jobs)
|
|
|
|
{
|
|
|
|
mutex::scoped_lock l(m_cache_mutex);
|
|
|
|
|
|
|
|
cached_piece_entry* pe = m_disk_cache.find_piece(j);
|
|
|
|
|
|
|
|
if (pe == NULL) return 0;
|
|
|
|
if (pe->num_dirty == 0) return 0;
|
|
|
|
|
|
|
|
// if multiple threads are flushing this piece, this assert may fire
|
|
|
|
// this happens if the cache is running full and pieces are started to
|
|
|
|
// get flushed
|
|
|
|
// TORRENT_PIECE_ASSERT(pe->outstanding_flush == 1, pe);
|
|
|
|
|
|
|
|
#if TORRENT_USE_ASSERTS
|
|
|
|
pe->piece_log.push_back(piece_log_t(j->action));
|
|
|
|
#endif
|
2014-10-25 22:07:50 +02:00
|
|
|
TORRENT_PIECE_ASSERT(pe->cache_state <= cached_piece_entry::read_lru1
|
|
|
|
|| pe->cache_state == cached_piece_entry::read_lru2, pe);
|
2014-07-06 21:18:00 +02:00
|
|
|
++pe->piece_refcount;
|
|
|
|
|
|
|
|
if (!pe->hashing_done)
|
|
|
|
{
|
|
|
|
if (pe->hash == 0 && !m_settings.get_bool(settings_pack::disable_hash_checks))
|
|
|
|
{
|
|
|
|
pe->hash = new partial_hash;
|
|
|
|
m_disk_cache.update_cache_state(pe);
|
|
|
|
}
|
|
|
|
|
|
|
|
// see if we can progress the hash cursor with this new block
|
|
|
|
kick_hasher(pe, l);
|
|
|
|
|
|
|
|
TORRENT_PIECE_ASSERT(pe->cache_state <= cached_piece_entry::read_lru1 || pe->cache_state == cached_piece_entry::read_lru2, pe);
|
|
|
|
}
|
|
|
|
|
|
|
|
// flushes the piece to disk in case
|
|
|
|
// it satisfies the condition for a write
|
|
|
|
// piece to be flushed
|
|
|
|
// #error if hash checks are disabled, always just flush
|
2015-04-20 06:52:49 +02:00
|
|
|
try_flush_hashed(pe, m_settings.get_int(
|
|
|
|
settings_pack::write_cache_line_size), completed_jobs, l);
|
2014-07-06 21:18:00 +02:00
|
|
|
|
|
|
|
TORRENT_ASSERT(l.locked());
|
|
|
|
|
|
|
|
// TORRENT_PIECE_ASSERT(pe->outstanding_flush == 1, pe);
|
|
|
|
pe->outstanding_flush = 0;
|
|
|
|
--pe->piece_refcount;
|
|
|
|
|
|
|
|
m_disk_cache.maybe_free_piece(pe);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int disk_io_thread::do_flush_storage(disk_io_job* j, tailqueue& completed_jobs)
|
|
|
|
{
|
|
|
|
mutex::scoped_lock l(m_cache_mutex);
|
|
|
|
flush_cache(j->storage.get(), flush_write_cache, completed_jobs, l);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-04-20 06:52:49 +02:00
|
|
|
int disk_io_thread::do_trim_cache(disk_io_job*, tailqueue& /* completed_jobs */)
|
2014-07-06 21:18:00 +02:00
|
|
|
{
|
|
|
|
//#error implement
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-04-20 06:52:49 +02:00
|
|
|
int disk_io_thread::do_file_priority(disk_io_job* j, tailqueue& /* completed_jobs */ )
|
2014-07-06 21:18:00 +02:00
|
|
|
{
|
2015-05-16 22:41:37 +02:00
|
|
|
boost::scoped_ptr<std::vector<boost::uint8_t> > p(j->buffer.priorities);
|
2014-07-06 21:18:00 +02:00
|
|
|
j->storage->get_storage_impl()->set_file_priority(*p, j->error);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-04-20 06:52:49 +02:00
|
|
|
int disk_io_thread::do_load_torrent(disk_io_job* j, tailqueue& /* completed_jobs */ )
|
2014-07-06 21:18:00 +02:00
|
|
|
{
|
|
|
|
add_torrent_params* params = (add_torrent_params*)j->requester;
|
|
|
|
|
|
|
|
std::string filename = resolve_file_url(params->url);
|
|
|
|
torrent_info* t = new torrent_info(filename, j->error.ec);
|
|
|
|
if (j->error.ec)
|
|
|
|
{
|
2015-05-16 22:41:37 +02:00
|
|
|
j->buffer.torrent_file = NULL;
|
2014-07-06 21:18:00 +02:00
|
|
|
delete t;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2015-02-18 04:32:49 +01:00
|
|
|
// do this to trigger parsing of the info-dict here. It's better
|
|
|
|
// than to have it be done in the network thread. It has enough to
|
|
|
|
// do as it is.
|
|
|
|
std::string cert = t->ssl_cert();
|
2015-05-16 22:41:37 +02:00
|
|
|
j->buffer.torrent_file = t;
|
2014-07-06 21:18:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// this job won't return until all outstanding jobs on this
|
|
|
|
// piece are completed or cancelled and the buffers for it
|
|
|
|
// have been evicted
|
|
|
|
int disk_io_thread::do_clear_piece(disk_io_job* j, tailqueue& completed_jobs)
|
|
|
|
{
|
|
|
|
mutex::scoped_lock l(m_cache_mutex);
|
|
|
|
|
|
|
|
cached_piece_entry* pe = m_disk_cache.find_piece(j);
|
|
|
|
if (pe == 0) return 0;
|
|
|
|
TORRENT_PIECE_ASSERT(pe->hashing == false, pe);
|
|
|
|
pe->hashing_done = 0;
|
|
|
|
delete pe->hash;
|
|
|
|
pe->hash = NULL;
|
|
|
|
pe->hashing_done = false;
|
|
|
|
|
|
|
|
#if TORRENT_USE_ASSERTS
|
|
|
|
pe->piece_log.push_back(piece_log_t(j->action));
|
2008-03-08 07:06:31 +01:00
|
|
|
#endif
|
2014-07-06 21:18:00 +02:00
|
|
|
|
|
|
|
// evict_piece returns true if the piece was in fact
|
|
|
|
// evicted. A piece may fail to be evicted if there
|
|
|
|
// are still outstanding operations on it, in which case
|
|
|
|
// try again later
|
|
|
|
tailqueue jobs;
|
|
|
|
if (m_disk_cache.evict_piece(pe, jobs))
|
|
|
|
{
|
2015-04-20 06:52:49 +02:00
|
|
|
fail_jobs_impl(storage_error(boost::asio::error::operation_aborted)
|
|
|
|
, jobs, completed_jobs);
|
2014-07-06 21:18:00 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_disk_cache.mark_for_deletion(pe);
|
|
|
|
if (pe->num_blocks == 0) return 0;
|
|
|
|
|
|
|
|
// we should always be able to evict the piece, since
|
|
|
|
// this is a fence job
|
|
|
|
TORRENT_PIECE_ASSERT(false, pe);
|
|
|
|
return retry_job;
|
|
|
|
}
|
|
|
|
|
2015-04-20 06:52:49 +02:00
|
|
|
int disk_io_thread::do_tick(disk_io_job* j, tailqueue& /* completed_jobs */ )
|
2014-07-06 21:18:00 +02:00
|
|
|
{
|
|
|
|
// true means this storage wants more ticks, false
|
|
|
|
// disables ticking (until it's enabled again)
|
|
|
|
return j->storage->get_storage_impl()->tick();
|
|
|
|
}
|
|
|
|
|
2015-06-14 22:00:04 +02:00
|
|
|
void disk_io_thread::add_fence_job(piece_manager* storage, disk_io_job* j
|
|
|
|
, bool user_add)
|
2014-07-06 21:18:00 +02:00
|
|
|
{
|
|
|
|
// if this happens, it means we started to shut down
|
|
|
|
// the disk threads too early. We have to post all jobs
|
|
|
|
// before the disk threads are shut down
|
2015-06-14 22:00:04 +02:00
|
|
|
TORRENT_ASSERT(!m_abort);
|
2014-07-06 21:18:00 +02:00
|
|
|
|
|
|
|
DLOG("add_fence:job: %s (outstanding: %d)\n"
|
|
|
|
, job_action_name[j->action]
|
|
|
|
, j->storage->num_outstanding_jobs());
|
|
|
|
|
2014-10-25 22:59:54 +02:00
|
|
|
m_stats_counters.inc_stats_counter(counters::num_fenced_read + j->action);
|
2014-07-06 21:18:00 +02:00
|
|
|
|
|
|
|
disk_io_job* fj = allocate_job(disk_io_job::flush_storage);
|
|
|
|
fj->storage = j->storage;
|
|
|
|
|
2014-10-25 22:07:50 +02:00
|
|
|
int ret = storage->raise_fence(j, fj, m_stats_counters);
|
2014-07-06 21:18:00 +02:00
|
|
|
if (ret == disk_job_fence::fence_post_fence)
|
|
|
|
{
|
|
|
|
mutex::scoped_lock l(m_job_mutex);
|
|
|
|
TORRENT_ASSERT((j->flags & disk_io_job::in_progress) || !j->storage);
|
|
|
|
// prioritize fence jobs since they're blocking other jobs
|
|
|
|
m_queued_jobs.push_front(j);
|
|
|
|
l.unlock();
|
|
|
|
|
|
|
|
// discard the flush job
|
|
|
|
free_job(fj);
|
2015-06-14 22:00:04 +02:00
|
|
|
|
|
|
|
if (m_num_threads == 0 && user_add)
|
|
|
|
immediate_execute();
|
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// in this case, we can't run the fence job right now, because there
|
|
|
|
// are other jobs outstanding on this storage. We need to trigger a
|
|
|
|
// flush of all those jobs now. Only write jobs linger, those are the
|
|
|
|
// jobs that needs to be kicked
|
|
|
|
TORRENT_ASSERT(j->blocked);
|
2015-06-14 22:00:04 +02:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
if (ret == disk_job_fence::fence_post_flush)
|
|
|
|
{
|
|
|
|
// now, we have to make sure that all outstanding jobs on this
|
|
|
|
// storage actually get flushed, in order for the fence job to
|
|
|
|
// be executed
|
|
|
|
mutex::scoped_lock l(m_job_mutex);
|
|
|
|
TORRENT_ASSERT((fj->flags & disk_io_job::in_progress) || !fj->storage);
|
|
|
|
|
|
|
|
m_queued_jobs.push_front(fj);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
TORRENT_ASSERT((fj->flags & disk_io_job::in_progress) == 0);
|
|
|
|
TORRENT_ASSERT(fj->blocked);
|
|
|
|
}
|
2015-06-14 22:00:04 +02:00
|
|
|
|
|
|
|
if (m_num_threads == 0 && user_add)
|
|
|
|
immediate_execute();
|
2014-07-06 21:18:00 +02:00
|
|
|
}
|
|
|
|
|
2015-06-14 22:00:04 +02:00
|
|
|
void disk_io_thread::add_job(disk_io_job* j, bool user_add)
|
2014-07-06 21:18:00 +02:00
|
|
|
{
|
|
|
|
TORRENT_ASSERT(m_magic == 0x1337);
|
|
|
|
|
|
|
|
TORRENT_ASSERT(!j->storage || j->storage->files()->is_valid());
|
|
|
|
TORRENT_ASSERT(j->next == NULL);
|
|
|
|
// if this happens, it means we started to shut down
|
|
|
|
// the disk threads too early. We have to post all jobs
|
|
|
|
// before the disk threads are shut down
|
2015-06-14 22:00:04 +02:00
|
|
|
TORRENT_ASSERT(!m_abort
|
2014-07-06 21:18:00 +02:00
|
|
|
|| j->action == disk_io_job::flush_piece
|
|
|
|
|| j->action == disk_io_job::trim_cache);
|
|
|
|
|
|
|
|
// this happens for read jobs that get hung on pieces in the
|
|
|
|
// block cache, and then get issued
|
|
|
|
if (j->flags & disk_io_job::in_progress)
|
|
|
|
{
|
|
|
|
mutex::scoped_lock l(m_job_mutex);
|
|
|
|
TORRENT_ASSERT((j->flags & disk_io_job::in_progress) || !j->storage);
|
|
|
|
m_queued_jobs.push_back(j);
|
2015-06-14 22:00:04 +02:00
|
|
|
|
|
|
|
// if we literally have 0 disk threads, we have to execute the jobs
|
|
|
|
// immediately. If add job is called internally by the disk_io_thread,
|
|
|
|
// we need to defer executing it. We only want the top level to loop
|
|
|
|
// over the job queue (as is done below)
|
|
|
|
if (m_num_threads == 0 && user_add)
|
|
|
|
{
|
|
|
|
l.unlock();
|
|
|
|
immediate_execute();
|
|
|
|
}
|
2014-07-06 21:18:00 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
DLOG("add_job: %s (outstanding: %d)\n"
|
|
|
|
, job_action_name[j->action]
|
|
|
|
, j->storage ? j->storage->num_outstanding_jobs() : 0);
|
|
|
|
|
|
|
|
// is the fence up for this storage?
|
|
|
|
// jobs that are instantaneous are not affected by the fence, is_blocked()
|
|
|
|
// will take ownership of the job and queue it up, in case the fence is up
|
|
|
|
// if the fence flag is set, this job just raised the fence on the storage
|
|
|
|
// and should be scheduled
|
|
|
|
if (j->storage && j->storage->is_blocked(j))
|
|
|
|
{
|
2014-10-25 22:07:50 +02:00
|
|
|
m_stats_counters.inc_stats_counter(counters::blocked_disk_jobs);
|
2014-07-06 21:18:00 +02:00
|
|
|
DLOG("blocked job: %s (torrent: %d total: %d)\n"
|
|
|
|
, job_action_name[j->action], j->storage ? j->storage->num_blocked() : 0
|
2014-10-25 22:07:50 +02:00
|
|
|
, int(m_stats_counters[counters::blocked_disk_jobs]));
|
2014-07-06 21:18:00 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
mutex::scoped_lock l(m_job_mutex);
|
|
|
|
|
|
|
|
TORRENT_ASSERT((j->flags & disk_io_job::in_progress) || !j->storage);
|
2015-06-14 22:00:04 +02:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
// if there are at least 3 threads, there's a hasher thread
|
|
|
|
// and the hash jobs go into a separate queue
|
|
|
|
// see set_num_threads()
|
|
|
|
if (m_num_threads > 3 && j->action == disk_io_job::hash)
|
2015-06-14 22:00:04 +02:00
|
|
|
{
|
2014-07-06 21:18:00 +02:00
|
|
|
m_queued_hash_jobs.push_back(j);
|
2015-06-14 22:00:04 +02:00
|
|
|
}
|
2014-07-06 21:18:00 +02:00
|
|
|
else
|
2015-06-14 22:00:04 +02:00
|
|
|
{
|
2014-07-06 21:18:00 +02:00
|
|
|
m_queued_jobs.push_back(j);
|
2015-06-14 22:00:04 +02:00
|
|
|
// if we literally have 0 disk threads, we have to execute the jobs
|
|
|
|
// immediately. If add job is called internally by the disk_io_thread,
|
|
|
|
// we need to defer executing it. We only want the top level to loop
|
|
|
|
// over the job queue (as is done below)
|
|
|
|
if (m_num_threads == 0 && user_add)
|
|
|
|
{
|
|
|
|
l.unlock();
|
|
|
|
immediate_execute();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void disk_io_thread::immediate_execute()
|
|
|
|
{
|
|
|
|
while (!m_queued_jobs.empty())
|
|
|
|
{
|
|
|
|
disk_io_job* j = (disk_io_job*)m_queued_jobs.pop_front();
|
|
|
|
maybe_flush_write_blocks();
|
|
|
|
execute_job(j);
|
|
|
|
}
|
2014-07-06 21:18:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void disk_io_thread::submit_jobs()
|
|
|
|
{
|
|
|
|
mutex::scoped_lock l(m_job_mutex);
|
|
|
|
if (!m_queued_jobs.empty())
|
|
|
|
m_job_cond.notify_all();
|
|
|
|
if (!m_queued_hash_jobs.empty())
|
|
|
|
m_hash_job_cond.notify_all();
|
|
|
|
}
|
|
|
|
|
2015-06-14 22:00:04 +02:00
|
|
|
void disk_io_thread::maybe_flush_write_blocks()
|
|
|
|
{
|
|
|
|
time_point now = clock_type::now();
|
|
|
|
if (now <= m_last_cache_expiry + seconds(5)) return;
|
|
|
|
|
|
|
|
mutex::scoped_lock l(m_cache_mutex);
|
|
|
|
DLOG("blocked_jobs: %d queued_jobs: %d num_threads %d\n"
|
|
|
|
, int(m_stats_counters[counters::blocked_disk_jobs])
|
|
|
|
, m_queued_jobs.size(), int(m_num_threads));
|
|
|
|
m_last_cache_expiry = now;
|
|
|
|
tailqueue completed_jobs;
|
|
|
|
flush_expired_write_blocks(completed_jobs, l);
|
|
|
|
l.unlock();
|
|
|
|
if (completed_jobs.size())
|
|
|
|
add_completed_jobs(completed_jobs);
|
|
|
|
}
|
|
|
|
|
|
|
|
void disk_io_thread::execute_job(disk_io_job* j)
|
|
|
|
{
|
|
|
|
tailqueue completed_jobs;
|
|
|
|
perform_job(j, completed_jobs);
|
|
|
|
if (completed_jobs.size())
|
|
|
|
add_completed_jobs(completed_jobs);
|
|
|
|
}
|
|
|
|
|
|
|
|
void disk_io_thread::thread_fun(int thread_id, thread_type_t type
|
|
|
|
, boost::shared_ptr<io_service::work> w)
|
2014-07-06 21:18:00 +02:00
|
|
|
{
|
|
|
|
DLOG("started disk thread %d\n", int(thread_id));
|
|
|
|
|
|
|
|
++m_num_running_threads;
|
2014-08-01 08:07:48 +02:00
|
|
|
m_stats_counters.inc_stats_counter(counters::num_running_threads, 1);
|
2014-07-06 21:18:00 +02:00
|
|
|
|
|
|
|
mutex::scoped_lock l(m_job_mutex);
|
|
|
|
for (;;)
|
|
|
|
{
|
|
|
|
disk_io_job* j = 0;
|
|
|
|
if (type == generic_thread)
|
|
|
|
{
|
|
|
|
TORRENT_ASSERT(l.locked());
|
|
|
|
while (m_queued_jobs.empty() && thread_id < m_num_threads) m_job_cond.wait(l);
|
|
|
|
|
|
|
|
// if the number of wanted threads is decreased,
|
|
|
|
// we may stop this thread
|
|
|
|
// when we're terminating the last thread (id=0), make sure
|
|
|
|
// we finish up all queued jobs first
|
|
|
|
if (thread_id >= m_num_threads && !(thread_id == 0 && m_queued_jobs.size() > 0))
|
|
|
|
{
|
|
|
|
// time to exit this thread.
|
2008-04-13 23:26:57 +02:00
|
|
|
break;
|
|
|
|
}
|
2014-07-06 21:18:00 +02:00
|
|
|
|
|
|
|
j = (disk_io_job*)m_queued_jobs.pop_front();
|
|
|
|
}
|
|
|
|
else if (type == hasher_thread)
|
|
|
|
{
|
|
|
|
TORRENT_ASSERT(l.locked());
|
|
|
|
while (m_queued_hash_jobs.empty() && thread_id < m_num_threads) m_hash_job_cond.wait(l);
|
|
|
|
if (m_queued_hash_jobs.empty() && thread_id >= m_num_threads) break;
|
|
|
|
j = (disk_io_job*)m_queued_hash_jobs.pop_front();
|
|
|
|
}
|
|
|
|
|
|
|
|
l.unlock();
|
|
|
|
|
|
|
|
TORRENT_ASSERT((j->flags & disk_io_job::in_progress) || !j->storage);
|
|
|
|
|
|
|
|
if (thread_id == 0)
|
|
|
|
{
|
|
|
|
// there's no need for all threads to be doing this
|
2015-06-14 22:00:04 +02:00
|
|
|
maybe_flush_write_blocks();
|
2014-07-06 21:18:00 +02:00
|
|
|
}
|
|
|
|
|
2015-06-14 22:00:04 +02:00
|
|
|
execute_job(j);
|
2014-07-06 21:18:00 +02:00
|
|
|
|
|
|
|
l.lock();
|
|
|
|
}
|
|
|
|
l.unlock();
|
|
|
|
|
2015-06-14 22:00:04 +02:00
|
|
|
// do cleanup in the last running thread
|
|
|
|
// if we're not aborting, that means we just configured the thread pool to
|
|
|
|
// not have any threads (i.e. perform all disk operations in the network
|
|
|
|
// thread). In this case, the cleanup will happen in abort().
|
2014-08-01 08:07:48 +02:00
|
|
|
m_stats_counters.inc_stats_counter(counters::num_running_threads, -1);
|
2015-06-14 22:00:04 +02:00
|
|
|
if (--m_num_running_threads > 0 || !m_abort)
|
2014-07-06 21:18:00 +02:00
|
|
|
{
|
2015-06-14 22:00:04 +02:00
|
|
|
DLOG("exiting disk thread %d. num_threads: %d aborting: %d\n"
|
|
|
|
, thread_id, int(m_num_threads), int(m_abort));
|
2014-07-06 21:18:00 +02:00
|
|
|
TORRENT_ASSERT(m_magic == 0x1337);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// at this point, there are no queued jobs left. However, main
|
|
|
|
// thread is still running and may still have peer_connections
|
|
|
|
// that haven't fully destructed yet, reclaiming their references
|
|
|
|
// to read blocks in the disk cache. We need to wait until all
|
|
|
|
// references are removed from other threads before we can go
|
|
|
|
// ahead with the cleanup.
|
2015-06-14 22:00:04 +02:00
|
|
|
// This is not supposed to happen because the disk thread is now scheduled
|
|
|
|
// for shut down after all peers have shut down (see
|
|
|
|
// session_impl::abort_stage2()).
|
2014-07-06 21:18:00 +02:00
|
|
|
mutex::scoped_lock l2(m_cache_mutex);
|
2015-06-14 22:00:04 +02:00
|
|
|
TORRENT_ASSERT_VAL(m_disk_cache.pinned_blocks() == 0
|
|
|
|
, m_disk_cache.pinned_blocks());
|
2014-07-06 21:18:00 +02:00
|
|
|
while (m_disk_cache.pinned_blocks() > 0)
|
|
|
|
{
|
|
|
|
l2.unlock();
|
|
|
|
sleep(100);
|
|
|
|
l2.lock();
|
|
|
|
}
|
|
|
|
l2.unlock();
|
|
|
|
|
|
|
|
DLOG("disk thread %d is the last one alive. cleaning up\n", thread_id);
|
|
|
|
|
2015-06-14 22:00:04 +02:00
|
|
|
abort_jobs();
|
2014-07-06 21:18:00 +02:00
|
|
|
|
2015-06-14 22:00:04 +02:00
|
|
|
// release the io_service to allow the run() call to return
|
|
|
|
// we do this once we stop posting new callbacks to it.
|
|
|
|
#if defined TORRENT_ASIO_DEBUGGING
|
|
|
|
complete_async("disk_io_thread::work");
|
|
|
|
#endif
|
|
|
|
w.reset();
|
|
|
|
|
|
|
|
TORRENT_ASSERT(m_magic == 0x1337);
|
|
|
|
}
|
|
|
|
|
|
|
|
void disk_io_thread::abort_jobs()
|
|
|
|
{
|
|
|
|
TORRENT_ASSERT(m_magic == 0x1337);
|
|
|
|
|
|
|
|
tailqueue jobs;
|
2014-07-06 21:18:00 +02:00
|
|
|
m_disk_cache.clear(jobs);
|
|
|
|
fail_jobs(storage_error(boost::asio::error::operation_aborted), jobs);
|
|
|
|
|
|
|
|
// close all files. This may take a long
|
|
|
|
// time on certain OSes (i.e. Mac OS)
|
|
|
|
// that's why it's important to do this in
|
|
|
|
// the disk thread in parallel with stopping
|
|
|
|
// trackers.
|
|
|
|
m_file_pool.release();
|
|
|
|
|
|
|
|
#if TORRENT_USE_ASSERTS
|
|
|
|
// by now, all pieces should have been evicted
|
|
|
|
std::pair<block_cache::iterator, block_cache::iterator> pieces
|
|
|
|
= m_disk_cache.all_pieces();
|
|
|
|
TORRENT_ASSERT(pieces.first == pieces.second);
|
2008-03-08 07:06:31 +01:00
|
|
|
#endif
|
2015-06-14 22:00:04 +02:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
TORRENT_ASSERT(m_magic == 0x1337);
|
|
|
|
}
|
2009-05-22 08:32:39 +02:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
// this is a callback called by the block_cache when
|
|
|
|
// it's exceeding the disk cache size.
|
|
|
|
void disk_io_thread::trigger_cache_trim()
|
|
|
|
{
|
|
|
|
// we just exceeded the cache size limit. Trigger a trim job
|
|
|
|
disk_io_job* j = allocate_job(disk_io_job::trim_cache);
|
2015-06-14 22:00:04 +02:00
|
|
|
add_job(j, false);
|
2014-07-06 21:18:00 +02:00
|
|
|
submit_jobs();
|
|
|
|
}
|
|
|
|
|
|
|
|
char* disk_io_thread::allocate_disk_buffer(bool& exceeded
|
|
|
|
, boost::shared_ptr<disk_observer> o
|
|
|
|
, char const* category)
|
|
|
|
{
|
|
|
|
char* ret = m_disk_cache.allocate_buffer(exceeded, o, category);
|
|
|
|
return ret;
|
|
|
|
}
|
2009-05-22 08:32:39 +02:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
void disk_io_thread::add_completed_job(disk_io_job* j)
|
|
|
|
{
|
|
|
|
tailqueue tmp;
|
|
|
|
tmp.push_back(j);
|
|
|
|
add_completed_jobs(tmp);
|
|
|
|
}
|
2008-03-08 07:06:31 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
void disk_io_thread::add_completed_jobs(tailqueue& jobs)
|
|
|
|
{
|
|
|
|
tailqueue new_completed_jobs;
|
|
|
|
do
|
|
|
|
{
|
|
|
|
// when a job completes, it's possible for it to cause
|
|
|
|
// a fence to be lowered, issuing the jobs queued up
|
|
|
|
// behind the fence. It's also possible for some of these
|
|
|
|
// jobs to be cache-hits, completing immediately. Those
|
|
|
|
// jobs are added to the new_completed_jobs queue and
|
|
|
|
// we need to re-issue those
|
|
|
|
add_completed_jobs_impl(jobs, new_completed_jobs);
|
|
|
|
TORRENT_ASSERT(jobs.size() == 0);
|
|
|
|
jobs.swap(new_completed_jobs);
|
|
|
|
} while (jobs.size() > 0);
|
|
|
|
}
|
2011-03-14 06:21:46 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
void disk_io_thread::add_completed_jobs_impl(tailqueue& jobs
|
|
|
|
, tailqueue& completed_jobs)
|
|
|
|
{
|
|
|
|
tailqueue new_jobs;
|
|
|
|
int ret = 0;
|
|
|
|
for (tailqueue_iterator i = jobs.iterate(); i.get(); i.next())
|
|
|
|
{
|
|
|
|
disk_io_job* j = (disk_io_job*)i.get();
|
|
|
|
TORRENT_ASSERT((j->flags & disk_io_job::in_progress) || !j->storage);
|
|
|
|
|
|
|
|
// DLOG("job_complete %s outstanding: %d\n"
|
|
|
|
// , job_action_name[j->action], j->storage ? j->storage->num_outstanding_jobs() : 0);
|
|
|
|
|
|
|
|
if (j->storage)
|
|
|
|
{
|
|
|
|
if (j->flags & disk_io_job::fence)
|
2014-10-25 22:59:54 +02:00
|
|
|
{
|
|
|
|
m_stats_counters.inc_stats_counter(
|
|
|
|
counters::num_fenced_read + j->action, -1);
|
|
|
|
}
|
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
ret += j->storage->job_complete(j, new_jobs);
|
|
|
|
}
|
|
|
|
TORRENT_ASSERT(ret == new_jobs.size());
|
|
|
|
TORRENT_ASSERT((j->flags & disk_io_job::in_progress) == 0);
|
|
|
|
#if TORRENT_USE_ASSERTS
|
|
|
|
TORRENT_ASSERT(j->job_posted == false);
|
|
|
|
j->job_posted = true;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
#if DEBUG_DISK_THREAD
|
|
|
|
if (ret) DLOG("unblocked %d jobs (%d left)\n", ret
|
2014-10-25 22:07:50 +02:00
|
|
|
, int(m_stats_counters[counters::blocked_disk_jobs]) - ret);
|
2014-07-06 21:18:00 +02:00
|
|
|
#endif
|
|
|
|
|
2014-10-25 22:07:50 +02:00
|
|
|
m_stats_counters.inc_stats_counter(counters::blocked_disk_jobs, -ret);
|
|
|
|
TORRENT_ASSERT(int(m_stats_counters[counters::blocked_disk_jobs]) >= 0);
|
2014-07-06 21:18:00 +02:00
|
|
|
|
|
|
|
if (new_jobs.size() > 0)
|
|
|
|
{
|
|
|
|
#if TORRENT_USE_ASSERTS
|
|
|
|
for (tailqueue_iterator i = new_jobs.iterate(); i.get(); i.next())
|
|
|
|
{
|
|
|
|
disk_io_job const* j = static_cast<disk_io_job const*>(i.get());
|
|
|
|
TORRENT_ASSERT((j->flags & disk_io_job::in_progress) || !j->storage);
|
|
|
|
|
|
|
|
if (j->action == disk_io_job::write)
|
|
|
|
{
|
|
|
|
mutex::scoped_lock l(m_cache_mutex);
|
|
|
|
cached_piece_entry* pe = m_disk_cache.find_piece(j);
|
|
|
|
if (pe)
|
2008-07-18 01:41:46 +02:00
|
|
|
{
|
2015-05-16 22:41:37 +02:00
|
|
|
TORRENT_ASSERT(pe->blocks[j->d.io.offset / 16 / 1024].buf != j->buffer.disk_block);
|
2014-07-06 21:18:00 +02:00
|
|
|
TORRENT_ASSERT(pe->blocks[j->d.io.offset / 16 / 1024].buf == NULL);
|
|
|
|
TORRENT_ASSERT(!pe->hashing_done);
|
2008-07-18 01:41:46 +02:00
|
|
|
}
|
2014-07-06 21:18:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
tailqueue other_jobs;
|
|
|
|
tailqueue flush_jobs;
|
|
|
|
mutex::scoped_lock l_(m_cache_mutex);
|
|
|
|
while (new_jobs.size() > 0)
|
|
|
|
{
|
|
|
|
disk_io_job* j = (disk_io_job*)new_jobs.pop_front();
|
|
|
|
|
|
|
|
if (j->action == disk_io_job::read
|
|
|
|
&& m_settings.get_bool(settings_pack::use_read_cache)
|
|
|
|
&& m_settings.get_int(settings_pack::cache_size) > 0)
|
|
|
|
{
|
|
|
|
int ret = prep_read_job_impl(j, false);
|
|
|
|
switch (ret)
|
2008-04-13 20:54:36 +02:00
|
|
|
{
|
2014-07-06 21:18:00 +02:00
|
|
|
case 0:
|
|
|
|
completed_jobs.push_back(j);
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
other_jobs.push_back(j);
|
|
|
|
break;
|
2008-04-13 23:26:57 +02:00
|
|
|
}
|
2014-07-06 21:18:00 +02:00
|
|
|
continue;
|
2008-04-13 23:26:57 +02:00
|
|
|
}
|
2014-07-06 21:18:00 +02:00
|
|
|
|
|
|
|
// write jobs should be put straight into the cache
|
|
|
|
if (j->action != disk_io_job::write)
|
2008-04-13 23:26:57 +02:00
|
|
|
{
|
2014-07-06 21:18:00 +02:00
|
|
|
other_jobs.push_back(j);
|
|
|
|
continue;
|
2007-06-10 22:46:09 +02:00
|
|
|
}
|
2014-07-06 21:18:00 +02:00
|
|
|
|
2015-07-11 16:36:13 +02:00
|
|
|
cached_piece_entry* pe = m_disk_cache.add_dirty_block(j);
|
2014-07-06 21:18:00 +02:00
|
|
|
|
|
|
|
if (pe == NULL)
|
2008-05-28 10:44:40 +02:00
|
|
|
{
|
2014-07-06 21:18:00 +02:00
|
|
|
// this isn't correct, since jobs in the jobs
|
|
|
|
// queue aren't ordered
|
|
|
|
other_jobs.push_back(j);
|
|
|
|
continue;
|
2014-02-28 11:19:29 +01:00
|
|
|
}
|
2014-07-06 21:18:00 +02:00
|
|
|
|
|
|
|
#if TORRENT_USE_ASSERTS
|
|
|
|
pe->piece_log.push_back(piece_log_t(j->action, j->d.io.offset / 0x4000));
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (!pe->hashing_done
|
|
|
|
&& pe->hash == 0
|
|
|
|
&& !m_settings.get_bool(settings_pack::disable_hash_checks))
|
2014-02-28 11:19:29 +01:00
|
|
|
{
|
2014-07-06 21:18:00 +02:00
|
|
|
pe->hash = new partial_hash;
|
|
|
|
m_disk_cache.update_cache_state(pe);
|
2008-05-28 10:44:40 +02:00
|
|
|
}
|
2014-07-06 21:18:00 +02:00
|
|
|
|
|
|
|
TORRENT_PIECE_ASSERT(pe->cache_state <= cached_piece_entry::read_lru1 || pe->cache_state == cached_piece_entry::read_lru2, pe);
|
|
|
|
|
|
|
|
if (pe->outstanding_flush == 0)
|
|
|
|
{
|
|
|
|
pe->outstanding_flush = 1;
|
|
|
|
|
|
|
|
// the block and write job were successfully inserted
|
|
|
|
// into the cache. Now, see if we should trigger a flush
|
|
|
|
disk_io_job* fj = allocate_job(disk_io_job::flush_hashed);
|
|
|
|
fj->storage = j->storage;
|
|
|
|
fj->piece = j->piece;
|
|
|
|
flush_jobs.push_back(fj);
|
2011-02-25 18:00:36 +01:00
|
|
|
}
|
2007-06-10 22:46:09 +02:00
|
|
|
}
|
2014-07-06 21:18:00 +02:00
|
|
|
l_.unlock();
|
|
|
|
|
|
|
|
mutex::scoped_lock l(m_job_mutex);
|
|
|
|
m_queued_jobs.append(other_jobs);
|
|
|
|
l.unlock();
|
|
|
|
|
|
|
|
while (flush_jobs.size() > 0)
|
2007-06-10 22:46:09 +02:00
|
|
|
{
|
2014-07-06 21:18:00 +02:00
|
|
|
disk_io_job* j = (disk_io_job*)flush_jobs.pop_front();
|
2015-06-14 22:00:04 +02:00
|
|
|
add_job(j, false);
|
2007-06-10 22:46:09 +02:00
|
|
|
}
|
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
m_job_cond.notify_all();
|
|
|
|
}
|
|
|
|
|
|
|
|
mutex::scoped_lock l(m_completed_jobs_mutex);
|
|
|
|
|
|
|
|
bool need_post = m_completed_jobs.size() == 0;
|
|
|
|
m_completed_jobs.append(jobs);
|
|
|
|
l.unlock();
|
2010-10-18 09:38:14 +02:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
if (need_post)
|
|
|
|
{
|
|
|
|
#if DEBUG_DISK_THREAD
|
|
|
|
// we take this lock just to make the logging prettier (non-interleaved)
|
|
|
|
DLOG("posting job handlers (%d)\n", m_completed_jobs.size());
|
|
|
|
#endif
|
|
|
|
m_ios.post(boost::bind(&disk_io_thread::call_job_handlers, this, m_userdata));
|
|
|
|
}
|
|
|
|
}
|
2011-03-18 04:07:10 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
// This is run in the network thread
|
|
|
|
void disk_io_thread::call_job_handlers(void* userdata)
|
|
|
|
{
|
|
|
|
mutex::scoped_lock l(m_completed_jobs_mutex);
|
|
|
|
|
|
|
|
#if DEBUG_DISK_THREAD
|
|
|
|
DLOG("call_job_handlers (%d)\n", m_completed_jobs.size());
|
2009-06-01 00:38:49 +02:00
|
|
|
#endif
|
2014-07-06 21:18:00 +02:00
|
|
|
|
|
|
|
int num_jobs = m_completed_jobs.size();
|
|
|
|
disk_io_job* j = (disk_io_job*)m_completed_jobs.get_all();
|
|
|
|
l.unlock();
|
|
|
|
|
|
|
|
uncork_interface* uncork = (uncork_interface*)userdata;
|
|
|
|
std::vector<disk_io_job*> to_delete;
|
|
|
|
to_delete.reserve(num_jobs);
|
|
|
|
|
|
|
|
while (j)
|
|
|
|
{
|
|
|
|
TORRENT_ASSERT(j->job_posted == true);
|
|
|
|
TORRENT_ASSERT(j->callback_called == false);
|
|
|
|
// DLOG(" callback: %s\n", job_action_name[j->action]);
|
|
|
|
disk_io_job* next = (disk_io_job*)j->next;
|
|
|
|
|
|
|
|
#if TORRENT_USE_ASSERTS
|
|
|
|
j->callback_called = true;
|
|
|
|
#endif
|
|
|
|
if (j->callback) j->callback(j);
|
|
|
|
to_delete.push_back(j);
|
|
|
|
j = next;
|
2007-06-10 22:46:09 +02:00
|
|
|
}
|
2014-07-06 21:18:00 +02:00
|
|
|
|
|
|
|
if (!to_delete.empty())
|
|
|
|
free_jobs(&to_delete[0], to_delete.size());
|
|
|
|
|
|
|
|
// uncork all peers who received a disk event. This is
|
|
|
|
// to coalesce all the socket writes caused by the events.
|
|
|
|
if (uncork) uncork->do_delayed_uncork();
|
|
|
|
}
|
|
|
|
|
|
|
|
#if TORRENT_USE_INVARIANT_CHECKS
|
|
|
|
void disk_io_thread::check_invariant() const
|
|
|
|
{
|
2007-06-10 22:46:09 +02:00
|
|
|
}
|
2014-07-06 21:18:00 +02:00
|
|
|
#endif
|
|
|
|
|
2007-06-10 22:46:09 +02:00
|
|
|
}
|
|
|
|
|