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 | /** |
Junxiao Shi | d50f2b4 | 2016-08-10 02:59:59 +0000 | [diff] [blame] | 3 | * Copyright (c) 2013-2016 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 | #include "scheduler.hpp" |
Junxiao Shi | 86dfa53 | 2016-08-10 03:00:11 +0000 | [diff] [blame] | 23 | #include <boost/scope_exit.hpp> |
Alexander Afanasyev | f646889 | 2014-01-29 01:04:14 -0800 | [diff] [blame] | 24 | |
Spyridon Mastorakis | 8823785 | 2015-08-13 18:27:49 -0700 | [diff] [blame] | 25 | namespace ns3 { |
| 26 | |
| 27 | /// @cond include_hidden |
| 28 | |
| 29 | template<> |
| 30 | struct 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 Afanasyev | f646889 | 2014-01-29 01:04:14 -0800 | [diff] [blame] | 43 | namespace ndn { |
Alexander Afanasyev | 9a9952f | 2015-01-28 19:06:48 -0800 | [diff] [blame] | 44 | namespace util { |
| 45 | namespace scheduler { |
Alexander Afanasyev | f646889 | 2014-01-29 01:04:14 -0800 | [diff] [blame] | 46 | |
Alexander Afanasyev | f646889 | 2014-01-29 01:04:14 -0800 | [diff] [blame] | 47 | Scheduler::Scheduler(boost::asio::io_service& ioService) |
Spyridon Mastorakis | 8823785 | 2015-08-13 18:27:49 -0700 | [diff] [blame] | 48 | : m_scheduledEvent(m_events.end()) |
Alexander Afanasyev | f646889 | 2014-01-29 01:04:14 -0800 | [diff] [blame] | 49 | { |
| 50 | } |
| 51 | |
Spyridon Mastorakis | 8823785 | 2015-08-13 18:27:49 -0700 | [diff] [blame] | 52 | Scheduler::~Scheduler() |
| 53 | { |
| 54 | cancelAllEvents(); |
| 55 | } |
| 56 | |
Alexander Afanasyev | f646889 | 2014-01-29 01:04:14 -0800 | [diff] [blame] | 57 | EventId |
Spyridon Mastorakis | 8823785 | 2015-08-13 18:27:49 -0700 | [diff] [blame] | 58 | Scheduler::scheduleEvent(const time::nanoseconds& after, const Event& event) |
Alexander Afanasyev | f646889 | 2014-01-29 01:04:14 -0800 | [diff] [blame] | 59 | { |
Spyridon Mastorakis | 8823785 | 2015-08-13 18:27:49 -0700 | [diff] [blame] | 60 | 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 Afanasyev | f73f063 | 2014-05-12 18:02:37 -0700 | [diff] [blame] | 69 | |
Spyridon Mastorakis | 8823785 | 2015-08-13 18:27:49 -0700 | [diff] [blame] | 70 | 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 Yu | f2a8209 | 2014-02-03 16:49:15 -0800 | [diff] [blame] | 74 | |
Spyridon Mastorakis | 8823785 | 2015-08-13 18:27:49 -0700 | [diff] [blame] | 75 | return eventId; |
Alexander Afanasyev | f646889 | 2014-01-29 01:04:14 -0800 | [diff] [blame] | 76 | } |
Alexander Afanasyev | dfa52c4 | 2014-04-24 21:10:11 -0700 | [diff] [blame] | 77 | |
Alexander Afanasyev | f646889 | 2014-01-29 01:04:14 -0800 | [diff] [blame] | 78 | void |
| 79 | Scheduler::cancelEvent(const EventId& eventId) |
| 80 | { |
Spyridon Mastorakis | 8823785 | 2015-08-13 18:27:49 -0700 | [diff] [blame] | 81 | if (eventId != nullptr) { |
| 82 | ns3::Simulator::Remove(*eventId); |
| 83 | const_cast<EventId&>(eventId).reset(); |
| 84 | m_events.erase(eventId); |
Junxiao Shi | d50f2b4 | 2016-08-10 02:59:59 +0000 | [diff] [blame] | 85 | } |
Alexander Afanasyev | f646889 | 2014-01-29 01:04:14 -0800 | [diff] [blame] | 86 | } |
| 87 | |
| 88 | void |
Alexander Afanasyev | 7ae4bf5 | 2014-07-11 17:12:41 -0700 | [diff] [blame] | 89 | Scheduler::cancelAllEvents() |
| 90 | { |
Spyridon Mastorakis | 8823785 | 2015-08-13 18:27:49 -0700 | [diff] [blame] | 91 | 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 Afanasyev | f646889 | 2014-01-29 01:04:14 -0800 | [diff] [blame] | 97 | } |
Spyridon Mastorakis | 8823785 | 2015-08-13 18:27:49 -0700 | [diff] [blame] | 98 | i = next; |
Junxiao Shi | d50f2b4 | 2016-08-10 02:59:59 +0000 | [diff] [blame] | 99 | } |
Spyridon Mastorakis | 8823785 | 2015-08-13 18:27:49 -0700 | [diff] [blame] | 100 | m_events.clear(); |
Alexander Afanasyev | f646889 | 2014-01-29 01:04:14 -0800 | [diff] [blame] | 101 | } |
| 102 | |
Alexander Afanasyev | 9a9952f | 2015-01-28 19:06:48 -0800 | [diff] [blame] | 103 | } // namespace scheduler |
| 104 | } // namespace util |
Alexander Afanasyev | f646889 | 2014-01-29 01:04:14 -0800 | [diff] [blame] | 105 | } // namespace ndn |