blob: afd797b2f62d527e0ce47b970eadab9c6fcc67ae [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"
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 Afanasyev0ab833e2011-08-18 15:49:13 -070033class CcnxFaceContainer;
Alexander Afanasyev07827182011-12-13 01:07:32 -080034class CcnxFace;
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070035
36/**
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -070037 * \ingroup ccnx
38 * \defgroup ccnx-helpers Helpers
39 */
40/**
41 * \ingroup ccnx-helpers
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070042 * \brief Adding CCNx functionality to existing Nodes.
43 *
44 * This helper enables pcap and ascii tracing of events in the ccnx stack
45 * 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
52 * PcapUserHelperForCcnx and AsciiTraceUserHelperForCcnx are treated as
53 * "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 Afanasyev07827182011-12-13 01:07:32 -080057class CcnxStackHelper
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070058{
59public:
60 /**
Ilya Moiseenko25f7d4d2011-09-29 18:41:06 -070061 * \brief Create a new CcnxStackHelper with a default NDN_FLOODING forwarding stategy
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070062 */
Ilya Moiseenko25f7d4d2011-09-29 18:41:06 -070063 CcnxStackHelper();
64
65 /**
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -070066 * \brief Destroy the CcnxStackHelper
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070067 */
68 virtual ~CcnxStackHelper ();
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070069
70 /**
Alexander Afanasyevd9fecdd2012-06-08 16:22:24 -070071 * @brief Set forwarding strategy class
72 * @param forwardingStrategy string containing name of the forwarding strategy class
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -070073 *
Alexander Afanasyevd9fecdd2012-06-08 16:22:24 -070074 * Valid options are "ns3::CcnxFloodingStrategy" (default) and "ns3::CcnxBestRouteStrategy"
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070075 *
Alexander Afanasyevd9fecdd2012-06-08 16:22:24 -070076 * Other strategies can be implemented, inheriting ns3::CcnxForwardingStrategy class
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070077 */
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -070078 void
Alexander Afanasyevd9fecdd2012-06-08 16:22:24 -070079 SetForwardingStrategy (const std::string &forwardingStrategy);
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070080
81 /**
Alexander Afanasyevd9fecdd2012-06-08 16:22:24 -070082 * @brief Set content store class
83 * @param contentStore string, representing class of the content store
84 */
85 void
86 SetContentStore (const std::string &contentStore);
87
88 /**
Alexander Afanasyev11453142011-11-25 16:13:33 -080089 * @brief Enable Interest limits (disabled by default)
Alexander Afanasyevc39f0b42011-11-28 12:51:12 -080090 *
91 * @param enable Enable or disable limits
92 * @param avgRtt Average RTT
93 * @param avgContentObject Average size of contentObject packets (including all headers)
94 * @param avgInterest Average size of interest packets (including all headers)
Alexander Afanasyev11453142011-11-25 16:13:33 -080095 */
96 void
Alexander Afanasyevc39f0b42011-11-28 12:51:12 -080097 EnableLimits (bool enable = true, Time avgRtt=Seconds(0.1), uint32_t avgContentObject=1100, uint32_t avgInterest=40);
Alexander Afanasyev11453142011-11-25 16:13:33 -080098
99 /**
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -0700100 * \brief Install CCNx stack on the node
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700101 *
102 * This method will assert if called on a node that already has Ccnx object
103 * installed on it
104 *
105 * \param nodeName The name of the node on which to install the stack.
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -0700106 *
107 * \returns list of installed faces in the form of a smart pointer
108 * to CcnxFaceContainer object
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700109 */
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -0700110 Ptr<CcnxFaceContainer>
111 Install (std::string nodeName) const;
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700112
113 /**
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -0700114 * \brief Install CCNx stack on the node
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700115 *
116 * This method will assert if called on a node that already has Ccnx object
117 * installed on it
118 *
119 * \param node The node on which to install the stack.
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -0700120 *
121 * \returns list of installed faces in the form of a smart pointer
122 * to CcnxFaceContainer object
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700123 */
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -0700124 Ptr<CcnxFaceContainer>
125 Install (Ptr<Node> node) const;
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700126
127 /**
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -0700128 * \brief Install CCNx stack on each node in the input container
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700129 *
130 * The program will assert if this method is called on a container with a node
131 * that already has an ccnx object aggregated to it.
132 *
133 * \param c NodeContainer that holds the set of nodes on which to install the
134 * new stacks.
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -0700135 *
136 * \returns list of installed faces in the form of a smart pointer
137 * to CcnxFaceContainer object
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700138 */
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -0700139 Ptr<CcnxFaceContainer>
140 Install (NodeContainer c) const;
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700141
142 /**
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -0700143 * \brief Install CCNx stack on all nodes in the simulation
144 *
145 * \returns list of installed faces in the form of a smart pointer
146 * to CcnxFaceContainer object
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700147 */
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -0700148 Ptr<CcnxFaceContainer>
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700149 InstallAll () const;
150
151 /**
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -0700152 * \brief Add forwarding entry in FIB
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -0700153 *
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -0700154 * \param nodeName Node name
155 * \param prefix Routing prefix
156 * \param faceId Face index
157 * \param metric Routing metric
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700158 */
Alexander Afanasyevb7626842012-01-12 13:43:33 -0800159 static void
160 AddRoute (std::string nodeName, std::string prefix, uint32_t faceId, int32_t metric);
Alexander Afanasyev52e9aa92011-11-15 20:23:20 -0800161
162 /**
163 * \brief Add forwarding entry in FIB
164 *
165 * \param node Node
166 * \param prefix Routing prefix
167 * \param face Face
168 * \param metric Routing metric
169 */
Alexander Afanasyevb7626842012-01-12 13:43:33 -0800170 static void
171 AddRoute (Ptr<Node> node, std::string prefix, Ptr<CcnxFace> face, int32_t metric);
Alexander Afanasyev4a5c2c12011-12-12 18:50:57 -0800172
173 /**
174 * \brief Set flag indicating necessity to install default routes in FIB
175 */
176 void
177 SetDefaultRoutes (bool needSet);
Alexander Afanasyev52e9aa92011-11-15 20:23:20 -0800178
Alexander Afanasyev11453142011-11-25 16:13:33 -0800179private:
180 CcnxStackHelper (const CcnxStackHelper &);
181 CcnxStackHelper &operator = (const CcnxStackHelper &o);
Alexander Afanasyev52e9aa92011-11-15 20:23:20 -0800182
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700183private:
Alexander Afanasyev11453142011-11-25 16:13:33 -0800184 ObjectFactory m_strategyFactory;
Alexander Afanasyevd9fecdd2012-06-08 16:22:24 -0700185 ObjectFactory m_contentStoreFactory;
Alexander Afanasyev11453142011-11-25 16:13:33 -0800186 bool m_limitsEnabled;
Alexander Afanasyevc39f0b42011-11-28 12:51:12 -0800187 Time m_avgRtt;
188 uint32_t m_avgContentObjectSize;
189 uint32_t m_avgInterestSize;
Alexander Afanasyev8e2f1122012-04-17 15:01:11 -0700190 bool m_needSetDefaultRoutes;
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700191};
192
193} // namespace ns3
194
195#endif /* CCNX_STACK_HELPER_H */