blob: 25764d925b1a74e37122919724f590898fe5d7f0 [file] [log] [blame]
Alexander Afanasyevc74a6022011-08-15 20:01:35 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
Alexander Afanasyev45b92d42011-08-14 23:11:38 -07002/*
3 * Copyright (c) 2011 UCLA
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 *
Ilya Moiseenko25f7d4d2011-09-29 18:41:06 -070018 * Author: Alexander Afanasyev <alexander.afanasyev@ucla.edu>
Alexander Afanasyev122f3782013-02-02 00:04:40 -080019 * Ilya Moiseenko <iliamo@cs.ucla.edu>
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070020 */
21
Alexander Afanasyev4aac5572012-08-09 10:49:55 -070022#ifndef NDN_STACK_HELPER_H
23#define NDN_STACK_HELPER_H
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070024
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070025#include "ns3/packet.h"
26#include "ns3/ptr.h"
27#include "ns3/object-factory.h"
Alexander Afanasyevc39f0b42011-11-28 12:51:12 -080028#include "ns3/nstime.h"
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070029
30namespace ns3 {
31
32class Node;
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -070033
34namespace ndn {
35
36class FaceContainer;
37class Face;
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070038
39/**
Alexander Afanasyev4aac5572012-08-09 10:49:55 -070040 * \ingroup ndn
41 * \defgroup ndn-helpers Helpers
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -070042 */
43/**
Alexander Afanasyev4aac5572012-08-09 10:49:55 -070044 * \ingroup ndn-helpers
45 * \brief Adding Ndn functionality to existing Nodes.
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070046 *
Alexander Afanasyev4aac5572012-08-09 10:49:55 -070047 * This helper enables pcap and ascii tracing of events in the ndn stack
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070048 * associated with a node. This is substantially similar to the tracing that
49 * happens in device helpers, but the important difference is that, well, there
50 * is no device. This means that the creation of output file names will change,
51 * and also the user-visible methods will not reference devices and therefore
52 * the number of trace enable methods is reduced.
53 *
54 * Normally we eschew multiple inheritance, however, the classes
Alexander Afanasyev4aac5572012-08-09 10:49:55 -070055 * PcapUserHelperForNdn and AsciiTraceUserHelperForNdn are treated as
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070056 * "mixins". A mixin is a self-contained class that encapsulates a general
57 * attribute or a set of functionality that may be of interest to many other
58 * classes.
59 */
Alexander Afanasyev122f3782013-02-02 00:04:40 -080060class StackHelper
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070061{
62public:
63 /**
Alexander Afanasyev4aac5572012-08-09 10:49:55 -070064 * \brief Create a new NdnStackHelper with a default NDN_FLOODING forwarding stategy
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070065 */
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -070066 StackHelper();
Alexander Afanasyev122f3782013-02-02 00:04:40 -080067
Ilya Moiseenko25f7d4d2011-09-29 18:41:06 -070068 /**
Alexander Afanasyev4aac5572012-08-09 10:49:55 -070069 * \brief Destroy the NdnStackHelper
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070070 */
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -070071 virtual ~StackHelper ();
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070072
73 /**
Alexander Afanasyev4aac5572012-08-09 10:49:55 -070074 * @brief Set parameters of NdnL3Protocol
Alexander Afanasyev3a4a0b32012-06-28 14:14:22 -070075 */
76 void
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -070077 SetStackAttributes (const std::string &attr1 = "", const std::string &value1 = "",
78 const std::string &attr2 = "", const std::string &value2 = "",
79 const std::string &attr3 = "", const std::string &value3 = "",
80 const std::string &attr4 = "", const std::string &value4 = "");
Alexander Afanasyev122f3782013-02-02 00:04:40 -080081
82
Alexander Afanasyev3a4a0b32012-06-28 14:14:22 -070083 /**
84 * @brief Set forwarding strategy class and its attributes
85 * @param forwardingStrategyClass string containing name of the forwarding strategy class
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -070086 *
Alexander Afanasyev4aac5572012-08-09 10:49:55 -070087 * Valid options are "ns3::NdnFloodingStrategy" (default) and "ns3::NdnBestRouteStrategy"
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070088 *
Alexander Afanasyev4aac5572012-08-09 10:49:55 -070089 * Other strategies can be implemented, inheriting ns3::NdnForwardingStrategy class
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070090 */
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -070091 void
Alexander Afanasyev3a4a0b32012-06-28 14:14:22 -070092 SetForwardingStrategy (const std::string &forwardingStrategyClass,
93 const std::string &attr1 = "", const std::string &value1 = "",
94 const std::string &attr2 = "", const std::string &value2 = "",
95 const std::string &attr3 = "", const std::string &value3 = "",
96 const std::string &attr4 = "", const std::string &value4 = "");
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070097
98 /**
Alexander Afanasyev3a4a0b32012-06-28 14:14:22 -070099 * @brief Set content store class and its attributes
100 * @param contentStoreClass string, representing class of the content store
Alexander Afanasyevd9fecdd2012-06-08 16:22:24 -0700101 */
102 void
Alexander Afanasyev3a4a0b32012-06-28 14:14:22 -0700103 SetContentStore (const std::string &contentStoreClass,
104 const std::string &attr1 = "", const std::string &value1 = "",
105 const std::string &attr2 = "", const std::string &value2 = "",
106 const std::string &attr3 = "", const std::string &value3 = "",
107 const std::string &attr4 = "", const std::string &value4 = "");
108
109 /**
110 * @brief Set PIT class and its attributes
111 * @param pitClass string, representing class of PIT
112 */
113 void
114 SetPit (const std::string &pitClass,
115 const std::string &attr1 = "", const std::string &value1 = "",
116 const std::string &attr2 = "", const std::string &value2 = "",
117 const std::string &attr3 = "", const std::string &value3 = "",
118 const std::string &attr4 = "", const std::string &value4 = "");
Alexander Afanasyev122f3782013-02-02 00:04:40 -0800119
Alexander Afanasyevd9fecdd2012-06-08 16:22:24 -0700120 /**
Alexander Afanasyev3a4a0b32012-06-28 14:14:22 -0700121 * @brief Set FIB class and its attributes
122 * @param pitClass string, representing class of FIB
123 */
124 void
125 SetFib (const std::string &fibClass,
126 const std::string &attr1 = "", const std::string &value1 = "",
127 const std::string &attr2 = "", const std::string &value2 = "",
128 const std::string &attr3 = "", const std::string &value3 = "",
129 const std::string &attr4 = "", const std::string &value4 = "");
130
Alexander Afanasyev122f3782013-02-02 00:04:40 -0800131 typedef Callback< Ptr<NetDeviceFace>, Ptr<Node>, Ptr<NetDevice> > NetDeviceFaceCreateCallback;
132
133 /**
134 * @brief Add callback to create and configure instance of the face, based on supplied Ptr<Node> and Ptr<NetDevice>
135 *
136 * It is possible to set up several callbacks for different NetDevice types.
137 *
138 * Currently, there is only one specialized callback for PointToPointNetDevice, which creates face and sets limits (if enabled)
139 * based on PointToPoint link parameters
140 *
141 * If none of the callbacks fit the TypeId of NetDevice, a default callback is used (DefaultNetDeviceCallback)
142 */
143 void
144 AddNetDeviceFaceCreateCallback (TypeId netDeviceType, NetDeviceFaceCreateCallback callback);
145
Alexander Afanasyev3a4a0b32012-06-28 14:14:22 -0700146 /**
Alexander Afanasyev11453142011-11-25 16:13:33 -0800147 * @brief Enable Interest limits (disabled by default)
Alexander Afanasyevc39f0b42011-11-28 12:51:12 -0800148 *
149 * @param enable Enable or disable limits
150 * @param avgRtt Average RTT
151 * @param avgContentObject Average size of contentObject packets (including all headers)
152 * @param avgInterest Average size of interest packets (including all headers)
Alexander Afanasyev11453142011-11-25 16:13:33 -0800153 */
154 void
Alexander Afanasyevc39f0b42011-11-28 12:51:12 -0800155 EnableLimits (bool enable = true, Time avgRtt=Seconds(0.1), uint32_t avgContentObject=1100, uint32_t avgInterest=40);
Alexander Afanasyev122f3782013-02-02 00:04:40 -0800156
Alexander Afanasyev11453142011-11-25 16:13:33 -0800157 /**
Alexander Afanasyev4aac5572012-08-09 10:49:55 -0700158 * \brief Install Ndn stack on the node
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700159 *
Alexander Afanasyev4aac5572012-08-09 10:49:55 -0700160 * This method will assert if called on a node that already has Ndn object
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700161 * installed on it
Alexander Afanasyev122f3782013-02-02 00:04:40 -0800162 *
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700163 * \param nodeName The name of the node on which to install the stack.
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -0700164 *
165 * \returns list of installed faces in the form of a smart pointer
Alexander Afanasyev4aac5572012-08-09 10:49:55 -0700166 * to NdnFaceContainer object
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700167 */
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700168 Ptr<FaceContainer>
Alexander Afanasyevfd258262012-11-23 14:59:19 -0800169 Install (const std::string &nodeName) const;
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700170
171 /**
Alexander Afanasyev4aac5572012-08-09 10:49:55 -0700172 * \brief Install Ndn stack on the node
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700173 *
Alexander Afanasyev4aac5572012-08-09 10:49:55 -0700174 * This method will assert if called on a node that already has Ndn object
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700175 * installed on it
Alexander Afanasyev122f3782013-02-02 00:04:40 -0800176 *
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700177 * \param node The node on which to install the stack.
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -0700178 *
179 * \returns list of installed faces in the form of a smart pointer
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700180 * to FaceContainer object
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700181 */
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700182 Ptr<FaceContainer>
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -0700183 Install (Ptr<Node> node) const;
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700184
185 /**
Alexander Afanasyev4aac5572012-08-09 10:49:55 -0700186 * \brief Install Ndn stack on each node in the input container
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700187 *
188 * The program will assert if this method is called on a container with a node
Alexander Afanasyev4aac5572012-08-09 10:49:55 -0700189 * that already has an ndn object aggregated to it.
Alexander Afanasyev122f3782013-02-02 00:04:40 -0800190 *
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700191 * \param c NodeContainer that holds the set of nodes on which to install the
192 * new stacks.
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -0700193 *
194 * \returns list of installed faces in the form of a smart pointer
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700195 * to FaceContainer object
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700196 */
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700197 Ptr<FaceContainer>
Alexander Afanasyevfd258262012-11-23 14:59:19 -0800198 Install (const NodeContainer &c) const;
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700199
200 /**
Alexander Afanasyev4aac5572012-08-09 10:49:55 -0700201 * \brief Install Ndn stack on all nodes in the simulation
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -0700202 *
203 * \returns list of installed faces in the form of a smart pointer
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700204 * to FaceContainer object
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700205 */
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700206 Ptr<FaceContainer>
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700207 InstallAll () const;
208
209 /**
Alexander Afanasyevfd258262012-11-23 14:59:19 -0800210 * \brief Add forwarding entry to FIB
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -0700211 *
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -0700212 * \param nodeName Node name
213 * \param prefix Routing prefix
214 * \param faceId Face index
215 * \param metric Routing metric
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700216 */
Alexander Afanasyevb7626842012-01-12 13:43:33 -0800217 static void
Alexander Afanasyevfd258262012-11-23 14:59:19 -0800218 AddRoute (const std::string &nodeName, const std::string &prefix, uint32_t faceId, int32_t metric);
Alexander Afanasyev52e9aa92011-11-15 20:23:20 -0800219
220 /**
Alexander Afanasyevfd258262012-11-23 14:59:19 -0800221 * \brief Add forwarding entry to FIB
Alexander Afanasyev52e9aa92011-11-15 20:23:20 -0800222 *
Alexander Afanasyev8bedcaf2012-07-20 15:30:44 -0700223 * \param nodeName Node
224 * \param prefix Routing prefix
225 * \param faceId Face index
226 * \param metric Routing metric
227 */
228 static void
Alexander Afanasyevfd258262012-11-23 14:59:19 -0800229 AddRoute (Ptr<Node> node, const std::string &prefix, uint32_t faceId, int32_t metric);
Alexander Afanasyev8bedcaf2012-07-20 15:30:44 -0700230
231 /**
Alexander Afanasyevfd258262012-11-23 14:59:19 -0800232 * \brief Add forwarding entry to FIB
Alexander Afanasyev8bedcaf2012-07-20 15:30:44 -0700233 *
Alexander Afanasyev52e9aa92011-11-15 20:23:20 -0800234 * \param node Node
235 * \param prefix Routing prefix
236 * \param face Face
237 * \param metric Routing metric
238 */
Alexander Afanasyevb7626842012-01-12 13:43:33 -0800239 static void
Alexander Afanasyevfd258262012-11-23 14:59:19 -0800240 AddRoute (Ptr<Node> node, const std::string &prefix, Ptr<Face> face, int32_t metric);
Alexander Afanasyev4a5c2c12011-12-12 18:50:57 -0800241
242 /**
Alexander Afanasyevfd258262012-11-23 14:59:19 -0800243 * @brief Add forwarding entry to FIB (work only with point-to-point links)
244 *
245 * \param node Node
246 * \param prefix Routing prefix
247 * \param otherNode The other node, to which interests (will be used to infer face id
248 * \param metric Routing metric
249 */
250 static void
251 AddRoute (Ptr<Node> node, const std::string &prefix, Ptr<Node> otherNode, int32_t metric);
252
253 /**
254 * @brief Add forwarding entry to FIB (work only with point-to-point links)
255 *
256 * \param nodeName Node name (refer to ns3::Names)
257 * \param prefix Routing prefix
258 * \param otherNode The other node name, to which interests (will be used to infer face id (refer to ns3::Names)
259 * \param metric Routing metric
260 */
261 static void
262 AddRoute (const std::string &nodeName, const std::string &prefix, const std::string &otherNodeName, int32_t metric);
Alexander Afanasyev122f3782013-02-02 00:04:40 -0800263
Alexander Afanasyevfd258262012-11-23 14:59:19 -0800264 /**
Alexander Afanasyev4a5c2c12011-12-12 18:50:57 -0800265 * \brief Set flag indicating necessity to install default routes in FIB
266 */
267 void
268 SetDefaultRoutes (bool needSet);
Alexander Afanasyev52e9aa92011-11-15 20:23:20 -0800269
Alexander Afanasyev11453142011-11-25 16:13:33 -0800270private:
Alexander Afanasyev122f3782013-02-02 00:04:40 -0800271 Ptr<NetDeviceFace>
272 DefaultNetDeviceCallback (Ptr<Node> node, Ptr<NetDevice> netDevice) const;
273
274 Ptr<NetDeviceFace>
275 PointToPointNetDeviceCallback (Ptr<Node> node, Ptr<NetDevice> netDevice) const;
276
277private:
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700278 StackHelper (const StackHelper &);
279 StackHelper &operator = (const StackHelper &o);
Alexander Afanasyev122f3782013-02-02 00:04:40 -0800280
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700281private:
Alexander Afanasyev4aac5572012-08-09 10:49:55 -0700282 ObjectFactory m_ndnFactory;
Alexander Afanasyev11453142011-11-25 16:13:33 -0800283 ObjectFactory m_strategyFactory;
Alexander Afanasyevd9fecdd2012-06-08 16:22:24 -0700284 ObjectFactory m_contentStoreFactory;
Alexander Afanasyev3a4a0b32012-06-28 14:14:22 -0700285 ObjectFactory m_pitFactory;
286 ObjectFactory m_fibFactory;
Alexander Afanasyev122f3782013-02-02 00:04:40 -0800287
Alexander Afanasyevfd258262012-11-23 14:59:19 -0800288 bool m_limitsEnabled;
Alexander Afanasyevc39f0b42011-11-28 12:51:12 -0800289 Time m_avgRtt;
290 uint32_t m_avgContentObjectSize;
291 uint32_t m_avgInterestSize;
Alexander Afanasyev122f3782013-02-02 00:04:40 -0800292 bool m_needSetDefaultRoutes;
293
294 std::list< std::pair<TypeId, NetDeviceFaceCreateCallback> > m_netDeviceCallbacks;
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700295};
296
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700297} // namespace ndn
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700298} // namespace ns3
299
Alexander Afanasyev4aac5572012-08-09 10:49:55 -0700300#endif /* NDN_STACK_HELPER_H */