/* Copyright (c) 2003-2016, Arvid Norberg, Daniel Wallin 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/aux_/disk_job_fence.hpp" #include "libtorrent/disk_io_job.hpp" #include "libtorrent/performance_counters.hpp" #define DEBUG_STORAGE 0 #if DEBUG_STORAGE #define DLOG(...) std::fprintf(__VA_ARGS__) #else #define DLOG(...) do {} while (false) #endif namespace libtorrent { namespace aux { int disk_job_fence::job_complete(disk_io_job* j, tailqueue& jobs) { std::lock_guard l(m_mutex); TORRENT_ASSERT(j->flags & disk_io_job::in_progress); j->flags &= ~disk_io_job::in_progress; TORRENT_ASSERT(m_outstanding_jobs > 0); --m_outstanding_jobs; if (j->flags & disk_io_job::fence) { // a fence job just completed. Make sure the fence logic // works by asserting m_outstanding_jobs is in fact 0 now TORRENT_ASSERT(m_outstanding_jobs == 0); // the fence can now be lowered --m_has_fence; // now we need to post all jobs that have been queued up // while this fence was up. However, if there's another fence // in the queue, stop there and raise the fence again int ret = 0; while (!m_blocked_jobs.empty()) { disk_io_job *bj = m_blocked_jobs.pop_front(); if (bj->flags & disk_io_job::fence) { // we encountered another fence. We cannot post anymore // jobs from the blocked jobs queue. We have to go back // into a raised fence mode and wait for all current jobs // to complete. The exception is that if there are no jobs // executing currently, we should add the fence job. if (m_outstanding_jobs == 0 && jobs.empty()) { TORRENT_ASSERT(!(bj->flags & disk_io_job::in_progress)); bj->flags |= disk_io_job::in_progress; ++m_outstanding_jobs; ++ret; #if TORRENT_USE_ASSERTS TORRENT_ASSERT(bj->blocked); bj->blocked = false; #endif jobs.push_back(bj); } else { // put the fence job back in the blocked queue m_blocked_jobs.push_front(bj); } return ret; } TORRENT_ASSERT(!(bj->flags & disk_io_job::in_progress)); bj->flags |= disk_io_job::in_progress; ++m_outstanding_jobs; ++ret; #if TORRENT_USE_ASSERTS TORRENT_ASSERT(bj->blocked); bj->blocked = false; #endif jobs.push_back(bj); } return ret; } // there are still outstanding jobs, even if we have a // fence, it's not time to lower it yet // also, if we don't have a fence, we're done if (m_outstanding_jobs > 0 || m_has_fence == 0) return 0; // there's a fence raised, and no outstanding operations. // it means we can execute the fence job right now. TORRENT_ASSERT(m_blocked_jobs.size() > 0); // this is the fence job disk_io_job *bj = m_blocked_jobs.pop_front(); TORRENT_ASSERT(bj->flags & disk_io_job::fence); TORRENT_ASSERT(!(bj->flags & disk_io_job::in_progress)); bj->flags |= disk_io_job::in_progress; ++m_outstanding_jobs; #if TORRENT_USE_ASSERTS TORRENT_ASSERT(bj->blocked); bj->blocked = false; #endif // prioritize fence jobs since they're blocking other jobs jobs.push_front(bj); return 1; } bool disk_job_fence::is_blocked(disk_io_job* j) { std::lock_guard l(m_mutex); DLOG(stderr, "[%p] is_blocked: fence: %d num_outstanding: %d\n" , static_cast(this), m_has_fence, int(m_outstanding_jobs)); // if this is the job that raised the fence, don't block it // ignore fence can only ignore one fence. If there are several, // this job still needs to get queued up if (m_has_fence == 0) { TORRENT_ASSERT(!(j->flags & disk_io_job::in_progress)); j->flags |= disk_io_job::in_progress; ++m_outstanding_jobs; return false; } m_blocked_jobs.push_back(j); #if TORRENT_USE_ASSERTS TORRENT_ASSERT(j->blocked == false); j->blocked = true; #endif return true; } bool disk_job_fence::has_fence() const { std::lock_guard l(m_mutex); return m_has_fence != 0; } int disk_job_fence::num_blocked() const { std::lock_guard l(m_mutex); return m_blocked_jobs.size(); } // j is the fence job. It must have exclusive access to the storage // fj is the flush job. If the job j is queued, we need to issue // this job int disk_job_fence::raise_fence(disk_io_job* j, disk_io_job* fj , counters& cnt) { TORRENT_ASSERT(!(j->flags & disk_io_job::in_progress)); TORRENT_ASSERT(!(j->flags & disk_io_job::fence)); j->flags |= disk_io_job::fence; std::lock_guard l(m_mutex); DLOG(stderr, "[%p] raise_fence: fence: %d num_outstanding: %d\n" , static_cast(this), m_has_fence, int(m_outstanding_jobs)); if (m_has_fence == 0 && m_outstanding_jobs == 0) { ++m_has_fence; DLOG(stderr, "[%p] raise_fence: need posting\n" , static_cast(this)); // the job j is expected to be put on the job queue // after this, without being passed through is_blocked() // that's why we're accounting for it here // fj is expected to be discarded by the caller j->flags |= disk_io_job::in_progress; ++m_outstanding_jobs; return fence_post_fence; } ++m_has_fence; if (m_has_fence > 1) { #if TORRENT_USE_ASSERTS TORRENT_ASSERT(fj->blocked == false); fj->blocked = true; #endif m_blocked_jobs.push_back(fj); cnt.inc_stats_counter(counters::blocked_disk_jobs); TORRENT_ASSERT(!(j->flags & disk_io_job::in_progress)); } else { // in this case, fj is expected to be put on the job queue fj->flags |= disk_io_job::in_progress; ++m_outstanding_jobs; } #if TORRENT_USE_ASSERTS TORRENT_ASSERT(j->blocked == false); j->blocked = true; #endif m_blocked_jobs.push_back(j); cnt.inc_stats_counter(counters::blocked_disk_jobs); return m_has_fence > 1 ? fence_post_none : fence_post_flush; } }}