A Discrete-Event Network Simulator
API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
flame-rtable.cc
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2009 IITP RAS
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: Kirill Andreev <andreev@iitp.ru>
19  */
20 #include "ns3/assert.h"
21 #include "ns3/simulator.h"
22 #include "ns3/test.h"
23 #include "ns3/log.h"
24 
25 #include "flame-rtable.h"
26 namespace ns3 {
27 namespace flame {
28 
29 NS_LOG_COMPONENT_DEFINE ("FlameRtable");
30 
31 NS_OBJECT_ENSURE_REGISTERED (FlameRtable);
32 
33 TypeId
35 {
36  static TypeId tid =
37  TypeId ("ns3::flame::FlameRtable")
38  .SetParent<Object> ().AddConstructor<FlameRtable> ()
39  .AddAttribute ( "Lifetime",
40  "The lifetime of the routing enrty",
41  TimeValue (Seconds (120)), MakeTimeAccessor (
44  )
45  ;
46  return tid;
47 }
49  m_lifetime (Seconds (120))
50 {
51 }
53 {
54 }
55 void
57 {
58  m_routes.clear ();
59 }
60 void
61 FlameRtable::AddPath (const Mac48Address destination, const Mac48Address retransmitter,
62  const uint32_t interface, const uint8_t cost, const uint16_t seqnum)
63 {
64  std::map<Mac48Address, Route>::iterator i = m_routes.find (destination);
65  if (i == m_routes.end ())
66  {
67  Route newroute;
68  newroute.cost = cost;
69  newroute.retransmitter = retransmitter;
70  newroute.interface = interface;
71  newroute.whenExpire = Simulator::Now () + m_lifetime;
72  newroute.seqnum = seqnum;
73  m_routes[destination] = newroute;
74  return;
75  }
76  i->second.seqnum = seqnum;
77  NS_ASSERT (i != m_routes.end ());
78  i->second.retransmitter = retransmitter;
79  i->second.interface = interface;
80  i->second.cost = cost;
81  i->second.whenExpire = Simulator::Now () + m_lifetime;
82 }
85 {
86  std::map<Mac48Address, Route>::iterator i = m_routes.find (destination);
87  if (i == m_routes.end ())
88  {
89  return LookupResult ();
90  }
91  if ((i->second.whenExpire < Simulator::Now ()))
92  {
93  NS_LOG_DEBUG ("Route has expired, sorry.");
94  m_routes.erase (i);
95  return LookupResult ();
96  }
97  return LookupResult (i->second.retransmitter, i->second.interface, i->second.cost, i->second.seqnum);
98 }
99 bool
101 {
102  return (retransmitter == o.retransmitter && ifIndex == o.ifIndex && cost == o.cost && seqnum == o.seqnum);
103 }
104 
105 bool
107 {
108  return !(retransmitter == Mac48Address::GetBroadcast () && ifIndex == INTERFACE_ANY && cost == MAX_COST
109  && seqnum == 0);
110 }
111 
112 } // namespace flame
113 } // namespace ns3
static const uint32_t MAX_COST
Maximum (the best?) path cost.
Definition: flame-rtable.h:42
#define NS_OBJECT_ENSURE_REGISTERED(type)
Register the class in the ns-3 factory.
Definition: object-base.h:38
void AddPath(const Mac48Address destination, const Mac48Address retransmitter, const uint32_t interface, const uint8_t cost, const uint16_t seqnum)
Add path.
Definition: flame-rtable.cc:61
#define NS_ASSERT(condition)
At runtime, in debugging builds, if this condition is not true, the program prints the source file...
Definition: assert.h:61
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
Definition: log.h:170
std::map< Mac48Address, Route > m_routes
List of routes.
Definition: flame-rtable.h:101
hold objects of type ns3::Time
Definition: nstime.h:1008
static Mac48Address GetBroadcast(void)
Time m_lifetime
Lifetime parameter.
Definition: flame-rtable.h:99
Route lookup result, return type of LookupXXX methods.
Definition: flame-rtable.h:45
an EUI-48 address
Definition: mac48-address.h:41
static Time Now(void)
Return the "current simulation time".
Definition: simulator.cc:180
bool operator==(const LookupResult &o) const
Compare route lookup results, used by tests.
static TypeId GetTypeId()
Definition: flame-rtable.cc:34
static const uint32_t INTERFACE_ANY
Means all interfaces.
Definition: flame-rtable.h:40
bool IsValid() const
True for valid route.
#define NS_LOG_DEBUG(msg)
Use NS_LOG to output a message of level LOG_DEBUG.
Definition: log.h:213
Ptr< const AttributeChecker > MakeTimeChecker(const Time min, const Time max)
Helper to make a Time checker with bounded range.
Definition: time.cc:441
a base class which provides memory management and object aggregation
Definition: object.h:64
Routing table entry.
Definition: flame-rtable.h:90
void DoDispose()
This method is called by Object::Dispose or by the object's destructor, whichever comes first...
Definition: flame-rtable.cc:56
a unique identifier for an interface.
Definition: type-id.h:49
TypeId SetParent(TypeId tid)
Definition: type-id.cc:610
LookupResult Lookup(Mac48Address destination)
Lookup path to destination.
Definition: flame-rtable.cc:84