blob: b7d4ce71555b36557daf103979ac4a6efbbd9d7b [file] [log] [blame]
Alexander Afanasyevc9d5c1a2012-11-21 18:00:26 -08001/* -*- 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 Afanasyeva68783a2013-06-27 13:39:04 -070028#include <ns3/node-container.h>
Alexander Afanasyevc9d5c1a2012-11-21 18:00:26 -080029
Alexander Afanasyev59314802012-11-26 14:56:04 -080030#include <boost/tuple/tuple.hpp>
31#include <boost/shared_ptr.hpp>
32#include <map>
33#include <list>
34
Alexander Afanasyevc9d5c1a2012-11-21 18:00:26 -080035namespace ns3 {
36namespace ndn {
37
Alexander Afanasyev59314802012-11-26 14:56:04 -080038/**
Alexander Afanasyev79206512013-07-27 16:49:12 -070039 * @ingroup ndn-tracers
40 * @brief NDN network-layer tracer for aggregate packet counts
Alexander Afanasyev59314802012-11-26 14:56:04 -080041 */
Alexander Afanasyevc9d5c1a2012-11-21 18:00:26 -080042class L3AggregateTracer : public L3Tracer
43{
44public:
Alexander Afanasyev59314802012-11-26 14:56:04 -080045 /**
Alexander Afanasyev3fe94dc2013-08-09 17:12:12 -070046 * @brief Helper method to install tracers on all simulation nodes
47 *
48 * @param file File to which traces will be written. If filename is -, then std::out is used
49 * @param averagingPeriod How often data will be written into the trace file (default, every half second)
50 *
51 * @returns a tuple of reference to output stream and list of tracers. !!! Attention !!! This tuple needs to be preserved
52 * for the lifetime of simulation, otherwise SEGFAULTs are inevitable
53 *
54 */
55 static void
56 InstallAll (const std::string &file, Time averagingPeriod = Seconds (0.5));
57
58 /**
59 * @brief Helper method to install tracers on the selected simulation nodes
60 *
61 * @param nodes Nodes on which to install tracer
62 * @param file File to which traces will be written. If filename is -, then std::out is used
63 * @param averagingPeriod How often data will be written into the trace file (default, every half second)
64 *
65 * @returns a tuple of reference to output stream and list of tracers. !!! Attention !!! This tuple needs to be preserved
66 * for the lifetime of simulation, otherwise SEGFAULTs are inevitable
67 *
68 */
69 static void
70 Install (const NodeContainer &nodes, const std::string &file, Time averagingPeriod = Seconds (0.5));
71
72 /**
73 * @brief Helper method to install tracers on a specific simulation node
74 *
75 * @param nodes Nodes on which to install tracer
76 * @param file File to which traces will be written. If filename is -, then std::out is used
77 * @param averagingPeriod How often data will be written into the trace file (default, every half second)
78 *
79 * @returns a tuple of reference to output stream and list of tracers. !!! Attention !!! This tuple needs to be preserved
80 * for the lifetime of simulation, otherwise SEGFAULTs are inevitable
81 *
82 */
83 static void
84 Install (Ptr<Node> node, const std::string &file, Time averagingPeriod = Seconds (0.5));
85
86 /**
Alexander Afanasyev59314802012-11-26 14:56:04 -080087 * @brief Trace constructor that attaches to the node using node pointer
88 * @param os reference to the output stream
89 * @param node pointer to the node
90 */
91 L3AggregateTracer (boost::shared_ptr<std::ostream> os, Ptr<Node> node);
Alexander Afanasyev37b84c52013-04-26 13:38:52 -070092
Alexander Afanasyev59314802012-11-26 14:56:04 -080093 /**
94 * @brief Trace constructor that attaches to the node using node name
95 * @param os reference to the output stream
96 * @param nodeName name of the node registered using Names::Add
97 */
98 L3AggregateTracer (boost::shared_ptr<std::ostream> os, const std::string &nodeName);
99
100 /**
101 * @brief Destructor
102 */
103 virtual ~L3AggregateTracer ();
104
105 /**
Alexander Afanasyev5352af32013-07-15 09:51:28 -0700106 * @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 Afanasyeva68783a2013-06-27 13:39:04 -0700115 static Ptr<L3AggregateTracer>
116 Install (Ptr<Node> node, boost::shared_ptr<std::ostream> outputStream, Time averagingPeriod = Seconds (0.5));
117
Alexander Afanasyev37b84c52013-04-26 13:38:52 -0700118protected:
Alexander Afanasyev59314802012-11-26 14:56:04 -0800119 // from L3Tracer
Alexander Afanasyevc9d5c1a2012-11-21 18:00:26 -0800120 virtual void
121 PrintHeader (std::ostream &os) const;
122
123 virtual void
124 Print (std::ostream &os) const;
125
126 virtual void
Alexander Afanasyev5352af32013-07-15 09:51:28 -0700127 OutInterests (Ptr<const Interest>, Ptr<const Face>);
Alexander Afanasyevc9d5c1a2012-11-21 18:00:26 -0800128
129 virtual void
Alexander Afanasyev5352af32013-07-15 09:51:28 -0700130 InInterests (Ptr<const Interest>, Ptr<const Face>);
Alexander Afanasyevc9d5c1a2012-11-21 18:00:26 -0800131
132 virtual void
Alexander Afanasyev5352af32013-07-15 09:51:28 -0700133 DropInterests (Ptr<const Interest>, Ptr<const Face>);
Alexander Afanasyev37b84c52013-04-26 13:38:52 -0700134
Alexander Afanasyevc9d5c1a2012-11-21 18:00:26 -0800135 virtual void
Alexander Afanasyev5352af32013-07-15 09:51:28 -0700136 OutNacks (Ptr<const Interest>, Ptr<const Face>);
Alexander Afanasyevc9d5c1a2012-11-21 18:00:26 -0800137
138 virtual void
Alexander Afanasyev5352af32013-07-15 09:51:28 -0700139 InNacks (Ptr<const Interest>, Ptr<const Face>);
Alexander Afanasyevc9d5c1a2012-11-21 18:00:26 -0800140
141 virtual void
Alexander Afanasyev5352af32013-07-15 09:51:28 -0700142 DropNacks (Ptr<const Interest>, Ptr<const Face>);
Alexander Afanasyev37b84c52013-04-26 13:38:52 -0700143
Alexander Afanasyevc9d5c1a2012-11-21 18:00:26 -0800144 virtual void
Alexander Afanasyev772f51b2013-08-01 18:53:25 -0700145 OutData (Ptr<const Data>, bool fromCache, Ptr<const Face>);
Alexander Afanasyevc9d5c1a2012-11-21 18:00:26 -0800146
147 virtual void
Alexander Afanasyev772f51b2013-08-01 18:53:25 -0700148 InData (Ptr<const Data>, Ptr<const Face>);
Alexander Afanasyevc9d5c1a2012-11-21 18:00:26 -0800149
150 virtual void
Alexander Afanasyev772f51b2013-08-01 18:53:25 -0700151 DropData (Ptr<const Data>, Ptr<const Face>);
Alexander Afanasyevc9d5c1a2012-11-21 18:00:26 -0800152
Alexander Afanasyev37b84c52013-04-26 13:38:52 -0700153
154 virtual void
155 SatisfiedInterests (Ptr<const pit::Entry>);
156
157 virtual void
158 TimedOutInterests (Ptr<const pit::Entry>);
159
Alexander Afanasyevc9d5c1a2012-11-21 18:00:26 -0800160protected:
161 void
Alexander Afanasyev59314802012-11-26 14:56:04 -0800162 SetAveragingPeriod (const Time &period);
163
164 void
Alexander Afanasyevc9d5c1a2012-11-21 18:00:26 -0800165 Reset ();
166
167 void
168 PeriodicPrinter ();
Alexander Afanasyev37b84c52013-04-26 13:38:52 -0700169
Alexander Afanasyevc9d5c1a2012-11-21 18:00:26 -0800170protected:
Alexander Afanasyev59314802012-11-26 14:56:04 -0800171 boost::shared_ptr<std::ostream> m_os;
Alexander Afanasyevc9d5c1a2012-11-21 18:00:26 -0800172
173 Time m_period;
174 EventId m_printEvent;
Alexander Afanasyev37b84c52013-04-26 13:38:52 -0700175
Alexander Afanasyev59314802012-11-26 14:56:04 -0800176 mutable std::map<Ptr<const Face>, boost::tuple<Stats, Stats> > m_stats;
Alexander Afanasyevc9d5c1a2012-11-21 18:00:26 -0800177};
178
179} // namespace ndn
180} // namespace ns3
181
182#endif // NDN_L3_AGGREGATE_TRACER_H