2014-07-06 21:18:00 +02:00
|
|
|
/*
|
|
|
|
|
2018-04-09 09:04:33 +02:00
|
|
|
Copyright (c) 2012-2018, Arvid Norberg
|
2014-07-06 21:18:00 +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.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "libtorrent/disk_job_pool.hpp"
|
|
|
|
#include "libtorrent/disk_io_job.hpp"
|
|
|
|
|
2017-04-12 19:00:57 +02:00
|
|
|
namespace libtorrent {
|
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
disk_job_pool::disk_job_pool()
|
|
|
|
: m_jobs_in_use(0)
|
|
|
|
, m_read_jobs(0)
|
|
|
|
, m_write_jobs(0)
|
|
|
|
, m_job_pool(sizeof(disk_io_job))
|
|
|
|
{}
|
|
|
|
|
|
|
|
disk_job_pool::~disk_job_pool()
|
|
|
|
{
|
|
|
|
// #error this should be fixed!
|
|
|
|
// TORRENT_ASSERT(m_jobs_in_use == 0);
|
|
|
|
}
|
|
|
|
|
2017-06-11 19:53:15 +02:00
|
|
|
disk_io_job* disk_job_pool::allocate_job(job_action_t const type)
|
2014-07-06 21:18:00 +02:00
|
|
|
{
|
2016-05-01 00:54:23 +02:00
|
|
|
std::unique_lock<std::mutex> l(m_job_mutex);
|
2015-08-11 02:03:24 +02:00
|
|
|
disk_io_job* ptr = static_cast<disk_io_job*>(m_job_pool.malloc());
|
2014-07-06 21:18:00 +02:00
|
|
|
m_job_pool.set_next_size(100);
|
2016-07-09 22:26:26 +02:00
|
|
|
if (ptr == nullptr) return nullptr;
|
2014-07-06 21:18:00 +02:00
|
|
|
++m_jobs_in_use;
|
2017-06-11 19:53:15 +02:00
|
|
|
if (type == job_action_t::read) ++m_read_jobs;
|
|
|
|
else if (type == job_action_t::write) ++m_write_jobs;
|
2014-07-06 21:18:00 +02:00
|
|
|
l.unlock();
|
|
|
|
TORRENT_ASSERT(ptr);
|
|
|
|
|
|
|
|
new (ptr) disk_io_job;
|
2017-06-11 19:53:15 +02:00
|
|
|
ptr->action = type;
|
2016-06-18 14:31:07 +02:00
|
|
|
#if TORRENT_USE_ASSERTS
|
2014-07-06 21:18:00 +02:00
|
|
|
ptr->in_use = true;
|
|
|
|
#endif
|
|
|
|
return ptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
void disk_job_pool::free_job(disk_io_job* j)
|
|
|
|
{
|
|
|
|
TORRENT_ASSERT(j);
|
2016-07-09 22:26:26 +02:00
|
|
|
if (j == nullptr) return;
|
2016-06-18 14:31:07 +02:00
|
|
|
#if TORRENT_USE_ASSERTS
|
2014-07-06 21:18:00 +02:00
|
|
|
TORRENT_ASSERT(j->in_use);
|
|
|
|
j->in_use = false;
|
|
|
|
#endif
|
2017-06-11 19:53:15 +02:00
|
|
|
job_action_t const type = j->action;
|
2014-07-06 21:18:00 +02:00
|
|
|
j->~disk_io_job();
|
2016-05-01 00:54:23 +02:00
|
|
|
std::lock_guard<std::mutex> l(m_job_mutex);
|
2017-06-11 19:53:15 +02:00
|
|
|
if (type == job_action_t::read) --m_read_jobs;
|
|
|
|
else if (type == job_action_t::write) --m_write_jobs;
|
2014-07-06 21:18:00 +02:00
|
|
|
--m_jobs_in_use;
|
2016-05-01 00:54:23 +02:00
|
|
|
m_job_pool.free(j);
|
2014-07-06 21:18:00 +02:00
|
|
|
}
|
|
|
|
|
2018-06-07 02:35:00 +02:00
|
|
|
void disk_job_pool::free_jobs(disk_io_job** j, int const num)
|
2014-07-06 21:18:00 +02:00
|
|
|
{
|
|
|
|
if (num == 0) return;
|
|
|
|
|
|
|
|
int read_jobs = 0;
|
|
|
|
int write_jobs = 0;
|
|
|
|
for (int i = 0; i < num; ++i)
|
|
|
|
{
|
2017-06-11 19:53:15 +02:00
|
|
|
job_action_t const type = j[i]->action;
|
2014-07-06 21:18:00 +02:00
|
|
|
j[i]->~disk_io_job();
|
2017-06-11 19:53:15 +02:00
|
|
|
if (type == job_action_t::read) ++read_jobs;
|
|
|
|
else if (type == job_action_t::write) ++write_jobs;
|
2014-07-06 21:18:00 +02:00
|
|
|
}
|
2016-05-01 00:54:23 +02:00
|
|
|
|
|
|
|
std::lock_guard<std::mutex> l(m_job_mutex);
|
2014-07-06 21:18:00 +02:00
|
|
|
m_read_jobs -= read_jobs;
|
|
|
|
m_write_jobs -= write_jobs;
|
|
|
|
m_jobs_in_use -= num;
|
|
|
|
for (int i = 0; i < num; ++i)
|
2016-05-01 00:54:23 +02:00
|
|
|
m_job_pool.free(j[i]);
|
2014-07-06 21:18:00 +02:00
|
|
|
}
|
|
|
|
}
|