A Discrete-Event Network Simulator
API
watchdog.cc
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#include "watchdog.h"
21#include "log.h"
22
23
30namespace ns3 {
31
32NS_LOG_COMPONENT_DEFINE ("Watchdog");
33
35 : m_impl (0),
36 m_event (),
37 m_end (MicroSeconds (0))
38{
40}
41
43{
44 NS_LOG_FUNCTION (this);
45 m_event.Cancel ();
46 delete m_impl;
47}
48
49void
51{
52 NS_LOG_FUNCTION (this << delay);
53 Time end = Simulator::Now () + delay;
54 m_end = std::max (m_end, end);
55 if (m_event.IsRunning ())
56 {
57 return;
58 }
60}
61
62void
64{
65 NS_LOG_FUNCTION (this);
66 if (m_end == Simulator::Now ())
67 {
68 m_impl->Invoke ();
69 }
70 else
71 {
73 }
74}
75
76} // namespace ns3
77
#define max(a, b)
Definition: 80211b.c:43
bool IsRunning(void) const
This method is syntactic sugar for !IsExpired().
Definition: event-id.cc:71
void Cancel(void)
This method is syntactic sugar for the ns3::Simulator::Cancel method.
Definition: event-id.cc:53
static EventId Schedule(Time const &delay, FUNC f, Ts &&... args)
Schedule an event to expire after delay.
Definition: simulator.h:556
static Time Now(void)
Return the current simulation virtual time.
Definition: simulator.cc:195
Simulation virtual time values and global simulation resolution.
Definition: nstime.h:103
virtual void Invoke(void)=0
Invoke the expire function.
void Expire(void)
Internal callback invoked when the timer expires.
Definition: watchdog.cc:63
EventId m_event
The future event scheduled to expire the timer.
Definition: watchdog.h:121
~Watchdog()
Destructor.
Definition: watchdog.cc:42
Watchdog()
Constructor.
Definition: watchdog.cc:34
void Ping(Time delay)
Delay the timer.
Definition: watchdog.cc:50
TimerImpl * m_impl
The timer implementation, which contains the bound callback function and arguments.
Definition: watchdog.h:119
Time m_end
The absolute time when the timer will expire.
Definition: watchdog.h:123
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
Definition: log.h:205
#define NS_LOG_FUNCTION_NOARGS()
Output the name of the function.
#define NS_LOG_FUNCTION(parameters)
If log level LOG_FUNCTION is enabled, this macro will output all input parameters separated by ",...
Time Now(void)
create an ns3::Time instance which contains the current simulation time.
Definition: simulator.cc:287
Time MicroSeconds(uint64_t value)
Construct a Time in the indicated unit.
Definition: nstime.h:1260
Debug message logging.
Every class exported by the ns3 library is enclosed in the ns3 namespace.
ns3::Watchdog timer class declaration.