2
0
mirror of https://github.com/boostorg/fiber.git synced 2026-02-11 11:42:23 +00:00
Files
fiber/src/fiber_manager.cpp
Nat Goodspeed 3128334364 Initial cut at supporting arbitrary user-coded scheduler properties.
Introduce fiber_properties class from which to derive a specific properties
class for a particular user-coded sched_algorithm subclass.

Add sched_algorithm::property_change(worker_fiber*, fiber_properties*) method
to allow a fiber_properties subclass method to notify the sched_algorithm
subclass of a change in a relevant property. This generalizes the present
priority() method.

Introduce sched_algorithm_with_properties<PROPS> template class from which to
derive a user-coded scheduler that uses fiber_properties subclass PROPS. Give
it ref-returning properties(fiber::id) and properties(worker_fiber*) methods.

Introduce fiber_properties* field in worker_fiber, and initialize it to 0.
Delete it when the worker_fiber is destroyed. Give it pointer-flavored access
methods. Normally this field will remain 0; but the first time the
worker_fiber is passed to a sched_algorithm_with_properties<PROPS> subclass,
its awakened() method will instantiate the relevant PROPS subclass.

Add ref-returning fiber::properties<PROPS>() method. Calling this method
presumes that the current thread's sched_algorithm is derived from
sched_algorithm_with_properties<PROPS>.

Also add this_fiber::properties<PROPS>() with the same restriction.

Add ref-returning fm_properties<PROPS>() functions to implement
fiber::properties<PROPS>() and this_fiber::properties<PROPS>().

Allow sched_algorithm_with_properties to extract the worker_fiber* from a
fiber::id (aka worker_fiber::id) so it can present public-facing
properties(id) method as well as properties(worker_fiber*) method.
(cherry picked from commit 18c7f2c13b9642826b42aa3f6fa0a6642fce9cbc)

Conflicts:
	include/boost/fiber/detail/worker_fiber.hpp
	include/boost/fiber/fiber_manager.hpp
2014-11-08 11:03:51 -05:00

303 lines
8.1 KiB
C++

// Copyright Oliver Kowalke 2013.
// 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)
#include <boost/fiber/fiber_manager.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/thread/locks.hpp>
#include <boost/thread/thread.hpp>
#include <boost/fiber/detail/scheduler.hpp>
#include <boost/fiber/exceptions.hpp>
#include <boost/fiber/round_robin.hpp>
#ifdef BOOST_HAS_ABI_HEADERS
# include BOOST_ABI_PREFIX
#endif
namespace boost {
namespace fibers {
bool fetch_ready( detail::worker_fiber * f, chrono::high_resolution_clock::time_point const& now)
{
BOOST_ASSERT( ! f->is_running() );
BOOST_ASSERT( ! f->is_terminated() );
// set fiber to state_ready if dead-line was reached
// set fiber to state_ready if interruption was requested
if ( f->time_point() <= now || f->interruption_requested() )
f->set_ready();
return f->is_ready();
}
fiber_manager::fiber_manager() BOOST_NOEXCEPT :
def_algo_( new round_robin() ),
sched_algo_( def_algo_.get() ),
wqueue_(),
wait_interval_( chrono::milliseconds( 10) ),
active_fiber_( 0)
{}
fiber_manager::~fiber_manager() BOOST_NOEXCEPT
{
// fibers will be destroyed (stack-unwinding)
// if last reference goes out-of-scope
// therefore destructing fm->wqueue_ && rqueue_
// will destroy the fibers in this scheduler
// if not referenced on other places
while ( ! wqueue_.empty() )
fm_run();
}
void fm_resume_( detail::worker_fiber * f)
{
volatile fiber_manager * fm = detail::scheduler::instance();
BOOST_ASSERT( 0 != fm);
BOOST_ASSERT( 0 != f);
BOOST_ASSERT( f != fm->active_fiber_);
BOOST_ASSERT( f->is_ready() );
// fiber to state_running
f->set_running();
// store active-fiber in local var
detail::worker_fiber * tmp = fm->active_fiber_;
// assign new fiber to active-fiber
fm->active_fiber_ = f;
// resume active-fiber == start or yield to
fm->active_fiber_->resume( tmp);
// if fiber was migrated to another thread
// the fiber-manger pointer, allocated on the stack,
// is invalid
fm = detail::scheduler::instance();
// if active-fiber is detached and has terminated
// the fiber has to be destructed/deallocated
if ( 0 != fm->active_fiber_ &&
fm->active_fiber_->is_terminated() )
intrusive_ptr_release( fm->active_fiber_);
fm->active_fiber_ = tmp;
}
void fm_set_sched_algo( sched_algorithm * algo)
{
fiber_manager * fm = detail::scheduler::instance();
BOOST_ASSERT( 0 != fm);
fm->sched_algo_ = algo;
fm->def_algo_.reset();
}
sched_algorithm* fm_get_sched_algo_()
{
fiber_manager * fm = detail::scheduler::instance();
BOOST_ASSERT( 0 != fm);
return fm->sched_algo_;
}
chrono::high_resolution_clock::time_point fm_next_wakeup()
{
fiber_manager * fm = detail::scheduler::instance();
BOOST_ASSERT( 0 != fm);
if ( fm->wqueue_.empty() )
return chrono::high_resolution_clock::now() + fm->wait_interval_;
else
{
//FIXME: search for the closest time_point to now() in waiting-queue
chrono::high_resolution_clock::time_point wakeup( fm->wqueue_.top()->time_point() );
if ( (chrono::high_resolution_clock::time_point::max)() == wakeup)
return chrono::high_resolution_clock::now() + fm->wait_interval_;
return wakeup;
}
}
void fm_spawn( detail::worker_fiber * f)
{
fiber_manager * fm = detail::scheduler::instance();
BOOST_ASSERT( 0 != fm);
BOOST_ASSERT( 0 != f);
BOOST_ASSERT( f->is_ready() );
BOOST_ASSERT( f != fm->active_fiber_);
fm->sched_algo_->awakened( f);
}
void fm_priority( detail::worker_fiber * f,
int prio) BOOST_NOEXCEPT
{
fiber_manager * fm = detail::scheduler::instance();
BOOST_ASSERT( 0 != fm);
fm->sched_algo_->priority( f, prio);
}
void fm_wait_interval( chrono::high_resolution_clock::duration const& wait_interval) BOOST_NOEXCEPT
{
fiber_manager * fm = detail::scheduler::instance();
BOOST_ASSERT( 0 != fm);
fm->wait_interval_ = wait_interval;
}
chrono::high_resolution_clock::duration fm_wait_interval() BOOST_NOEXCEPT
{
fiber_manager * fm = detail::scheduler::instance();
BOOST_ASSERT( 0 != fm);
return fm->wait_interval_;
}
void fm_run()
{
fiber_manager * fm = detail::scheduler::instance();
BOOST_ASSERT( 0 != fm);
// move all fibers witch are ready (state_ready)
// from waiting-queue to the runnable-queue
fm->wqueue_.move_to( fm->sched_algo_, fetch_ready);
// pop new fiber from ready-queue which is not complete
// (example: fiber in ready-queue could be canceled by active-fiber)
detail::worker_fiber * f( fm->sched_algo_->pick_next() );
if ( f)
{
BOOST_ASSERT_MSG( f->is_ready(), "fiber with invalid state in ready-queue");
fm_resume_( f);
}
else
{
if ( fm->active_fiber_)
fm->active_fiber_->suspend();
else
{
// no fibers ready to run; the thread should sleep
// until earliest fiber is scheduled to run
chrono::high_resolution_clock::time_point wakeup( fm_next_wakeup() );
this_thread::sleep_until( wakeup);
}
}
}
void fm_wait( unique_lock< detail::spinlock > & lk)
{
fm_wait_until( chrono::high_resolution_clock::time_point( (chrono::high_resolution_clock::duration::max)() ), lk);
}
bool fm_wait_until( chrono::high_resolution_clock::time_point const& timeout_time,
unique_lock< detail::spinlock > & lk)
{
fiber_manager * fm = detail::scheduler::instance();
BOOST_ASSERT( 0 != fm);
BOOST_ASSERT( 0 != fm->active_fiber_);
BOOST_ASSERT( fm->active_fiber_->is_running() );
chrono::high_resolution_clock::time_point start( chrono::high_resolution_clock::now() );
// set active-fiber to state_waiting
fm->active_fiber_->set_waiting();
// release lock
lk.unlock();
// push active-fiber to fm->wqueue_
fm->active_fiber_->time_point( timeout_time);
fm->wqueue_.push( fm->active_fiber_);
// suspend active-fiber
fm->active_fiber_->suspend();
return chrono::high_resolution_clock::now() < timeout_time;
}
void fm_yield()
{
fiber_manager * fm = detail::scheduler::instance();
BOOST_ASSERT( 0 != fm);
BOOST_ASSERT( 0 != fm->active_fiber_);
BOOST_ASSERT( fm->active_fiber_->is_running() );
// set active-fiber to state_waiting
fm->active_fiber_->set_ready();
// push active-fiber to fm->wqueue_
fm->wqueue_.push( fm->active_fiber_);
// suspend active-fiber
fm->active_fiber_->suspend();
}
void fm_join( detail::worker_fiber * f)
{
fiber_manager * fm = detail::scheduler::instance();
BOOST_ASSERT( 0 != fm);
BOOST_ASSERT( 0 != f);
BOOST_ASSERT( f != fm->active_fiber_);
if ( fm->active_fiber_)
{
// set active-fiber to state_waiting
fm->active_fiber_->set_waiting();
// push active-fiber to fm->wqueue_
fm->wqueue_.push( fm->active_fiber_);
// add active-fiber to joinig-list of f
if ( ! f->join( fm->active_fiber_) )
// f must be already terminated therefore we set
// active-fiber to state_ready
// FIXME: better state_running and no suspend
fm->active_fiber_->set_ready();
// suspend active-fiber
fm->active_fiber_->suspend();
}
else
{
while ( ! f->is_terminated() )
// yield this thread if scheduler did not
// resumed some fibers in the previous round
fm_run();
}
BOOST_ASSERT( f->is_terminated() );
}
detail::worker_fiber * fm_active() BOOST_NOEXCEPT
{
fiber_manager * fm = detail::scheduler::instance();
BOOST_ASSERT( 0 != fm);
return fm->active_fiber_;
}
void fm_migrate( detail::worker_fiber * f)
{
BOOST_ASSERT( 0 != f);
BOOST_ASSERT( f->is_ready() );
fm_spawn( f);
fm_run();
}
}}
#ifdef BOOST_HAS_ABI_HEADERS
# include BOOST_ABI_SUFFIX
#endif