A Discrete-Event Network Simulator
API
Loading...
Searching...
No Matches
gnuplot-helper.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2013 University of Washington
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation;
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program; if not, write to the Free Software
15 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 *
17 * Author: Mitch Watrous (watrous@u.washington.edu)
18 */
19
20#ifndef GNUPLOT_HELPER_H
21#define GNUPLOT_HELPER_H
22
23#include "ns3/gnuplot-aggregator.h"
24#include "ns3/object-factory.h"
25#include "ns3/probe.h"
26#include "ns3/ptr.h"
27#include "ns3/time-series-adaptor.h"
28
29#include <map>
30#include <string>
31#include <utility>
32
33namespace ns3
34{
35
41{
42 public:
51
67 GnuplotHelper(const std::string& outputFileNameWithoutExtension,
68 const std::string& title,
69 const std::string& xLegend,
70 const std::string& yLegend,
71 const std::string& terminalType = "png");
72
73 virtual ~GnuplotHelper();
74
91 void ConfigurePlot(const std::string& outputFileNameWithoutExtension,
92 const std::string& title,
93 const std::string& xLegend,
94 const std::string& yLegend,
95 const std::string& terminalType = "png");
96
123 void PlotProbe(const std::string& typeId,
124 const std::string& path,
125 const std::string& probeTraceSource,
126 const std::string& title,
128
134 void AddTimeSeriesAdaptor(const std::string& adaptorName);
135
141 Ptr<Probe> GetProbe(std::string probeName) const;
142
151
152 private:
160 void AddProbe(const std::string& typeId, const std::string& probeName, const std::string& path);
161
165 void ConstructAggregator();
166
177 void ConnectProbeToAggregator(const std::string& typeId,
178 const std::string& matchIdentifier,
179 const std::string& path,
180 const std::string& probeTraceSource,
181 const std::string& title);
182
185
188
190 std::map<std::string, std::pair<Ptr<Probe>, std::string>> m_probeMap;
191
193 std::map<std::string, Ptr<TimeSeriesAdaptor>> m_timeSeriesAdaptorMap;
194
197
200
202 std::string m_title;
203
205 std::string m_xLegend;
206
208 std::string m_yLegend;
209
211 std::string m_terminalType;
212
213}; // class GnuplotHelper
214
215} // namespace ns3
216
217#endif // GNUPLOT_HELPER_H
KeyLocation
The location of the key in the plot.
Helper class used to make gnuplot plots.
void ConfigurePlot(const std::string &outputFileNameWithoutExtension, const std::string &title, const std::string &xLegend, const std::string &yLegend, const std::string &terminalType="png")
std::string m_title
Title string to use for this plot.
GnuplotHelper()
Constructs a gnuplot helper that will create a space separated gnuplot data file named "gnuplot-helpe...
void AddTimeSeriesAdaptor(const std::string &adaptorName)
Adds a time series adaptor to be used to make the plot.
Ptr< GnuplotAggregator > m_aggregator
The aggregator used to make the plots.
Ptr< Probe > GetProbe(std::string probeName) const
Gets the specified probe.
std::string m_terminalType
Terminal type for the plot.
std::string m_outputFileNameWithoutExtension
The name of the output file to created without its extension.
uint32_t m_plotProbeCount
Number of plot probes that have been created.
virtual ~GnuplotHelper()
ObjectFactory m_factory
Used to create the probes and collectors as they are added.
std::string m_yLegend
Legend for the y axis.
std::map< std::string, Ptr< TimeSeriesAdaptor > > m_timeSeriesAdaptorMap
Maps time series adaptor names to time series adaptors.
void AddProbe(const std::string &typeId, const std::string &probeName, const std::string &path)
Adds a probe to be used to make the plot.
void PlotProbe(const std::string &typeId, const std::string &path, const std::string &probeTraceSource, const std::string &title, GnuplotAggregator::KeyLocation keyLocation=GnuplotAggregator::KEY_INSIDE)
void ConnectProbeToAggregator(const std::string &typeId, const std::string &matchIdentifier, const std::string &path, const std::string &probeTraceSource, const std::string &title)
Connects the probe to the aggregator.
std::map< std::string, std::pair< Ptr< Probe >, std::string > > m_probeMap
Maps probe names to probes.
void ConstructAggregator()
Constructs the aggregator.
std::string m_xLegend
Legend for the x axis.
Ptr< GnuplotAggregator > GetAggregator()
Gets the aggregator.
Instantiate subclasses of ns3::Object.
Smart pointer class similar to boost::intrusive_ptr.
Definition: ptr.h:78
Every class exported by the ns3 library is enclosed in the ns3 namespace.