A Discrete-Event Network Simulator
API
Loading...
Searching...
No Matches
event-garbage-collector.cc
Go to the documentation of this file.
1/*
2 * Copyright (c) 2007 INESC Porto
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation;
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program; if not, write to the Free Software
15 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 *
17 * Author: Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
18 */
20
21/**
22 * \file
23 * \ingroup core-helpers
24 * \ingroup events
25 * ns3::EventGarbageCollector implementation.
26 */
27
28namespace ns3
29{
30
32 : m_nextCleanupSize(CHUNK_INIT_SIZE),
33 m_events()
34{
35}
36
37void
39{
40 m_events.insert(event);
41 if (m_events.size() >= m_nextCleanupSize)
42 {
43 Cleanup();
44 }
45}
46
47void
49{
51}
52
53void
55{
56 while (m_nextCleanupSize > m_events.size())
57 {
59 }
60 Grow();
61}
62
63// Called when a new event was added and
64// the cleanup limit was exceeded in consequence.
65void
67{
68 for (auto iter = m_events.begin(); iter != m_events.end();)
69 {
70 if ((*iter).IsExpired())
71 {
72 m_events.erase(iter++);
73 }
74 else
75 {
76 break; // EventIds are sorted by timestamp => further events are not expired for sure
77 }
78 }
79
80 // If after cleanup we are still over the limit, increase the limit.
81 if (m_events.size() >= m_nextCleanupSize)
82 {
83 Grow();
84 }
85 else
86 {
87 Shrink();
88 }
89}
90
92{
93 for (const auto& event : m_events)
94 {
95 Simulator::Cancel(event);
96 }
97}
98
99} // namespace ns3
void Track(EventId event)
Tracks a new event.
const EventList::size_type CHUNK_MAX_SIZE
Threshold to switch from exponential to linear growth in the cleanup frequency.
EventList m_events
The tracked event list.
void Cleanup()
Called when a new event was added and the cleanup limit was exceeded in consequence.
EventList::size_type m_nextCleanupSize
Batch size for cleanup.
void Grow()
Grow the cleanup limit.
void Shrink()
Shrink the cleanup limit Reduce the cleanup size by factors of two until less than the current event ...
An identifier for simulation events.
Definition: event-id.h:55
static void Cancel(const EventId &id)
Set the cancel bit on this event: the event's associated function will not be invoked when it expires...
Definition: simulator.cc:285
ns3::EventGarbageCollector declaration.
Every class exported by the ns3 library is enclosed in the ns3 namespace.