Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */ |
Alexander Afanasyev | 45b92d4 | 2011-08-14 23:11:38 -0700 | [diff] [blame] | 2 | /* |
| 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 Moiseenko | 25f7d4d | 2011-09-29 18:41:06 -0700 | [diff] [blame] | 18 | * Author: Alexander Afanasyev <alexander.afanasyev@ucla.edu> |
| 19 | * Ilya Moiseenko <iliamo@cs.ucla.edu> |
Alexander Afanasyev | 45b92d4 | 2011-08-14 23:11:38 -0700 | [diff] [blame] | 20 | */ |
| 21 | |
| 22 | #ifndef CCNX_STACK_HELPER_H |
| 23 | #define CCNX_STACK_HELPER_H |
| 24 | |
Alexander Afanasyev | 45b92d4 | 2011-08-14 23:11:38 -0700 | [diff] [blame] | 25 | #include "ns3/packet.h" |
| 26 | #include "ns3/ptr.h" |
| 27 | #include "ns3/object-factory.h" |
Ilya Moiseenko | fbd0a8b | 2011-10-28 13:07:16 -0700 | [diff] [blame] | 28 | #include "ns3/point-to-point-net-device.h" |
Alexander Afanasyev | 45b92d4 | 2011-08-14 23:11:38 -0700 | [diff] [blame] | 29 | #include "ccnx-trace-helper.h" |
Ilya Moiseenko | 25f7d4d | 2011-09-29 18:41:06 -0700 | [diff] [blame] | 30 | #include "ns3/ccnx-forwarding-helper.h" |
| 31 | #include "ns3/ccnx.h" |
Ilya Moiseenko | fbd0a8b | 2011-10-28 13:07:16 -0700 | [diff] [blame] | 32 | #include "ns3/ccnx-interest-header.h" |
Alexander Afanasyev | c39f0b4 | 2011-11-28 12:51:12 -0800 | [diff] [blame] | 33 | #include "ns3/nstime.h" |
Alexander Afanasyev | 45b92d4 | 2011-08-14 23:11:38 -0700 | [diff] [blame] | 34 | |
| 35 | namespace ns3 { |
| 36 | |
| 37 | class Node; |
Alexander Afanasyev | 0ab833e | 2011-08-18 15:49:13 -0700 | [diff] [blame] | 38 | class CcnxFaceContainer; |
Alexander Afanasyev | 45b92d4 | 2011-08-14 23:11:38 -0700 | [diff] [blame] | 39 | |
| 40 | /** |
Alexander Afanasyev | 0ab833e | 2011-08-18 15:49:13 -0700 | [diff] [blame] | 41 | * \ingroup ccnx |
| 42 | * \defgroup ccnx-helpers Helpers |
| 43 | */ |
| 44 | /** |
| 45 | * \ingroup ccnx-helpers |
Alexander Afanasyev | 45b92d4 | 2011-08-14 23:11:38 -0700 | [diff] [blame] | 46 | * \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 | */ |
Alexander Afanasyev | 1145314 | 2011-11-25 16:13:33 -0800 | [diff] [blame] | 61 | class CcnxStackHelper //: public PcapHelperForCcnx, public AsciiTraceHelperForCcnx |
Alexander Afanasyev | 45b92d4 | 2011-08-14 23:11:38 -0700 | [diff] [blame] | 62 | { |
| 63 | public: |
| 64 | /** |
Ilya Moiseenko | 25f7d4d | 2011-09-29 18:41:06 -0700 | [diff] [blame] | 65 | * \brief Create a new CcnxStackHelper with a default NDN_FLOODING forwarding stategy |
Alexander Afanasyev | 45b92d4 | 2011-08-14 23:11:38 -0700 | [diff] [blame] | 66 | */ |
Ilya Moiseenko | 25f7d4d | 2011-09-29 18:41:06 -0700 | [diff] [blame] | 67 | CcnxStackHelper(); |
| 68 | |
| 69 | /** |
Alexander Afanasyev | 0ab833e | 2011-08-18 15:49:13 -0700 | [diff] [blame] | 70 | * \brief Destroy the CcnxStackHelper |
Alexander Afanasyev | 45b92d4 | 2011-08-14 23:11:38 -0700 | [diff] [blame] | 71 | */ |
| 72 | virtual ~CcnxStackHelper (); |
Alexander Afanasyev | 45b92d4 | 2011-08-14 23:11:38 -0700 | [diff] [blame] | 73 | |
| 74 | /** |
Alexander Afanasyev | 1145314 | 2011-11-25 16:13:33 -0800 | [diff] [blame] | 75 | * @brief Set forwarding strategy helper |
Alexander Afanasyev | 0ab833e | 2011-08-18 15:49:13 -0700 | [diff] [blame] | 76 | * |
Alexander Afanasyev | 45b92d4 | 2011-08-14 23:11:38 -0700 | [diff] [blame] | 77 | * \param forwarding a new forwarding helper |
| 78 | * |
| 79 | * Set the forwarding helper to use during Install. The forwarding helper is |
| 80 | * really an object factory which is used to create an object of type |
| 81 | * ns3::CcnxFrProtocol per node. This forwarding object is then associated to |
| 82 | * a single ns3::Ccnx object through its ns3::Ccnx::SetforwardingProtocol. |
| 83 | */ |
Alexander Afanasyev | 0ab833e | 2011-08-18 15:49:13 -0700 | [diff] [blame] | 84 | void |
Alexander Afanasyev | 1145314 | 2011-11-25 16:13:33 -0800 | [diff] [blame] | 85 | SetForwardingStrategy (std::string forwardingStrategy); |
Alexander Afanasyev | 45b92d4 | 2011-08-14 23:11:38 -0700 | [diff] [blame] | 86 | |
| 87 | /** |
Alexander Afanasyev | 1145314 | 2011-11-25 16:13:33 -0800 | [diff] [blame] | 88 | * @brief Enable Interest limits (disabled by default) |
Alexander Afanasyev | c39f0b4 | 2011-11-28 12:51:12 -0800 | [diff] [blame] | 89 | * |
| 90 | * @param enable Enable or disable limits |
| 91 | * @param avgRtt Average RTT |
| 92 | * @param avgContentObject Average size of contentObject packets (including all headers) |
| 93 | * @param avgInterest Average size of interest packets (including all headers) |
Alexander Afanasyev | 1145314 | 2011-11-25 16:13:33 -0800 | [diff] [blame] | 94 | */ |
| 95 | void |
Alexander Afanasyev | c39f0b4 | 2011-11-28 12:51:12 -0800 | [diff] [blame] | 96 | EnableLimits (bool enable = true, Time avgRtt=Seconds(0.1), uint32_t avgContentObject=1100, uint32_t avgInterest=40); |
Alexander Afanasyev | 1145314 | 2011-11-25 16:13:33 -0800 | [diff] [blame] | 97 | |
| 98 | /** |
Alexander Afanasyev | 0ab833e | 2011-08-18 15:49:13 -0700 | [diff] [blame] | 99 | * \brief Install CCNx stack on the node |
Alexander Afanasyev | 45b92d4 | 2011-08-14 23:11:38 -0700 | [diff] [blame] | 100 | * |
| 101 | * This method will assert if called on a node that already has Ccnx object |
| 102 | * installed on it |
| 103 | * |
| 104 | * \param nodeName The name of the node on which to install the stack. |
Alexander Afanasyev | 0ab833e | 2011-08-18 15:49:13 -0700 | [diff] [blame] | 105 | * |
| 106 | * \returns list of installed faces in the form of a smart pointer |
| 107 | * to CcnxFaceContainer object |
Alexander Afanasyev | 45b92d4 | 2011-08-14 23:11:38 -0700 | [diff] [blame] | 108 | */ |
Alexander Afanasyev | 0ab833e | 2011-08-18 15:49:13 -0700 | [diff] [blame] | 109 | Ptr<CcnxFaceContainer> |
| 110 | Install (std::string nodeName) const; |
Alexander Afanasyev | 45b92d4 | 2011-08-14 23:11:38 -0700 | [diff] [blame] | 111 | |
| 112 | /** |
Alexander Afanasyev | 0ab833e | 2011-08-18 15:49:13 -0700 | [diff] [blame] | 113 | * \brief Install CCNx stack on the node |
Alexander Afanasyev | 45b92d4 | 2011-08-14 23:11:38 -0700 | [diff] [blame] | 114 | * |
| 115 | * This method will assert if called on a node that already has Ccnx object |
| 116 | * installed on it |
| 117 | * |
| 118 | * \param node The node on which to install the stack. |
Alexander Afanasyev | 0ab833e | 2011-08-18 15:49:13 -0700 | [diff] [blame] | 119 | * |
| 120 | * \returns list of installed faces in the form of a smart pointer |
| 121 | * to CcnxFaceContainer object |
Alexander Afanasyev | 45b92d4 | 2011-08-14 23:11:38 -0700 | [diff] [blame] | 122 | */ |
Alexander Afanasyev | 0ab833e | 2011-08-18 15:49:13 -0700 | [diff] [blame] | 123 | Ptr<CcnxFaceContainer> |
| 124 | Install (Ptr<Node> node) const; |
Alexander Afanasyev | 45b92d4 | 2011-08-14 23:11:38 -0700 | [diff] [blame] | 125 | |
| 126 | /** |
Alexander Afanasyev | 0ab833e | 2011-08-18 15:49:13 -0700 | [diff] [blame] | 127 | * \brief Install CCNx stack on each node in the input container |
Alexander Afanasyev | 45b92d4 | 2011-08-14 23:11:38 -0700 | [diff] [blame] | 128 | * |
| 129 | * The program will assert if this method is called on a container with a node |
| 130 | * that already has an ccnx object aggregated to it. |
| 131 | * |
| 132 | * \param c NodeContainer that holds the set of nodes on which to install the |
| 133 | * new stacks. |
Alexander Afanasyev | 0ab833e | 2011-08-18 15:49:13 -0700 | [diff] [blame] | 134 | * |
| 135 | * \returns list of installed faces in the form of a smart pointer |
| 136 | * to CcnxFaceContainer object |
Alexander Afanasyev | 45b92d4 | 2011-08-14 23:11:38 -0700 | [diff] [blame] | 137 | */ |
Alexander Afanasyev | 0ab833e | 2011-08-18 15:49:13 -0700 | [diff] [blame] | 138 | Ptr<CcnxFaceContainer> |
| 139 | Install (NodeContainer c) const; |
Alexander Afanasyev | 45b92d4 | 2011-08-14 23:11:38 -0700 | [diff] [blame] | 140 | |
| 141 | /** |
Alexander Afanasyev | 0ab833e | 2011-08-18 15:49:13 -0700 | [diff] [blame] | 142 | * \brief Install CCNx stack on all nodes in the simulation |
| 143 | * |
| 144 | * \returns list of installed faces in the form of a smart pointer |
| 145 | * to CcnxFaceContainer object |
Alexander Afanasyev | 45b92d4 | 2011-08-14 23:11:38 -0700 | [diff] [blame] | 146 | */ |
Alexander Afanasyev | 0ab833e | 2011-08-18 15:49:13 -0700 | [diff] [blame] | 147 | Ptr<CcnxFaceContainer> |
Alexander Afanasyev | 45b92d4 | 2011-08-14 23:11:38 -0700 | [diff] [blame] | 148 | InstallAll () const; |
| 149 | |
| 150 | /** |
Alexander Afanasyev | c5a23e2 | 2011-09-07 00:37:36 -0700 | [diff] [blame] | 151 | * \brief Add forwarding entry in FIB |
Alexander Afanasyev | 0ab833e | 2011-08-18 15:49:13 -0700 | [diff] [blame] | 152 | * |
Alexander Afanasyev | c5a23e2 | 2011-09-07 00:37:36 -0700 | [diff] [blame] | 153 | * \param nodeName Node name |
| 154 | * \param prefix Routing prefix |
| 155 | * \param faceId Face index |
| 156 | * \param metric Routing metric |
Alexander Afanasyev | 45b92d4 | 2011-08-14 23:11:38 -0700 | [diff] [blame] | 157 | */ |
Alexander Afanasyev | 0ab833e | 2011-08-18 15:49:13 -0700 | [diff] [blame] | 158 | void |
Alexander Afanasyev | c5a23e2 | 2011-09-07 00:37:36 -0700 | [diff] [blame] | 159 | AddRoute (std::string nodeName, std::string prefix, uint32_t faceId, int32_t metric); |
Alexander Afanasyev | 52e9aa9 | 2011-11-15 20:23:20 -0800 | [diff] [blame] | 160 | |
| 161 | /** |
| 162 | * \brief Add forwarding entry in FIB |
| 163 | * |
| 164 | * \param node Node |
| 165 | * \param prefix Routing prefix |
| 166 | * \param face Face |
| 167 | * \param metric Routing metric |
| 168 | */ |
Ilya Moiseenko | c926604 | 2011-11-02 17:49:21 -0700 | [diff] [blame] | 169 | void |
Alexander Afanasyev | 52e9aa9 | 2011-11-15 20:23:20 -0800 | [diff] [blame] | 170 | AddRoute (Ptr<Node> node, std::string prefix, Ptr<CcnxFace> face, int32_t metric); |
| 171 | |
| 172 | |
| 173 | /** |
| 174 | * \brief Install fake IPv4 routes that could be used to find nexthops for CCNx routes |
| 175 | * |
| 176 | * This method adds fake routes to all nodes, where each route is /32 and IPv4 address equal to node number. |
| 177 | * For example, node 5 will have direct route to 0.0.0.5. |
| 178 | */ |
| 179 | void |
| 180 | InstallFakeGlobalRoutes (); |
| 181 | |
| 182 | /** |
| 183 | * \brief Installs CCNx route to `node` based on fake IPv4 routes |
| 184 | * |
| 185 | * Actual route is "/<nodeId>" |
| 186 | * |
| 187 | * \param node Pointer to a node, which should be reached from all other nodes |
| 188 | */ |
| 189 | void |
| 190 | InstallRouteTo (Ptr<Node> node); |
| 191 | |
| 192 | /** |
| 193 | * \brief Installs CCNx route to all nodes based on fake IPv4 routes |
| 194 | * |
| 195 | * \see InstallRouteTo |
| 196 | */ |
| 197 | void |
| 198 | InstallRoutesToAll (); |
Alexander Afanasyev | 1145314 | 2011-11-25 16:13:33 -0800 | [diff] [blame] | 199 | |
| 200 | private: |
| 201 | CcnxStackHelper (const CcnxStackHelper &); |
| 202 | CcnxStackHelper &operator = (const CcnxStackHelper &o); |
Alexander Afanasyev | 52e9aa9 | 2011-11-15 20:23:20 -0800 | [diff] [blame] | 203 | |
Alexander Afanasyev | 45b92d4 | 2011-08-14 23:11:38 -0700 | [diff] [blame] | 204 | private: |
Alexander Afanasyev | 1145314 | 2011-11-25 16:13:33 -0800 | [diff] [blame] | 205 | ObjectFactory m_strategyFactory; |
| 206 | bool m_limitsEnabled; |
Alexander Afanasyev | c39f0b4 | 2011-11-28 12:51:12 -0800 | [diff] [blame] | 207 | Time m_avgRtt; |
| 208 | uint32_t m_avgContentObjectSize; |
| 209 | uint32_t m_avgInterestSize; |
Alexander Afanasyev | 1145314 | 2011-11-25 16:13:33 -0800 | [diff] [blame] | 210 | |
| 211 | // /** |
| 212 | // * @brief Enable pcap output the indicated Ccnx and interface pair. |
| 213 | // * @internal |
| 214 | // * |
| 215 | // * @param prefix Filename prefix to use for pcap files. |
| 216 | // * @param ccnx Ptr to the Ccnx interface on which you want to enable tracing. |
| 217 | // * @param interface Interface ID on the Ccnx on which you want to enable tracing. |
| 218 | // */ |
| 219 | // virtual void EnablePcapCcnxInternal (std::string prefix, |
| 220 | // Ptr<Ccnx> ccnx, |
| 221 | // uint32_t interface, |
| 222 | // bool explicitFilename); |
Alexander Afanasyev | 45b92d4 | 2011-08-14 23:11:38 -0700 | [diff] [blame] | 223 | |
Alexander Afanasyev | 1145314 | 2011-11-25 16:13:33 -0800 | [diff] [blame] | 224 | // /** |
| 225 | // * @brief Enable ascii trace output on the indicated Ccnx and interface pair. |
| 226 | // * @internal |
| 227 | // * |
| 228 | // * @param stream An OutputStreamWrapper representing an existing file to use |
| 229 | // * when writing trace data. |
| 230 | // * @param prefix Filename prefix to use for ascii trace files. |
| 231 | // * @param ccnx Ptr to the Ccnx interface on which you want to enable tracing. |
| 232 | // * @param interface Interface ID on the Ccnx on which you want to enable tracing. |
| 233 | // */ |
| 234 | // virtual void EnableAsciiCcnxInternal (Ptr<OutputStreamWrapper> stream, |
| 235 | // std::string prefix, |
| 236 | // Ptr<Ccnx> ccnx, |
| 237 | // uint32_t interface, |
| 238 | // bool explicitFilename); |
| 239 | |
| 240 | // // /** |
| 241 | // // * \internal |
| 242 | // // */ |
| 243 | // // static void CreateAndAggregateObjectFromTypeId (Ptr<Node> node, const std::string typeId); |
Alexander Afanasyev | 45b92d4 | 2011-08-14 23:11:38 -0700 | [diff] [blame] | 244 | |
Alexander Afanasyev | c5a23e2 | 2011-09-07 00:37:36 -0700 | [diff] [blame] | 245 | // /** |
| 246 | // * \internal |
| 247 | // */ |
Alexander Afanasyev | 1145314 | 2011-11-25 16:13:33 -0800 | [diff] [blame] | 248 | // static void Cleanup (void); |
Alexander Afanasyev | 45b92d4 | 2011-08-14 23:11:38 -0700 | [diff] [blame] | 249 | |
Alexander Afanasyev | 1145314 | 2011-11-25 16:13:33 -0800 | [diff] [blame] | 250 | // /** |
| 251 | // * \internal |
| 252 | // */ |
| 253 | // bool PcapHooked (Ptr<Ccnx> ccnx); |
Alexander Afanasyev | 45b92d4 | 2011-08-14 23:11:38 -0700 | [diff] [blame] | 254 | |
Alexander Afanasyev | 1145314 | 2011-11-25 16:13:33 -0800 | [diff] [blame] | 255 | // /** |
| 256 | // * \internal |
| 257 | // */ |
| 258 | // bool AsciiHooked (Ptr<Ccnx> ccnx); |
Alexander Afanasyev | 45b92d4 | 2011-08-14 23:11:38 -0700 | [diff] [blame] | 259 | }; |
| 260 | |
| 261 | } // namespace ns3 |
| 262 | |
| 263 | #endif /* CCNX_STACK_HELPER_H */ |