blob: 8eb40ff896916e7026d1f354fbad78c8dc2232b5 [file] [log] [blame]
Junxiao Shi65d00722014-02-17 10:50:20 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Junxiao Shib184e532016-05-26 18:09:57 +00003 * Copyright (c) 2014-2016, 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
29#include "common.hpp"
30#include "strategy-info-host.hpp"
31#include "core/scheduler.hpp"
32
33namespace nfd {
34
HangZhangcb4fc832014-03-11 16:57:11 +080035class NameTree;
36
37namespace name_tree {
38class Entry;
Junxiao Shib184e532016-05-26 18:09:57 +000039} // namespace name_tree
HangZhangcb4fc832014-03-11 16:57:11 +080040
Junxiao Shi65d00722014-02-17 10:50:20 -070041namespace measurements {
42
Junxiao Shi80f9fcd2016-07-23 02:48:36 +000043class Measurements;
44
45/** \brief represents a Measurements entry
Junxiao Shi65d00722014-02-17 10:50:20 -070046 */
47class Entry : public StrategyInfoHost, noncopyable
48{
49public:
50 explicit
51 Entry(const Name& name);
52
53 const Name&
54 getName() const;
55
56private:
57 Name m_name;
58
59private: // lifetime
Alexander Afanasyeveb3197f2014-03-17 19:28:18 -070060 time::steady_clock::TimePoint m_expiry;
Junxiao Shi1e46be32015-01-08 20:18:05 -070061 scheduler::EventId m_cleanup;
Junxiao Shib184e532016-05-26 18:09:57 +000062 weak_ptr<name_tree::Entry> m_nameTreeEntry;
Junxiao Shi65d00722014-02-17 10:50:20 -070063
HangZhangcb4fc832014-03-11 16:57:11 +080064 friend class nfd::NameTree;
65 friend class nfd::name_tree::Entry;
Junxiao Shi80f9fcd2016-07-23 02:48:36 +000066 friend class Measurements;
Junxiao Shi65d00722014-02-17 10:50:20 -070067};
68
69inline const Name&
70Entry::getName() const
71{
72 return m_name;
73}
74
75} // namespace measurements
76} // namespace nfd
77
Alexander Afanasyev613e2a92014-04-15 13:36:58 -070078#endif // NFD_DAEMON_TABLE_MEASUREMENTS_ENTRY_HPP