blob: 8dba680fbb9de8081387bc24a7fc1c692006049a [file] [log] [blame]
Alexander Afanasyevc7597622013-02-28 10:58:52 -08001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
2/*
3 * Copyright (c) 2013 University of California, Los Angeles
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 L2_RATE_TRACER_H
22#define L2_RATE_TRACER_H
23
24#include "l2-tracer.h"
25
26#include "ns3/nstime.h"
27#include "ns3/event-id.h"
28
29#include <boost/tuple/tuple.hpp>
30#include <boost/shared_ptr.hpp>
31#include <map>
32
33namespace ns3 {
34
35/**
Alexander Afanasyev79206512013-07-27 16:49:12 -070036 * @ingroup ndn-tracers
37 * @brief Tracer to collect link-layer rate information about links
38 *
39 * @todo Finish implementation
Alexander Afanasyevc7597622013-02-28 10:58:52 -080040 */
41class L2RateTracer : public L2Tracer
42{
43public:
44 /**
45 * @brief Network layer tracer constructor
46 */
47 L2RateTracer (boost::shared_ptr<std::ostream> os, Ptr<Node> node);
48 virtual ~L2RateTracer ();
49
50 /**
51 * @brief Helper method to install tracers on all simulation nodes
52 *
53 * @param file File to which traces will be written
54 * @param averagingPeriod Defines averaging period for the rate calculation,
55 * as well as how often data will be written into the trace file (default, every half second)
56 *
57 * @returns a tuple of reference to output stream and list of tracers. !!! Attention !!! This tuple needs to be preserved
58 * for the lifetime of simulation, otherwise SEGFAULTs are inevitable
59 *
60 */
Alexander Afanasyev3fe94dc2013-08-09 17:12:12 -070061 static void
Alexander Afanasyevc7597622013-02-28 10:58:52 -080062 InstallAll (const std::string &file, Time averagingPeriod = Seconds (0.5));
63
64 void
65 SetAveragingPeriod (const Time &period);
66
67 virtual void
68 PrintHeader (std::ostream &os) const;
69
70 virtual void
71 Print (std::ostream &os) const;
72
73 virtual void
74 Drop (Ptr<const Packet>);
75
76private:
77 void
78 PeriodicPrinter ();
79
80 void
81 Reset ();
82
83private:
84 boost::shared_ptr<std::ostream> m_os;
85 Time m_period;
86 EventId m_printEvent;
87
88 mutable boost::tuple<Stats, Stats, Stats, Stats> m_stats;
89};
90
91} // namespace ns3
92
93#endif // L2_RATE_TRACER_H