A Discrete-Event Network Simulator
API
ipv6-routing-helper.h
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2008 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 
21 #ifndef IPV6_ROUTING_HELPER_H
22 #define IPV6_ROUTING_HELPER_H
23 
24 #include "ns3/ptr.h"
25 #include "ns3/nstime.h"
26 #include "ns3/output-stream-wrapper.h"
27 #include "ns3/ipv6-list-routing.h"
28 
29 namespace ns3 {
30 
31 class Ipv6RoutingProtocol;
32 class Node;
33 
46 {
47 public:
48 
52  virtual ~Ipv6RoutingHelper ();
53 
61  virtual Ipv6RoutingHelper* Copy (void) const = 0;
62 
67  virtual Ptr<Ipv6RoutingProtocol> Create (Ptr<Node> node) const = 0;
68 
78  static void PrintRoutingTableAllAt (Time printTime, Ptr<OutputStreamWrapper> stream);;
79 
89  static void PrintRoutingTableAllEvery (Time printInterval, Ptr<OutputStreamWrapper> stream);
90 
101  static void PrintRoutingTableAt (Time printTime, Ptr<Node> node, Ptr<OutputStreamWrapper> stream);
102 
113  static void PrintRoutingTableEvery (Time printInterval, Ptr<Node> node, Ptr<OutputStreamWrapper> stream);
114 
128  static void PrintNeighborCacheAllAt (Time printTime, Ptr<OutputStreamWrapper> stream);
129 
143  static void PrintNeighborCacheAllEvery (Time printInterval, Ptr<OutputStreamWrapper> stream);
144 
159  static void PrintNeighborCacheAt (Time printTime, Ptr<Node> node, Ptr<OutputStreamWrapper> stream);
160 
175  static void PrintNeighborCacheEvery (Time printInterval, Ptr<Node> node, Ptr<OutputStreamWrapper> stream);
176 
186  template<class T>
187  static Ptr<T> GetRouting (Ptr<Ipv6RoutingProtocol> protocol);
188 
189 private:
199  static void Print (Ptr<Node> node, Ptr<OutputStreamWrapper> stream);
200 
211  static void PrintEvery (Time printInterval, Ptr<Node> node, Ptr<OutputStreamWrapper> stream);
212 
226  static void PrintNdiscCache (Ptr<Node> node, Ptr<OutputStreamWrapper> stream);
227 
242  static void PrintNdiscCacheEvery (Time printInterval, Ptr<Node> node, Ptr<OutputStreamWrapper> stream);
243 };
244 
254 template<class T>
256 {
257  Ptr<T> ret = DynamicCast<T> (protocol);
258  if (ret == 0)
259  {
260  // trying to check if protocol is a list routing
261  Ptr<Ipv6ListRouting> lrp = DynamicCast<Ipv6ListRouting> (protocol);
262  if (lrp != 0)
263  {
264  for (uint32_t i = 0; i < lrp->GetNRoutingProtocols (); i++)
265  {
266  int16_t priority;
267  ret = GetRouting<T> (lrp->GetRoutingProtocol (i, priority)); // potential recursion, if inside ListRouting is ListRouting
268  if (ret != 0)
269  break;
270  }
271  }
272  }
273 
274  return ret;
275 }
276 
277 } // namespace ns3
278 
279 
280 #endif /* IPV6_ROUTING_HELPER_H */
281 
static void PrintNeighborCacheAt(Time printTime, Ptr< Node > node, Ptr< OutputStreamWrapper > stream)
prints the neighbor cache of a node at a particular time.
virtual ~Ipv6RoutingHelper()
Destroy an Ipv6 Ipv6RoutingHelper.
static void PrintRoutingTableAllEvery(Time printInterval, Ptr< OutputStreamWrapper > stream)
prints the routing tables of all nodes at regular intervals specified by user.
Simulation virtual time values and global simulation resolution.
Definition: nstime.h:102
Smart pointer class similar to boost::intrusive_ptr.
Definition: ptr.h:73
virtual Ipv6RoutingHelper * Copy(void) const =0
virtual constructor
static Ptr< T > GetRouting(Ptr< Ipv6RoutingProtocol > protocol)
Request a specified routing protocol from Ipv6RoutingProtocol protocol.
static void PrintRoutingTableAt(Time printTime, Ptr< Node > node, Ptr< OutputStreamWrapper > stream)
prints the routing tables of a node at a particular time.
static void PrintEvery(Time printInterval, Ptr< Node > node, Ptr< OutputStreamWrapper > stream)
prints the routing tables of a node at regular intervals specified by user.
A factory to create ns3::Ipv6RoutingProtocol objects.
static void PrintNdiscCache(Ptr< Node > node, Ptr< OutputStreamWrapper > stream)
prints the neighbor cache of a node.
static void PrintNdiscCacheEvery(Time printInterval, Ptr< Node > node, Ptr< OutputStreamWrapper > stream)
prints the neighbor cache of a node at regular intervals specified by user.
virtual Ptr< Ipv6RoutingProtocol > Create(Ptr< Node > node) const =0
Every class exported by the ns3 library is enclosed in the ns3 namespace.
static void PrintNeighborCacheAllAt(Time printTime, Ptr< OutputStreamWrapper > stream)
prints the neighbor cache of all nodes at a particular time.
static void PrintNeighborCacheEvery(Time printInterval, Ptr< Node > node, Ptr< OutputStreamWrapper > stream)
prints the neighbor cache of a node at regular intervals specified by user.
static void Print(Ptr< Node > node, Ptr< OutputStreamWrapper > stream)
prints the routing tables of a node.
static void PrintNeighborCacheAllEvery(Time printInterval, Ptr< OutputStreamWrapper > stream)
prints the neighbor cache of all nodes at regular intervals specified by user.
static void PrintRoutingTableEvery(Time printInterval, Ptr< Node > node, Ptr< OutputStreamWrapper > stream)
prints the routing tables of a node at regular intervals specified by user.
static void PrintRoutingTableAllAt(Time printTime, Ptr< OutputStreamWrapper > stream)
prints the routing tables of all nodes at a particular time.