1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- // Copyright (C) 2011-2015 Internet Systems Consortium, Inc. ("ISC")
- //
- // This Source Code Form is subject to the terms of the Mozilla Public
- // License, v. 2.0. If a copy of the MPL was not distributed with this
- // file, You can obtain one at http://mozilla.org/MPL/2.0/.
- #ifndef ASIOLINK_IO_SERVICE_H
- #define ASIOLINK_IO_SERVICE_H 1
- #include <boost/function.hpp>
- namespace boost {
- namespace asio {
- class io_service;
- }
- }
- namespace isc {
- namespace asiolink {
- class IOServiceImpl;
- /// \brief The \c IOService class is a wrapper for the ASIO \c io_service
- /// class.
- ///
- class IOService {
- ///
- /// \name Constructors and Destructor
- ///
- /// Note: The copy constructor and the assignment operator are
- /// intentionally defined as private, making this class non-copyable.
- //@{
- private:
- IOService(const IOService& source);
- IOService& operator=(const IOService& source);
- public:
- /// \brief The constructor
- IOService();
- /// \brief The destructor.
- ~IOService();
- //@}
- /// \brief Start the underlying event loop.
- ///
- /// This method does not return control to the caller until
- /// the \c stop() method is called via some handler.
- void run();
- /// \brief Run the underlying event loop for a single event.
- ///
- /// This method return control to the caller as soon as the
- /// first handler has completed. (If no handlers are ready when
- /// it is run, it will block until one is.)
- void run_one();
- /// \brief Run the underlying event loop for a ready events.
- ///
- /// This method executes handlers for all ready events and returns.
- /// It will return immediately if there are no ready events.
- void poll();
- /// \brief Stop the underlying event loop.
- ///
- /// This will return the control to the caller of the \c run() method.
- void stop();
- /// \brief Return the native \c io_service object used in this wrapper.
- ///
- /// This is a short term work around to support other Kea modules
- /// that share the same \c io_service with the authoritative server.
- /// It will eventually be removed once the wrapper interface is
- /// generalized.
- boost::asio::io_service& get_io_service();
- /// \brief Post a callback to the end of the queue.
- ///
- /// Requests the callback be called sometime later. It is not guaranteed
- /// by the underlying asio, but it can reasonably be expected the callback
- /// is put to the end of the callback queue. It is not called from within
- /// this function.
- ///
- /// It may be used to implement "background" work, for example (doing stuff
- /// by small bits that are called from time to time).
- void post(const boost::function<void ()>& callback);
- private:
- IOServiceImpl* io_impl_;
- };
- /// @brief Defines a smart pointer to an IOService instance.
- typedef boost::shared_ptr<IOService> IOServicePtr;
- } // namespace asiolink
- } // namespace isc
- #endif // ASIOLINK_IO_SERVICE_H
|