blob: 1a76201fc1234b10cd9eb1fb865935b7091a7e59 [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
22#ifndef CCNX_STACK_HELPER_H
23#define CCNX_STACK_HELPER_H
24
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070025#include "ns3/packet.h"
26#include "ns3/ptr.h"
27#include "ns3/object-factory.h"
Ilya Moiseenkofbd0a8b2011-10-28 13:07:16 -070028#include "ns3/point-to-point-net-device.h"
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070029#include "ccnx-trace-helper.h"
Ilya Moiseenko25f7d4d2011-09-29 18:41:06 -070030#include "ns3/ccnx-forwarding-helper.h"
31#include "ns3/ccnx.h"
Ilya Moiseenkofbd0a8b2011-10-28 13:07:16 -070032#include "ns3/data-rate.h"
33#include "ns3/ccnx-interest-header.h"
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070034
35namespace ns3 {
36
37class Node;
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -070038class CcnxFaceContainer;
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070039
40/**
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -070041 * \ingroup ccnx
42 * \defgroup ccnx-helpers Helpers
43 */
44/**
45 * \ingroup ccnx-helpers
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070046 * \brief Adding CCNx functionality to existing Nodes.
47 *
48 * This helper enables pcap and ascii tracing of events in the ccnx stack
49 * associated with a node. This is substantially similar to the tracing that
50 * happens in device helpers, but the important difference is that, well, there
51 * is no device. This means that the creation of output file names will change,
52 * and also the user-visible methods will not reference devices and therefore
53 * the number of trace enable methods is reduced.
54 *
55 * Normally we eschew multiple inheritance, however, the classes
56 * PcapUserHelperForCcnx and AsciiTraceUserHelperForCcnx are treated as
57 * "mixins". A mixin is a self-contained class that encapsulates a general
58 * attribute or a set of functionality that may be of interest to many other
59 * classes.
60 */
61class CcnxStackHelper : public PcapHelperForCcnx, public AsciiTraceHelperForCcnx
62{
63public:
64 /**
Ilya Moiseenko25f7d4d2011-09-29 18:41:06 -070065 * \brief Create a new CcnxStackHelper with a default NDN_FLOODING forwarding stategy
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070066 */
Ilya Moiseenko25f7d4d2011-09-29 18:41:06 -070067 CcnxStackHelper();
68
69 /**
70 * \brief Create a new CcnxStackHelper with a specified forwarding strategy
71 */
72 CcnxStackHelper (Ccnx::ForwardingStrategy);
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070073
74 /**
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -070075 * \brief Destroy the CcnxStackHelper
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070076 */
77 virtual ~CcnxStackHelper ();
78 CcnxStackHelper (const CcnxStackHelper &);
79 CcnxStackHelper &operator = (const CcnxStackHelper &o);
80
81 /**
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -070082 * Set forwarding strategy helper
83 *
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070084 * \param forwarding a new forwarding helper
85 *
86 * Set the forwarding helper to use during Install. The forwarding helper is
87 * really an object factory which is used to create an object of type
88 * ns3::CcnxFrProtocol per node. This forwarding object is then associated to
89 * a single ns3::Ccnx object through its ns3::Ccnx::SetforwardingProtocol.
90 */
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -070091 void
Ilya Moiseenko25f7d4d2011-09-29 18:41:06 -070092 SetForwardingStrategy (Ccnx::ForwardingStrategy strategy);
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070093
94 /**
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -070095 * \brief Install CCNx stack on the node
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070096 *
97 * This method will assert if called on a node that already has Ccnx object
98 * installed on it
99 *
100 * \param nodeName The name of the node on which to install the stack.
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -0700101 *
102 * \returns list of installed faces in the form of a smart pointer
103 * to CcnxFaceContainer object
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700104 */
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -0700105 Ptr<CcnxFaceContainer>
106 Install (std::string nodeName) const;
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700107
108 /**
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -0700109 * \brief Install CCNx stack on the node
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700110 *
111 * This method will assert if called on a node that already has Ccnx object
112 * installed on it
113 *
114 * \param node The node on which to install the stack.
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -0700115 *
116 * \returns list of installed faces in the form of a smart pointer
117 * to CcnxFaceContainer object
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700118 */
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -0700119 Ptr<CcnxFaceContainer>
120 Install (Ptr<Node> node) const;
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700121
122 /**
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -0700123 * \brief Install CCNx stack on each node in the input container
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700124 *
125 * The program will assert if this method is called on a container with a node
126 * that already has an ccnx object aggregated to it.
127 *
128 * \param c NodeContainer that holds the set of nodes on which to install the
129 * new stacks.
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -0700130 *
131 * \returns list of installed faces in the form of a smart pointer
132 * to CcnxFaceContainer object
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700133 */
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -0700134 Ptr<CcnxFaceContainer>
135 Install (NodeContainer c) const;
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700136
137 /**
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -0700138 * \brief Install CCNx stack on all nodes in the simulation
139 *
140 * \returns list of installed faces in the form of a smart pointer
141 * to CcnxFaceContainer object
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700142 */
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -0700143 Ptr<CcnxFaceContainer>
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700144 InstallAll () const;
145
146 /**
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -0700147 * \brief Add forwarding entry in FIB
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -0700148 *
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -0700149 * \param nodeName Node name
150 * \param prefix Routing prefix
151 * \param faceId Face index
152 * \param metric Routing metric
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700153 */
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -0700154 void
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -0700155 AddRoute (std::string nodeName, std::string prefix, uint32_t faceId, int32_t metric);
Alexander Afanasyev52e9aa92011-11-15 20:23:20 -0800156
157 /**
158 * \brief Add forwarding entry in FIB
159 *
160 * \param node Node
161 * \param prefix Routing prefix
162 * \param face Face
163 * \param metric Routing metric
164 */
Ilya Moiseenkoc9266042011-11-02 17:49:21 -0700165 void
Alexander Afanasyev52e9aa92011-11-15 20:23:20 -0800166 AddRoute (Ptr<Node> node, std::string prefix, Ptr<CcnxFace> face, int32_t metric);
167
168
169 /**
170 * \brief Install fake IPv4 routes that could be used to find nexthops for CCNx routes
171 *
172 * This method adds fake routes to all nodes, where each route is /32 and IPv4 address equal to node number.
173 * For example, node 5 will have direct route to 0.0.0.5.
174 */
175 void
176 InstallFakeGlobalRoutes ();
177
178 /**
179 * \brief Installs CCNx route to `node` based on fake IPv4 routes
180 *
181 * Actual route is "/<nodeId>"
182 *
183 * \param node Pointer to a node, which should be reached from all other nodes
184 */
185 void
186 InstallRouteTo (Ptr<Node> node);
187
188 /**
189 * \brief Installs CCNx route to all nodes based on fake IPv4 routes
190 *
191 * \see InstallRouteTo
192 */
193 void
194 InstallRoutesToAll ();
195
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700196private:
Ilya Moiseenko25f7d4d2011-09-29 18:41:06 -0700197 CcnxForwardingHelper m_forwardingHelper;
198
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700199 /**
200 * @brief Enable pcap output the indicated Ccnx and interface pair.
201 * @internal
202 *
203 * @param prefix Filename prefix to use for pcap files.
204 * @param ccnx Ptr to the Ccnx interface on which you want to enable tracing.
205 * @param interface Interface ID on the Ccnx on which you want to enable tracing.
206 */
207 virtual void EnablePcapCcnxInternal (std::string prefix,
208 Ptr<Ccnx> ccnx,
209 uint32_t interface,
210 bool explicitFilename);
211
212 /**
213 * @brief Enable ascii trace output on the indicated Ccnx and interface pair.
214 * @internal
215 *
216 * @param stream An OutputStreamWrapper representing an existing file to use
217 * when writing trace data.
218 * @param prefix Filename prefix to use for ascii trace files.
219 * @param ccnx Ptr to the Ccnx interface on which you want to enable tracing.
220 * @param interface Interface ID on the Ccnx on which you want to enable tracing.
221 */
222 virtual void EnableAsciiCcnxInternal (Ptr<OutputStreamWrapper> stream,
223 std::string prefix,
224 Ptr<Ccnx> ccnx,
225 uint32_t interface,
226 bool explicitFilename);
227
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -0700228 // /**
229 // * \internal
230 // */
231 // static void CreateAndAggregateObjectFromTypeId (Ptr<Node> node, const std::string typeId);
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700232
233 /**
234 * \internal
235 */
236 static void Cleanup (void);
237
238 /**
239 * \internal
240 */
241 bool PcapHooked (Ptr<Ccnx> ccnx);
242
243 /**
244 * \internal
245 */
246 bool AsciiHooked (Ptr<Ccnx> ccnx);
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700247};
248
249} // namespace ns3
250
251#endif /* CCNX_STACK_HELPER_H */