blob: 0bd69ada7a2f5be28c9e8f56067a82e89a699c74 [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>
19 * 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 Afanasyev4aac5572012-08-09 10:49:55 -070033class NdnFaceContainer;
34class NdnFace;
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070035
36/**
Alexander Afanasyev4aac5572012-08-09 10:49:55 -070037 * \ingroup ndn
38 * \defgroup ndn-helpers Helpers
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -070039 */
40/**
Alexander Afanasyev4aac5572012-08-09 10:49:55 -070041 * \ingroup ndn-helpers
42 * \brief Adding Ndn functionality to existing Nodes.
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070043 *
Alexander Afanasyev4aac5572012-08-09 10:49:55 -070044 * This helper enables pcap and ascii tracing of events in the ndn stack
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070045 * associated with a node. This is substantially similar to the tracing that
46 * happens in device helpers, but the important difference is that, well, there
47 * is no device. This means that the creation of output file names will change,
48 * and also the user-visible methods will not reference devices and therefore
49 * the number of trace enable methods is reduced.
50 *
51 * Normally we eschew multiple inheritance, however, the classes
Alexander Afanasyev4aac5572012-08-09 10:49:55 -070052 * PcapUserHelperForNdn and AsciiTraceUserHelperForNdn are treated as
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070053 * "mixins". A mixin is a self-contained class that encapsulates a general
54 * attribute or a set of functionality that may be of interest to many other
55 * classes.
56 */
Alexander Afanasyev4aac5572012-08-09 10:49:55 -070057class NdnStackHelper
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070058{
59public:
60 /**
Alexander Afanasyev4aac5572012-08-09 10:49:55 -070061 * \brief Create a new NdnStackHelper with a default NDN_FLOODING forwarding stategy
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070062 */
Alexander Afanasyev4aac5572012-08-09 10:49:55 -070063 NdnStackHelper();
Ilya Moiseenko25f7d4d2011-09-29 18:41:06 -070064
65 /**
Alexander Afanasyev4aac5572012-08-09 10:49:55 -070066 * \brief Destroy the NdnStackHelper
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070067 */
Alexander Afanasyev4aac5572012-08-09 10:49:55 -070068 virtual ~NdnStackHelper ();
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070069
70 /**
Alexander Afanasyev4aac5572012-08-09 10:49:55 -070071 * @brief Set parameters of NdnL3Protocol
Alexander Afanasyev3a4a0b32012-06-28 14:14:22 -070072 */
73 void
Alexander Afanasyev4aac5572012-08-09 10:49:55 -070074 SetNdnAttributes (const std::string &attr1 = "", const std::string &value1 = "",
Alexander Afanasyev3a4a0b32012-06-28 14:14:22 -070075 const std::string &attr2 = "", const std::string &value2 = "",
76 const std::string &attr3 = "", const std::string &value3 = "",
77 const std::string &attr4 = "", const std::string &value4 = "");
78
79
80 /**
81 * @brief Set forwarding strategy class and its attributes
82 * @param forwardingStrategyClass string containing name of the forwarding strategy class
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -070083 *
Alexander Afanasyev4aac5572012-08-09 10:49:55 -070084 * Valid options are "ns3::NdnFloodingStrategy" (default) and "ns3::NdnBestRouteStrategy"
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070085 *
Alexander Afanasyev4aac5572012-08-09 10:49:55 -070086 * Other strategies can be implemented, inheriting ns3::NdnForwardingStrategy class
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070087 */
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -070088 void
Alexander Afanasyev3a4a0b32012-06-28 14:14:22 -070089 SetForwardingStrategy (const std::string &forwardingStrategyClass,
90 const std::string &attr1 = "", const std::string &value1 = "",
91 const std::string &attr2 = "", const std::string &value2 = "",
92 const std::string &attr3 = "", const std::string &value3 = "",
93 const std::string &attr4 = "", const std::string &value4 = "");
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070094
95 /**
Alexander Afanasyev3a4a0b32012-06-28 14:14:22 -070096 * @brief Set content store class and its attributes
97 * @param contentStoreClass string, representing class of the content store
Alexander Afanasyevd9fecdd2012-06-08 16:22:24 -070098 */
99 void
Alexander Afanasyev3a4a0b32012-06-28 14:14:22 -0700100 SetContentStore (const std::string &contentStoreClass,
101 const std::string &attr1 = "", const std::string &value1 = "",
102 const std::string &attr2 = "", const std::string &value2 = "",
103 const std::string &attr3 = "", const std::string &value3 = "",
104 const std::string &attr4 = "", const std::string &value4 = "");
105
106 /**
107 * @brief Set PIT class and its attributes
108 * @param pitClass string, representing class of PIT
109 */
110 void
111 SetPit (const std::string &pitClass,
112 const std::string &attr1 = "", const std::string &value1 = "",
113 const std::string &attr2 = "", const std::string &value2 = "",
114 const std::string &attr3 = "", const std::string &value3 = "",
115 const std::string &attr4 = "", const std::string &value4 = "");
Alexander Afanasyevd9fecdd2012-06-08 16:22:24 -0700116
117 /**
Alexander Afanasyev3a4a0b32012-06-28 14:14:22 -0700118 * @brief Set FIB class and its attributes
119 * @param pitClass string, representing class of FIB
120 */
121 void
122 SetFib (const std::string &fibClass,
123 const std::string &attr1 = "", const std::string &value1 = "",
124 const std::string &attr2 = "", const std::string &value2 = "",
125 const std::string &attr3 = "", const std::string &value3 = "",
126 const std::string &attr4 = "", const std::string &value4 = "");
127
128 /**
Alexander Afanasyev11453142011-11-25 16:13:33 -0800129 * @brief Enable Interest limits (disabled by default)
Alexander Afanasyevc39f0b42011-11-28 12:51:12 -0800130 *
131 * @param enable Enable or disable limits
132 * @param avgRtt Average RTT
133 * @param avgContentObject Average size of contentObject packets (including all headers)
134 * @param avgInterest Average size of interest packets (including all headers)
Alexander Afanasyev11453142011-11-25 16:13:33 -0800135 */
136 void
Alexander Afanasyevc39f0b42011-11-28 12:51:12 -0800137 EnableLimits (bool enable = true, Time avgRtt=Seconds(0.1), uint32_t avgContentObject=1100, uint32_t avgInterest=40);
Alexander Afanasyev11453142011-11-25 16:13:33 -0800138
139 /**
Alexander Afanasyev4aac5572012-08-09 10:49:55 -0700140 * \brief Install Ndn stack on the node
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700141 *
Alexander Afanasyev4aac5572012-08-09 10:49:55 -0700142 * This method will assert if called on a node that already has Ndn object
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700143 * installed on it
144 *
145 * \param nodeName The name of the node on which to install the stack.
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -0700146 *
147 * \returns list of installed faces in the form of a smart pointer
Alexander Afanasyev4aac5572012-08-09 10:49:55 -0700148 * to NdnFaceContainer object
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700149 */
Alexander Afanasyev4aac5572012-08-09 10:49:55 -0700150 Ptr<NdnFaceContainer>
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -0700151 Install (std::string nodeName) const;
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700152
153 /**
Alexander Afanasyev4aac5572012-08-09 10:49:55 -0700154 * \brief Install Ndn stack on the node
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700155 *
Alexander Afanasyev4aac5572012-08-09 10:49:55 -0700156 * This method will assert if called on a node that already has Ndn object
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700157 * installed on it
158 *
159 * \param node The node on which to install the stack.
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -0700160 *
161 * \returns list of installed faces in the form of a smart pointer
Alexander Afanasyev4aac5572012-08-09 10:49:55 -0700162 * to NdnFaceContainer object
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700163 */
Alexander Afanasyev4aac5572012-08-09 10:49:55 -0700164 Ptr<NdnFaceContainer>
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -0700165 Install (Ptr<Node> node) const;
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700166
167 /**
Alexander Afanasyev4aac5572012-08-09 10:49:55 -0700168 * \brief Install Ndn stack on each node in the input container
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700169 *
170 * The program will assert if this method is called on a container with a node
Alexander Afanasyev4aac5572012-08-09 10:49:55 -0700171 * that already has an ndn object aggregated to it.
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700172 *
173 * \param c NodeContainer that holds the set of nodes on which to install the
174 * new stacks.
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -0700175 *
176 * \returns list of installed faces in the form of a smart pointer
Alexander Afanasyev4aac5572012-08-09 10:49:55 -0700177 * to NdnFaceContainer object
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700178 */
Alexander Afanasyev4aac5572012-08-09 10:49:55 -0700179 Ptr<NdnFaceContainer>
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -0700180 Install (NodeContainer c) const;
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700181
182 /**
Alexander Afanasyev4aac5572012-08-09 10:49:55 -0700183 * \brief Install Ndn stack on all nodes in the simulation
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -0700184 *
185 * \returns list of installed faces in the form of a smart pointer
Alexander Afanasyev4aac5572012-08-09 10:49:55 -0700186 * to NdnFaceContainer object
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700187 */
Alexander Afanasyev4aac5572012-08-09 10:49:55 -0700188 Ptr<NdnFaceContainer>
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700189 InstallAll () const;
190
191 /**
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -0700192 * \brief Add forwarding entry in FIB
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -0700193 *
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -0700194 * \param nodeName Node name
195 * \param prefix Routing prefix
196 * \param faceId Face index
197 * \param metric Routing metric
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700198 */
Alexander Afanasyevb7626842012-01-12 13:43:33 -0800199 static void
200 AddRoute (std::string nodeName, std::string prefix, uint32_t faceId, int32_t metric);
Alexander Afanasyev52e9aa92011-11-15 20:23:20 -0800201
202 /**
203 * \brief Add forwarding entry in FIB
204 *
Alexander Afanasyev8bedcaf2012-07-20 15:30:44 -0700205 * \param nodeName Node
206 * \param prefix Routing prefix
207 * \param faceId Face index
208 * \param metric Routing metric
209 */
210 static void
211 AddRoute (Ptr<Node> node, std::string prefix, uint32_t faceId, int32_t metric);
212
213 /**
214 * \brief Add forwarding entry in FIB
215 *
Alexander Afanasyev52e9aa92011-11-15 20:23:20 -0800216 * \param node Node
217 * \param prefix Routing prefix
218 * \param face Face
219 * \param metric Routing metric
220 */
Alexander Afanasyevb7626842012-01-12 13:43:33 -0800221 static void
Alexander Afanasyev4aac5572012-08-09 10:49:55 -0700222 AddRoute (Ptr<Node> node, std::string prefix, Ptr<NdnFace> face, int32_t metric);
Alexander Afanasyev4a5c2c12011-12-12 18:50:57 -0800223
224 /**
225 * \brief Set flag indicating necessity to install default routes in FIB
226 */
227 void
228 SetDefaultRoutes (bool needSet);
Alexander Afanasyev52e9aa92011-11-15 20:23:20 -0800229
Alexander Afanasyev11453142011-11-25 16:13:33 -0800230private:
Alexander Afanasyev4aac5572012-08-09 10:49:55 -0700231 NdnStackHelper (const NdnStackHelper &);
232 NdnStackHelper &operator = (const NdnStackHelper &o);
Alexander Afanasyev52e9aa92011-11-15 20:23:20 -0800233
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700234private:
Alexander Afanasyev4aac5572012-08-09 10:49:55 -0700235 ObjectFactory m_ndnFactory;
Alexander Afanasyev11453142011-11-25 16:13:33 -0800236 ObjectFactory m_strategyFactory;
Alexander Afanasyevd9fecdd2012-06-08 16:22:24 -0700237 ObjectFactory m_contentStoreFactory;
Alexander Afanasyev3a4a0b32012-06-28 14:14:22 -0700238 ObjectFactory m_pitFactory;
239 ObjectFactory m_fibFactory;
240
Alexander Afanasyev11453142011-11-25 16:13:33 -0800241 bool m_limitsEnabled;
Alexander Afanasyevc39f0b42011-11-28 12:51:12 -0800242 Time m_avgRtt;
243 uint32_t m_avgContentObjectSize;
244 uint32_t m_avgInterestSize;
Alexander Afanasyev8e2f1122012-04-17 15:01:11 -0700245 bool m_needSetDefaultRoutes;
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700246};
247
248} // namespace ns3
249
Alexander Afanasyev4aac5572012-08-09 10:49:55 -0700250#endif /* NDN_STACK_HELPER_H */