Alexander Afanasyev | 3183b5a | 2011-12-23 20:48:20 -0800 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */ |
| 2 | /* |
| 3 | * Copyright (c) 2011 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 CCNX_SEQS_APP_TRACER_H |
| 22 | #define CCNX_SEQS_APP_TRACER_H |
| 23 | |
| 24 | #include "ns3/ccnx-app-tracer.h" |
| 25 | |
| 26 | namespace ns3 { |
| 27 | |
| 28 | class CcnxSeqsAppTracer : public CcnxAppTracer |
| 29 | { |
| 30 | public: |
| 31 | CcnxSeqsAppTracer (std::ostream &os, const std::string &app, Ptr<Node> node, const std::string &appId = "*"); |
| 32 | CcnxSeqsAppTracer (std::ostream &os, const std::string &app, const std::string &node, const std::string &appId = "*"); |
| 33 | virtual ~CcnxSeqsAppTracer () { }; |
| 34 | |
| 35 | virtual void |
| 36 | PrintHeader (std::ostream &os) const; |
| 37 | |
| 38 | virtual void |
| 39 | Print (std::ostream &os) const; |
| 40 | |
| 41 | virtual void |
| 42 | OutInterests (std::string context, |
| 43 | Ptr<const CcnxInterestHeader>, Ptr<CcnxApp>, Ptr<CcnxFace>); |
| 44 | |
| 45 | virtual void |
| 46 | InInterests (std::string context, |
| 47 | Ptr<const CcnxInterestHeader>, Ptr<CcnxApp>, Ptr<CcnxFace>); |
| 48 | |
| 49 | virtual void |
| 50 | InNacks (std::string context, |
| 51 | Ptr<const CcnxInterestHeader>, Ptr<CcnxApp>, Ptr<CcnxFace>); |
| 52 | |
| 53 | virtual void |
| 54 | OutData (std::string context, |
| 55 | Ptr<const CcnxContentObjectHeader>, Ptr<const Packet>, Ptr<CcnxApp>, Ptr<CcnxFace>); |
| 56 | |
| 57 | virtual void |
| 58 | InData (std::string context, |
| 59 | Ptr<const CcnxContentObjectHeader>, Ptr<const Packet>, Ptr<CcnxApp>, Ptr<CcnxFace>); |
| 60 | |
| 61 | protected: |
| 62 | void |
| 63 | Reset (); |
| 64 | |
| 65 | protected: |
| 66 | std::ostream& m_os; |
| 67 | }; |
| 68 | |
| 69 | } // namespace ns3 |
| 70 | |
| 71 | #endif // CCNX_AGGREGATE_APP_TRACER_H |