blob: f24c6c3fe7b48a66f58abb5cf5290ae93a9a5b78 [file] [log] [blame]
Alexander Afanasyevc4f88282012-01-03 11:27:20 -08001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
2/*
3 * Copyright (c) 2012 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 IPV4_APP_TRACER_H
22#define IPV4_APP_TRACER_H
23
24#include "ns3/ptr.h"
25#include "ns3/simple-ref-count.h"
26#include "ns3/ipv4.h"
27
28namespace ns3 {
29
30class Ipv4Header;
31
32class Ipv4AppTracer : public SimpleRefCount<Ipv4AppTracer>
33{
34public:
35 Ipv4AppTracer (Ptr<Node> node, const std::string &appId = "*");
36 virtual ~Ipv4AppTracer () { };
37
38 void
39 Connect ();
40
41 virtual void
42 PrintHeader (std::ostream &os) const = 0;
43
44 virtual void
45 Print (std::ostream &os) const = 0;
46
47 virtual void
48 Rx (std::string context,
49 const Ipv4Header &, Ptr<const Packet>, uint32_t) = 0;
50
51 virtual void
52 Tx (std::string context,
53 const Ipv4Header &, Ptr<const Packet>, uint32_t) = 0;
54
55protected:
56 std::string m_app;
57 std::string m_appId;
58 std::string m_node;
59 Ptr<Node> m_nodePtr;
60};
61
62inline std::ostream&
63operator << (std::ostream &os, const Ipv4AppTracer &tracer)
64{
65 os << "# ";
66 tracer.PrintHeader (os);
67 os << "\n";
68 tracer.Print (os);
69 return os;
70}
71
72} // namespace ns3
73
74#endif // IPV4_APP_TRACER_H