blob: 59f0a53a8d525c067719ca403a84044eb5c055f3 [file] [log] [blame]
Alexander Afanasyev141d1312011-12-18 14:58:35 -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 CCNX_TRACE_HELPER_H
22#define CCNX_TRACE_HELPER_H
23
Alexander Afanasyevc86c2832011-12-23 02:56:22 -080024#include "ns3/nstime.h"
25#include "ns3/event-id.h"
26
Alexander Afanasyevb3e4b852011-12-23 15:58:20 -080027#include <list>
Alexander Afanasyev141d1312011-12-18 14:58:35 -080028
29namespace ns3 {
30
Alexander Afanasyev06b42ec2012-01-11 19:05:36 -080031class Node;
Alexander Afanasyevb3e4b852011-12-23 15:58:20 -080032class CcnxAppTracer;
33class CcnxL3Tracer;
Alexander Afanasyevc4f88282012-01-03 11:27:20 -080034class Ipv4AppTracer;
Alexander Afanasyev06b42ec2012-01-11 19:05:36 -080035class WindowTracer;
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -080036class CcnxPathWeightTracer;
37class Application;
Alexander Afanasyevc86c2832011-12-23 02:56:22 -080038
Alexander Afanasyev141d1312011-12-18 14:58:35 -080039class CcnxTraceHelper
40{
41public:
Alexander Afanasyevc86c2832011-12-23 02:56:22 -080042 CcnxTraceHelper ();
43
Alexander Afanasyev141d1312011-12-18 14:58:35 -080044 /**
45 * @brief Destructor that invokes trace output procedures
46 */
47 ~CcnxTraceHelper ();
48
49 /**
50 * @brief Set filename to output app trace.
51 *
52 * By default, trace is output to NS_LOG_INFO stream
53 *
54 * @param file File where trace will be written to
55 */
56 void
57 SetAppTraceFile (const std::string &appTrace = "apps.log");
58
59 /**
60 * @brief Set filename to output app trace.
61 *
62 * By default, trace is output to NS_LOG_INFO stream
63 *
64 * @param file File where trace will be written to
65 */
66 void
67 SetL3TraceFile (const std::string &l3Trace = "l3.log");
Alexander Afanasyevc86c2832011-12-23 02:56:22 -080068
Alexander Afanasyev141d1312011-12-18 14:58:35 -080069 /**
Alexander Afanasyevc86c2832011-12-23 02:56:22 -080070 * @brief Enable aggregate app-level CCNx tracing on all CCNx applications
Alexander Afanasyev141d1312011-12-18 14:58:35 -080071 *
72 * @param app Class name of the application of interest
73 */
74 void
75 EnableAggregateAppAll (const std::string &app);
76
77 /**
Alexander Afanasyevc86c2832011-12-23 02:56:22 -080078 * @brief Enable aggregate network-level CCNx tracing on all CCNx node
Alexander Afanasyev141d1312011-12-18 14:58:35 -080079 */
80 void
81 EnableAggregateL3All ();
82
Alexander Afanasyevc86c2832011-12-23 02:56:22 -080083 /**
Alexander Afanasyev3183b5a2011-12-23 20:48:20 -080084 * @brief Enable network-level CCNx rate tracing on all CCNx nodes
Alexander Afanasyevc86c2832011-12-23 02:56:22 -080085 */
86 void
87 EnableRateL3All (const std::string &l3RateTrace = "l3-rate.log");
88
Alexander Afanasyev3183b5a2011-12-23 20:48:20 -080089 /**
90 * @brief Enable app-level CCNx sequence tracing on all CCNx applications
91 */
92 void
93 EnableSeqsAppAll (const std::string &app, const std::string &appSeqsTrace = "app-seqs.log");
94
Alexander Afanasyevc4f88282012-01-03 11:27:20 -080095 /**
96 * @brief Enable app-level IPv4 sequence tracing on all nodes (BulkSender + PacketSink)
97 */
98 void
99 EnableIpv4SeqsAppAll (const std::string &appSeqsTrace = "app-seqs.log");
Alexander Afanasyeve4c2ece2012-01-11 10:44:40 -0800100
101 /**
102 * @brief Enable tracing of window changes in CcnxConsumerWindow
103 */
104 void
105 EnableWindowsAll (const std::string &windowTrace = "windows.log");
Alexander Afanasyev06b42ec2012-01-11 19:05:36 -0800106
107 /**
108 * @brief Enable tracing of congestion window changes in TcpNewReno
109 */
110 void
111 EnableWindowsTcpAll (const std::string &windowTrace);
112
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -0800113 /**
114 * @brief Should be called with node pointer after TCP application
115 *
116 * Workaround because NS-3 needs object to exist before connecting trace
117 */
Alexander Afanasyev06b42ec2012-01-11 19:05:36 -0800118 void TcpConnect (Ptr<Node> node);
119
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -0800120 /**
121 * @brief Enable tracing of path weights
122 */
123 void
124 EnablePathWeights (const std::string &pathWeights);
125
Alexander Afanasyev141d1312011-12-18 14:58:35 -0800126private:
127 std::string m_appTrace;
Alexander Afanasyevb3e4b852011-12-23 15:58:20 -0800128 std::list<Ptr<CcnxAppTracer> > m_apps;
Alexander Afanasyev141d1312011-12-18 14:58:35 -0800129
130 std::string m_l3Trace;
Alexander Afanasyevb3e4b852011-12-23 15:58:20 -0800131 std::list<Ptr<CcnxL3Tracer> > m_l3s;
Alexander Afanasyevc86c2832011-12-23 02:56:22 -0800132
Alexander Afanasyevb3e4b852011-12-23 15:58:20 -0800133 std::list<Ptr<CcnxL3Tracer> > m_l3Rates;
Alexander Afanasyevc86c2832011-12-23 02:56:22 -0800134 std::ostream *m_l3RateTrace;
Alexander Afanasyev3183b5a2011-12-23 20:48:20 -0800135
136 std::list<Ptr<CcnxAppTracer> > m_appSeqs;
137 std::ostream *m_appSeqsTrace;
Alexander Afanasyevc4f88282012-01-03 11:27:20 -0800138
139 std::list<Ptr<Ipv4AppTracer> > m_ipv4AppSeqs;
140 std::ostream *m_ipv4AppSeqsTrace;
Alexander Afanasyeve4c2ece2012-01-11 10:44:40 -0800141
Alexander Afanasyev06b42ec2012-01-11 19:05:36 -0800142 std::list<Ptr<WindowTracer> > m_windows;
Alexander Afanasyeve4c2ece2012-01-11 10:44:40 -0800143 std::ostream *m_windowsTrace;
Alexander Afanasyev06b42ec2012-01-11 19:05:36 -0800144
145 std::list<Ptr<WindowTracer> > m_windowsTcp;
146 std::ostream *m_windowsTcpTrace;
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -0800147
148 std::list<Ptr<CcnxPathWeightTracer> > m_pathWeights;
149 std::ostream *m_pathWeightsTrace;
Alexander Afanasyev141d1312011-12-18 14:58:35 -0800150};
151
152
153} // namespace ns3
154
155#endif /* CCNX_TRACE_HELPER_H */