blob: d110ed625e8074a8a504e36715f1d8ea5bd12bd1 [file] [log] [blame]
Junxiao Shi65d00722014-02-17 10:50:20 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Junxiao Shi057d1492018-03-20 17:14:18 +00002/*
3 * Copyright (c) 2014-2018, Regents of the University of California,
Junxiao Shi767cb332015-01-08 09:35:49 -07004 * Arizona Board of Regents,
5 * Colorado State University,
Junxiao Shi35353962015-01-08 09:13:47 -07006 * University Pierre & Marie Curie, Sorbonne University,
Junxiao Shi767cb332015-01-08 09:35:49 -07007 * 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 Shi19838042014-06-21 00:34:01 -070024 */
Junxiao Shi65d00722014-02-17 10:50:20 -070025
Alexander Afanasyev613e2a92014-04-15 13:36:58 -070026#ifndef NFD_DAEMON_TABLE_MEASUREMENTS_HPP
27#define NFD_DAEMON_TABLE_MEASUREMENTS_HPP
Junxiao Shi65d00722014-02-17 10:50:20 -070028
29#include "measurements-entry.hpp"
HangZhangc85a23c2014-03-01 15:55:55 +080030#include "name-tree.hpp"
Junxiao Shi65d00722014-02-17 10:50:20 -070031
32namespace nfd {
33
HangZhangc85a23c2014-03-01 15:55:55 +080034namespace fib {
35class Entry;
Junxiao Shib30c7b02015-01-07 15:45:54 -070036} // namespace fib
HangZhangc85a23c2014-03-01 15:55:55 +080037
38namespace pit {
39class Entry;
Junxiao Shib30c7b02015-01-07 15:45:54 -070040} // namespace pit
HangZhangc85a23c2014-03-01 15:55:55 +080041
Junxiao Shib30c7b02015-01-07 15:45:54 -070042namespace measurements {
HangZhangc85a23c2014-03-01 15:55:55 +080043
Junxiao Shi80f9fcd2016-07-23 02:48:36 +000044/** \brief a predicate that accepts or rejects an entry
Junxiao Shib30c7b02015-01-07 15:45:54 -070045 */
46typedef std::function<bool(const Entry&)> EntryPredicate;
47
Junxiao Shi057d1492018-03-20 17:14:18 +000048/** \brief an \c EntryPredicate that accepts any entry
Junxiao Shib30c7b02015-01-07 15:45:54 -070049 */
50class AnyEntry
51{
52public:
53 bool
Junxiao Shi80f9fcd2016-07-23 02:48:36 +000054 operator()(const Entry& entry) const
Junxiao Shib30c7b02015-01-07 15:45:54 -070055 {
56 return true;
57 }
58};
59
Junxiao Shi057d1492018-03-20 17:14:18 +000060/** \brief an \c EntryPredicate that accepts an entry if it has StrategyInfo of type T
Junxiao Shi80f9fcd2016-07-23 02:48:36 +000061 */
Junxiao Shib30c7b02015-01-07 15:45:54 -070062template<typename T>
63class EntryWithStrategyInfo
64{
65public:
66 bool
Junxiao Shi80f9fcd2016-07-23 02:48:36 +000067 operator()(const Entry& entry) const
Junxiao Shib30c7b02015-01-07 15:45:54 -070068 {
69 return entry.getStrategyInfo<T>() != nullptr;
70 }
71};
72
Junxiao Shi057d1492018-03-20 17:14:18 +000073/** \brief the Measurements table
74 *
75 * The Measurements table is a data structure for forwarding strategies to store per name prefix
76 * measurements. A strategy can access this table via \c Strategy::getMeasurements(), and then
77 * place any object that derive from \c StrategyInfo type onto Measurements entries.
Junxiao Shi65d00722014-02-17 10:50:20 -070078 */
79class Measurements : noncopyable
80{
81public:
HangZhangc85a23c2014-03-01 15:55:55 +080082 explicit
Junxiao Shi057d1492018-03-20 17:14:18 +000083 Measurements(NameTree& nameTree);
Junxiao Shi65d00722014-02-17 10:50:20 -070084
Junxiao Shi057d1492018-03-20 17:14:18 +000085 /** \brief maximum depth of a Measurements entry
86 */
87 static constexpr size_t
88 getMaxDepth()
89 {
90 return NameTree::getMaxDepth();
91 }
92
93 /** \brief find or insert an entry by name
94 *
95 * An entry name can have at most \c getMaxDepth() components. If \p name exceeds this limit,
96 * it is truncated to the first \c getMaxDepth() components.
Junxiao Shie368d992014-12-02 23:44:31 -070097 */
Junxiao Shi80f9fcd2016-07-23 02:48:36 +000098 Entry&
Junxiao Shi65d00722014-02-17 10:50:20 -070099 get(const Name& name);
100
Junxiao Shi057d1492018-03-20 17:14:18 +0000101 /** \brief equivalent to `get(fibEntry.getPrefix())`
Junxiao Shie368d992014-12-02 23:44:31 -0700102 */
Junxiao Shi80f9fcd2016-07-23 02:48:36 +0000103 Entry&
Junxiao Shi65d00722014-02-17 10:50:20 -0700104 get(const fib::Entry& fibEntry);
105
Junxiao Shi057d1492018-03-20 17:14:18 +0000106 /** \brief equivalent to
107 * `get(pitEntry.getName(), std::min(pitEntry.getName().size(), getMaxDepth()))`
Junxiao Shie368d992014-12-02 23:44:31 -0700108 */
Junxiao Shi80f9fcd2016-07-23 02:48:36 +0000109 Entry&
Junxiao Shi65d00722014-02-17 10:50:20 -0700110 get(const pit::Entry& pitEntry);
111
Junxiao Shi057d1492018-03-20 17:14:18 +0000112 /** \brief find or insert a parent entry
113 * \retval nullptr child is the root entry
114 * \return get(child.getName().getPrefix(-1))
Junxiao Shi65d00722014-02-17 10:50:20 -0700115 */
Junxiao Shi80f9fcd2016-07-23 02:48:36 +0000116 Entry*
117 getParent(const Entry& child);
Junxiao Shi65d00722014-02-17 10:50:20 -0700118
Junxiao Shi767cb332015-01-08 09:35:49 -0700119 /** \brief perform a longest prefix match for \p name
Junxiao Shie368d992014-12-02 23:44:31 -0700120 */
Junxiao Shi80f9fcd2016-07-23 02:48:36 +0000121 Entry*
Junxiao Shib30c7b02015-01-07 15:45:54 -0700122 findLongestPrefixMatch(const Name& name,
Junxiao Shi80f9fcd2016-07-23 02:48:36 +0000123 const EntryPredicate& pred = AnyEntry()) const;
Junxiao Shi65d00722014-02-17 10:50:20 -0700124
Junxiao Shi057d1492018-03-20 17:14:18 +0000125 /** \brief perform a longest prefix match for `pitEntry.getName()`
Junxiao Shi767cb332015-01-08 09:35:49 -0700126 */
Junxiao Shi80f9fcd2016-07-23 02:48:36 +0000127 Entry*
Junxiao Shi767cb332015-01-08 09:35:49 -0700128 findLongestPrefixMatch(const pit::Entry& pitEntry,
Junxiao Shi80f9fcd2016-07-23 02:48:36 +0000129 const EntryPredicate& pred = AnyEntry()) const;
Junxiao Shi767cb332015-01-08 09:35:49 -0700130
Junxiao Shie368d992014-12-02 23:44:31 -0700131 /** \brief perform an exact match
132 */
Junxiao Shi80f9fcd2016-07-23 02:48:36 +0000133 Entry*
HangZhangc85a23c2014-03-01 15:55:55 +0800134 findExactMatch(const Name& name) const;
135
Junxiao Shi19838042014-06-21 00:34:01 -0700136 static time::nanoseconds
137 getInitialLifetime();
138
Junxiao Shie368d992014-12-02 23:44:31 -0700139 /** \brief extend lifetime of an entry
Junxiao Shi65d00722014-02-17 10:50:20 -0700140 *
141 * The entry will be kept until at least now()+lifetime.
142 */
143 void
Junxiao Shi80f9fcd2016-07-23 02:48:36 +0000144 extendLifetime(Entry& entry, const time::nanoseconds& lifetime);
HangZhangc85a23c2014-03-01 15:55:55 +0800145
146 size_t
147 size() const;
Junxiao Shi65d00722014-02-17 10:50:20 -0700148
149private:
150 void
Junxiao Shi80f9fcd2016-07-23 02:48:36 +0000151 cleanup(Entry& entry);
Junxiao Shi65d00722014-02-17 10:50:20 -0700152
Junxiao Shi80f9fcd2016-07-23 02:48:36 +0000153 Entry&
Junxiao Shie368d992014-12-02 23:44:31 -0700154 get(name_tree::Entry& nte);
HangZhangcb4fc832014-03-11 16:57:11 +0800155
Junxiao Shi057d1492018-03-20 17:14:18 +0000156 /** \tparam K a parameter acceptable to \c NameTree::findLongestPrefixMatch
Junxiao Shi767cb332015-01-08 09:35:49 -0700157 */
158 template<typename K>
Junxiao Shi80f9fcd2016-07-23 02:48:36 +0000159 Entry*
160 findLongestPrefixMatchImpl(const K& key, const EntryPredicate& pred) const;
Junxiao Shi767cb332015-01-08 09:35:49 -0700161
Junxiao Shi65d00722014-02-17 10:50:20 -0700162private:
HangZhangc85a23c2014-03-01 15:55:55 +0800163 NameTree& m_nameTree;
164 size_t m_nItems;
Junxiao Shi65d00722014-02-17 10:50:20 -0700165};
166
Junxiao Shi19838042014-06-21 00:34:01 -0700167inline time::nanoseconds
168Measurements::getInitialLifetime()
169{
170 return time::seconds(4);
171}
172
HangZhangc85a23c2014-03-01 15:55:55 +0800173inline size_t
174Measurements::size() const
175{
176 return m_nItems;
177}
178
Junxiao Shi80f9fcd2016-07-23 02:48:36 +0000179} // namespace measurements
180
181using measurements::Measurements;
182
Junxiao Shi65d00722014-02-17 10:50:20 -0700183} // namespace nfd
184
Alexander Afanasyev613e2a92014-04-15 13:36:58 -0700185#endif // NFD_DAEMON_TABLE_MEASUREMENTS_HPP