2
0
mirror of https://github.com/boostorg/fiber.git synced 2026-02-02 08:52:07 +00:00
Files
fiber/src/round_robin.cpp
Oliver Kowalke e04637edaf some mods
2013-01-07 17:25:03 +01:00

244 lines
5.6 KiB
C++

// Copyright Oliver Kowalke 2009.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
#define BOOST_FIBERS_SOURCE
#include <boost/fiber/round_robin.hpp>
#include <algorithm>
#include <cmath>
#include <memory>
#include <utility>
#include <boost/assert.hpp>
#include <boost/bind.hpp>
#include <boost/foreach.hpp>
#include <boost/scope_exit.hpp>
#include <boost/fiber/exceptions.hpp>
#ifdef BOOST_HAS_ABI_HEADERS
# include BOOST_ABI_PREFIX
#endif
namespace boost {
namespace fibers {
round_robin::round_robin() :
active_fiber_(),
fibers_(),
rqueue_()
{}
round_robin::~round_robin()
{
BOOST_ASSERT( ! active_fiber_);
rqueue_.clear();
BOOST_FOREACH( detail::fiber_base::ptr_t const& p, fibers_)
{ p->terminate(); }
}
void
round_robin::spawn( detail::fiber_base::ptr_t const& f)
{
BOOST_ASSERT( f);
BOOST_ASSERT( ! f->is_terminated() );
BOOST_ASSERT( f != active_fiber_);
detail::fiber_base::ptr_t tmp = active_fiber_;
BOOST_SCOPE_EXIT( & tmp, & active_fiber_) {
active_fiber_ = tmp;
} BOOST_SCOPE_EXIT_END
active_fiber_ = f;
active_fiber_->set_running(); \
active_fiber_->resume();
if ( ! f->is_terminated() )
fibers_.push_back( f);
}
void
round_robin::priority( detail::fiber_base::ptr_t const& f, int prio)
{
BOOST_ASSERT( f);
f->priority( prio);
}
void
round_robin::join( detail::fiber_base::ptr_t const& f)
{
BOOST_ASSERT( f);
BOOST_ASSERT( f != active_fiber_);
if ( f->is_terminated() ) return;
if ( active_fiber_)
{
// add active_fiber_ to joinig-list of f
f->join( active_fiber_);
// set active_fiber to state_waiting
active_fiber_->set_waiting();
// suspend active-fiber until f terminates
active_fiber_->suspend();
// fiber is resumed
// f has teminated and active-fiber is resumed
}
else
{
while ( ! f->is_terminated() )
run();
}
BOOST_ASSERT( f->is_terminated() );
}
void
round_robin::cancel( detail::fiber_base::ptr_t const& f)
{
BOOST_ASSERT_MSG( false, "not implemented");
// BOOST_ASSERT( f);
// BOOST_ASSERT( f != active_fiber_);
//
// // ignore completed fiber
// if ( f->is_terminated() ) return;
//
// detail::fiber_base::ptr_t tmp = active_fiber_;
// {
// BOOST_SCOPE_EXIT( & tmp, & active_fiber_) {
// active_fiber_ = tmp;
// } BOOST_SCOPE_EXIT_END
// active_fiber_ = f;
// // terminate fiber means unwinding its stack
// // so it becomes complete and joining fibers
// // will be notified
// active_fiber_->terminate();
// }
// // erase completed fiber from waiting-queue
// f_idx_.erase( f);
//
// BOOST_ASSERT( f->is_terminated() );
}
bool
round_robin::run()
{
// stable-sort has n*log(n) complexity if n*log(n) extra space is available
std::size_t n = fibers_.size();
if ( 1 < n)
{
std::size_t new_capacity = n * std::log10( n) + n;
if ( fibers_.capacity() < new_capacity)
fibers_.reserve( new_capacity);
// sort fibers_ depending on state
fibers_.sort();
}
// copy all ready fibers to rqueue_
std::pair< container_t::iterator, container_t::iterator > p =
fibers_.equal_range( detail::state_ready);
if ( p.first != p.second)
rqueue_.insert( rqueue_.end(), p.first, p.second);
// remove all terminated fibers from fibers_
p = fibers_.equal_range( detail::state_terminated);
for ( container_t::iterator i = p.first; i != p.second; ++i)
{
( * i)->terminate();
fibers_.erase( i);
}
if ( rqueue_.empty() ) return false;
// pop new fiber from runnable-queue which is not complete
// (example: fiber in runnable-queue could be canceled by active-fiber)
detail::fiber_base::ptr_t f;
do
{
if ( rqueue_.empty() ) return false;
f.swap( rqueue_.front() );
rqueue_.pop_front();
}
while ( ! f->is_ready() );
detail::fiber_base::ptr_t tmp = active_fiber_;
BOOST_SCOPE_EXIT( & tmp, & active_fiber_) {
active_fiber_ = tmp;
} BOOST_SCOPE_EXIT_END
active_fiber_ = f;
// resume new active fiber
active_fiber_->set_running();
active_fiber_->resume();
return true;
}
void
round_robin::wait( detail::spin_mutex::scoped_lock & lk)
{
BOOST_ASSERT( active_fiber_);
BOOST_ASSERT( active_fiber_->is_running() );
// set active_fiber to state_waiting
active_fiber_->set_waiting();
// unlock Lock assoc. with sync. primitive
lk.unlock();
// suspend fiber
active_fiber_->suspend();
// fiber is resumed
BOOST_ASSERT( active_fiber_->is_running() );
}
void
round_robin::yield()
{
BOOST_ASSERT( active_fiber_);
BOOST_ASSERT( active_fiber_->is_running() );
// yield() suspends the fiber and adds it
// immediately to ready-queue
rqueue_.push_back( active_fiber_);
// set active_fiber to state_ready
active_fiber_->set_ready();
// suspend fiber
active_fiber_->yield();
// fiber is resumed
BOOST_ASSERT( active_fiber_->is_running() );
}
void
round_robin::migrate_to( detail::fiber_base::ptr_t const& f)
{
BOOST_ASSERT( f);
BOOST_ASSERT( f->is_ready() );
rqueue_.push_back( f);
}
detail::fiber_base::ptr_t
round_robin::migrate_from()
{
detail::fiber_base::ptr_t f;
if ( ! rqueue_.empty() )
{
f.swap( rqueue_.back() );
rqueue_.pop_back();
BOOST_ASSERT( f->is_ready() );
}
return f;
}
}}
#ifdef BOOST_HAS_ABI_HEADERS
# include BOOST_ABI_SUFFIX
#endif