A Discrete-Event Network Simulator
Home
Tutorials ▼
English
Portuguese
Docs ▼
Wiki
Manual
Models
Develop ▼
API
Bugs
API
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Groups
Pages
simple-ref-count.h
Go to the documentation of this file.
1
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2
/*
3
* Copyright (c) 2007 Georgia Tech Research Corporation, 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
* Authors: George Riley <riley@ece.gatech.edu>
19
* Gustavo Carneiro <gjcarneiro@gmail.com>,
20
* Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
21
*/
22
#ifndef SIMPLE_REF_COUNT_H
23
#define SIMPLE_REF_COUNT_H
24
25
#include "
empty.h
"
26
#include "
default-deleter.h
"
27
#include "
assert.h
"
28
#include <stdint.h>
29
#include <limits>
30
31
namespace
ns3 {
32
63
template
<
typename
T,
typename
PARENT = empty,
typename
DELETER = DefaultDeleter<T> >
64
class
SimpleRefCount
:
public
PARENT
65
{
66
public
:
70
SimpleRefCount
()
71
:
m_count
(1)
72
{}
76
SimpleRefCount
(
const
SimpleRefCount
&o)
77
:
m_count
(1)
78
{}
82
SimpleRefCount
&
operator =
(
const
SimpleRefCount
&o)
83
{
84
return
*
this
;
85
}
92
inline
void
Ref
(
void
)
const
93
{
94
NS_ASSERT
(
m_count
< std::numeric_limits<uint32_t>::max());
95
m_count
++;
96
}
103
inline
void
Unref
(
void
)
const
104
{
105
m_count
--;
106
if
(
m_count
== 0)
107
{
108
DELETER::Delete (static_cast<T*> (const_cast<SimpleRefCount *> (
this
)));
109
}
110
}
111
116
inline
uint32_t
GetReferenceCount
(
void
)
const
117
{
118
return
m_count
;
119
}
120
124
static
void
Cleanup
(
void
) {}
125
private
:
126
// Note we make this mutable so that the const methods can still
127
// change it.
128
mutable
uint32_t
m_count
;
129
};
130
131
}
// namespace ns3
132
133
#endif
/* SIMPLE_REF_COUNT_H */
ns3::SimpleRefCount::SimpleRefCount
SimpleRefCount(const SimpleRefCount &o)
Copy constructor.
Definition:
simple-ref-count.h:76
ns3::SimpleRefCount::operator=
SimpleRefCount & operator=(const SimpleRefCount &o)
Assignment.
Definition:
simple-ref-count.h:82
NS_ASSERT
#define NS_ASSERT(condition)
Definition:
assert.h:64
ns3::SimpleRefCount::GetReferenceCount
uint32_t GetReferenceCount(void) const
Get the reference count of the object.
Definition:
simple-ref-count.h:116
assert.h
ns3::SimpleRefCount::Unref
void Unref(void) const
Decrement the reference count.
Definition:
simple-ref-count.h:103
ns3::SimpleRefCount::SimpleRefCount
SimpleRefCount()
Constructor.
Definition:
simple-ref-count.h:70
ns3::SimpleRefCount::Ref
void Ref(void) const
Increment the reference count.
Definition:
simple-ref-count.h:92
default-deleter.h
empty.h
ns3::SimpleRefCount::m_count
uint32_t m_count
Definition:
simple-ref-count.h:128
ns3::SimpleRefCount::Cleanup
static void Cleanup(void)
Noop.
Definition:
simple-ref-count.h:124
ns3::SimpleRefCount
A template-based reference counting class.
Definition:
simple-ref-count.h:64
src
core
model
simple-ref-count.h
Generated on Sat Apr 19 2014 14:06:52 for ns-3 by
1.8.6