A Discrete-Event Network Simulator
Home
Tutorials ▼
English
Documentation ▼
Installation
Manual
Models
Contributing
Wiki
Development ▼
API Docs
Issue Tracker
Merge Requests
API
event-garbage-collector.h
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
*/
19
#ifndef EVENT_GARBAGE_COLLECTOR_H
20
#define EVENT_GARBAGE_COLLECTOR_H
21
22
#include "ns3/event-id.h"
23
#include "ns3/simulator.h"
24
25
#include <set>
26
34
namespace
ns3
35
{
36
47
class
EventGarbageCollector
48
{
49
public
:
50
EventGarbageCollector
();
51
56
void
Track
(
EventId
event);
57
58
~EventGarbageCollector
();
59
60
private
:
62
typedef
std::multiset<EventId>
EventList
;
63
65
const
typename
EventList::size_type
CHUNK_INIT_SIZE
= 8;
70
const
typename
EventList::size_type
CHUNK_MAX_SIZE
= 128;
71
72
EventList::size_type
m_nextCleanupSize
;
73
EventList
m_events
;
74
79
void
Cleanup
();
86
void
Grow
();
92
void
Shrink
();
93
};
94
95
}
// namespace ns3
96
97
#endif
/* EVENT_GARBAGE_COLLECTOR_H */
ns3::EventGarbageCollector
An object that tracks scheduled events and automatically cancels them when it is destroyed.
Definition:
event-garbage-collector.h:48
ns3::EventGarbageCollector::CHUNK_INIT_SIZE
const EventList::size_type CHUNK_INIT_SIZE
Initial threshold for cleaning the event list.
Definition:
event-garbage-collector.h:65
ns3::EventGarbageCollector::Track
void Track(EventId event)
Tracks a new event.
Definition:
event-garbage-collector.cc:38
ns3::EventGarbageCollector::CHUNK_MAX_SIZE
const EventList::size_type CHUNK_MAX_SIZE
Threshold to switch from exponential to linear growth in the cleanup frequency.
Definition:
event-garbage-collector.h:70
ns3::EventGarbageCollector::m_events
EventList m_events
The tracked event list.
Definition:
event-garbage-collector.h:73
ns3::EventGarbageCollector::Cleanup
void Cleanup()
Called when a new event was added and the cleanup limit was exceeded in consequence.
Definition:
event-garbage-collector.cc:66
ns3::EventGarbageCollector::m_nextCleanupSize
EventList::size_type m_nextCleanupSize
Batch size for cleanup.
Definition:
event-garbage-collector.h:72
ns3::EventGarbageCollector::Grow
void Grow()
Grow the cleanup limit.
Definition:
event-garbage-collector.cc:48
ns3::EventGarbageCollector::~EventGarbageCollector
~EventGarbageCollector()
Definition:
event-garbage-collector.cc:91
ns3::EventGarbageCollector::Shrink
void Shrink()
Shrink the cleanup limit Reduce the cleanup size by factors of two until less than the current event ...
Definition:
event-garbage-collector.cc:54
ns3::EventGarbageCollector::EventGarbageCollector
EventGarbageCollector()
Definition:
event-garbage-collector.cc:31
ns3::EventGarbageCollector::EventList
std::multiset< EventId > EventList
Event list container.
Definition:
event-garbage-collector.h:62
ns3::EventId
An identifier for simulation events.
Definition:
event-id.h:55
ns3
Every class exported by the ns3 library is enclosed in the ns3 namespace.
src
core
helper
event-garbage-collector.h
Generated on Sun Mar 3 2024 17:10:55 for ns-3 by
1.9.1