Alexander Afanasyev | c9d5c1a | 2012-11-21 18:00:26 -0800 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */ |
| 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 | * |
| 18 | * Author: Alexander Afanasyev <alexander.afanasyev@ucla.edu> |
| 19 | */ |
| 20 | |
| 21 | #ifndef NDN_L3_AGGREGATE_TRACER_H |
| 22 | #define NDN_L3_AGGREGATE_TRACER_H |
| 23 | |
| 24 | #include "ndn-l3-tracer.h" |
| 25 | |
| 26 | #include <ns3/nstime.h> |
| 27 | #include <ns3/event-id.h> |
Alexander Afanasyev | a68783a | 2013-06-27 13:39:04 -0700 | [diff] [blame] | 28 | #include <ns3/node-container.h> |
Alexander Afanasyev | c9d5c1a | 2012-11-21 18:00:26 -0800 | [diff] [blame] | 29 | |
Alexander Afanasyev | 5931480 | 2012-11-26 14:56:04 -0800 | [diff] [blame] | 30 | #include <boost/tuple/tuple.hpp> |
| 31 | #include <boost/shared_ptr.hpp> |
| 32 | #include <map> |
| 33 | #include <list> |
| 34 | |
Alexander Afanasyev | c9d5c1a | 2012-11-21 18:00:26 -0800 | [diff] [blame] | 35 | namespace ns3 { |
| 36 | namespace ndn { |
| 37 | |
Alexander Afanasyev | 5931480 | 2012-11-26 14:56:04 -0800 | [diff] [blame] | 38 | /** |
| 39 | * @ingroup ndn |
| 40 | * @brief CCNx network-layer tracer for aggregate packet counts |
| 41 | */ |
Alexander Afanasyev | c9d5c1a | 2012-11-21 18:00:26 -0800 | [diff] [blame] | 42 | class L3AggregateTracer : public L3Tracer |
| 43 | { |
| 44 | public: |
Alexander Afanasyev | 5931480 | 2012-11-26 14:56:04 -0800 | [diff] [blame] | 45 | /** |
| 46 | * @brief Trace constructor that attaches to the node using node pointer |
| 47 | * @param os reference to the output stream |
| 48 | * @param node pointer to the node |
| 49 | */ |
| 50 | L3AggregateTracer (boost::shared_ptr<std::ostream> os, Ptr<Node> node); |
Alexander Afanasyev | 37b84c5 | 2013-04-26 13:38:52 -0700 | [diff] [blame] | 51 | |
Alexander Afanasyev | 5931480 | 2012-11-26 14:56:04 -0800 | [diff] [blame] | 52 | /** |
| 53 | * @brief Trace constructor that attaches to the node using node name |
| 54 | * @param os reference to the output stream |
| 55 | * @param nodeName name of the node registered using Names::Add |
| 56 | */ |
| 57 | L3AggregateTracer (boost::shared_ptr<std::ostream> os, const std::string &nodeName); |
| 58 | |
| 59 | /** |
| 60 | * @brief Destructor |
| 61 | */ |
| 62 | virtual ~L3AggregateTracer (); |
| 63 | |
| 64 | /** |
| 65 | * @brief Helper method to install tracers on all simulation nodes |
| 66 | * |
Alexander Afanasyev | 5352af3 | 2013-07-15 09:51:28 -0700 | [diff] [blame] | 67 | * @param file File to which traces will be written. If filename is -, then std::out is used |
Alexander Afanasyev | 5931480 | 2012-11-26 14:56:04 -0800 | [diff] [blame] | 68 | * @param averagingPeriod How often data will be written into the trace file (default, every half second) |
| 69 | * |
| 70 | * @returns a tuple of reference to output stream and list of tracers. !!! Attention !!! This tuple needs to be preserved |
| 71 | * for the lifetime of simulation, otherwise SEGFAULTs are inevitable |
Alexander Afanasyev | 37b84c5 | 2013-04-26 13:38:52 -0700 | [diff] [blame] | 72 | * |
Alexander Afanasyev | 5931480 | 2012-11-26 14:56:04 -0800 | [diff] [blame] | 73 | */ |
| 74 | static boost::tuple< boost::shared_ptr<std::ostream>, std::list<Ptr<L3AggregateTracer> > > |
| 75 | InstallAll (const std::string &file, Time averagingPeriod = Seconds (0.5)); |
| 76 | |
Alexander Afanasyev | a68783a | 2013-06-27 13:39:04 -0700 | [diff] [blame] | 77 | /** |
| 78 | * @brief Helper method to install tracers on the selected simulation nodes |
| 79 | * |
| 80 | * @param nodes Nodes on which to install tracer |
Alexander Afanasyev | 5352af3 | 2013-07-15 09:51:28 -0700 | [diff] [blame] | 81 | * @param file File to which traces will be written. If filename is -, then std::out is used |
Alexander Afanasyev | a68783a | 2013-06-27 13:39:04 -0700 | [diff] [blame] | 82 | * @param averagingPeriod How often data will be written into the trace file (default, every half second) |
| 83 | * |
| 84 | * @returns a tuple of reference to output stream and list of tracers. !!! Attention !!! This tuple needs to be preserved |
| 85 | * for the lifetime of simulation, otherwise SEGFAULTs are inevitable |
| 86 | * |
| 87 | */ |
| 88 | static boost::tuple< boost::shared_ptr<std::ostream>, std::list<Ptr<L3AggregateTracer> > > |
| 89 | Install (const NodeContainer &nodes, const std::string &file, Time averagingPeriod = Seconds (0.5)); |
| 90 | |
| 91 | /** |
| 92 | * @brief Helper method to install tracers on a specific simulation node |
| 93 | * |
| 94 | * @param nodes Nodes on which to install tracer |
Alexander Afanasyev | 5352af3 | 2013-07-15 09:51:28 -0700 | [diff] [blame] | 95 | * @param file File to which traces will be written. If filename is -, then std::out is used |
Alexander Afanasyev | a68783a | 2013-06-27 13:39:04 -0700 | [diff] [blame] | 96 | * @param averagingPeriod How often data will be written into the trace file (default, every half second) |
| 97 | * |
| 98 | * @returns a tuple of reference to output stream and list of tracers. !!! Attention !!! This tuple needs to be preserved |
| 99 | * for the lifetime of simulation, otherwise SEGFAULTs are inevitable |
| 100 | * |
| 101 | */ |
| 102 | static boost::tuple< boost::shared_ptr<std::ostream>, std::list<Ptr<L3AggregateTracer> > > |
| 103 | Install (Ptr<Node> node, const std::string &file, Time averagingPeriod = Seconds (0.5)); |
| 104 | |
Alexander Afanasyev | 5352af3 | 2013-07-15 09:51:28 -0700 | [diff] [blame] | 105 | /** |
| 106 | * @brief Helper method to install tracers on a specific simulation node |
| 107 | * |
| 108 | * @param nodes Nodes on which to install tracer |
| 109 | * @param outputStream Smart pointer to a stream |
| 110 | * @param averagingPeriod How often data will be written into the trace file (default, every half second) |
| 111 | * |
| 112 | * @returns a tuple of reference to output stream and list of tracers. !!! Attention !!! This tuple needs to be preserved |
| 113 | * for the lifetime of simulation, otherwise SEGFAULTs are inevitable |
| 114 | */ |
Alexander Afanasyev | a68783a | 2013-06-27 13:39:04 -0700 | [diff] [blame] | 115 | static Ptr<L3AggregateTracer> |
| 116 | Install (Ptr<Node> node, boost::shared_ptr<std::ostream> outputStream, Time averagingPeriod = Seconds (0.5)); |
| 117 | |
Alexander Afanasyev | 37b84c5 | 2013-04-26 13:38:52 -0700 | [diff] [blame] | 118 | protected: |
Alexander Afanasyev | 5931480 | 2012-11-26 14:56:04 -0800 | [diff] [blame] | 119 | // from L3Tracer |
Alexander Afanasyev | c9d5c1a | 2012-11-21 18:00:26 -0800 | [diff] [blame] | 120 | virtual void |
| 121 | PrintHeader (std::ostream &os) const; |
| 122 | |
| 123 | virtual void |
| 124 | Print (std::ostream &os) const; |
| 125 | |
| 126 | virtual void |
Alexander Afanasyev | 5352af3 | 2013-07-15 09:51:28 -0700 | [diff] [blame] | 127 | OutInterests (Ptr<const Interest>, Ptr<const Face>); |
Alexander Afanasyev | c9d5c1a | 2012-11-21 18:00:26 -0800 | [diff] [blame] | 128 | |
| 129 | virtual void |
Alexander Afanasyev | 5352af3 | 2013-07-15 09:51:28 -0700 | [diff] [blame] | 130 | InInterests (Ptr<const Interest>, Ptr<const Face>); |
Alexander Afanasyev | c9d5c1a | 2012-11-21 18:00:26 -0800 | [diff] [blame] | 131 | |
| 132 | virtual void |
Alexander Afanasyev | 5352af3 | 2013-07-15 09:51:28 -0700 | [diff] [blame] | 133 | DropInterests (Ptr<const Interest>, Ptr<const Face>); |
Alexander Afanasyev | 37b84c5 | 2013-04-26 13:38:52 -0700 | [diff] [blame] | 134 | |
Alexander Afanasyev | c9d5c1a | 2012-11-21 18:00:26 -0800 | [diff] [blame] | 135 | virtual void |
Alexander Afanasyev | 5352af3 | 2013-07-15 09:51:28 -0700 | [diff] [blame] | 136 | OutNacks (Ptr<const Interest>, Ptr<const Face>); |
Alexander Afanasyev | c9d5c1a | 2012-11-21 18:00:26 -0800 | [diff] [blame] | 137 | |
| 138 | virtual void |
Alexander Afanasyev | 5352af3 | 2013-07-15 09:51:28 -0700 | [diff] [blame] | 139 | InNacks (Ptr<const Interest>, Ptr<const Face>); |
Alexander Afanasyev | c9d5c1a | 2012-11-21 18:00:26 -0800 | [diff] [blame] | 140 | |
| 141 | virtual void |
Alexander Afanasyev | 5352af3 | 2013-07-15 09:51:28 -0700 | [diff] [blame] | 142 | DropNacks (Ptr<const Interest>, Ptr<const Face>); |
Alexander Afanasyev | 37b84c5 | 2013-04-26 13:38:52 -0700 | [diff] [blame] | 143 | |
Alexander Afanasyev | c9d5c1a | 2012-11-21 18:00:26 -0800 | [diff] [blame] | 144 | virtual void |
Alexander Afanasyev | faa01f9 | 2013-07-10 18:34:31 -0700 | [diff] [blame] | 145 | OutData (Ptr<const ContentObject>, bool fromCache, Ptr<const Face>); |
Alexander Afanasyev | c9d5c1a | 2012-11-21 18:00:26 -0800 | [diff] [blame] | 146 | |
| 147 | virtual void |
Alexander Afanasyev | faa01f9 | 2013-07-10 18:34:31 -0700 | [diff] [blame] | 148 | InData (Ptr<const ContentObject>, Ptr<const Face>); |
Alexander Afanasyev | c9d5c1a | 2012-11-21 18:00:26 -0800 | [diff] [blame] | 149 | |
| 150 | virtual void |
Alexander Afanasyev | faa01f9 | 2013-07-10 18:34:31 -0700 | [diff] [blame] | 151 | DropData (Ptr<const ContentObject>, Ptr<const Face>); |
Alexander Afanasyev | c9d5c1a | 2012-11-21 18:00:26 -0800 | [diff] [blame] | 152 | |
Alexander Afanasyev | 37b84c5 | 2013-04-26 13:38:52 -0700 | [diff] [blame] | 153 | |
| 154 | virtual void |
| 155 | SatisfiedInterests (Ptr<const pit::Entry>); |
| 156 | |
| 157 | virtual void |
| 158 | TimedOutInterests (Ptr<const pit::Entry>); |
| 159 | |
Alexander Afanasyev | c9d5c1a | 2012-11-21 18:00:26 -0800 | [diff] [blame] | 160 | protected: |
| 161 | void |
Alexander Afanasyev | 5931480 | 2012-11-26 14:56:04 -0800 | [diff] [blame] | 162 | SetAveragingPeriod (const Time &period); |
| 163 | |
| 164 | void |
Alexander Afanasyev | c9d5c1a | 2012-11-21 18:00:26 -0800 | [diff] [blame] | 165 | Reset (); |
| 166 | |
| 167 | void |
| 168 | PeriodicPrinter (); |
Alexander Afanasyev | 37b84c5 | 2013-04-26 13:38:52 -0700 | [diff] [blame] | 169 | |
Alexander Afanasyev | c9d5c1a | 2012-11-21 18:00:26 -0800 | [diff] [blame] | 170 | protected: |
Alexander Afanasyev | 5931480 | 2012-11-26 14:56:04 -0800 | [diff] [blame] | 171 | boost::shared_ptr<std::ostream> m_os; |
Alexander Afanasyev | c9d5c1a | 2012-11-21 18:00:26 -0800 | [diff] [blame] | 172 | |
| 173 | Time m_period; |
| 174 | EventId m_printEvent; |
Alexander Afanasyev | 37b84c5 | 2013-04-26 13:38:52 -0700 | [diff] [blame] | 175 | |
Alexander Afanasyev | 5931480 | 2012-11-26 14:56:04 -0800 | [diff] [blame] | 176 | mutable std::map<Ptr<const Face>, boost::tuple<Stats, Stats> > m_stats; |
Alexander Afanasyev | c9d5c1a | 2012-11-21 18:00:26 -0800 | [diff] [blame] | 177 | }; |
| 178 | |
| 179 | } // namespace ndn |
| 180 | } // namespace ns3 |
| 181 | |
| 182 | #endif // NDN_L3_AGGREGATE_TRACER_H |