2007-06-10 22:46:09 +02:00
|
|
|
/*
|
|
|
|
|
|
|
|
Copyright (c) 2007, Arvid Norberg
|
|
|
|
All rights reserved.
|
|
|
|
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
|
|
modification, are permitted provided that the following conditions
|
|
|
|
are met:
|
|
|
|
|
|
|
|
* Redistributions of source code must retain the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer.
|
|
|
|
* Redistributions in binary form must reproduce the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer in
|
|
|
|
the documentation and/or other materials provided with the distribution.
|
|
|
|
* Neither the name of the author nor the names of its
|
|
|
|
contributors may be used to endorse or promote products derived
|
|
|
|
from this software without specific prior written permission.
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
|
|
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "libtorrent/storage.hpp"
|
|
|
|
#include <deque>
|
|
|
|
#include "libtorrent/disk_io_thread.hpp"
|
2008-04-13 00:08:07 +02:00
|
|
|
#include "libtorrent/disk_buffer_holder.hpp"
|
2008-02-22 05:11:04 +01:00
|
|
|
#include <boost/scoped_array.hpp>
|
2007-06-10 22:46:09 +02:00
|
|
|
|
2008-02-08 11:22:05 +01:00
|
|
|
#ifdef _WIN32
|
|
|
|
#include <malloc.h>
|
2008-09-15 15:58:38 +02:00
|
|
|
#ifndef alloca
|
2008-02-08 11:22:05 +01:00
|
|
|
#define alloca(s) _alloca(s)
|
|
|
|
#endif
|
2008-09-15 15:58:38 +02:00
|
|
|
#endif
|
2007-09-17 10:15:54 +02:00
|
|
|
|
2008-02-08 11:22:05 +01:00
|
|
|
#ifdef TORRENT_DISK_STATS
|
2007-09-17 10:15:54 +02:00
|
|
|
#include "libtorrent/time.hpp"
|
|
|
|
#endif
|
|
|
|
|
2007-06-10 22:46:09 +02:00
|
|
|
namespace libtorrent
|
|
|
|
{
|
|
|
|
|
2008-02-08 11:22:05 +01:00
|
|
|
disk_io_thread::disk_io_thread(asio::io_service& ios, int block_size)
|
2007-06-10 22:46:09 +02:00
|
|
|
: m_abort(false)
|
|
|
|
, m_queue_buffer_size(0)
|
2008-02-09 22:09:29 +01:00
|
|
|
, m_cache_size(512) // 512 * 16kB = 8MB
|
2008-02-10 01:58:25 +01:00
|
|
|
, m_cache_expiry(60) // 1 minute
|
2008-02-22 05:11:04 +01:00
|
|
|
, m_coalesce_writes(true)
|
|
|
|
, m_coalesce_reads(true)
|
|
|
|
, m_use_read_cache(true)
|
2008-04-09 07:19:11 +02:00
|
|
|
#ifndef TORRENT_DISABLE_POOL_ALLOCATOR
|
2007-06-10 22:46:09 +02:00
|
|
|
, m_pool(block_size)
|
2008-04-09 07:19:11 +02:00
|
|
|
#endif
|
2007-08-02 03:42:19 +02:00
|
|
|
, m_block_size(block_size)
|
2008-02-08 11:22:05 +01:00
|
|
|
, m_ios(ios)
|
2007-06-10 22:46:09 +02:00
|
|
|
, m_disk_io_thread(boost::ref(*this))
|
2007-09-17 10:15:54 +02:00
|
|
|
{
|
2007-09-29 18:14:03 +02:00
|
|
|
#ifdef TORRENT_STATS
|
|
|
|
m_allocations = 0;
|
|
|
|
#endif
|
2007-09-17 10:15:54 +02:00
|
|
|
#ifdef TORRENT_DISK_STATS
|
|
|
|
m_log.open("disk_io_thread.log", std::ios::trunc);
|
|
|
|
#endif
|
|
|
|
}
|
2007-06-10 22:46:09 +02:00
|
|
|
|
|
|
|
disk_io_thread::~disk_io_thread()
|
|
|
|
{
|
2007-12-24 09:15:10 +01:00
|
|
|
TORRENT_ASSERT(m_abort == true);
|
2007-06-10 22:46:09 +02:00
|
|
|
}
|
|
|
|
|
2007-12-24 09:15:10 +01:00
|
|
|
void disk_io_thread::join()
|
|
|
|
{
|
2008-06-12 06:40:37 +02:00
|
|
|
mutex_t::scoped_lock l(m_queue_mutex);
|
2008-06-09 06:46:34 +02:00
|
|
|
disk_io_job j;
|
|
|
|
j.action = disk_io_job::abort_thread;
|
|
|
|
m_jobs.insert(m_jobs.begin(), j);
|
2007-12-24 09:15:10 +01:00
|
|
|
m_signal.notify_all();
|
|
|
|
l.unlock();
|
|
|
|
|
|
|
|
m_disk_io_thread.join();
|
2008-11-11 10:32:51 +01:00
|
|
|
l.lock();
|
|
|
|
TORRENT_ASSERT(m_abort == true);
|
|
|
|
m_jobs.clear();
|
2007-12-24 09:15:10 +01:00
|
|
|
}
|
|
|
|
|
2008-02-08 11:22:05 +01:00
|
|
|
void disk_io_thread::get_cache_info(sha1_hash const& ih, std::vector<cached_piece_info>& ret) const
|
|
|
|
{
|
2008-06-12 06:40:37 +02:00
|
|
|
mutex_t::scoped_lock l(m_piece_mutex);
|
2008-02-08 11:22:05 +01:00
|
|
|
ret.clear();
|
|
|
|
ret.reserve(m_pieces.size());
|
2008-02-25 00:14:10 +01:00
|
|
|
for (cache_t::const_iterator i = m_pieces.begin()
|
2008-02-08 11:22:05 +01:00
|
|
|
, end(m_pieces.end()); i != end; ++i)
|
|
|
|
{
|
|
|
|
torrent_info const& ti = *i->storage->info();
|
|
|
|
if (ti.info_hash() != ih) continue;
|
|
|
|
cached_piece_info info;
|
|
|
|
info.piece = i->piece;
|
2008-02-22 05:11:04 +01:00
|
|
|
info.last_use = i->last_use;
|
2008-07-11 12:29:26 +02:00
|
|
|
info.kind = cached_piece_info::write_cache;
|
|
|
|
int blocks_in_piece = (ti.piece_size(i->piece) + (m_block_size) - 1) / m_block_size;
|
|
|
|
info.blocks.resize(blocks_in_piece);
|
|
|
|
for (int b = 0; b < blocks_in_piece; ++b)
|
|
|
|
if (i->blocks[b]) info.blocks[b] = true;
|
|
|
|
ret.push_back(info);
|
|
|
|
}
|
|
|
|
for (cache_t::const_iterator i = m_read_pieces.begin()
|
|
|
|
, end(m_read_pieces.end()); i != end; ++i)
|
|
|
|
{
|
|
|
|
torrent_info const& ti = *i->storage->info();
|
|
|
|
if (ti.info_hash() != ih) continue;
|
|
|
|
cached_piece_info info;
|
|
|
|
info.piece = i->piece;
|
|
|
|
info.last_use = i->last_use;
|
|
|
|
info.kind = cached_piece_info::read_cache;
|
2008-02-22 05:11:04 +01:00
|
|
|
int blocks_in_piece = (ti.piece_size(i->piece) + (m_block_size) - 1) / m_block_size;
|
2008-02-08 11:22:05 +01:00
|
|
|
info.blocks.resize(blocks_in_piece);
|
|
|
|
for (int b = 0; b < blocks_in_piece; ++b)
|
|
|
|
if (i->blocks[b]) info.blocks[b] = true;
|
|
|
|
ret.push_back(info);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
cache_status disk_io_thread::status() const
|
|
|
|
{
|
2008-06-12 06:40:37 +02:00
|
|
|
mutex_t::scoped_lock l(m_piece_mutex);
|
2008-02-22 05:11:04 +01:00
|
|
|
return m_cache_stats;
|
2008-02-08 11:22:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void disk_io_thread::set_cache_size(int s)
|
|
|
|
{
|
2008-06-12 06:40:37 +02:00
|
|
|
mutex_t::scoped_lock l(m_piece_mutex);
|
2008-02-08 11:22:05 +01:00
|
|
|
TORRENT_ASSERT(s >= 0);
|
|
|
|
m_cache_size = s;
|
|
|
|
}
|
|
|
|
|
2008-02-10 01:58:25 +01:00
|
|
|
void disk_io_thread::set_cache_expiry(int ex)
|
|
|
|
{
|
2008-06-12 06:40:37 +02:00
|
|
|
mutex_t::scoped_lock l(m_piece_mutex);
|
2008-02-10 01:58:25 +01:00
|
|
|
TORRENT_ASSERT(ex > 0);
|
|
|
|
m_cache_expiry = ex;
|
|
|
|
}
|
|
|
|
|
2007-06-10 22:46:09 +02:00
|
|
|
// aborts read operations
|
|
|
|
void disk_io_thread::stop(boost::intrusive_ptr<piece_manager> s)
|
|
|
|
{
|
2008-06-12 06:40:37 +02:00
|
|
|
mutex_t::scoped_lock l(m_queue_mutex);
|
2007-06-10 22:46:09 +02:00
|
|
|
// read jobs are aborted, write and move jobs are syncronized
|
2008-02-26 21:08:33 +01:00
|
|
|
for (std::list<disk_io_job>::iterator i = m_jobs.begin();
|
2007-06-10 22:46:09 +02:00
|
|
|
i != m_jobs.end();)
|
|
|
|
{
|
|
|
|
if (i->storage != s)
|
|
|
|
{
|
|
|
|
++i;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (i->action == disk_io_job::read)
|
|
|
|
{
|
2008-02-08 11:22:05 +01:00
|
|
|
if (i->callback) m_ios.post(bind(i->callback, -1, *i));
|
2007-06-10 22:46:09 +02:00
|
|
|
m_jobs.erase(i++);
|
|
|
|
continue;
|
|
|
|
}
|
2008-06-09 06:46:34 +02:00
|
|
|
if (i->action == disk_io_job::check_files)
|
|
|
|
{
|
|
|
|
if (i->callback) m_ios.post(bind(i->callback
|
|
|
|
, piece_manager::disk_check_aborted, *i));
|
|
|
|
m_jobs.erase(i++);
|
|
|
|
continue;
|
|
|
|
}
|
2007-06-10 22:46:09 +02:00
|
|
|
++i;
|
|
|
|
}
|
|
|
|
m_signal.notify_all();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool range_overlap(int start1, int length1, int start2, int length2)
|
|
|
|
{
|
|
|
|
return (start1 <= start2 && start1 + length1 > start2)
|
|
|
|
|| (start2 <= start1 && start2 + length2 > start1);
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace
|
|
|
|
{
|
2007-09-16 03:34:06 +02:00
|
|
|
// The semantic of this operator is:
|
2008-02-22 05:11:04 +01:00
|
|
|
// should lhs come before rhs in the job queue
|
2007-06-10 22:46:09 +02:00
|
|
|
bool operator<(disk_io_job const& lhs, disk_io_job const& rhs)
|
|
|
|
{
|
2007-09-16 03:34:06 +02:00
|
|
|
// NOTE: comparison inverted to make higher priority
|
|
|
|
// skip _in_front_of_ lower priority
|
|
|
|
if (lhs.priority > rhs.priority) return true;
|
|
|
|
if (lhs.priority < rhs.priority) return false;
|
|
|
|
|
2007-06-10 22:46:09 +02:00
|
|
|
if (lhs.storage.get() < rhs.storage.get()) return true;
|
|
|
|
if (lhs.storage.get() > rhs.storage.get()) return false;
|
|
|
|
if (lhs.piece < rhs.piece) return true;
|
|
|
|
if (lhs.piece > rhs.piece) return false;
|
|
|
|
if (lhs.offset < rhs.offset) return true;
|
|
|
|
// if (lhs.offset > rhs.offset) return false;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2008-02-08 11:22:05 +01:00
|
|
|
|
2008-02-25 00:14:10 +01:00
|
|
|
disk_io_thread::cache_t::iterator disk_io_thread::find_cached_piece(
|
|
|
|
disk_io_thread::cache_t& cache
|
2008-02-22 05:11:04 +01:00
|
|
|
, disk_io_job const& j, mutex_t::scoped_lock& l)
|
2008-02-08 11:22:05 +01:00
|
|
|
{
|
2008-02-25 00:14:10 +01:00
|
|
|
for (cache_t::iterator i = cache.begin()
|
2008-02-22 05:11:04 +01:00
|
|
|
, end(cache.end()); i != end; ++i)
|
2008-02-08 11:22:05 +01:00
|
|
|
{
|
|
|
|
if (i->storage != j.storage || i->piece != j.piece) continue;
|
|
|
|
return i;
|
|
|
|
}
|
2008-02-22 05:11:04 +01:00
|
|
|
return cache.end();
|
2008-02-08 11:22:05 +01:00
|
|
|
}
|
2007-06-10 22:46:09 +02:00
|
|
|
|
2008-06-12 06:40:37 +02:00
|
|
|
void disk_io_thread::flush_expired_pieces()
|
2008-02-10 01:58:25 +01:00
|
|
|
{
|
|
|
|
ptime now = time_now();
|
|
|
|
|
2008-06-12 06:40:37 +02:00
|
|
|
mutex_t::scoped_lock l(m_piece_mutex);
|
|
|
|
|
2008-02-22 05:11:04 +01:00
|
|
|
INVARIANT_CHECK;
|
2008-02-10 01:58:25 +01:00
|
|
|
for (;;)
|
|
|
|
{
|
2008-02-25 00:14:10 +01:00
|
|
|
cache_t::iterator i = std::min_element(
|
2008-02-10 01:58:25 +01:00
|
|
|
m_pieces.begin(), m_pieces.end()
|
2008-02-22 05:11:04 +01:00
|
|
|
, bind(&cached_piece_entry::last_use, _1)
|
|
|
|
< bind(&cached_piece_entry::last_use, _2));
|
2008-02-10 01:58:25 +01:00
|
|
|
if (i == m_pieces.end()) return;
|
2008-02-22 05:11:04 +01:00
|
|
|
int age = total_seconds(now - i->last_use);
|
2008-02-10 21:36:48 +01:00
|
|
|
if (age < m_cache_expiry) return;
|
2008-02-10 01:58:25 +01:00
|
|
|
flush_and_remove(i, l);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-02-22 05:11:04 +01:00
|
|
|
void disk_io_thread::free_piece(cached_piece_entry& p, mutex_t::scoped_lock& l)
|
|
|
|
{
|
|
|
|
int piece_size = p.storage->info()->piece_size(p.piece);
|
|
|
|
int blocks_in_piece = (piece_size + m_block_size - 1) / m_block_size;
|
|
|
|
|
|
|
|
for (int i = 0; i < blocks_in_piece; ++i)
|
|
|
|
{
|
|
|
|
if (p.blocks[i] == 0) continue;
|
2008-06-12 06:40:37 +02:00
|
|
|
free_buffer(p.blocks[i]);
|
2008-02-22 05:11:04 +01:00
|
|
|
p.blocks[i] = 0;
|
|
|
|
--p.num_blocks;
|
|
|
|
--m_cache_stats.cache_size;
|
|
|
|
--m_cache_stats.read_cache_size;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-02-25 00:14:10 +01:00
|
|
|
bool disk_io_thread::clear_oldest_read_piece(
|
|
|
|
cache_t::iterator ignore
|
|
|
|
, mutex_t::scoped_lock& l)
|
2008-02-22 05:11:04 +01:00
|
|
|
{
|
|
|
|
INVARIANT_CHECK;
|
|
|
|
|
2008-02-25 00:14:10 +01:00
|
|
|
cache_t::iterator i = std::min_element(
|
2008-02-22 05:11:04 +01:00
|
|
|
m_read_pieces.begin(), m_read_pieces.end()
|
|
|
|
, bind(&cached_piece_entry::last_use, _1)
|
|
|
|
< bind(&cached_piece_entry::last_use, _2));
|
2008-02-25 00:14:10 +01:00
|
|
|
if (i != m_read_pieces.end() && i != ignore)
|
2008-02-22 05:11:04 +01:00
|
|
|
{
|
2008-02-25 00:14:10 +01:00
|
|
|
// don't replace an entry that is less than one second old
|
|
|
|
if (time_now() - i->last_use < seconds(1)) return false;
|
2008-02-22 05:11:04 +01:00
|
|
|
free_piece(*i, l);
|
|
|
|
m_read_pieces.erase(i);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2008-02-08 11:22:05 +01:00
|
|
|
void disk_io_thread::flush_oldest_piece(mutex_t::scoped_lock& l)
|
|
|
|
{
|
2008-02-22 05:11:04 +01:00
|
|
|
INVARIANT_CHECK;
|
|
|
|
// first look if there are any read cache entries that can
|
|
|
|
// be cleared
|
2008-02-25 00:14:10 +01:00
|
|
|
if (clear_oldest_read_piece(m_read_pieces.end(), l)) return;
|
2008-02-22 05:11:04 +01:00
|
|
|
|
2008-02-25 00:14:10 +01:00
|
|
|
cache_t::iterator i = std::min_element(
|
2008-02-08 11:22:05 +01:00
|
|
|
m_pieces.begin(), m_pieces.end()
|
2008-02-22 05:11:04 +01:00
|
|
|
, bind(&cached_piece_entry::last_use, _1)
|
|
|
|
< bind(&cached_piece_entry::last_use, _2));
|
2008-02-08 11:22:05 +01:00
|
|
|
if (i == m_pieces.end()) return;
|
|
|
|
flush_and_remove(i, l);
|
|
|
|
}
|
|
|
|
|
2008-02-25 00:14:10 +01:00
|
|
|
void disk_io_thread::flush_and_remove(disk_io_thread::cache_t::iterator e
|
2008-02-08 11:22:05 +01:00
|
|
|
, mutex_t::scoped_lock& l)
|
|
|
|
{
|
|
|
|
flush(e, l);
|
|
|
|
m_pieces.erase(e);
|
|
|
|
}
|
|
|
|
|
2008-02-25 00:14:10 +01:00
|
|
|
void disk_io_thread::flush(disk_io_thread::cache_t::iterator e
|
2008-02-08 11:22:05 +01:00
|
|
|
, mutex_t::scoped_lock& l)
|
|
|
|
{
|
2008-02-22 05:11:04 +01:00
|
|
|
INVARIANT_CHECK;
|
2008-02-08 11:22:05 +01:00
|
|
|
cached_piece_entry& p = *e;
|
|
|
|
int piece_size = p.storage->info()->piece_size(p.piece);
|
2008-02-10 01:58:25 +01:00
|
|
|
#ifdef TORRENT_DISK_STATS
|
|
|
|
m_log << log_time() << " flushing " << piece_size << std::endl;
|
|
|
|
#endif
|
2008-02-08 11:22:05 +01:00
|
|
|
TORRENT_ASSERT(piece_size > 0);
|
2008-02-22 05:11:04 +01:00
|
|
|
boost::scoped_array<char> buf;
|
|
|
|
if (m_coalesce_writes) buf.reset(new (std::nothrow) char[piece_size]);
|
2008-02-08 11:22:05 +01:00
|
|
|
|
2008-02-22 05:11:04 +01:00
|
|
|
int blocks_in_piece = (piece_size + m_block_size - 1) / m_block_size;
|
2008-02-08 11:22:05 +01:00
|
|
|
int buffer_size = 0;
|
|
|
|
int offset = 0;
|
|
|
|
for (int i = 0; i <= blocks_in_piece; ++i)
|
|
|
|
{
|
|
|
|
if (i == blocks_in_piece || p.blocks[i] == 0)
|
|
|
|
{
|
|
|
|
if (buffer_size == 0) continue;
|
2008-02-22 05:11:04 +01:00
|
|
|
TORRENT_ASSERT(buf);
|
2008-02-08 11:22:05 +01:00
|
|
|
|
2008-02-22 05:11:04 +01:00
|
|
|
TORRENT_ASSERT(buffer_size <= i * m_block_size);
|
2008-02-08 11:22:05 +01:00
|
|
|
l.unlock();
|
2008-02-22 05:11:04 +01:00
|
|
|
p.storage->write_impl(buf.get(), p.piece, (std::min)(
|
|
|
|
i * m_block_size, piece_size) - buffer_size, buffer_size);
|
2008-02-08 11:22:05 +01:00
|
|
|
l.lock();
|
2008-02-22 05:11:04 +01:00
|
|
|
++m_cache_stats.writes;
|
2008-02-08 11:22:05 +01:00
|
|
|
// std::cerr << " flushing p: " << p.piece << " bytes: " << buffer_size << std::endl;
|
|
|
|
buffer_size = 0;
|
|
|
|
offset = 0;
|
|
|
|
continue;
|
|
|
|
}
|
2008-02-22 05:11:04 +01:00
|
|
|
int block_size = (std::min)(piece_size - i * m_block_size, m_block_size);
|
2008-02-08 11:22:05 +01:00
|
|
|
TORRENT_ASSERT(offset + block_size <= piece_size);
|
|
|
|
TORRENT_ASSERT(offset + block_size > 0);
|
2008-02-22 05:11:04 +01:00
|
|
|
if (!buf)
|
|
|
|
{
|
|
|
|
l.unlock();
|
|
|
|
p.storage->write_impl(p.blocks[i], p.piece, i * m_block_size, block_size);
|
|
|
|
l.lock();
|
|
|
|
++m_cache_stats.writes;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
std::memcpy(buf.get() + offset, p.blocks[i], block_size);
|
|
|
|
offset += m_block_size;
|
|
|
|
buffer_size += block_size;
|
|
|
|
}
|
2008-06-12 06:40:37 +02:00
|
|
|
free_buffer(p.blocks[i]);
|
2008-02-08 11:22:05 +01:00
|
|
|
p.blocks[i] = 0;
|
2008-02-22 05:11:04 +01:00
|
|
|
TORRENT_ASSERT(p.num_blocks > 0);
|
|
|
|
--p.num_blocks;
|
|
|
|
++m_cache_stats.blocks_written;
|
|
|
|
--m_cache_stats.cache_size;
|
2008-02-08 11:22:05 +01:00
|
|
|
}
|
|
|
|
TORRENT_ASSERT(buffer_size == 0);
|
2008-02-22 05:11:04 +01:00
|
|
|
// std::cerr << " flushing p: " << p.piece << " cached_blocks: " << m_cache_stats.cache_size << std::endl;
|
2008-02-08 11:22:05 +01:00
|
|
|
#ifndef NDEBUG
|
|
|
|
for (int i = 0; i < blocks_in_piece; ++i)
|
|
|
|
TORRENT_ASSERT(p.blocks[i] == 0);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void disk_io_thread::cache_block(disk_io_job& j, mutex_t::scoped_lock& l)
|
|
|
|
{
|
2008-02-22 05:11:04 +01:00
|
|
|
INVARIANT_CHECK;
|
|
|
|
TORRENT_ASSERT(find_cached_piece(m_pieces, j, l) == m_pieces.end());
|
2008-02-08 11:22:05 +01:00
|
|
|
cached_piece_entry p;
|
|
|
|
|
|
|
|
int piece_size = j.storage->info()->piece_size(j.piece);
|
2008-02-22 05:11:04 +01:00
|
|
|
int blocks_in_piece = (piece_size + m_block_size - 1) / m_block_size;
|
2008-02-08 11:22:05 +01:00
|
|
|
|
|
|
|
p.piece = j.piece;
|
|
|
|
p.storage = j.storage;
|
2008-02-22 05:11:04 +01:00
|
|
|
p.last_use = time_now();
|
2008-02-08 11:22:05 +01:00
|
|
|
p.num_blocks = 1;
|
|
|
|
p.blocks.reset(new char*[blocks_in_piece]);
|
|
|
|
std::memset(&p.blocks[0], 0, blocks_in_piece * sizeof(char*));
|
2008-02-22 05:11:04 +01:00
|
|
|
int block = j.offset / m_block_size;
|
|
|
|
// std::cerr << " adding cache entry for p: " << j.piece << " block: " << block << " cached_blocks: " << m_cache_stats.cache_size << std::endl;
|
2008-02-08 11:22:05 +01:00
|
|
|
p.blocks[block] = j.buffer;
|
2008-02-22 05:11:04 +01:00
|
|
|
++m_cache_stats.cache_size;
|
2008-02-08 11:22:05 +01:00
|
|
|
m_pieces.push_back(p);
|
|
|
|
}
|
|
|
|
|
2008-02-22 05:11:04 +01:00
|
|
|
// fills a piece with data from disk, returns the total number of bytes
|
|
|
|
// read or -1 if there was an error
|
|
|
|
int disk_io_thread::read_into_piece(cached_piece_entry& p, int start_block, mutex_t::scoped_lock& l)
|
|
|
|
{
|
|
|
|
int piece_size = p.storage->info()->piece_size(p.piece);
|
|
|
|
int blocks_in_piece = (piece_size + m_block_size - 1) / m_block_size;
|
|
|
|
|
|
|
|
int end_block = start_block;
|
|
|
|
for (int i = start_block; i < blocks_in_piece
|
|
|
|
&& m_cache_stats.cache_size < m_cache_size; ++i)
|
|
|
|
{
|
|
|
|
// this is a block that is already allocated
|
|
|
|
// stop allocating and don't read more than
|
|
|
|
// what we've allocated now
|
|
|
|
if (p.blocks[i]) break;
|
2008-06-12 06:40:37 +02:00
|
|
|
p.blocks[i] = allocate_buffer();
|
2008-02-22 05:11:04 +01:00
|
|
|
|
|
|
|
// the allocation failed, break
|
|
|
|
if (p.blocks[i] == 0) break;
|
|
|
|
++p.num_blocks;
|
|
|
|
++m_cache_stats.cache_size;
|
|
|
|
++m_cache_stats.read_cache_size;
|
|
|
|
++end_block;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (end_block == start_block) return -2;
|
|
|
|
|
|
|
|
int buffer_size = piece_size - (end_block - 1) * m_block_size + (end_block - start_block - 1) * m_block_size;
|
|
|
|
TORRENT_ASSERT(buffer_size <= piece_size);
|
|
|
|
TORRENT_ASSERT(buffer_size + start_block * m_block_size <= piece_size);
|
|
|
|
boost::scoped_array<char> buf;
|
|
|
|
if (m_coalesce_reads) buf.reset(new (std::nothrow) char[buffer_size]);
|
|
|
|
int ret = 0;
|
|
|
|
if (buf)
|
|
|
|
{
|
|
|
|
l.unlock();
|
|
|
|
ret += p.storage->read_impl(buf.get(), p.piece, start_block * m_block_size, buffer_size);
|
|
|
|
l.lock();
|
2008-07-18 01:41:46 +02:00
|
|
|
if (p.storage->error()) { return -1; }
|
2008-02-22 05:11:04 +01:00
|
|
|
++m_cache_stats.reads;
|
|
|
|
}
|
|
|
|
|
|
|
|
int piece_offset = start_block * m_block_size;
|
|
|
|
int offset = 0;
|
|
|
|
for (int i = start_block; i < end_block; ++i)
|
|
|
|
{
|
|
|
|
int block_size = (std::min)(piece_size - piece_offset, m_block_size);
|
|
|
|
if (p.blocks[i] == 0) break;
|
|
|
|
TORRENT_ASSERT(offset <= buffer_size);
|
|
|
|
TORRENT_ASSERT(piece_offset <= piece_size);
|
|
|
|
if (buf)
|
|
|
|
{
|
|
|
|
std::memcpy(p.blocks[i], buf.get() + offset, block_size);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
l.unlock();
|
|
|
|
ret += p.storage->read_impl(p.blocks[i], p.piece, piece_offset, block_size);
|
2008-07-18 01:41:46 +02:00
|
|
|
if (!p.storage->error()) { return -1; }
|
2008-02-22 05:11:04 +01:00
|
|
|
l.lock();
|
|
|
|
++m_cache_stats.reads;
|
|
|
|
}
|
|
|
|
offset += m_block_size;
|
|
|
|
piece_offset += m_block_size;
|
|
|
|
}
|
|
|
|
TORRENT_ASSERT(ret <= buffer_size);
|
|
|
|
return (ret != buffer_size) ? -1 : ret;
|
|
|
|
}
|
|
|
|
|
2008-02-25 00:14:10 +01:00
|
|
|
bool disk_io_thread::make_room(int num_blocks
|
|
|
|
, cache_t::iterator ignore
|
|
|
|
, mutex_t::scoped_lock& l)
|
2008-02-22 05:11:04 +01:00
|
|
|
{
|
|
|
|
if (m_cache_size - m_cache_stats.cache_size < num_blocks)
|
|
|
|
{
|
|
|
|
// there's not enough room in the cache, clear a piece
|
|
|
|
// from the read cache
|
2008-02-25 00:14:10 +01:00
|
|
|
if (!clear_oldest_read_piece(ignore, l)) return false;
|
2008-02-22 05:11:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return m_cache_size - m_cache_stats.cache_size >= num_blocks;
|
|
|
|
}
|
|
|
|
|
|
|
|
// returns -1 on read error, -2 if there isn't any space in the cache
|
|
|
|
// or the number of bytes read
|
|
|
|
int disk_io_thread::cache_read_block(disk_io_job const& j, mutex_t::scoped_lock& l)
|
|
|
|
{
|
|
|
|
INVARIANT_CHECK;
|
|
|
|
|
|
|
|
int piece_size = j.storage->info()->piece_size(j.piece);
|
|
|
|
int blocks_in_piece = (piece_size + m_block_size - 1) / m_block_size;
|
|
|
|
|
|
|
|
int start_block = j.offset / m_block_size;
|
|
|
|
|
2008-02-25 00:14:10 +01:00
|
|
|
if (!make_room(blocks_in_piece - start_block
|
|
|
|
, m_read_pieces.end(), l)) return -2;
|
2008-02-22 05:11:04 +01:00
|
|
|
|
|
|
|
cached_piece_entry p;
|
|
|
|
p.piece = j.piece;
|
|
|
|
p.storage = j.storage;
|
|
|
|
p.last_use = time_now();
|
|
|
|
p.num_blocks = 0;
|
|
|
|
p.blocks.reset(new char*[blocks_in_piece]);
|
|
|
|
std::memset(&p.blocks[0], 0, blocks_in_piece * sizeof(char*));
|
|
|
|
int ret = read_into_piece(p, start_block, l);
|
|
|
|
|
|
|
|
if (ret == -1)
|
|
|
|
free_piece(p, l);
|
|
|
|
else
|
|
|
|
m_read_pieces.push_back(p);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef NDEBUG
|
|
|
|
void disk_io_thread::check_invariant() const
|
|
|
|
{
|
|
|
|
int cached_write_blocks = 0;
|
2008-02-25 00:14:10 +01:00
|
|
|
for (cache_t::const_iterator i = m_pieces.begin()
|
2008-02-22 05:11:04 +01:00
|
|
|
, end(m_pieces.end()); i != end; ++i)
|
|
|
|
{
|
|
|
|
cached_piece_entry const& p = *i;
|
|
|
|
TORRENT_ASSERT(p.blocks);
|
|
|
|
|
2008-06-09 06:46:34 +02:00
|
|
|
if (!p.storage) continue;
|
2008-02-22 05:11:04 +01:00
|
|
|
int piece_size = p.storage->info()->piece_size(p.piece);
|
|
|
|
int blocks_in_piece = (piece_size + m_block_size - 1) / m_block_size;
|
|
|
|
int blocks = 0;
|
|
|
|
for (int k = 0; k < blocks_in_piece; ++k)
|
|
|
|
{
|
|
|
|
if (p.blocks[k])
|
|
|
|
{
|
2008-04-09 07:19:11 +02:00
|
|
|
#ifndef TORRENT_DISABLE_POOL_ALLOCATOR
|
2008-06-12 06:40:37 +02:00
|
|
|
TORRENT_ASSERT(is_disk_buffer(p.blocks[k]));
|
2008-04-09 07:19:11 +02:00
|
|
|
#endif
|
2008-02-22 05:11:04 +01:00
|
|
|
++blocks;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// TORRENT_ASSERT(blocks == p.num_blocks);
|
|
|
|
cached_write_blocks += blocks;
|
|
|
|
}
|
|
|
|
|
|
|
|
int cached_read_blocks = 0;
|
2008-02-25 00:14:10 +01:00
|
|
|
for (cache_t::const_iterator i = m_read_pieces.begin()
|
2008-02-22 05:11:04 +01:00
|
|
|
, end(m_read_pieces.end()); i != end; ++i)
|
|
|
|
{
|
|
|
|
cached_piece_entry const& p = *i;
|
|
|
|
TORRENT_ASSERT(p.blocks);
|
|
|
|
|
|
|
|
int piece_size = p.storage->info()->piece_size(p.piece);
|
|
|
|
int blocks_in_piece = (piece_size + m_block_size - 1) / m_block_size;
|
|
|
|
int blocks = 0;
|
|
|
|
for (int k = 0; k < blocks_in_piece; ++k)
|
|
|
|
{
|
|
|
|
if (p.blocks[k])
|
|
|
|
{
|
2008-04-09 07:19:11 +02:00
|
|
|
#ifndef TORRENT_DISABLE_POOL_ALLOCATOR
|
2008-06-12 06:40:37 +02:00
|
|
|
TORRENT_ASSERT(is_disk_buffer(p.blocks[k]));
|
2008-04-09 07:19:11 +02:00
|
|
|
#endif
|
2008-02-22 05:11:04 +01:00
|
|
|
++blocks;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// TORRENT_ASSERT(blocks == p.num_blocks);
|
|
|
|
cached_read_blocks += blocks;
|
|
|
|
}
|
|
|
|
|
|
|
|
TORRENT_ASSERT(cached_read_blocks + cached_write_blocks == m_cache_stats.cache_size);
|
|
|
|
TORRENT_ASSERT(cached_read_blocks == m_cache_stats.read_cache_size);
|
|
|
|
|
|
|
|
// when writing, there may be a one block difference, right before an old piece
|
|
|
|
// is flushed
|
|
|
|
TORRENT_ASSERT(m_cache_stats.cache_size <= m_cache_size + 1);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2008-06-12 06:40:37 +02:00
|
|
|
int disk_io_thread::try_read_from_cache(disk_io_job const& j)
|
2008-02-22 05:11:04 +01:00
|
|
|
{
|
|
|
|
TORRENT_ASSERT(j.buffer);
|
|
|
|
|
2008-06-12 06:40:37 +02:00
|
|
|
mutex_t::scoped_lock l(m_piece_mutex);
|
2008-02-22 05:11:04 +01:00
|
|
|
if (!m_use_read_cache) return -2;
|
|
|
|
|
2008-02-25 00:14:10 +01:00
|
|
|
cache_t::iterator p
|
2008-02-22 05:11:04 +01:00
|
|
|
= find_cached_piece(m_read_pieces, j, l);
|
|
|
|
|
|
|
|
bool hit = true;
|
|
|
|
int ret = 0;
|
|
|
|
|
|
|
|
// if the piece cannot be found in the cache,
|
|
|
|
// read the whole piece starting at the block
|
|
|
|
// we got a request for.
|
|
|
|
if (p == m_read_pieces.end())
|
|
|
|
{
|
|
|
|
ret = cache_read_block(j, l);
|
|
|
|
hit = false;
|
|
|
|
if (ret < 0) return ret;
|
2008-02-25 00:14:10 +01:00
|
|
|
p = m_read_pieces.end();
|
|
|
|
--p;
|
|
|
|
TORRENT_ASSERT(!m_read_pieces.empty());
|
2008-02-22 05:11:04 +01:00
|
|
|
TORRENT_ASSERT(p->piece == j.piece);
|
|
|
|
TORRENT_ASSERT(p->storage == j.storage);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (p != m_read_pieces.end())
|
|
|
|
{
|
|
|
|
// copy from the cache and update the last use timestamp
|
|
|
|
int block = j.offset / m_block_size;
|
|
|
|
int block_offset = j.offset % m_block_size;
|
|
|
|
int buffer_offset = 0;
|
|
|
|
int size = j.buffer_size;
|
|
|
|
if (p->blocks[block] == 0)
|
|
|
|
{
|
|
|
|
int piece_size = j.storage->info()->piece_size(j.piece);
|
|
|
|
int blocks_in_piece = (piece_size + m_block_size - 1) / m_block_size;
|
|
|
|
int end_block = block;
|
|
|
|
while (end_block < blocks_in_piece && p->blocks[end_block] == 0) ++end_block;
|
2008-02-25 00:14:10 +01:00
|
|
|
if (!make_room(end_block - block, p, l)) return -2;
|
2008-02-22 05:11:04 +01:00
|
|
|
ret = read_into_piece(*p, block, l);
|
|
|
|
hit = false;
|
2008-02-22 09:22:57 +01:00
|
|
|
if (ret < 0) return ret;
|
|
|
|
TORRENT_ASSERT(p->blocks[block]);
|
2008-02-22 05:11:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
p->last_use = time_now();
|
|
|
|
while (size > 0)
|
|
|
|
{
|
|
|
|
TORRENT_ASSERT(p->blocks[block]);
|
|
|
|
int to_copy = (std::min)(m_block_size
|
|
|
|
- block_offset, size);
|
|
|
|
std::memcpy(j.buffer + buffer_offset
|
|
|
|
, p->blocks[block] + block_offset
|
|
|
|
, to_copy);
|
|
|
|
size -= to_copy;
|
|
|
|
block_offset = 0;
|
|
|
|
buffer_offset += to_copy;
|
2008-08-07 14:30:36 +02:00
|
|
|
++block;
|
2008-02-22 05:11:04 +01:00
|
|
|
}
|
|
|
|
ret = j.buffer_size;
|
|
|
|
++m_cache_stats.blocks_read;
|
|
|
|
if (hit) ++m_cache_stats.blocks_read_hit;
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2007-06-10 22:46:09 +02:00
|
|
|
void disk_io_thread::add_job(disk_io_job const& j
|
|
|
|
, boost::function<void(int, disk_io_job const&)> const& f)
|
|
|
|
{
|
2007-10-05 02:30:00 +02:00
|
|
|
TORRENT_ASSERT(!j.callback);
|
2007-10-13 05:33:33 +02:00
|
|
|
TORRENT_ASSERT(j.storage);
|
2008-02-22 05:11:04 +01:00
|
|
|
TORRENT_ASSERT(j.buffer_size <= m_block_size);
|
2008-06-12 06:40:37 +02:00
|
|
|
mutex_t::scoped_lock l(m_queue_mutex);
|
2008-02-08 11:22:05 +01:00
|
|
|
|
2008-02-26 21:08:33 +01:00
|
|
|
std::list<disk_io_job>::reverse_iterator i = m_jobs.rbegin();
|
2007-06-10 22:46:09 +02:00
|
|
|
if (j.action == disk_io_job::read)
|
|
|
|
{
|
|
|
|
// when we're reading, we may not skip
|
|
|
|
// ahead of any write operation that overlaps
|
|
|
|
// the region we're reading
|
2007-10-04 00:30:40 +02:00
|
|
|
for (; i != m_jobs.rend(); i++)
|
2007-06-10 22:46:09 +02:00
|
|
|
{
|
2007-10-04 00:30:40 +02:00
|
|
|
// if *i should come before j, stop
|
|
|
|
// and insert j before i
|
|
|
|
if (*i < j) break;
|
|
|
|
// if we come across a write operation that
|
|
|
|
// overlaps the region we're reading, we need
|
|
|
|
// to stop
|
2007-06-10 22:46:09 +02:00
|
|
|
if (i->action == disk_io_job::write
|
|
|
|
&& i->storage == j.storage
|
|
|
|
&& i->piece == j.piece
|
|
|
|
&& range_overlap(i->offset, i->buffer_size
|
|
|
|
, j.offset, j.buffer_size))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (j.action == disk_io_job::write)
|
|
|
|
{
|
|
|
|
for (; i != m_jobs.rend(); ++i)
|
|
|
|
{
|
2007-10-04 00:30:40 +02:00
|
|
|
if (*i < j)
|
2007-06-10 22:46:09 +02:00
|
|
|
{
|
|
|
|
if (i != m_jobs.rbegin()
|
|
|
|
&& i.base()->storage.get() != j.storage.get())
|
|
|
|
i = m_jobs.rbegin();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-10-04 00:30:40 +02:00
|
|
|
// if we are placed in front of all other jobs, put it on the back of
|
|
|
|
// the queue, to sweep the disk in the same direction, and to avoid
|
|
|
|
// starvation. The exception is if the priority is higher than the
|
|
|
|
// job at the front of the queue
|
|
|
|
if (i == m_jobs.rend() && (m_jobs.empty() || j.priority <= m_jobs.back().priority))
|
|
|
|
i = m_jobs.rbegin();
|
2007-06-10 22:46:09 +02:00
|
|
|
|
2008-02-26 21:08:33 +01:00
|
|
|
std::list<disk_io_job>::iterator k = m_jobs.insert(i.base(), j);
|
2007-06-10 22:46:09 +02:00
|
|
|
k->callback.swap(const_cast<boost::function<void(int, disk_io_job const&)>&>(f));
|
|
|
|
if (j.action == disk_io_job::write)
|
|
|
|
m_queue_buffer_size += j.buffer_size;
|
2007-10-05 02:30:00 +02:00
|
|
|
TORRENT_ASSERT(j.storage.get());
|
2007-06-10 22:46:09 +02:00
|
|
|
m_signal.notify_all();
|
|
|
|
}
|
|
|
|
|
2008-04-10 12:03:23 +02:00
|
|
|
#ifndef NDEBUG
|
|
|
|
bool disk_io_thread::is_disk_buffer(char* buffer) const
|
|
|
|
{
|
|
|
|
#ifdef TORRENT_DISABLE_POOL_ALLOCATOR
|
|
|
|
return true;
|
|
|
|
#else
|
2008-06-12 06:40:37 +02:00
|
|
|
mutex_t::scoped_lock l(m_pool_mutex);
|
2008-04-10 12:03:23 +02:00
|
|
|
return m_pool.is_from(buffer);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2007-06-10 22:46:09 +02:00
|
|
|
char* disk_io_thread::allocate_buffer()
|
|
|
|
{
|
2008-06-12 06:40:37 +02:00
|
|
|
mutex_t::scoped_lock l(m_pool_mutex);
|
2007-09-29 18:14:03 +02:00
|
|
|
#ifdef TORRENT_STATS
|
|
|
|
++m_allocations;
|
|
|
|
#endif
|
2008-04-09 07:19:11 +02:00
|
|
|
#ifdef TORRENT_DISABLE_POOL_ALLOCATOR
|
|
|
|
return (char*)malloc(m_block_size);
|
|
|
|
#else
|
2007-06-10 22:46:09 +02:00
|
|
|
return (char*)m_pool.ordered_malloc();
|
2008-04-09 07:19:11 +02:00
|
|
|
#endif
|
2007-06-10 22:46:09 +02:00
|
|
|
}
|
|
|
|
|
2008-06-12 06:40:37 +02:00
|
|
|
void disk_io_thread::free_buffer(char* buf)
|
2007-09-29 18:14:03 +02:00
|
|
|
{
|
2008-11-08 08:40:55 +01:00
|
|
|
TORRENT_ASSERT(buf);
|
2008-06-12 06:40:37 +02:00
|
|
|
mutex_t::scoped_lock l(m_pool_mutex);
|
2007-09-29 18:14:03 +02:00
|
|
|
#ifdef TORRENT_STATS
|
|
|
|
--m_allocations;
|
|
|
|
#endif
|
2008-04-09 07:19:11 +02:00
|
|
|
#ifdef TORRENT_DISABLE_POOL_ALLOCATOR
|
|
|
|
free(buf);
|
|
|
|
#else
|
2007-09-29 18:14:03 +02:00
|
|
|
m_pool.ordered_free(buf);
|
2008-04-09 07:19:11 +02:00
|
|
|
#endif
|
2007-09-29 18:14:03 +02:00
|
|
|
}
|
|
|
|
|
2008-07-18 01:41:46 +02:00
|
|
|
bool disk_io_thread::test_error(disk_io_job& j)
|
|
|
|
{
|
|
|
|
error_code const& ec = j.storage->error();
|
|
|
|
if (ec)
|
|
|
|
{
|
|
|
|
j.str = ec.message();
|
|
|
|
j.error = ec;
|
|
|
|
j.error_file = j.storage->error_file();
|
|
|
|
j.storage->clear_error();
|
|
|
|
#ifndef NDEBUG
|
|
|
|
std::cout << "ERROR: '" << j.str << "' " << j.error_file << std::endl;
|
|
|
|
#endif
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2007-06-10 22:46:09 +02:00
|
|
|
void disk_io_thread::operator()()
|
|
|
|
{
|
|
|
|
for (;;)
|
|
|
|
{
|
2007-09-17 10:15:54 +02:00
|
|
|
#ifdef TORRENT_DISK_STATS
|
|
|
|
m_log << log_time() << " idle" << std::endl;
|
|
|
|
#endif
|
2008-06-12 06:40:37 +02:00
|
|
|
mutex_t::scoped_lock jl(m_queue_mutex);
|
2008-03-08 07:06:31 +01:00
|
|
|
|
2007-06-10 22:46:09 +02:00
|
|
|
while (m_jobs.empty() && !m_abort)
|
2008-06-12 06:40:37 +02:00
|
|
|
m_signal.wait(jl);
|
2008-06-09 06:46:34 +02:00
|
|
|
if (m_abort && m_jobs.empty())
|
|
|
|
{
|
2008-06-12 06:40:37 +02:00
|
|
|
jl.unlock();
|
|
|
|
|
|
|
|
mutex_t::scoped_lock l(m_piece_mutex);
|
2008-06-09 06:46:34 +02:00
|
|
|
// flush all disk caches
|
|
|
|
for (cache_t::iterator i = m_pieces.begin()
|
|
|
|
, end(m_pieces.end()); i != end; ++i)
|
|
|
|
flush(i, l);
|
|
|
|
for (cache_t::iterator i = m_read_pieces.begin()
|
|
|
|
, end(m_read_pieces.end()); i != end; ++i)
|
|
|
|
free_piece(*i, l);
|
|
|
|
m_pieces.clear();
|
|
|
|
m_read_pieces.clear();
|
|
|
|
return;
|
|
|
|
}
|
2007-06-10 22:46:09 +02:00
|
|
|
|
2008-04-13 00:08:07 +02:00
|
|
|
// if there's a buffer in this job, it will be freed
|
|
|
|
// when this holder is destructed, unless it has been
|
|
|
|
// released.
|
|
|
|
disk_buffer_holder holder(*this
|
|
|
|
, m_jobs.front().action != disk_io_job::check_fastresume
|
|
|
|
? m_jobs.front().buffer : 0);
|
|
|
|
|
2007-06-10 22:46:09 +02:00
|
|
|
boost::function<void(int, disk_io_job const&)> handler;
|
|
|
|
handler.swap(m_jobs.front().callback);
|
2008-03-08 07:06:31 +01:00
|
|
|
|
2007-06-10 22:46:09 +02:00
|
|
|
disk_io_job j = m_jobs.front();
|
|
|
|
m_jobs.pop_front();
|
|
|
|
m_queue_buffer_size -= j.buffer_size;
|
2008-06-12 06:40:37 +02:00
|
|
|
jl.unlock();
|
2008-02-10 01:58:25 +01:00
|
|
|
|
2008-06-12 06:40:37 +02:00
|
|
|
flush_expired_pieces();
|
2007-06-10 22:46:09 +02:00
|
|
|
|
|
|
|
int ret = 0;
|
|
|
|
|
2008-06-12 06:40:37 +02:00
|
|
|
TORRENT_ASSERT(j.storage || j.action == disk_io_job::abort_thread);
|
2007-09-17 10:15:54 +02:00
|
|
|
#ifdef TORRENT_DISK_STATS
|
2008-02-14 04:48:20 +01:00
|
|
|
ptime start = time_now();
|
|
|
|
#endif
|
|
|
|
#ifndef BOOST_NO_EXCEPTIONS
|
|
|
|
try {
|
2007-09-17 10:15:54 +02:00
|
|
|
#endif
|
2008-04-13 23:26:57 +02:00
|
|
|
|
|
|
|
switch (j.action)
|
2008-02-14 04:48:20 +01:00
|
|
|
{
|
2008-06-12 06:40:37 +02:00
|
|
|
case disk_io_job::abort_thread:
|
|
|
|
{
|
|
|
|
mutex_t::scoped_lock jl(m_queue_mutex);
|
|
|
|
m_abort = true;
|
|
|
|
|
|
|
|
for (std::list<disk_io_job>::iterator i = m_jobs.begin();
|
|
|
|
i != m_jobs.end();)
|
|
|
|
{
|
|
|
|
if (i->action == disk_io_job::read)
|
|
|
|
{
|
|
|
|
if (i->callback) m_ios.post(bind(i->callback, -1, *i));
|
|
|
|
m_jobs.erase(i++);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (i->action == disk_io_job::check_files)
|
|
|
|
{
|
|
|
|
if (i->callback) m_ios.post(bind(i->callback
|
|
|
|
, piece_manager::disk_check_aborted, *i));
|
|
|
|
m_jobs.erase(i++);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2008-04-13 23:26:57 +02:00
|
|
|
case disk_io_job::read:
|
2007-06-10 22:46:09 +02:00
|
|
|
{
|
2008-07-18 01:41:46 +02:00
|
|
|
if (test_error(j))
|
2008-02-14 04:48:20 +01:00
|
|
|
{
|
2008-04-13 23:26:57 +02:00
|
|
|
ret = -1;
|
2008-07-18 01:41:46 +02:00
|
|
|
return;
|
2008-04-13 23:26:57 +02:00
|
|
|
}
|
2007-09-17 10:15:54 +02:00
|
|
|
#ifdef TORRENT_DISK_STATS
|
2008-04-13 23:26:57 +02:00
|
|
|
m_log << log_time() << " read " << j.buffer_size << std::endl;
|
2007-09-17 10:15:54 +02:00
|
|
|
#endif
|
2008-04-13 23:26:57 +02:00
|
|
|
INVARIANT_CHECK;
|
|
|
|
TORRENT_ASSERT(j.buffer == 0);
|
|
|
|
j.buffer = allocate_buffer();
|
|
|
|
TORRENT_ASSERT(j.buffer_size <= m_block_size);
|
|
|
|
if (j.buffer == 0)
|
|
|
|
{
|
|
|
|
ret = -1;
|
2008-07-18 01:41:46 +02:00
|
|
|
j.error = error_code(ENOMEM, get_posix_category());
|
|
|
|
j.str = j.error.message();
|
2008-04-13 23:26:57 +02:00
|
|
|
break;
|
|
|
|
}
|
2008-02-22 05:11:04 +01:00
|
|
|
|
2008-04-13 23:26:57 +02:00
|
|
|
disk_buffer_holder read_holder(*this, j.buffer);
|
2008-06-12 06:40:37 +02:00
|
|
|
ret = try_read_from_cache(j);
|
2008-04-13 23:26:57 +02:00
|
|
|
|
|
|
|
// -2 means there's no space in the read cache
|
|
|
|
// or that the read cache is disabled
|
|
|
|
if (ret == -1)
|
|
|
|
{
|
|
|
|
j.buffer = 0;
|
2008-07-18 01:41:46 +02:00
|
|
|
test_error(j);
|
2008-04-13 23:26:57 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
else if (ret == -2)
|
|
|
|
{
|
|
|
|
ret = j.storage->read_impl(j.buffer, j.piece, j.offset
|
|
|
|
, j.buffer_size);
|
|
|
|
if (ret < 0)
|
2008-02-14 04:48:20 +01:00
|
|
|
{
|
2008-07-18 01:41:46 +02:00
|
|
|
test_error(j);
|
2008-02-22 05:11:04 +01:00
|
|
|
break;
|
|
|
|
}
|
2008-04-13 23:26:57 +02:00
|
|
|
++m_cache_stats.blocks_read;
|
2008-02-14 04:48:20 +01:00
|
|
|
}
|
2008-04-13 23:26:57 +02:00
|
|
|
read_holder.release();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case disk_io_job::write:
|
|
|
|
{
|
2008-07-18 01:41:46 +02:00
|
|
|
if (test_error(j))
|
2008-02-08 11:22:05 +01:00
|
|
|
{
|
2008-04-13 23:26:57 +02:00
|
|
|
ret = -1;
|
|
|
|
break;
|
|
|
|
}
|
2007-09-17 10:15:54 +02:00
|
|
|
#ifdef TORRENT_DISK_STATS
|
2008-04-13 23:26:57 +02:00
|
|
|
m_log << log_time() << " write " << j.buffer_size << std::endl;
|
2007-09-17 10:15:54 +02:00
|
|
|
#endif
|
2008-06-12 06:40:37 +02:00
|
|
|
mutex_t::scoped_lock l(m_piece_mutex);
|
2008-04-13 23:26:57 +02:00
|
|
|
INVARIANT_CHECK;
|
|
|
|
cache_t::iterator p
|
|
|
|
= find_cached_piece(m_pieces, j, l);
|
|
|
|
int block = j.offset / m_block_size;
|
|
|
|
TORRENT_ASSERT(j.buffer);
|
|
|
|
TORRENT_ASSERT(j.buffer_size <= m_block_size);
|
|
|
|
if (p != m_pieces.end())
|
|
|
|
{
|
|
|
|
TORRENT_ASSERT(p->blocks[block] == 0);
|
|
|
|
if (p->blocks[block])
|
2008-02-08 11:22:05 +01:00
|
|
|
{
|
2008-04-13 23:26:57 +02:00
|
|
|
free_buffer(p->blocks[block]);
|
|
|
|
--p->num_blocks;
|
2008-02-08 11:22:05 +01:00
|
|
|
}
|
2008-04-13 23:26:57 +02:00
|
|
|
p->blocks[block] = j.buffer;
|
|
|
|
++m_cache_stats.cache_size;
|
|
|
|
++p->num_blocks;
|
|
|
|
p->last_use = time_now();
|
2008-02-08 11:22:05 +01:00
|
|
|
}
|
2008-04-13 23:26:57 +02:00
|
|
|
else
|
2008-02-08 11:22:05 +01:00
|
|
|
{
|
2008-04-13 23:26:57 +02:00
|
|
|
cache_block(j, l);
|
|
|
|
}
|
|
|
|
// we've now inserted the buffer
|
|
|
|
// in the cache, we should not
|
|
|
|
// free it at the end
|
|
|
|
holder.release();
|
|
|
|
if (m_cache_stats.cache_size >= m_cache_size)
|
|
|
|
flush_oldest_piece(l);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case disk_io_job::hash:
|
|
|
|
{
|
2007-09-17 10:15:54 +02:00
|
|
|
#ifdef TORRENT_DISK_STATS
|
2008-04-13 23:26:57 +02:00
|
|
|
m_log << log_time() << " hash" << std::endl;
|
2007-09-17 10:15:54 +02:00
|
|
|
#endif
|
2008-06-12 06:40:37 +02:00
|
|
|
mutex_t::scoped_lock l(m_piece_mutex);
|
2008-04-13 23:26:57 +02:00
|
|
|
INVARIANT_CHECK;
|
2008-03-10 09:19:31 +01:00
|
|
|
|
2008-04-13 23:26:57 +02:00
|
|
|
cache_t::iterator i
|
|
|
|
= find_cached_piece(m_pieces, j, l);
|
|
|
|
if (i != m_pieces.end())
|
|
|
|
{
|
|
|
|
flush_and_remove(i, l);
|
2008-07-18 01:41:46 +02:00
|
|
|
if (test_error(j))
|
2008-02-14 04:48:20 +01:00
|
|
|
{
|
|
|
|
ret = -1;
|
2008-04-13 00:08:07 +02:00
|
|
|
j.storage->mark_failed(j.piece);
|
2008-02-14 04:48:20 +01:00
|
|
|
break;
|
|
|
|
}
|
2008-02-08 11:22:05 +01:00
|
|
|
}
|
2008-04-13 23:26:57 +02:00
|
|
|
l.unlock();
|
|
|
|
sha1_hash h = j.storage->hash_for_piece_impl(j.piece);
|
2008-07-18 01:41:46 +02:00
|
|
|
if (test_error(j))
|
2008-02-14 04:48:20 +01:00
|
|
|
{
|
2008-04-13 23:26:57 +02:00
|
|
|
ret = -1;
|
|
|
|
j.storage->mark_failed(j.piece);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
ret = (j.storage->info()->hash_for_piece(j.piece) == h)?0:-2;
|
|
|
|
if (ret == -2) j.storage->mark_failed(j.piece);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case disk_io_job::move_storage:
|
|
|
|
{
|
2007-09-17 10:15:54 +02:00
|
|
|
#ifdef TORRENT_DISK_STATS
|
2008-04-13 23:26:57 +02:00
|
|
|
m_log << log_time() << " move" << std::endl;
|
2007-09-17 10:15:54 +02:00
|
|
|
#endif
|
2008-04-13 23:26:57 +02:00
|
|
|
TORRENT_ASSERT(j.buffer == 0);
|
|
|
|
ret = j.storage->move_storage_impl(j.str) ? 1 : 0;
|
|
|
|
if (ret != 0)
|
|
|
|
{
|
2008-07-18 01:41:46 +02:00
|
|
|
test_error(j);
|
2007-06-10 22:46:09 +02:00
|
|
|
break;
|
2008-02-14 04:48:20 +01:00
|
|
|
}
|
2008-04-13 23:26:57 +02:00
|
|
|
j.str = j.storage->save_path().string();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case disk_io_job::release_files:
|
|
|
|
{
|
2007-09-17 10:15:54 +02:00
|
|
|
#ifdef TORRENT_DISK_STATS
|
2008-04-13 23:26:57 +02:00
|
|
|
m_log << log_time() << " release" << std::endl;
|
2007-09-17 10:15:54 +02:00
|
|
|
#endif
|
2008-04-13 23:26:57 +02:00
|
|
|
TORRENT_ASSERT(j.buffer == 0);
|
2008-02-08 11:22:05 +01:00
|
|
|
|
2008-06-12 06:40:37 +02:00
|
|
|
mutex_t::scoped_lock l(m_piece_mutex);
|
2008-04-13 23:26:57 +02:00
|
|
|
INVARIANT_CHECK;
|
2008-03-10 09:19:31 +01:00
|
|
|
|
2008-04-13 23:26:57 +02:00
|
|
|
for (cache_t::iterator i = m_pieces.begin(); i != m_pieces.end();)
|
|
|
|
{
|
|
|
|
if (i->storage == j.storage)
|
2008-03-16 11:51:25 +01:00
|
|
|
{
|
2008-04-13 23:26:57 +02:00
|
|
|
flush(i, l);
|
|
|
|
i = m_pieces.erase(i);
|
2008-03-16 11:51:25 +01:00
|
|
|
}
|
2008-04-13 23:26:57 +02:00
|
|
|
else
|
2008-02-14 04:48:20 +01:00
|
|
|
{
|
2008-04-13 23:26:57 +02:00
|
|
|
++i;
|
2008-02-14 04:48:20 +01:00
|
|
|
}
|
2008-02-08 11:22:05 +01:00
|
|
|
}
|
2008-06-12 06:40:37 +02:00
|
|
|
l.unlock();
|
2008-04-13 23:26:57 +02:00
|
|
|
#ifndef TORRENT_DISABLE_POOL_ALLOCATOR
|
2008-06-12 06:40:37 +02:00
|
|
|
{
|
|
|
|
mutex_t::scoped_lock l(m_pool_mutex);
|
|
|
|
m_pool.release_memory();
|
|
|
|
}
|
2008-04-13 23:26:57 +02:00
|
|
|
#endif
|
|
|
|
ret = j.storage->release_files_impl();
|
2008-07-18 01:41:46 +02:00
|
|
|
if (ret != 0) test_error(j);
|
2008-04-13 23:26:57 +02:00
|
|
|
break;
|
|
|
|
}
|
2008-07-18 17:31:22 +02:00
|
|
|
case disk_io_job::clear_read_cache:
|
|
|
|
{
|
|
|
|
#ifdef TORRENT_DISK_STATS
|
|
|
|
m_log << log_time() << " clear-cache" << std::endl;
|
|
|
|
#endif
|
|
|
|
TORRENT_ASSERT(j.buffer == 0);
|
|
|
|
|
|
|
|
mutex_t::scoped_lock l(m_piece_mutex);
|
|
|
|
INVARIANT_CHECK;
|
|
|
|
|
|
|
|
for (cache_t::iterator i = m_read_pieces.begin();
|
|
|
|
i != m_read_pieces.end();)
|
|
|
|
{
|
|
|
|
if (i->storage == j.storage)
|
|
|
|
{
|
|
|
|
free_piece(*i, l);
|
|
|
|
i = m_read_pieces.erase(i);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
l.unlock();
|
|
|
|
#ifndef TORRENT_DISABLE_POOL_ALLOCATOR
|
|
|
|
{
|
|
|
|
mutex_t::scoped_lock l(m_pool_mutex);
|
|
|
|
m_pool.release_memory();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
ret = 0;
|
|
|
|
break;
|
|
|
|
}
|
2008-04-13 23:26:57 +02:00
|
|
|
case disk_io_job::delete_files:
|
|
|
|
{
|
2007-10-13 05:33:33 +02:00
|
|
|
#ifdef TORRENT_DISK_STATS
|
2008-04-13 23:26:57 +02:00
|
|
|
m_log << log_time() << " delete" << std::endl;
|
2007-10-13 05:33:33 +02:00
|
|
|
#endif
|
2008-04-13 23:26:57 +02:00
|
|
|
TORRENT_ASSERT(j.buffer == 0);
|
2008-02-08 11:22:05 +01:00
|
|
|
|
2008-06-12 06:40:37 +02:00
|
|
|
mutex_t::scoped_lock l(m_piece_mutex);
|
2008-04-13 23:26:57 +02:00
|
|
|
INVARIANT_CHECK;
|
2008-03-10 09:19:31 +01:00
|
|
|
|
2008-04-13 23:26:57 +02:00
|
|
|
cache_t::iterator i = std::remove_if(
|
|
|
|
m_pieces.begin(), m_pieces.end(), bind(&cached_piece_entry::storage, _1) == j.storage);
|
2008-02-08 11:22:05 +01:00
|
|
|
|
2008-04-13 23:26:57 +02:00
|
|
|
for (cache_t::iterator k = i; k != m_pieces.end(); ++k)
|
|
|
|
{
|
|
|
|
torrent_info const& ti = *k->storage->info();
|
|
|
|
int blocks_in_piece = (ti.piece_size(k->piece) + m_block_size - 1) / m_block_size;
|
|
|
|
for (int j = 0; j < blocks_in_piece; ++j)
|
2008-02-08 11:22:05 +01:00
|
|
|
{
|
2008-04-13 23:26:57 +02:00
|
|
|
if (k->blocks[j] == 0) continue;
|
2008-06-12 06:40:37 +02:00
|
|
|
free_buffer(k->blocks[j]);
|
2008-04-13 23:26:57 +02:00
|
|
|
k->blocks[j] = 0;
|
2008-09-17 04:29:05 +02:00
|
|
|
--m_cache_stats.cache_size;
|
2008-02-08 11:22:05 +01:00
|
|
|
}
|
2008-04-13 23:26:57 +02:00
|
|
|
}
|
|
|
|
m_pieces.erase(i, m_pieces.end());
|
2008-06-12 06:40:37 +02:00
|
|
|
l.unlock();
|
2008-04-09 07:19:11 +02:00
|
|
|
#ifndef TORRENT_DISABLE_POOL_ALLOCATOR
|
2008-06-12 06:40:37 +02:00
|
|
|
{
|
|
|
|
mutex_t::scoped_lock l(m_pool_mutex);
|
|
|
|
m_pool.release_memory();
|
|
|
|
}
|
2008-04-09 07:19:11 +02:00
|
|
|
#endif
|
2008-04-13 23:26:57 +02:00
|
|
|
ret = j.storage->delete_files_impl();
|
2008-07-18 01:41:46 +02:00
|
|
|
if (ret != 0) test_error(j);
|
2008-04-13 23:26:57 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case disk_io_job::check_fastresume:
|
|
|
|
{
|
2008-03-08 07:06:31 +01:00
|
|
|
#ifdef TORRENT_DISK_STATS
|
2008-04-13 23:26:57 +02:00
|
|
|
m_log << log_time() << " check fastresume" << std::endl;
|
2008-03-08 07:06:31 +01:00
|
|
|
#endif
|
2008-07-01 01:14:31 +02:00
|
|
|
lazy_entry const* rd = (lazy_entry const*)j.buffer;
|
2008-04-13 23:26:57 +02:00
|
|
|
TORRENT_ASSERT(rd != 0);
|
|
|
|
ret = j.storage->check_fastresume(*rd, j.str);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case disk_io_job::check_files:
|
|
|
|
{
|
2008-03-08 07:06:31 +01:00
|
|
|
#ifdef TORRENT_DISK_STATS
|
2008-04-13 23:26:57 +02:00
|
|
|
m_log << log_time() << " check files" << std::endl;
|
2008-03-08 07:06:31 +01:00
|
|
|
#endif
|
2008-04-13 23:26:57 +02:00
|
|
|
int piece_size = j.storage->info()->piece_length();
|
|
|
|
for (int processed = 0; processed < 4 * 1024 * 1024; processed += piece_size)
|
|
|
|
{
|
|
|
|
ret = j.storage->check_files(j.piece, j.offset, j.str);
|
2008-03-08 07:06:31 +01:00
|
|
|
|
|
|
|
#ifndef BOOST_NO_EXCEPTIONS
|
2008-04-13 23:26:57 +02:00
|
|
|
try {
|
2008-03-08 07:06:31 +01:00
|
|
|
#endif
|
2008-04-13 23:26:57 +02:00
|
|
|
TORRENT_ASSERT(handler);
|
|
|
|
if (handler && ret == piece_manager::need_full_check)
|
|
|
|
m_ios.post(bind(handler, ret, j));
|
2008-03-08 07:06:31 +01:00
|
|
|
#ifndef BOOST_NO_EXCEPTIONS
|
2008-04-13 23:26:57 +02:00
|
|
|
} catch (std::exception&) {}
|
2008-03-08 07:06:31 +01:00
|
|
|
#endif
|
2008-04-13 23:26:57 +02:00
|
|
|
if (ret != piece_manager::need_full_check) break;
|
2008-03-08 07:06:31 +01:00
|
|
|
}
|
2008-07-18 01:41:46 +02:00
|
|
|
if (test_error(j))
|
|
|
|
{
|
|
|
|
ret = piece_manager::fatal_disk_error;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
TORRENT_ASSERT(ret != -2 || !j.str.empty());
|
|
|
|
|
2008-04-13 23:26:57 +02:00
|
|
|
// if the check is not done, add it at the end of the job queue
|
|
|
|
if (ret == piece_manager::need_full_check)
|
2008-04-13 20:54:36 +02:00
|
|
|
{
|
2008-06-12 06:40:37 +02:00
|
|
|
add_job(j, handler);
|
2008-04-13 23:26:57 +02:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case disk_io_job::save_resume_data:
|
|
|
|
{
|
2008-04-13 20:54:36 +02:00
|
|
|
#ifdef TORRENT_DISK_STATS
|
2008-04-13 23:26:57 +02:00
|
|
|
m_log << log_time() << " save resume data" << std::endl;
|
2008-04-13 20:54:36 +02:00
|
|
|
#endif
|
2008-04-13 23:26:57 +02:00
|
|
|
j.resume_data.reset(new entry(entry::dictionary_t));
|
|
|
|
j.storage->write_resume_data(*j.resume_data);
|
|
|
|
ret = 0;
|
|
|
|
break;
|
2007-06-10 22:46:09 +02:00
|
|
|
}
|
2008-05-28 10:44:40 +02:00
|
|
|
case disk_io_job::rename_file:
|
|
|
|
{
|
|
|
|
#ifdef TORRENT_DISK_STATS
|
|
|
|
m_log << log_time() << " rename file" << std::endl;
|
|
|
|
#endif
|
|
|
|
ret = j.storage->rename_file_impl(j.piece, j.str);
|
|
|
|
}
|
2007-06-10 22:46:09 +02:00
|
|
|
}
|
2008-02-14 04:48:20 +01:00
|
|
|
#ifndef BOOST_NO_EXCEPTIONS
|
|
|
|
} catch (std::exception& e)
|
2007-06-10 22:46:09 +02:00
|
|
|
{
|
2008-02-14 04:48:20 +01:00
|
|
|
ret = -1;
|
2008-01-15 00:51:04 +01:00
|
|
|
try
|
|
|
|
{
|
|
|
|
j.str = e.what();
|
|
|
|
}
|
|
|
|
catch (std::exception&) {}
|
2007-06-10 22:46:09 +02:00
|
|
|
}
|
2008-02-14 04:48:20 +01:00
|
|
|
#endif
|
2007-06-10 22:46:09 +02:00
|
|
|
|
|
|
|
// if (!handler) std::cerr << "DISK THREAD: no callback specified" << std::endl;
|
|
|
|
// else std::cerr << "DISK THREAD: invoking callback" << std::endl;
|
2008-02-14 04:48:20 +01:00
|
|
|
#ifndef BOOST_NO_EXCEPTIONS
|
|
|
|
try {
|
|
|
|
#endif
|
2008-07-30 10:05:04 +02:00
|
|
|
TORRENT_ASSERT(ret != -2 || !j.str.empty()
|
|
|
|
|| j.action == disk_io_job::hash);
|
2008-02-14 04:48:20 +01:00
|
|
|
if (handler) m_ios.post(bind(handler, ret, j));
|
|
|
|
#ifndef BOOST_NO_EXCEPTIONS
|
2008-04-10 11:11:54 +02:00
|
|
|
} catch (std::exception&)
|
|
|
|
{
|
2008-04-13 00:08:07 +02:00
|
|
|
TORRENT_ASSERT(false);
|
2008-04-10 11:11:54 +02:00
|
|
|
}
|
2008-02-14 04:48:20 +01:00
|
|
|
#endif
|
2007-06-10 22:46:09 +02:00
|
|
|
}
|
2008-02-14 04:48:20 +01:00
|
|
|
TORRENT_ASSERT(false);
|
2007-06-10 22:46:09 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|