Junxiao Shi | 65d0072 | 2014-02-17 10:50:20 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Junxiao Shi | 057d149 | 2018-03-20 17:14:18 +0000 | [diff] [blame^] | 2 | /* |
| 3 | * Copyright (c) 2014-2018, Regents of the University of California, |
Junxiao Shi | 767cb33 | 2015-01-08 09:35:49 -0700 | [diff] [blame] | 4 | * Arizona Board of Regents, |
| 5 | * Colorado State University, |
Junxiao Shi | 3535396 | 2015-01-08 09:13:47 -0700 | [diff] [blame] | 6 | * University Pierre & Marie Curie, Sorbonne University, |
Junxiao Shi | 767cb33 | 2015-01-08 09:35:49 -0700 | [diff] [blame] | 7 | * Washington University in St. Louis, |
| 8 | * Beijing Institute of Technology, |
| 9 | * The University of Memphis. |
Alexander Afanasyev | 9bcbc7c | 2014-04-06 19:37:37 -0700 | [diff] [blame] | 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/>. |
Junxiao Shi | 1983804 | 2014-06-21 00:34:01 -0700 | [diff] [blame] | 24 | */ |
Junxiao Shi | 65d0072 | 2014-02-17 10:50:20 -0700 | [diff] [blame] | 25 | |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 26 | #ifndef NFD_DAEMON_TABLE_MEASUREMENTS_HPP |
| 27 | #define NFD_DAEMON_TABLE_MEASUREMENTS_HPP |
Junxiao Shi | 65d0072 | 2014-02-17 10:50:20 -0700 | [diff] [blame] | 28 | |
| 29 | #include "measurements-entry.hpp" |
HangZhang | c85a23c | 2014-03-01 15:55:55 +0800 | [diff] [blame] | 30 | #include "name-tree.hpp" |
Junxiao Shi | 65d0072 | 2014-02-17 10:50:20 -0700 | [diff] [blame] | 31 | |
| 32 | namespace nfd { |
| 33 | |
HangZhang | c85a23c | 2014-03-01 15:55:55 +0800 | [diff] [blame] | 34 | namespace fib { |
| 35 | class Entry; |
Junxiao Shi | b30c7b0 | 2015-01-07 15:45:54 -0700 | [diff] [blame] | 36 | } // namespace fib |
HangZhang | c85a23c | 2014-03-01 15:55:55 +0800 | [diff] [blame] | 37 | |
| 38 | namespace pit { |
| 39 | class Entry; |
Junxiao Shi | b30c7b0 | 2015-01-07 15:45:54 -0700 | [diff] [blame] | 40 | } // namespace pit |
HangZhang | c85a23c | 2014-03-01 15:55:55 +0800 | [diff] [blame] | 41 | |
Junxiao Shi | b30c7b0 | 2015-01-07 15:45:54 -0700 | [diff] [blame] | 42 | namespace measurements { |
HangZhang | c85a23c | 2014-03-01 15:55:55 +0800 | [diff] [blame] | 43 | |
Junxiao Shi | 80f9fcd | 2016-07-23 02:48:36 +0000 | [diff] [blame] | 44 | /** \brief a predicate that accepts or rejects an entry |
Junxiao Shi | b30c7b0 | 2015-01-07 15:45:54 -0700 | [diff] [blame] | 45 | */ |
| 46 | typedef std::function<bool(const Entry&)> EntryPredicate; |
| 47 | |
Junxiao Shi | 057d149 | 2018-03-20 17:14:18 +0000 | [diff] [blame^] | 48 | /** \brief an \c EntryPredicate that accepts any entry |
Junxiao Shi | b30c7b0 | 2015-01-07 15:45:54 -0700 | [diff] [blame] | 49 | */ |
| 50 | class AnyEntry |
| 51 | { |
| 52 | public: |
| 53 | bool |
Junxiao Shi | 80f9fcd | 2016-07-23 02:48:36 +0000 | [diff] [blame] | 54 | operator()(const Entry& entry) const |
Junxiao Shi | b30c7b0 | 2015-01-07 15:45:54 -0700 | [diff] [blame] | 55 | { |
| 56 | return true; |
| 57 | } |
| 58 | }; |
| 59 | |
Junxiao Shi | 057d149 | 2018-03-20 17:14:18 +0000 | [diff] [blame^] | 60 | /** \brief an \c EntryPredicate that accepts an entry if it has StrategyInfo of type T |
Junxiao Shi | 80f9fcd | 2016-07-23 02:48:36 +0000 | [diff] [blame] | 61 | */ |
Junxiao Shi | b30c7b0 | 2015-01-07 15:45:54 -0700 | [diff] [blame] | 62 | template<typename T> |
| 63 | class EntryWithStrategyInfo |
| 64 | { |
| 65 | public: |
| 66 | bool |
Junxiao Shi | 80f9fcd | 2016-07-23 02:48:36 +0000 | [diff] [blame] | 67 | operator()(const Entry& entry) const |
Junxiao Shi | b30c7b0 | 2015-01-07 15:45:54 -0700 | [diff] [blame] | 68 | { |
| 69 | return entry.getStrategyInfo<T>() != nullptr; |
| 70 | } |
| 71 | }; |
| 72 | |
Junxiao Shi | 057d149 | 2018-03-20 17:14:18 +0000 | [diff] [blame^] | 73 | /** \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 Shi | 65d0072 | 2014-02-17 10:50:20 -0700 | [diff] [blame] | 78 | */ |
| 79 | class Measurements : noncopyable |
| 80 | { |
| 81 | public: |
HangZhang | c85a23c | 2014-03-01 15:55:55 +0800 | [diff] [blame] | 82 | explicit |
Junxiao Shi | 057d149 | 2018-03-20 17:14:18 +0000 | [diff] [blame^] | 83 | Measurements(NameTree& nameTree); |
Junxiao Shi | 65d0072 | 2014-02-17 10:50:20 -0700 | [diff] [blame] | 84 | |
Junxiao Shi | 057d149 | 2018-03-20 17:14:18 +0000 | [diff] [blame^] | 85 | /** \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 Shi | e368d99 | 2014-12-02 23:44:31 -0700 | [diff] [blame] | 97 | */ |
Junxiao Shi | 80f9fcd | 2016-07-23 02:48:36 +0000 | [diff] [blame] | 98 | Entry& |
Junxiao Shi | 65d0072 | 2014-02-17 10:50:20 -0700 | [diff] [blame] | 99 | get(const Name& name); |
| 100 | |
Junxiao Shi | 057d149 | 2018-03-20 17:14:18 +0000 | [diff] [blame^] | 101 | /** \brief equivalent to `get(fibEntry.getPrefix())` |
Junxiao Shi | e368d99 | 2014-12-02 23:44:31 -0700 | [diff] [blame] | 102 | */ |
Junxiao Shi | 80f9fcd | 2016-07-23 02:48:36 +0000 | [diff] [blame] | 103 | Entry& |
Junxiao Shi | 65d0072 | 2014-02-17 10:50:20 -0700 | [diff] [blame] | 104 | get(const fib::Entry& fibEntry); |
| 105 | |
Junxiao Shi | 057d149 | 2018-03-20 17:14:18 +0000 | [diff] [blame^] | 106 | /** \brief equivalent to |
| 107 | * `get(pitEntry.getName(), std::min(pitEntry.getName().size(), getMaxDepth()))` |
Junxiao Shi | e368d99 | 2014-12-02 23:44:31 -0700 | [diff] [blame] | 108 | */ |
Junxiao Shi | 80f9fcd | 2016-07-23 02:48:36 +0000 | [diff] [blame] | 109 | Entry& |
Junxiao Shi | 65d0072 | 2014-02-17 10:50:20 -0700 | [diff] [blame] | 110 | get(const pit::Entry& pitEntry); |
| 111 | |
Junxiao Shi | 057d149 | 2018-03-20 17:14:18 +0000 | [diff] [blame^] | 112 | /** \brief find or insert a parent entry |
| 113 | * \retval nullptr child is the root entry |
| 114 | * \return get(child.getName().getPrefix(-1)) |
Junxiao Shi | 65d0072 | 2014-02-17 10:50:20 -0700 | [diff] [blame] | 115 | */ |
Junxiao Shi | 80f9fcd | 2016-07-23 02:48:36 +0000 | [diff] [blame] | 116 | Entry* |
| 117 | getParent(const Entry& child); |
Junxiao Shi | 65d0072 | 2014-02-17 10:50:20 -0700 | [diff] [blame] | 118 | |
Junxiao Shi | 767cb33 | 2015-01-08 09:35:49 -0700 | [diff] [blame] | 119 | /** \brief perform a longest prefix match for \p name |
Junxiao Shi | e368d99 | 2014-12-02 23:44:31 -0700 | [diff] [blame] | 120 | */ |
Junxiao Shi | 80f9fcd | 2016-07-23 02:48:36 +0000 | [diff] [blame] | 121 | Entry* |
Junxiao Shi | b30c7b0 | 2015-01-07 15:45:54 -0700 | [diff] [blame] | 122 | findLongestPrefixMatch(const Name& name, |
Junxiao Shi | 80f9fcd | 2016-07-23 02:48:36 +0000 | [diff] [blame] | 123 | const EntryPredicate& pred = AnyEntry()) const; |
Junxiao Shi | 65d0072 | 2014-02-17 10:50:20 -0700 | [diff] [blame] | 124 | |
Junxiao Shi | 057d149 | 2018-03-20 17:14:18 +0000 | [diff] [blame^] | 125 | /** \brief perform a longest prefix match for `pitEntry.getName()` |
Junxiao Shi | 767cb33 | 2015-01-08 09:35:49 -0700 | [diff] [blame] | 126 | */ |
Junxiao Shi | 80f9fcd | 2016-07-23 02:48:36 +0000 | [diff] [blame] | 127 | Entry* |
Junxiao Shi | 767cb33 | 2015-01-08 09:35:49 -0700 | [diff] [blame] | 128 | findLongestPrefixMatch(const pit::Entry& pitEntry, |
Junxiao Shi | 80f9fcd | 2016-07-23 02:48:36 +0000 | [diff] [blame] | 129 | const EntryPredicate& pred = AnyEntry()) const; |
Junxiao Shi | 767cb33 | 2015-01-08 09:35:49 -0700 | [diff] [blame] | 130 | |
Junxiao Shi | e368d99 | 2014-12-02 23:44:31 -0700 | [diff] [blame] | 131 | /** \brief perform an exact match |
| 132 | */ |
Junxiao Shi | 80f9fcd | 2016-07-23 02:48:36 +0000 | [diff] [blame] | 133 | Entry* |
HangZhang | c85a23c | 2014-03-01 15:55:55 +0800 | [diff] [blame] | 134 | findExactMatch(const Name& name) const; |
| 135 | |
Junxiao Shi | 1983804 | 2014-06-21 00:34:01 -0700 | [diff] [blame] | 136 | static time::nanoseconds |
| 137 | getInitialLifetime(); |
| 138 | |
Junxiao Shi | e368d99 | 2014-12-02 23:44:31 -0700 | [diff] [blame] | 139 | /** \brief extend lifetime of an entry |
Junxiao Shi | 65d0072 | 2014-02-17 10:50:20 -0700 | [diff] [blame] | 140 | * |
| 141 | * The entry will be kept until at least now()+lifetime. |
| 142 | */ |
| 143 | void |
Junxiao Shi | 80f9fcd | 2016-07-23 02:48:36 +0000 | [diff] [blame] | 144 | extendLifetime(Entry& entry, const time::nanoseconds& lifetime); |
HangZhang | c85a23c | 2014-03-01 15:55:55 +0800 | [diff] [blame] | 145 | |
| 146 | size_t |
| 147 | size() const; |
Junxiao Shi | 65d0072 | 2014-02-17 10:50:20 -0700 | [diff] [blame] | 148 | |
| 149 | private: |
| 150 | void |
Junxiao Shi | 80f9fcd | 2016-07-23 02:48:36 +0000 | [diff] [blame] | 151 | cleanup(Entry& entry); |
Junxiao Shi | 65d0072 | 2014-02-17 10:50:20 -0700 | [diff] [blame] | 152 | |
Junxiao Shi | 80f9fcd | 2016-07-23 02:48:36 +0000 | [diff] [blame] | 153 | Entry& |
Junxiao Shi | e368d99 | 2014-12-02 23:44:31 -0700 | [diff] [blame] | 154 | get(name_tree::Entry& nte); |
HangZhang | cb4fc83 | 2014-03-11 16:57:11 +0800 | [diff] [blame] | 155 | |
Junxiao Shi | 057d149 | 2018-03-20 17:14:18 +0000 | [diff] [blame^] | 156 | /** \tparam K a parameter acceptable to \c NameTree::findLongestPrefixMatch |
Junxiao Shi | 767cb33 | 2015-01-08 09:35:49 -0700 | [diff] [blame] | 157 | */ |
| 158 | template<typename K> |
Junxiao Shi | 80f9fcd | 2016-07-23 02:48:36 +0000 | [diff] [blame] | 159 | Entry* |
| 160 | findLongestPrefixMatchImpl(const K& key, const EntryPredicate& pred) const; |
Junxiao Shi | 767cb33 | 2015-01-08 09:35:49 -0700 | [diff] [blame] | 161 | |
Junxiao Shi | 65d0072 | 2014-02-17 10:50:20 -0700 | [diff] [blame] | 162 | private: |
HangZhang | c85a23c | 2014-03-01 15:55:55 +0800 | [diff] [blame] | 163 | NameTree& m_nameTree; |
| 164 | size_t m_nItems; |
Junxiao Shi | 65d0072 | 2014-02-17 10:50:20 -0700 | [diff] [blame] | 165 | }; |
| 166 | |
Junxiao Shi | 1983804 | 2014-06-21 00:34:01 -0700 | [diff] [blame] | 167 | inline time::nanoseconds |
| 168 | Measurements::getInitialLifetime() |
| 169 | { |
| 170 | return time::seconds(4); |
| 171 | } |
| 172 | |
HangZhang | c85a23c | 2014-03-01 15:55:55 +0800 | [diff] [blame] | 173 | inline size_t |
| 174 | Measurements::size() const |
| 175 | { |
| 176 | return m_nItems; |
| 177 | } |
| 178 | |
Junxiao Shi | 80f9fcd | 2016-07-23 02:48:36 +0000 | [diff] [blame] | 179 | } // namespace measurements |
| 180 | |
| 181 | using measurements::Measurements; |
| 182 | |
Junxiao Shi | 65d0072 | 2014-02-17 10:50:20 -0700 | [diff] [blame] | 183 | } // namespace nfd |
| 184 | |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 185 | #endif // NFD_DAEMON_TABLE_MEASUREMENTS_HPP |