face-counters.hpp
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2014-2022, Regents of the University of California,
4  * Arizona Board of Regents,
5  * Colorado State University,
6  * University Pierre & Marie Curie, Sorbonne University,
7  * Washington University in St. Louis,
8  * Beijing Institute of Technology,
9  * The University of Memphis.
10  *
11  * This file is part of NFD (Named Data Networking Forwarding Daemon).
12  * See AUTHORS.md for complete list of NFD authors and contributors.
13  *
14  * NFD is free software: you can redistribute it and/or modify it under the terms
15  * of the GNU General Public License as published by the Free Software Foundation,
16  * either version 3 of the License, or (at your option) any later version.
17  *
18  * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
19  * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
20  * PURPOSE. See the GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License along with
23  * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
24  */
25 
26 #ifndef NFD_DAEMON_FACE_FACE_COUNTERS_HPP
27 #define NFD_DAEMON_FACE_FACE_COUNTERS_HPP
28 
29 #include "link-service.hpp"
30 #include "transport.hpp"
31 
32 namespace nfd::face {
33 
42 {
43 public:
44  FaceCounters(const LinkService::Counters& linkServiceCounters,
45  const Transport::Counters& transportCounters);
46 
51  template<typename T>
52  std::enable_if_t<std::is_base_of_v<LinkService::Counters, T>, const T&>
53  get() const
54  {
55  return dynamic_cast<const T&>(m_linkServiceCounters);
56  }
57 
62  template<typename T>
63  std::enable_if_t<std::is_base_of_v<Transport::Counters, T>, const T&>
64  get() const
65  {
66  return dynamic_cast<const T&>(m_transportCounters);
67  }
68 
69 public:
77 
82 
86 
90 
91 private:
92  const LinkService::Counters& m_linkServiceCounters;
93  const Transport::Counters& m_transportCounters;
94 };
95 
96 } // namespace nfd::face
97 
98 #endif // NFD_DAEMON_FACE_FACE_COUNTERS_HPP
Represents a counter of number of bytes.
Definition: counter.hpp:88
Represents a counter of number of packets.
Definition: counter.hpp:70
Gives access to counters provided by Face.
PacketCounter nInHopLimitZero
Count of incoming Interests dropped due to HopLimit == 0.
const PacketCounter & nInPackets
PacketCounter nOutHopLimitZero
Count of outgoing Interests dropped due to HopLimit == 0 on non-local faces.
const ByteCounter & nInBytes
const PacketCounter & nOutPackets
std::enable_if_t< std::is_base_of_v< LinkService::Counters, T >, const T & > get() const
FaceCounters(const LinkService::Counters &linkServiceCounters, const Transport::Counters &transportCounters)
const PacketCounter & nInInterests
std::enable_if_t< std::is_base_of_v< Transport::Counters, T >, const T & > get() const
const PacketCounter & nInNacks
const PacketCounter & nInData
const PacketCounter & nOutNacks
const ByteCounter & nOutBytes
const PacketCounter & nInterestsExceededRetx
const PacketCounter & nOutInterests
const PacketCounter & nOutData
Counters provided by a transport.
Definition: transport.hpp:54