Alexander Afanasyev | c169a81 | 2014-05-20 20:37:29 -0400 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Alexander Afanasyev | f646889 | 2014-01-29 01:04:14 -0800 | [diff] [blame] | 2 | /** |
Alexander Afanasyev | c169a81 | 2014-05-20 20:37:29 -0400 | [diff] [blame] | 3 | * Copyright (c) 2013-2014 Regents of the University of California. |
Alexander Afanasyev | dfa52c4 | 2014-04-24 21:10:11 -0700 | [diff] [blame] | 4 | * |
| 5 | * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions). |
Alexander Afanasyev | dfa52c4 | 2014-04-24 21:10:11 -0700 | [diff] [blame] | 6 | * |
Alexander Afanasyev | c169a81 | 2014-05-20 20:37:29 -0400 | [diff] [blame] | 7 | * ndn-cxx library is free software: you can redistribute it and/or modify it under the |
| 8 | * terms of the GNU Lesser General Public License as published by the Free Software |
| 9 | * Foundation, either version 3 of the License, or (at your option) any later version. |
| 10 | * |
| 11 | * ndn-cxx library is distributed in the hope that it will be useful, but WITHOUT ANY |
| 12 | * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A |
| 13 | * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. |
| 14 | * |
| 15 | * You should have received copies of the GNU General Public License and GNU Lesser |
| 16 | * General Public License along with ndn-cxx, e.g., in COPYING.md file. If not, see |
| 17 | * <http://www.gnu.org/licenses/>. |
| 18 | * |
| 19 | * See AUTHORS.md for complete list of ndn-cxx authors and contributors. |
Alexander Afanasyev | f646889 | 2014-01-29 01:04:14 -0800 | [diff] [blame] | 20 | */ |
| 21 | |
| 22 | #ifndef NDN_UTIL_SCHEDULER_HPP |
| 23 | #define NDN_UTIL_SCHEDULER_HPP |
| 24 | |
| 25 | #include "../common.hpp" |
| 26 | #include "monotonic_deadline_timer.hpp" |
| 27 | |
Alexander Afanasyev | 258ec2b | 2014-05-14 16:15:37 -0700 | [diff] [blame] | 28 | #include <set> |
| 29 | |
Alexander Afanasyev | f646889 | 2014-01-29 01:04:14 -0800 | [diff] [blame] | 30 | namespace ndn { |
| 31 | |
| 32 | struct EventIdImpl; ///< \brief Private storage of information about the event |
| 33 | /** |
| 34 | * \brief Opaque type (shared_ptr) representing ID of the scheduled event |
| 35 | */ |
| 36 | typedef shared_ptr<EventIdImpl> EventId; |
| 37 | |
| 38 | /** |
| 39 | * \brief Generic scheduler |
| 40 | */ |
| 41 | class Scheduler |
| 42 | { |
| 43 | public: |
| 44 | typedef function<void()> Event; |
| 45 | |
| 46 | Scheduler(boost::asio::io_service& ioService); |
| 47 | |
| 48 | /** |
| 49 | * \brief Schedule one time event after the specified delay |
| 50 | * \returns EventId that can be used to cancel the scheduled event |
| 51 | */ |
| 52 | EventId |
Alexander Afanasyev | aa0e7da | 2014-03-17 14:37:33 -0700 | [diff] [blame] | 53 | scheduleEvent(const time::nanoseconds& after, const Event& event); |
Alexander Afanasyev | f646889 | 2014-01-29 01:04:14 -0800 | [diff] [blame] | 54 | |
| 55 | /** |
Alexander Afanasyev | f646889 | 2014-01-29 01:04:14 -0800 | [diff] [blame] | 56 | * \brief Cancel scheduled event |
| 57 | */ |
| 58 | void |
| 59 | cancelEvent(const EventId& eventId); |
| 60 | |
Alexander Afanasyev | 7ae4bf5 | 2014-07-11 17:12:41 -0700 | [diff] [blame] | 61 | /** |
| 62 | * \brief Cancel all scheduled events |
| 63 | */ |
| 64 | void |
| 65 | cancelAllEvents(); |
| 66 | |
Alexander Afanasyev | f646889 | 2014-01-29 01:04:14 -0800 | [diff] [blame] | 67 | private: |
| 68 | void |
| 69 | onEvent(const boost::system::error_code& code); |
Alexander Afanasyev | dfa52c4 | 2014-04-24 21:10:11 -0700 | [diff] [blame] | 70 | |
Alexander Afanasyev | f646889 | 2014-01-29 01:04:14 -0800 | [diff] [blame] | 71 | private: |
Alexander Afanasyev | f646889 | 2014-01-29 01:04:14 -0800 | [diff] [blame] | 72 | struct EventInfo |
| 73 | { |
Alexander Afanasyev | 72a1178 | 2014-06-19 13:46:57 -0700 | [diff] [blame] | 74 | EventInfo(const time::nanoseconds& after, const Event& event); |
Alexander Afanasyev | aa0e7da | 2014-03-17 14:37:33 -0700 | [diff] [blame] | 75 | |
| 76 | EventInfo(const time::steady_clock::TimePoint& when, const EventInfo& previousEvent); |
Alexander Afanasyev | f646889 | 2014-01-29 01:04:14 -0800 | [diff] [blame] | 77 | |
| 78 | bool |
| 79 | operator <=(const EventInfo& other) const |
| 80 | { |
| 81 | return this->m_scheduledTime <= other.m_scheduledTime; |
| 82 | } |
| 83 | |
| 84 | bool |
| 85 | operator <(const EventInfo& other) const |
| 86 | { |
| 87 | return this->m_scheduledTime < other.m_scheduledTime; |
| 88 | } |
| 89 | |
Alexander Afanasyev | aa0e7da | 2014-03-17 14:37:33 -0700 | [diff] [blame] | 90 | time::nanoseconds |
Alexander Afanasyev | f646889 | 2014-01-29 01:04:14 -0800 | [diff] [blame] | 91 | expiresFromNow() const; |
Alexander Afanasyev | dfa52c4 | 2014-04-24 21:10:11 -0700 | [diff] [blame] | 92 | |
Alexander Afanasyev | aa0e7da | 2014-03-17 14:37:33 -0700 | [diff] [blame] | 93 | time::steady_clock::TimePoint m_scheduledTime; |
Alexander Afanasyev | f646889 | 2014-01-29 01:04:14 -0800 | [diff] [blame] | 94 | Event m_event; |
| 95 | mutable EventId m_eventId; |
| 96 | }; |
| 97 | |
| 98 | typedef std::multiset<EventInfo> EventQueue; |
| 99 | friend struct EventIdImpl; |
| 100 | |
| 101 | EventQueue m_events; |
| 102 | EventQueue::iterator m_scheduledEvent; |
Alexander Afanasyev | aa0e7da | 2014-03-17 14:37:33 -0700 | [diff] [blame] | 103 | monotonic_deadline_timer m_deadlineTimer; |
Yingdi Yu | f2a8209 | 2014-02-03 16:49:15 -0800 | [diff] [blame] | 104 | |
| 105 | bool m_isEventExecuting; |
Alexander Afanasyev | f646889 | 2014-01-29 01:04:14 -0800 | [diff] [blame] | 106 | }; |
| 107 | |
| 108 | } // namespace ndn |
| 109 | |
| 110 | #endif // NDN_UTIL_SCHEDULER_HPP |