blob: 836a6b4a128511c85757833e4d9e5fdf2e32e053 [file] [log] [blame]
Alexander Afanasyev60a7b622014-12-20 17:04:07 -08001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
3 * Copyright (c) 2011-2015 Regents of the University of California.
Alexander Afanasyev45b92d42011-08-14 23:11:38 -07004 *
Alexander Afanasyev60a7b622014-12-20 17:04:07 -08005 * This file is part of ndnSIM. See AUTHORS for complete list of ndnSIM authors and
6 * contributors.
Alexander Afanasyev45b92d42011-08-14 23:11:38 -07007 *
Alexander Afanasyev60a7b622014-12-20 17:04:07 -08008 * ndnSIM is free software: you can redistribute it and/or modify it under the terms
9 * of the GNU General Public License as published by the Free Software Foundation,
10 * either version 3 of the License, or (at your option) any later version.
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070011 *
Alexander Afanasyev60a7b622014-12-20 17:04:07 -080012 * ndnSIM is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
13 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
14 * PURPOSE. See the GNU General Public License for more details.
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070015 *
Alexander Afanasyev60a7b622014-12-20 17:04:07 -080016 * You should have received a copy of the GNU General Public License along with
17 * ndnSIM, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
18 **/
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070019
Alexander Afanasyev4aac5572012-08-09 10:49:55 -070020#ifndef NDN_STACK_HELPER_H
21#define NDN_STACK_HELPER_H
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070022
Spyridon Mastorakis53e922f2014-10-17 17:29:26 -070023#include "ns3/ndnSIM/model/ndn-common.hpp"
24
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070025#include "ns3/ptr.h"
26#include "ns3/object-factory.h"
Spyridon Mastorakis9760bd02014-11-12 13:32:55 -080027#include "ns3/node.h"
28#include "ns3/node-container.h"
29
30#include "ndn-face-container.hpp"
Spyridon Mastorakis588fd102014-11-20 19:50:02 -080031#include "ndn-fib-helper.hpp"
Spyridon Mastorakis592fcba2014-11-23 22:48:03 -080032#include "ndn-strategy-choice-helper.hpp"
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070033
34namespace ns3 {
35
36class Node;
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -070037
38namespace ndn {
39
Alexander Afanasyevc17e4bd2013-02-17 14:31:56 -080040class NetDeviceFace;
41class L3Protocol;
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070042
43/**
Alexander Afanasyev4aac5572012-08-09 10:49:55 -070044 * \ingroup ndn
45 * \defgroup ndn-helpers Helpers
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -070046 */
47/**
Alexander Afanasyev4aac5572012-08-09 10:49:55 -070048 * \ingroup ndn-helpers
49 * \brief Adding Ndn functionality to existing Nodes.
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070050 *
Alexander Afanasyev4aac5572012-08-09 10:49:55 -070051 * This helper enables pcap and ascii tracing of events in the ndn stack
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070052 * associated with a node. This is substantially similar to the tracing that
53 * happens in device helpers, but the important difference is that, well, there
54 * is no device. This means that the creation of output file names will change,
55 * and also the user-visible methods will not reference devices and therefore
56 * the number of trace enable methods is reduced.
57 *
58 * Normally we eschew multiple inheritance, however, the classes
Alexander Afanasyev4aac5572012-08-09 10:49:55 -070059 * PcapUserHelperForNdn and AsciiTraceUserHelperForNdn are treated as
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070060 * "mixins". A mixin is a self-contained class that encapsulates a general
61 * attribute or a set of functionality that may be of interest to many other
62 * classes.
63 */
Alexander Afanasyevdde1e812015-01-06 14:26:09 -080064class StackHelper : boost::noncopyable {
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070065public:
66 /**
Alexander Afanasyev4aac5572012-08-09 10:49:55 -070067 * \brief Create a new NdnStackHelper with a default NDN_FLOODING forwarding stategy
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070068 */
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -070069 StackHelper();
Alexander Afanasyev122f3782013-02-02 00:04:40 -080070
Ilya Moiseenko25f7d4d2011-09-29 18:41:06 -070071 /**
Alexander Afanasyev4aac5572012-08-09 10:49:55 -070072 * \brief Destroy the NdnStackHelper
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070073 */
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080074 virtual ~StackHelper();
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070075
76 /**
Alexander Afanasyev4aac5572012-08-09 10:49:55 -070077 * @brief Set parameters of NdnL3Protocol
Alexander Afanasyev3a4a0b32012-06-28 14:14:22 -070078 */
79 void
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080080 SetStackAttributes(const std::string& attr1 = "", const std::string& value1 = "",
81 const std::string& attr2 = "", const std::string& value2 = "",
82 const std::string& attr3 = "", const std::string& value3 = "",
83 const std::string& attr4 = "", const std::string& value4 = "");
Alexander Afanasyev122f3782013-02-02 00:04:40 -080084
Spyridon Mastorakisde1f7732014-12-05 22:43:34 -080085 /**
86 * @brief Set content store class and its attributes
87 * @param contentStoreClass string, representing class of the content store
88 */
89 void
Alexander Afanasyevdde1e812015-01-06 14:26:09 -080090 SetOldContentStore(const std::string& contentStoreClass, const std::string& attr1 = "",
Spyridon Mastorakisde1f7732014-12-05 22:43:34 -080091 const std::string& value1 = "", const std::string& attr2 = "",
92 const std::string& value2 = "", const std::string& attr3 = "",
93 const std::string& value3 = "", const std::string& attr4 = "",
94 const std::string& value4 = "");
95
Spyridon Mastorakisde1f7732014-12-05 22:43:34 -080096 void
Alexander Afanasyevdde1e812015-01-06 14:26:09 -080097 setCsSize(size_t maxSize);
Spyridon Mastorakisde1f7732014-12-05 22:43:34 -080098
Spyridon Mastorakise4f0d3c2014-10-29 13:20:03 -070099 typedef Callback<shared_ptr<NetDeviceFace>, Ptr<Node>, Ptr<L3Protocol>, Ptr<NetDevice>>
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -0800100 NetDeviceFaceCreateCallback;
Alexander Afanasyev122f3782013-02-02 00:04:40 -0800101
102 /**
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -0800103 * @brief Add callback to create and configure instance of the face, based on supplied Ptr<Node>
104 *and Ptr<NetDevice>
Alexander Afanasyev122f3782013-02-02 00:04:40 -0800105 *
106 * It is possible to set up several callbacks for different NetDevice types.
107 *
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -0800108 * If none of the callbacks fit the TypeId of NetDevice, a default callback is used
109 *(DefaultNetDeviceCallback)
Alexander Afanasyev122f3782013-02-02 00:04:40 -0800110 */
111 void
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -0800112 AddNetDeviceFaceCreateCallback(TypeId netDeviceType, NetDeviceFaceCreateCallback callback);
Alexander Afanasyev122f3782013-02-02 00:04:40 -0800113
Alexander Afanasyev3a4a0b32012-06-28 14:14:22 -0700114 /**
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -0800115 * @brief Update callback to create and configure instance of the face, based on supplied
116 *Ptr<Node> and Ptr<NetDevice>
Alexander Afanasyev2a269f72013-06-06 22:59:33 -0700117 *
118 * It is possible to set up several callbacks for different NetDevice types.
119 *
120 * Using this method, it is possible to override Face creation for PointToPointNetDevices
121 */
122 void
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -0800123 UpdateNetDeviceFaceCreateCallback(TypeId netDeviceType, NetDeviceFaceCreateCallback callback);
Alexander Afanasyev2a269f72013-06-06 22:59:33 -0700124
125 /**
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -0800126 * @brief Remove callback to create and configure instance of the face, based on supplied
127 * Ptr<Node> and Ptr<NetDevice>
Alexander Afanasyev2a269f72013-06-06 22:59:33 -0700128 */
129 void
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -0800130 RemoveNetDeviceFaceCreateCallback(TypeId netDeviceType, NetDeviceFaceCreateCallback callback);
Alexander Afanasyev2a269f72013-06-06 22:59:33 -0700131
132 /**
Spyridon Mastorakis9760bd02014-11-12 13:32:55 -0800133 * \brief Install Ndn stack on the node
134 *
135 * This method will assert if called on a node that already has Ndn object
136 * installed on it
137 *
138 * \param nodeName The name of the node on which to install the stack.
139 *
140 * \returns list of installed faces in the form of a smart pointer
141 * to NdnFaceContainer object
142 */
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700143 Ptr<FaceContainer>
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -0800144 Install(const std::string& nodeName) const;
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700145
146 /**
Alexander Afanasyev4aac5572012-08-09 10:49:55 -0700147 * \brief Install Ndn stack on the node
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700148 *
Alexander Afanasyev4aac5572012-08-09 10:49:55 -0700149 * This method will assert if called on a node that already has Ndn object
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700150 * installed on it
Alexander Afanasyev122f3782013-02-02 00:04:40 -0800151 *
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700152 * \param node The node on which to install the stack.
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -0700153 *
154 * \returns list of installed faces in the form of a smart pointer
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700155 * to FaceContainer object
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700156 */
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700157 Ptr<FaceContainer>
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -0800158 Install(Ptr<Node> node) const;
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700159
160 /**
Alexander Afanasyev4aac5572012-08-09 10:49:55 -0700161 * \brief Install Ndn stack on each node in the input container
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700162 *
163 * The program will assert if this method is called on a container with a node
Alexander Afanasyev4aac5572012-08-09 10:49:55 -0700164 * that already has an ndn object aggregated to it.
Alexander Afanasyev122f3782013-02-02 00:04:40 -0800165 *
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700166 * \param c NodeContainer that holds the set of nodes on which to install the
167 * new stacks.
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -0700168 *
169 * \returns list of installed faces in the form of a smart pointer
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700170 * to FaceContainer object
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700171 */
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700172 Ptr<FaceContainer>
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -0800173 Install(const NodeContainer& c) const;
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700174
175 /**
Alexander Afanasyev4aac5572012-08-09 10:49:55 -0700176 * \brief Install Ndn stack on all nodes in the simulation
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -0700177 *
178 * \returns list of installed faces in the form of a smart pointer
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700179 * to FaceContainer object
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700180 */
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700181 Ptr<FaceContainer>
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -0800182 InstallAll() const;
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700183
Spyridon Mastorakis588fd102014-11-20 19:50:02 -0800184 /**
185 * \brief Set flag indicating necessity to install default routes in FIB
186 */
187 void
188 SetDefaultRoutes(bool needSet);
189
Alexander Afanasyev34e13f32014-12-14 15:13:28 -0800190 static KeyChain&
191 getKeyChain();
192
Alexander Afanasyev11453142011-11-25 16:13:33 -0800193private:
Spyridon Mastorakise4f0d3c2014-10-29 13:20:03 -0700194 shared_ptr<NetDeviceFace>
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -0800195 DefaultNetDeviceCallback(Ptr<Node> node, Ptr<L3Protocol> ndn, Ptr<NetDevice> netDevice) const;
Alexander Afanasyev122f3782013-02-02 00:04:40 -0800196
Spyridon Mastorakise4f0d3c2014-10-29 13:20:03 -0700197 shared_ptr<NetDeviceFace>
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -0800198 PointToPointNetDeviceCallback(Ptr<Node> node, Ptr<L3Protocol> ndn,
199 Ptr<NetDevice> netDevice) const;
Alexander Afanasyev122f3782013-02-02 00:04:40 -0800200
Spyridon Mastorakis86edf6f2014-11-14 19:27:18 -0800201public:
202 void
203 setCustomNdnCxxClocks();
204
Alexander Afanasyev122f3782013-02-02 00:04:40 -0800205private:
Alexander Afanasyev4aac5572012-08-09 10:49:55 -0700206 ObjectFactory m_ndnFactory;
Alexander Afanasyevd9fecdd2012-06-08 16:22:24 -0700207 ObjectFactory m_contentStoreFactory;
Alexander Afanasyev122f3782013-02-02 00:04:40 -0800208
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -0800209 bool m_needSetDefaultRoutes;
Alexander Afanasyevdde1e812015-01-06 14:26:09 -0800210 size_t m_maxCsSize;
Alexander Afanasyev122f3782013-02-02 00:04:40 -0800211
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -0800212 typedef std::list<std::pair<TypeId, NetDeviceFaceCreateCallback>> NetDeviceCallbackList;
Alexander Afanasyev2a269f72013-06-06 22:59:33 -0700213 NetDeviceCallbackList m_netDeviceCallbacks;
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700214};
215
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700216} // namespace ndn
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700217} // namespace ns3
218
Alexander Afanasyev4aac5572012-08-09 10:49:55 -0700219#endif /* NDN_STACK_HELPER_H */