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
uinteger-16-probe.cc
Go to the documentation of this file.
1
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2
/*
3
* Copyright (c) 2011 Bucknell University
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: L. Felipe Perrone (perrone@bucknell.edu)
19
* Tiago G. Rodrigues (tgr002@bucknell.edu)
20
*
21
* Modified by: Mitch Watrous (watrous@u.washington.edu)
22
*/
23
24
#include "ns3/uinteger-16-probe.h"
25
#include "ns3/log.h"
26
#include "ns3/names.h"
27
#include "ns3/config.h"
28
#include "ns3/trace-source-accessor.h"
29
30
NS_LOG_COMPONENT_DEFINE
(
"Uinteger16Probe"
);
31
32
namespace
ns3 {
33
34
NS_OBJECT_ENSURE_REGISTERED
(Uinteger16Probe);
35
36
TypeId
37
Uinteger16Probe::GetTypeId
()
38
{
39
static
TypeId
tid =
TypeId
(
"ns3::Uinteger16Probe"
)
40
.
SetParent
<
Probe
> ()
41
.AddConstructor<Uinteger16Probe> ()
42
.AddTraceSource (
"Output"
,
43
"The uint16_t that serves as output for this probe"
,
44
MakeTraceSourceAccessor
(&
Uinteger16Probe::m_output
))
45
;
46
return
tid;
47
}
48
49
Uinteger16Probe::Uinteger16Probe
()
50
{
51
NS_LOG_FUNCTION
(
this
);
52
m_output
= 0;
53
}
54
55
Uinteger16Probe::~Uinteger16Probe
()
56
{
57
NS_LOG_FUNCTION
(
this
);
58
}
59
60
uint16_t
61
Uinteger16Probe::GetValue
(
void
)
const
62
{
63
NS_LOG_FUNCTION
(
this
);
64
return
m_output
;
65
}
66
void
67
Uinteger16Probe::SetValue
(uint16_t newVal)
68
{
69
NS_LOG_FUNCTION
(
this
<< newVal);
70
m_output
= newVal;
71
}
72
73
void
74
Uinteger16Probe::SetValueByPath
(std::string path, uint16_t newVal)
75
{
76
NS_LOG_FUNCTION
(path << newVal);
77
Ptr<Uinteger16Probe>
probe = Names::Find<Uinteger16Probe> (path);
78
NS_ASSERT_MSG
(probe,
"Error: Can't find probe for path "
<< path);
79
probe->SetValue (newVal);
80
}
81
82
bool
83
Uinteger16Probe::ConnectByObject
(std::string traceSource,
Ptr<Object>
obj)
84
{
85
NS_LOG_FUNCTION
(
this
<< traceSource << obj);
86
NS_LOG_DEBUG
(
"Name of probe (if any) in names database: "
<<
Names::FindPath
(obj));
87
bool
connected = obj->
TraceConnectWithoutContext
(traceSource,
MakeCallback
(&
ns3::Uinteger16Probe::TraceSink
,
this
));
88
return
connected;
89
}
90
91
void
92
Uinteger16Probe::ConnectByPath
(std::string path)
93
{
94
NS_LOG_FUNCTION
(
this
<< path);
95
NS_LOG_DEBUG
(
"Name of probe to search for in config database: "
<< path);
96
Config::ConnectWithoutContext
(path,
MakeCallback
(&
ns3::Uinteger16Probe::TraceSink
,
this
));
97
}
98
99
void
100
Uinteger16Probe::TraceSink
(uint16_t oldData, uint16_t newData)
101
{
102
NS_LOG_FUNCTION
(
this
<< oldData << newData);
103
if
(
IsEnabled
())
104
{
105
m_output
= newData;
106
}
107
}
108
109
}
// namespace ns3
src
stats
model
uinteger-16-probe.cc
Generated on Fri Aug 30 2013 01:43:02 for ns-3 by
1.8.1.2