blob: bf6ada53aa203064f656f5bf7d04677018377f01 [file] [log] [blame]
Alexander Afanasyevc169a812014-05-20 20:37:29 -04001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Alexander Afanasyevf6468892014-01-29 01:04:14 -08002/**
Alexander Afanasyevc169a812014-05-20 20:37:29 -04003 * Copyright (c) 2013-2014 Regents of the University of California.
Alexander Afanasyevdfa52c42014-04-24 21:10:11 -07004 *
5 * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions).
Alexander Afanasyevdfa52c42014-04-24 21:10:11 -07006 *
Alexander Afanasyevc169a812014-05-20 20:37:29 -04007 * 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 Afanasyevf6468892014-01-29 01:04:14 -080020 */
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 Afanasyev258ec2b2014-05-14 16:15:37 -070028#include <set>
29
Alexander Afanasyevf6468892014-01-29 01:04:14 -080030namespace ndn {
31
32struct EventIdImpl; ///< \brief Private storage of information about the event
33/**
34 * \brief Opaque type (shared_ptr) representing ID of the scheduled event
35 */
36typedef shared_ptr<EventIdImpl> EventId;
37
38/**
39 * \brief Generic scheduler
40 */
41class Scheduler
42{
43public:
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 Afanasyevaa0e7da2014-03-17 14:37:33 -070053 scheduleEvent(const time::nanoseconds& after, const Event& event);
Alexander Afanasyevf6468892014-01-29 01:04:14 -080054
55 /**
Alexander Afanasyevf6468892014-01-29 01:04:14 -080056 * \brief Cancel scheduled event
57 */
58 void
59 cancelEvent(const EventId& eventId);
60
61private:
62 void
63 onEvent(const boost::system::error_code& code);
Alexander Afanasyevdfa52c42014-04-24 21:10:11 -070064
Alexander Afanasyevf6468892014-01-29 01:04:14 -080065private:
Alexander Afanasyevf6468892014-01-29 01:04:14 -080066 struct EventInfo
67 {
Alexander Afanasyev72a11782014-06-19 13:46:57 -070068 EventInfo(const time::nanoseconds& after, const Event& event);
Alexander Afanasyevaa0e7da2014-03-17 14:37:33 -070069
70 EventInfo(const time::steady_clock::TimePoint& when, const EventInfo& previousEvent);
Alexander Afanasyevf6468892014-01-29 01:04:14 -080071
72 bool
73 operator <=(const EventInfo& other) const
74 {
75 return this->m_scheduledTime <= other.m_scheduledTime;
76 }
77
78 bool
79 operator <(const EventInfo& other) const
80 {
81 return this->m_scheduledTime < other.m_scheduledTime;
82 }
83
Alexander Afanasyevaa0e7da2014-03-17 14:37:33 -070084 time::nanoseconds
Alexander Afanasyevf6468892014-01-29 01:04:14 -080085 expiresFromNow() const;
Alexander Afanasyevdfa52c42014-04-24 21:10:11 -070086
Alexander Afanasyevaa0e7da2014-03-17 14:37:33 -070087 time::steady_clock::TimePoint m_scheduledTime;
Alexander Afanasyevf6468892014-01-29 01:04:14 -080088 Event m_event;
89 mutable EventId m_eventId;
90 };
91
92 typedef std::multiset<EventInfo> EventQueue;
93 friend struct EventIdImpl;
94
95 EventQueue m_events;
96 EventQueue::iterator m_scheduledEvent;
Alexander Afanasyevaa0e7da2014-03-17 14:37:33 -070097 monotonic_deadline_timer m_deadlineTimer;
Yingdi Yuf2a82092014-02-03 16:49:15 -080098
99 bool m_isEventExecuting;
Alexander Afanasyevf6468892014-01-29 01:04:14 -0800100};
101
102} // namespace ndn
103
104#endif // NDN_UTIL_SCHEDULER_HPP