blob: 2fbcf21cd8b06d0bf430c244edd1ce22453263e0 [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/**
Junxiao Shid50f2b42016-08-10 02:59:59 +00003 * Copyright (c) 2013-2016 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
Spyridon Mastorakis88237852015-08-13 18:27:49 -070028#include "ns3/simulator.h"
29
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -070030#include <set>
31
Alexander Afanasyevf6468892014-01-29 01:04:14 -080032namespace ndn {
Alexander Afanasyev9a9952f2015-01-28 19:06:48 -080033namespace util {
34namespace scheduler {
Alexander Afanasyevf6468892014-01-29 01:04:14 -080035
Spyridon Mastorakis88237852015-08-13 18:27:49 -070036/** \class EventId
37 * \brief Opaque type (shared_ptr) representing ID of a scheduled event
Alexander Afanasyevf6468892014-01-29 01:04:14 -080038 */
Spyridon Mastorakis88237852015-08-13 18:27:49 -070039typedef std::shared_ptr<ns3::EventId> EventId;
Alexander Afanasyevf6468892014-01-29 01:04:14 -080040
41/**
42 * \brief Generic scheduler
43 */
Junxiao Shid50f2b42016-08-10 02:59:59 +000044class Scheduler : noncopyable
Alexander Afanasyevf6468892014-01-29 01:04:14 -080045{
46public:
Junxiao Shid50f2b42016-08-10 02:59:59 +000047 /**
48 * \deprecated use EventCallback
49 */
Spyridon Mastorakis88237852015-08-13 18:27:49 -070050 typedef function<void()> Event;
Alexander Afanasyevf6468892014-01-29 01:04:14 -080051
Junxiao Shid50f2b42016-08-10 02:59:59 +000052 explicit
Alexander Afanasyevf6468892014-01-29 01:04:14 -080053 Scheduler(boost::asio::io_service& ioService);
54
Spyridon Mastorakis88237852015-08-13 18:27:49 -070055 ~Scheduler();
56
Alexander Afanasyevf6468892014-01-29 01:04:14 -080057 /**
Junxiao Shid50f2b42016-08-10 02:59:59 +000058 * \brief Schedule a one-time event after the specified delay
Junxiao Shi86dfa532016-08-10 03:00:11 +000059 * \return EventId that can be used to cancel the scheduled event
Alexander Afanasyevf6468892014-01-29 01:04:14 -080060 */
61 EventId
Spyridon Mastorakis88237852015-08-13 18:27:49 -070062 scheduleEvent(const time::nanoseconds& after, const Event& event);
Alexander Afanasyevf6468892014-01-29 01:04:14 -080063
64 /**
Junxiao Shid50f2b42016-08-10 02:59:59 +000065 * \brief Cancel a scheduled event
Alexander Afanasyevf6468892014-01-29 01:04:14 -080066 */
67 void
68 cancelEvent(const EventId& eventId);
69
Alexander Afanasyev7ae4bf52014-07-11 17:12:41 -070070 /**
71 * \brief Cancel all scheduled events
72 */
73 void
74 cancelAllEvents();
75
Alexander Afanasyevf6468892014-01-29 01:04:14 -080076private:
Spyridon Mastorakis88237852015-08-13 18:27:49 -070077 struct EventInfo
78 {
79 EventInfo(const time::nanoseconds& after, const Event& event);
Junxiao Shid50f2b42016-08-10 02:59:59 +000080
Spyridon Mastorakis88237852015-08-13 18:27:49 -070081 EventInfo(const time::steady_clock::TimePoint& when, const EventInfo& previousEvent);
Alexander Afanasyevdfa52c42014-04-24 21:10:11 -070082
Spyridon Mastorakis88237852015-08-13 18:27:49 -070083 bool
84 operator <=(const EventInfo& other) const
85 {
86 return this->m_scheduledTime <= other.m_scheduledTime;
87 }
88
89 bool
90 operator <(const EventInfo& other) const
91 {
92 return this->m_scheduledTime < other.m_scheduledTime;
93 }
94
95 time::nanoseconds
96 expiresFromNow() const;
97
98 time::steady_clock::TimePoint m_scheduledTime;
99 Event m_event;
100 mutable EventId m_eventId;
101 };
102
103 typedef std::multiset<EventId> EventQueue;
104
105 EventQueue m_events;
106 EventQueue::iterator m_scheduledEvent;
Alexander Afanasyevf6468892014-01-29 01:04:14 -0800107};
108
Alexander Afanasyev9a9952f2015-01-28 19:06:48 -0800109} // namespace scheduler
110
111using util::scheduler::Scheduler;
112
113} // namespace util
114
115// for backwards compatibility
116using util::scheduler::Scheduler;
117using util::scheduler::EventId;
118
Alexander Afanasyevf6468892014-01-29 01:04:14 -0800119} // namespace ndn
120
121#endif // NDN_UTIL_SCHEDULER_HPP