blob: 13c2630bc870ab7176cdf9bc163a9f0047779ea2 [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-2012 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 CCNX_L3_TRACER_H
22#define CCNX_L3_TRACER_H
23
24#include "ns3/ptr.h"
25#include "ns3/simple-ref-count.h"
26
27namespace ns3 {
28
29class Node;
30class Packet;
31
32namespace ndn {
33
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -070034class Interest;
Alexander Afanasyevc9d5c1a2012-11-21 18:00:26 -080035class Face;
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -070036class ContentObject;
Alexander Afanasyevc9d5c1a2012-11-21 18:00:26 -080037
Alexander Afanasyev0b9e3bd2012-12-10 15:27:09 -080038/**
39 * @brief Base class for network-layer (incoming/outgoing Interests and Data) tracing of NDN stack
40 */
Alexander Afanasyevc9d5c1a2012-11-21 18:00:26 -080041class L3Tracer : public SimpleRefCount<L3Tracer>
42{
43public:
Alexander Afanasyev59314802012-11-26 14:56:04 -080044 /**
45 * @brief Trace constructor that attaches to the node using node pointer
46 * @param node pointer to the node
47 */
Alexander Afanasyevc9d5c1a2012-11-21 18:00:26 -080048 L3Tracer (Ptr<Node> node);
Alexander Afanasyev59314802012-11-26 14:56:04 -080049
50 /**
51 * @brief Trace constructor that attaches to the node using node name
52 * @param nodeName name of the node registered using Names::Add
53 */
Alexander Afanasyevc9d5c1a2012-11-21 18:00:26 -080054 L3Tracer (const std::string &node);
Alexander Afanasyev59314802012-11-26 14:56:04 -080055
56 /**
57 * @brief Destructor
58 */
Alexander Afanasyevc9d5c1a2012-11-21 18:00:26 -080059 virtual ~L3Tracer ();
60
Alexander Afanasyev59314802012-11-26 14:56:04 -080061 /**
62 * @brief Print head of the trace (e.g., for post-processing)
63 *
64 * @param os reference to output stream
65 */
Alexander Afanasyevc9d5c1a2012-11-21 18:00:26 -080066 virtual void
67 PrintHeader (std::ostream &os) const = 0;
68
Alexander Afanasyev59314802012-11-26 14:56:04 -080069 /**
70 * @brief Print current trace data
71 *
72 * @param os reference to output stream
73 */
Alexander Afanasyevc9d5c1a2012-11-21 18:00:26 -080074 virtual void
75 Print (std::ostream &os) const = 0;
76
Alexander Afanasyev59314802012-11-26 14:56:04 -080077protected:
78 void
79 Connect ();
80
Alexander Afanasyevc9d5c1a2012-11-21 18:00:26 -080081 virtual void
82 OutInterests (std::string context,
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -070083 Ptr<const Interest>, Ptr<const Face>) = 0;
Alexander Afanasyevc9d5c1a2012-11-21 18:00:26 -080084
85 virtual void
86 InInterests (std::string context,
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -070087 Ptr<const Interest>, Ptr<const Face>) = 0;
Alexander Afanasyevc9d5c1a2012-11-21 18:00:26 -080088
89 virtual void
90 DropInterests (std::string context,
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -070091 Ptr<const Interest>, Ptr<const Face>) = 0;
Alexander Afanasyevc9d5c1a2012-11-21 18:00:26 -080092
93 virtual void
94 OutNacks (std::string context,
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -070095 Ptr<const Interest>, Ptr<const Face>) = 0;
Alexander Afanasyevc9d5c1a2012-11-21 18:00:26 -080096
97 virtual void
98 InNacks (std::string context,
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -070099 Ptr<const Interest>, Ptr<const Face>) = 0;
Alexander Afanasyevc9d5c1a2012-11-21 18:00:26 -0800100
101 virtual void
102 DropNacks (std::string context,
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -0700103 Ptr<const Interest>, Ptr<const Face>) = 0;
Alexander Afanasyevc9d5c1a2012-11-21 18:00:26 -0800104
105
106 virtual void
107 OutData (std::string context,
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -0700108 Ptr<const ContentObject>, Ptr<const Packet>, bool fromCache, Ptr<const Face>) = 0;
Alexander Afanasyevc9d5c1a2012-11-21 18:00:26 -0800109
110 virtual void
111 InData (std::string context,
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -0700112 Ptr<const ContentObject>, Ptr<const Packet>, Ptr<const Face>) = 0;
Alexander Afanasyevc9d5c1a2012-11-21 18:00:26 -0800113
114 virtual void
115 DropData (std::string context,
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -0700116 Ptr<const ContentObject>, Ptr<const Packet>, Ptr<const Face>) = 0;
Alexander Afanasyevc9d5c1a2012-11-21 18:00:26 -0800117
118protected:
119 std::string m_node;
120 Ptr<Node> m_nodePtr;
121
122 struct Stats
123 {
124 inline void Reset ()
125 {
126 m_inInterests = 0;
127 m_outInterests = 0;
128 m_dropInterests = 0;
129 m_inNacks = 0;
130 m_outNacks = 0;
131 m_dropNacks = 0;
132 m_inData = 0;
133 m_outData = 0;
134 m_dropData = 0;
135 }
136
137 double m_inInterests;
138 double m_outInterests;
139 double m_dropInterests;
140 double m_inNacks;
141 double m_outNacks;
142 double m_dropNacks;
143 double m_inData;
144 double m_outData;
145 double m_dropData;
146 };
147};
148
Alexander Afanasyev59314802012-11-26 14:56:04 -0800149/**
150 * @brief Helper to dump the trace to an output stream
151 */
Alexander Afanasyevc9d5c1a2012-11-21 18:00:26 -0800152inline std::ostream&
153operator << (std::ostream &os, const L3Tracer &tracer)
154{
155 os << "# ";
156 tracer.PrintHeader (os);
157 os << "\n";
158 tracer.Print (os);
159 return os;
160}
161
162} // namespace ndn
163} // namespace ns3
164
165#endif // CCNX_L3_TRACER_H