A Discrete-Event Network Simulator
API
simulation-singleton.h
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2007 INRIA
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License version 2 as
7  * published by the Free Software Foundation;
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17  *
18  * Author: Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
19  */
20 #ifndef SIMULATION_SINGLETON_H
21 #define SIMULATION_SINGLETON_H
22 
29 namespace ns3 {
30 
42 template <typename T>
44 {
45 public:
54  static T * Get (void);
55 
56 private:
57 
67  static T ** GetObject (void);
68 
70  static void DeleteObject (void);
71 
82 
92 };
93 
94 } // namespace ns3
95 
96 
97 /********************************************************************
98  * Implementation of the templates declared above.
99  ********************************************************************/
100 
101 #include "simulator.h"
102 
103 namespace ns3 {
104 
105 template <typename T>
106 T *
108 {
109  T ** ppobject = GetObject ();
110  return *ppobject;
111 }
112 
113 template <typename T>
114 T **
116 {
117  static T *pobject = 0;
118  if (pobject == 0)
119  {
120  pobject = new T ();
122  }
123  return &pobject;
124 }
125 
126 template <typename T>
127 void
129 {
130  T **ppobject = GetObject ();
131  delete (*ppobject);
132  *ppobject = 0;
133 }
134 
135 } // namespace ns3
136 
137 
138 #endif /* SIMULATION_SINGLETON_H */
This singleton class template ensures that the type for which we want a singleton has a lifetime boun...
ns3::Simulator declaration.
static EventId ScheduleDestroy(FUNC f, Ts &&... args)
Schedule an event to run at the end of the simulation, when Simulator::Destroy() is called...
Definition: simulator.h:606
static void DeleteObject(void)
Delete the static instance.
static T * Get(void)
Get a pointer to the singleton instance.
Every class exported by the ns3 library is enclosed in the ns3 namespace.
static T ** GetObject(void)
Get the singleton object, creating a new one if it doesn&#39;t exist yet.
SimulationSingleton< T > operator=(const SimulationSingleton< T > &)
Assignment.