http://stxxl.sourceforge.net
<dementiev@mpi-sb.mpg.de>
<beckmann@cs.uni-frankfurt.de>
<singler@ira.uka.de>
<tb@panthema.net>
http://www.boost.org/LICENSE_1_0.txt
#include <algorithm>
#include <stxxl/bits/config.h>
#include <stxxl/bits/common/error_handling.h>
#include <stxxl/bits/io/request_queue_impl_1q.h>
#include <stxxl/bits/io/request_with_state.h>
#include <stxxl/bits/parallel.h>
#if STXXL_STD_THREADS && STXXL_MSVC >= 1700
#include <windows.h>
#endif
#ifndef STXXL_CHECK_FOR_PENDING_REQUESTS_ON_SUBMISSION
#define STXXL_CHECK_FOR_PENDING_REQUESTS_ON_SUBMISSION 1
#endif
STXXL_BEGIN_NAMESPACE
struct file_offset_match : public std::binary_function<request_ptr, request_ptr, bool>
{
bool operator () (
const request_ptr& a,
const request_ptr& b) const
{
return (a->get_offset() == b->get_offset()) &&
(a->get_file() == b->get_file());
}
};
request_queue_impl_1q::request_queue_impl_1q(int n)
: m_thread_state(NOT_RUNNING), sem(0)
{
STXXL_UNUSED(n);
start_thread(worker, static_cast<void*>(this), thread, m_thread_state);
}
void request_queue_impl_1q::add_request(request_ptr& req)
{
if (req.empty())
STXXL_THROW_INVALID_ARGUMENT("Empty request submitted to disk_queue.");
if (m_thread_state() != RUNNING)
STXXL_THROW_INVALID_ARGUMENT("Request submitted to not running queue.");
#if STXXL_CHECK_FOR_PENDING_REQUESTS_ON_SUBMISSION
{
scoped_mutex_lock Lock(queue_mutex);
if (std::find_if(queue.begin(), queue.end(),
bind2nd(file_offset_match(), req) _STXXL_FORCE_SEQUENTIAL)
!= queue.end())
{
STXXL_ERRMSG("request submitted for a BID with a pending request");
}
}
#endif
scoped_mutex_lock Lock(queue_mutex);
queue.push_back(req);
sem++;
}
bool request_queue_impl_1q::cancel_request(request_ptr& req)
{
if (req.empty())
STXXL_THROW_INVALID_ARGUMENT("Empty request canceled disk_queue.");
if (m_thread_state() != RUNNING)
STXXL_THROW_INVALID_ARGUMENT("Request canceled to not running queue.");
bool was_still_in_queue = false;
{
scoped_mutex_lock Lock(queue_mutex);
queue_type::iterator pos;
if ((pos = std::find(queue.begin(), queue.end(), req _STXXL_FORCE_SEQUENTIAL)) != queue.end())
{
queue.erase(pos);
was_still_in_queue = true;
sem--;
}
}
return was_still_in_queue;
}
request_queue_impl_1q::~request_queue_impl_1q()
{
stop_thread(thread, m_thread_state, sem);
}
void* request_queue_impl_1q::worker(void* arg)
{
self* pthis = static_cast<self*>(arg);
for ( ; ; )
{
pthis->sem--;
{
scoped_mutex_lock Lock(pthis->queue_mutex);
if (!pthis->queue.empty())
{
request_ptr req = pthis->queue.front();
pthis->queue.pop_front();
Lock.unlock();
req->serve();
}
else
{
Lock.unlock();
pthis->sem++;
}
}
if (pthis->m_thread_state() == TERMINATING) {
if ((pthis->sem--) == 0)
break;
else
pthis->sem++;
}
}
pthis->m_thread_state.set_to(TERMINATED);
#if STXXL_STD_THREADS && STXXL_MSVC >= 1700
ExitThread(NULL);
#else
return NULL;
#endif
}
STXXL_END_NAMESPACE