blob: 83e48c4af545d27f6c83b65cfaeae11fff0c758d [file] [log] [blame]
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2011 UCLA
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation;
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* Author: Alexander Afanasyev <alexander.afanasyev@ucla.edu>
*/
#ifndef CCNX_RATE_L3_TRACER_H
#define CCNX_RATE_L3_TRACER_H
#include "ns3/ccnx-l3-tracer.h"
#include "ns3/nstime.h"
#include "ns3/event-id.h"
#include <boost/tuple/tuple.hpp>
#include <map>
namespace ns3 {
/**
* @ingroup ccnx
* @brief CCNx network-layer rate tracer
*/
class CcnxRateL3Tracer : public CcnxL3Tracer
{
public:
/**
* @brief Network layer tracer constructor
*/
CcnxRateL3Tracer (std::ostream &os, Ptr<Node> node);
CcnxRateL3Tracer (std::ostream &os, const std::string &node);
virtual ~CcnxRateL3Tracer ();
void
SetAveragingPeriod (const Time &period);
virtual void
PrintHeader (std::ostream &os) const;
virtual void
Print (std::ostream &os) const;
virtual void
OutInterests (std::string context,
Ptr<const CcnxInterestHeader>, Ptr<const CcnxFace>);
virtual void
InInterests (std::string context,
Ptr<const CcnxInterestHeader>, Ptr<const CcnxFace>);
virtual void
DropInterests (std::string context,
Ptr<const CcnxInterestHeader>, Ccnx::DropReason, Ptr<const CcnxFace>);
virtual void
OutNacks (std::string context,
Ptr<const CcnxInterestHeader>, Ptr<const CcnxFace>);
virtual void
InNacks (std::string context,
Ptr<const CcnxInterestHeader>, Ptr<const CcnxFace>);
virtual void
DropNacks (std::string context,
Ptr<const CcnxInterestHeader>, Ccnx::DropReason, Ptr<const CcnxFace>);
virtual void
OutData (std::string context,
Ptr<const CcnxContentObjectHeader>, Ptr<const Packet>, bool fromCache, Ptr<const CcnxFace>);
virtual void
InData (std::string context,
Ptr<const CcnxContentObjectHeader>, Ptr<const Packet>, Ptr<const CcnxFace>);
virtual void
DropData (std::string context,
Ptr<const CcnxContentObjectHeader>, Ptr<const Packet>, Ccnx::DropReason, Ptr<const CcnxFace>);
private:
void
PeriodicPrinter ();
void
Reset ();
private:
std::ostream& m_os;
Time m_period;
EventId m_printEvent;
mutable std::map<Ptr<const CcnxFace>, boost::tuple<Stats, Stats, Stats, Stats> > m_stats;
};
} // namespace ns3
#endif // CCNX_RATE_L3_TRACER_H