A Discrete-Event Network Simulator
API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
event-id.cc
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2005 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 "event-id.h"
21 #include "simulator.h"
22 #include "event-impl.h"
23 #include "log.h"
24 
25 NS_LOG_COMPONENT_DEFINE ("EventId");
26 
27 namespace ns3 {
28 
29 EventId::EventId ()
30  : m_eventImpl (0),
31  m_ts (0),
32  m_context (0),
33  m_uid (0)
34 {
35  NS_LOG_FUNCTION (this);
36 }
37 
38 EventId::EventId (const Ptr<EventImpl> &impl, uint64_t ts, uint32_t context, uint32_t uid)
39  : m_eventImpl (impl),
40  m_ts (ts),
41  m_context (context),
42  m_uid (uid)
43 {
44  NS_LOG_FUNCTION (this << impl << ts << context << uid);
45 }
46 void
48 {
49  NS_LOG_FUNCTION (this);
50  Simulator::Cancel (*this);
51 }
52 bool
53 EventId::IsExpired (void) const
54 {
55  NS_LOG_FUNCTION (this);
56  return Simulator::IsExpired (*this);
57 }
58 bool
59 EventId::IsRunning (void) const
60 {
61  NS_LOG_FUNCTION (this);
62  return !IsExpired ();
63 }
64 EventImpl *
65 EventId::PeekEventImpl (void) const
66 {
67  NS_LOG_FUNCTION (this);
68  return PeekPointer (m_eventImpl);
69 }
70 uint64_t
71 EventId::GetTs (void) const
72 {
73  NS_LOG_FUNCTION (this);
74  return m_ts;
75 }
76 uint32_t
77 EventId::GetContext (void) const
78 {
79  NS_LOG_FUNCTION (this);
80  return m_context;
81 }
82 uint32_t
83 EventId::GetUid (void) const
84 {
85  NS_LOG_FUNCTION (this);
86  return m_uid;
87 }
88 
89 bool operator == (const EventId &a, const EventId &b)
90 {
91  return
92  a.m_uid == b.m_uid &&
93  a.m_context == b.m_context &&
94  a.m_ts == b.m_ts &&
95  a.m_eventImpl == b.m_eventImpl;
96 }
97 bool operator != (const EventId &a, const EventId &b)
98 {
99  return !(a == b);
100 }
101 
102 
103 
104 } // namespace ns3
#define NS_LOG_FUNCTION(parameters)
Definition: log.h:311
#define NS_LOG_COMPONENT_DEFINE(name)
Definition: log.h:122
static void Cancel(const EventId &id)
Definition: simulator.cc:267
bool IsRunning(void) const
Definition: event-id.cc:59
static bool IsExpired(const EventId &id)
Definition: simulator.cc:277
a simulation event
Definition: event-impl.h:39
void Cancel(void)
Definition: event-id.cc:47
bool IsExpired(void) const
Definition: event-id.cc:53