blob: 09528d4418dbb99bffa23d83d6df89f860ae0ff4 [file] [log] [blame]
Junxiao Shi65d00722014-02-17 10:50:20 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesavento50a6af32019-02-21 00:04:40 -05002/*
Davide Pesavento2c9d2ca2024-01-27 16:36:51 -05003 * Copyright (c) 2014-2024, Regents of the University of California,
Junxiao Shi1e46be32015-01-08 20:18:05 -07004 * 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.
Alexander Afanasyev9bcbc7c2014-04-06 19:37:37 -070010 *
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/>.
Junxiao Shi1e46be32015-01-08 20:18:05 -070024 */
Junxiao Shi65d00722014-02-17 10:50:20 -070025
Alexander Afanasyev613e2a92014-04-15 13:36:58 -070026#ifndef NFD_DAEMON_TABLE_MEASUREMENTS_ENTRY_HPP
27#define NFD_DAEMON_TABLE_MEASUREMENTS_ENTRY_HPP
Junxiao Shi65d00722014-02-17 10:50:20 -070028
Junxiao Shi65d00722014-02-17 10:50:20 -070029#include "strategy-info-host.hpp"
Junxiao Shi65d00722014-02-17 10:50:20 -070030
Davide Pesavento2c9d2ca2024-01-27 16:36:51 -050031#include <ndn-cxx/util/scheduler.hpp>
32
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040033namespace nfd::name_tree {
HangZhangcb4fc832014-03-11 16:57:11 +080034class Entry;
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040035} // namespace nfd::name_tree
HangZhangcb4fc832014-03-11 16:57:11 +080036
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040037namespace nfd::measurements {
Junxiao Shi65d00722014-02-17 10:50:20 -070038
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -040039class Measurements;
40
41/**
42 * \brief Represents an entry in the %Measurements table.
43 * \sa Measurements
Junxiao Shi65d00722014-02-17 10:50:20 -070044 */
45class Entry : public StrategyInfoHost, noncopyable
46{
47public:
48 explicit
Davide Pesavento50a6af32019-02-21 00:04:40 -050049 Entry(const Name& name)
50 : m_name(name)
51 {
52 }
Junxiao Shi65d00722014-02-17 10:50:20 -070053
54 const Name&
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -040055 getName() const noexcept
Junxiao Shi340d5532016-08-13 04:00:35 +000056 {
57 return m_name;
58 }
Junxiao Shi65d00722014-02-17 10:50:20 -070059
60private:
61 Name m_name;
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -040062 time::steady_clock::time_point m_expiry = time::steady_clock::time_point::min();
Davide Pesavento2c9d2ca2024-01-27 16:36:51 -050063 ndn::scheduler::EventId m_cleanup;
Junxiao Shi65d00722014-02-17 10:50:20 -070064
Davide Pesavento50a6af32019-02-21 00:04:40 -050065 name_tree::Entry* m_nameTreeEntry = nullptr;
Junxiao Shi340d5532016-08-13 04:00:35 +000066
Davide Pesavento9a28c3f2022-06-11 21:50:01 -040067 friend ::nfd::name_tree::Entry;
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -040068 friend Measurements;
Junxiao Shi65d00722014-02-17 10:50:20 -070069};
70
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040071} // namespace nfd::measurements
Junxiao Shi65d00722014-02-17 10:50:20 -070072
Alexander Afanasyev613e2a92014-04-15 13:36:58 -070073#endif // NFD_DAEMON_TABLE_MEASUREMENTS_ENTRY_HPP