blob: 9852fb22ffd25b6fa58adea9ca8dafc020d6bfaf [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#include "scheduler.hpp"
Junxiao Shi86dfa532016-08-10 03:00:11 +000023#include <boost/scope_exit.hpp>
Alexander Afanasyevf6468892014-01-29 01:04:14 -080024
Spyridon Mastorakis88237852015-08-13 18:27:49 -070025namespace ns3 {
26
27/// @cond include_hidden
28
29template<>
30struct EventMemberImplObjTraits<std::function<void()>> {
31 typedef std::function<void()> T;
32 static T&
33 GetReference(T& p)
34 {
35 return p;
36 }
37};
38
39/// @endcond
40
41} // namespace ns3
42
Alexander Afanasyevf6468892014-01-29 01:04:14 -080043namespace ndn {
Alexander Afanasyev9a9952f2015-01-28 19:06:48 -080044namespace util {
45namespace scheduler {
Alexander Afanasyevf6468892014-01-29 01:04:14 -080046
Alexander Afanasyevf6468892014-01-29 01:04:14 -080047Scheduler::Scheduler(boost::asio::io_service& ioService)
Spyridon Mastorakis88237852015-08-13 18:27:49 -070048 : m_scheduledEvent(m_events.end())
Alexander Afanasyevf6468892014-01-29 01:04:14 -080049{
50}
51
Spyridon Mastorakis88237852015-08-13 18:27:49 -070052Scheduler::~Scheduler()
53{
54 cancelAllEvents();
55}
56
Alexander Afanasyevf6468892014-01-29 01:04:14 -080057EventId
Spyridon Mastorakis88237852015-08-13 18:27:49 -070058Scheduler::scheduleEvent(const time::nanoseconds& after, const Event& event)
Alexander Afanasyevf6468892014-01-29 01:04:14 -080059{
Spyridon Mastorakis88237852015-08-13 18:27:49 -070060 EventId eventId = std::make_shared<ns3::EventId>();
61 weak_ptr<ns3::EventId> eventWeak = eventId;
62 std::function<void()> eventWithCleanup = [this, event, eventWeak] () {
63 event();
64 shared_ptr<ns3::EventId> eventId = eventWeak.lock();
65 if (eventId != nullptr) {
66 this->m_events.erase(eventId); // remove the event from the set after it is executed
67 }
68 };
Alexander Afanasyevf73f0632014-05-12 18:02:37 -070069
Spyridon Mastorakis88237852015-08-13 18:27:49 -070070 ns3::EventId id = ns3::Simulator::Schedule(ns3::NanoSeconds(after.count()),
71 &std::function<void()>::operator(), eventWithCleanup);
72 *eventId = std::move(id);
73 m_events.insert(eventId);
Yingdi Yuf2a82092014-02-03 16:49:15 -080074
Spyridon Mastorakis88237852015-08-13 18:27:49 -070075 return eventId;
Alexander Afanasyevf6468892014-01-29 01:04:14 -080076}
Alexander Afanasyevdfa52c42014-04-24 21:10:11 -070077
Alexander Afanasyevf6468892014-01-29 01:04:14 -080078void
79Scheduler::cancelEvent(const EventId& eventId)
80{
Spyridon Mastorakis88237852015-08-13 18:27:49 -070081 if (eventId != nullptr) {
82 ns3::Simulator::Remove(*eventId);
83 const_cast<EventId&>(eventId).reset();
84 m_events.erase(eventId);
Junxiao Shid50f2b42016-08-10 02:59:59 +000085 }
Alexander Afanasyevf6468892014-01-29 01:04:14 -080086}
87
88void
Alexander Afanasyev7ae4bf52014-07-11 17:12:41 -070089Scheduler::cancelAllEvents()
90{
Spyridon Mastorakis88237852015-08-13 18:27:49 -070091 for (auto i = m_events.begin(); i != m_events.end(); ) {
92 auto next = i;
93 ++next; // ns3::Simulator::Remove can call cancelEvent
94 if ((*i) != nullptr) {
95 ns3::Simulator::Remove((**i));
96 const_cast<EventId&>(*i).reset();
Alexander Afanasyevf6468892014-01-29 01:04:14 -080097 }
Spyridon Mastorakis88237852015-08-13 18:27:49 -070098 i = next;
Junxiao Shid50f2b42016-08-10 02:59:59 +000099 }
Spyridon Mastorakis88237852015-08-13 18:27:49 -0700100 m_events.clear();
Alexander Afanasyevf6468892014-01-29 01:04:14 -0800101}
102
Alexander Afanasyev9a9952f2015-01-28 19:06:48 -0800103} // namespace scheduler
104} // namespace util
Alexander Afanasyevf6468892014-01-29 01:04:14 -0800105} // namespace ndn