git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@18 52acb1d6-8a22-11de-b505-999d5b087335
173 lines
4.4 KiB
C++
173 lines
4.4 KiB
C++
//
|
|
// demuxer_service.hpp
|
|
// ~~~~~~~~~~~~~~~~~~~
|
|
//
|
|
// Copyright (c) 2003-2005 Christopher M. Kohlhoff (chris at kohlhoff dot com)
|
|
//
|
|
// 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)
|
|
//
|
|
|
|
#ifndef BOOST_ASIO_DEMUXER_SERVICE_HPP
|
|
#define BOOST_ASIO_DEMUXER_SERVICE_HPP
|
|
|
|
#if defined(_MSC_VER) && (_MSC_VER >= 1200)
|
|
# pragma once
|
|
#endif // defined(_MSC_VER) && (_MSC_VER >= 1200)
|
|
|
|
#include <boost/asio/detail/push_options.hpp>
|
|
|
|
#include <boost/asio/detail/push_options.hpp>
|
|
#include <memory>
|
|
#include <boost/asio/detail/pop_options.hpp>
|
|
|
|
#include <boost/asio/basic_demuxer.hpp>
|
|
#include <boost/asio/service_factory.hpp>
|
|
#include <boost/asio/detail/epoll_reactor.hpp>
|
|
#include <boost/asio/detail/kqueue_reactor.hpp>
|
|
#include <boost/asio/detail/noncopyable.hpp>
|
|
#include <boost/asio/detail/select_reactor.hpp>
|
|
#include <boost/asio/detail/task_demuxer_service.hpp>
|
|
#include <boost/asio/detail/win_iocp_demuxer_service.hpp>
|
|
|
|
namespace boost {
|
|
namespace asio {
|
|
|
|
/// Default service implementation for a demuxer.
|
|
template <typename Allocator = std::allocator<void> >
|
|
class demuxer_service
|
|
: private noncopyable
|
|
{
|
|
public:
|
|
/// The demuxer type for this service.
|
|
typedef basic_demuxer<demuxer_service<Allocator> > demuxer_type;
|
|
|
|
/// The allocator type for this service.
|
|
typedef Allocator allocator_type;
|
|
|
|
private:
|
|
// The type of the platform-specific implementation.
|
|
#if defined(BOOST_ASIO_HAS_IOCP_DEMUXER)
|
|
typedef detail::win_iocp_demuxer_service service_impl_type;
|
|
#elif defined(BOOST_ASIO_HAS_EPOLL_REACTOR)
|
|
typedef detail::task_demuxer_service<detail::epoll_reactor<false> >
|
|
service_impl_type;
|
|
#elif defined(BOOST_ASIO_HAS_KQUEUE_REACTOR)
|
|
typedef detail::task_demuxer_service<detail::kqueue_reactor<false> >
|
|
service_impl_type;
|
|
#else
|
|
typedef detail::task_demuxer_service<detail::select_reactor<false> >
|
|
service_impl_type;
|
|
#endif
|
|
|
|
public:
|
|
/// Constructor.
|
|
explicit demuxer_service(demuxer_type& demuxer)
|
|
: service_impl_(demuxer.get_service(service_factory<service_impl_type>()))
|
|
{
|
|
}
|
|
|
|
/// Constructor.
|
|
demuxer_service(demuxer_type& demuxer, const allocator_type& allocator)
|
|
: service_impl_(demuxer.get_service(service_factory<service_impl_type>())),
|
|
allocator_(allocator)
|
|
{
|
|
}
|
|
|
|
/// Return a copy of the allocator associated with the service.
|
|
allocator_type get_allocator() const
|
|
{
|
|
return allocator_;
|
|
}
|
|
|
|
/// Run the demuxer's event processing loop.
|
|
void run()
|
|
{
|
|
service_impl_.run();
|
|
}
|
|
|
|
/// Interrupt the demuxer's event processing loop.
|
|
void interrupt()
|
|
{
|
|
service_impl_.interrupt();
|
|
}
|
|
|
|
/// Reset the demuxer in preparation for a subsequent run invocation.
|
|
void reset()
|
|
{
|
|
service_impl_.reset();
|
|
}
|
|
|
|
/// Notify the demuxer that some work has started.
|
|
void work_started()
|
|
{
|
|
service_impl_.work_started();
|
|
}
|
|
|
|
/// Notify the demuxer that some work has finished.
|
|
void work_finished()
|
|
{
|
|
service_impl_.work_finished();
|
|
}
|
|
|
|
/// Request the demuxer to invoke the given handler.
|
|
template <typename Handler>
|
|
void dispatch(Handler handler)
|
|
{
|
|
service_impl_.dispatch(handler);
|
|
}
|
|
|
|
/// Request the demuxer to invoke the given handler and return immediately.
|
|
template <typename Handler>
|
|
void post(Handler handler)
|
|
{
|
|
service_impl_.post(handler);
|
|
}
|
|
|
|
private:
|
|
// The service that provides the platform-specific implementation.
|
|
service_impl_type& service_impl_;
|
|
|
|
// The allocator associated with the service.
|
|
allocator_type allocator_;
|
|
};
|
|
|
|
#if !defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION)
|
|
|
|
/// Specialisation of service_factory to allow an allocator to be specified.
|
|
template <typename Allocator>
|
|
class service_factory<demuxer_service<Allocator> >
|
|
{
|
|
public:
|
|
/// Default constructor.
|
|
service_factory()
|
|
{
|
|
}
|
|
|
|
/// Construct with a specified allocator.
|
|
explicit service_factory(const Allocator& allocator)
|
|
: allocator_(allocator)
|
|
{
|
|
}
|
|
|
|
/// Create a service with the specified owner.
|
|
template <typename Owner>
|
|
demuxer_service<Allocator>* create(Owner& owner)
|
|
{
|
|
return new demuxer_service<Allocator>(owner, allocator_);
|
|
}
|
|
|
|
private:
|
|
// The allocator to be passed to the service.
|
|
Allocator allocator_;
|
|
};
|
|
|
|
#endif // !defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION)
|
|
|
|
} // namespace asio
|
|
} // namespace boost
|
|
|
|
#include <boost/asio/detail/pop_options.hpp>
|
|
|
|
#endif // BOOST_ASIO_DEMUXER_SERVICE_HPP
|