Junxiao Shi | bb5105f | 2014-03-03 12:06:45 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Junxiao Shi | 4e837f8 | 2017-10-02 22:14:43 +0000 | [diff] [blame] | 2 | /* |
Junxiao Shi | 332783b | 2018-02-04 23:52:46 +0000 | [diff] [blame] | 3 | * Copyright (c) 2014-2018, Regents of the University of California, |
Junxiao Shi | ff10da6 | 2016-07-13 17:57:43 +0000 | [diff] [blame] | 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. |
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 | e93d6a3 | 2014-09-07 16:13:22 -0700 | [diff] [blame] | 24 | */ |
Junxiao Shi | bb5105f | 2014-03-03 12:06:45 -0700 | [diff] [blame] | 25 | |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 26 | #ifndef NFD_DAEMON_TABLE_STRATEGY_CHOICE_HPP |
| 27 | #define NFD_DAEMON_TABLE_STRATEGY_CHOICE_HPP |
Junxiao Shi | bb5105f | 2014-03-03 12:06:45 -0700 | [diff] [blame] | 28 | |
| 29 | #include "strategy-choice-entry.hpp" |
| 30 | #include "name-tree.hpp" |
| 31 | |
Junxiao Shi | b30863e | 2016-08-15 21:32:01 +0000 | [diff] [blame] | 32 | #include <boost/range/adaptor/transformed.hpp> |
| 33 | |
Junxiao Shi | bb5105f | 2014-03-03 12:06:45 -0700 | [diff] [blame] | 34 | namespace nfd { |
Junxiao Shi | c34d167 | 2016-12-09 15:57:59 +0000 | [diff] [blame] | 35 | |
| 36 | class Forwarder; |
| 37 | |
Junxiao Shi | ff10da6 | 2016-07-13 17:57:43 +0000 | [diff] [blame] | 38 | namespace strategy_choice { |
Junxiao Shi | bb5105f | 2014-03-03 12:06:45 -0700 | [diff] [blame] | 39 | |
Junxiao Shi | e93d6a3 | 2014-09-07 16:13:22 -0700 | [diff] [blame] | 40 | /** \brief represents the Strategy Choice table |
| 41 | * |
| 42 | * The Strategy Choice table maintains available Strategy types, |
| 43 | * and associates Name prefixes with Strategy types. |
| 44 | * |
| 45 | * Each strategy is identified by a strategyName. |
| 46 | * It's recommended to include a version number as the last component of strategyName. |
| 47 | * |
| 48 | * A Name prefix is owned by a strategy if a longest prefix match on the |
| 49 | * Strategy Choice table returns that strategy. |
| 50 | */ |
Junxiao Shi | bb5105f | 2014-03-03 12:06:45 -0700 | [diff] [blame] | 51 | class StrategyChoice : noncopyable |
| 52 | { |
| 53 | public: |
Junxiao Shi | c34d167 | 2016-12-09 15:57:59 +0000 | [diff] [blame] | 54 | explicit |
| 55 | StrategyChoice(Forwarder& forwarder); |
Junxiao Shi | bb5105f | 2014-03-03 12:06:45 -0700 | [diff] [blame] | 56 | |
Junxiao Shi | b30863e | 2016-08-15 21:32:01 +0000 | [diff] [blame] | 57 | size_t |
| 58 | size() const |
| 59 | { |
| 60 | return m_nItems; |
| 61 | } |
| 62 | |
Junxiao Shi | c34d167 | 2016-12-09 15:57:59 +0000 | [diff] [blame] | 63 | /** \brief set the default strategy |
| 64 | * |
| 65 | * This must be called by forwarder constructor. |
| 66 | */ |
| 67 | void |
| 68 | setDefaultStrategy(const Name& strategyName); |
| 69 | |
Junxiao Shi | bb5105f | 2014-03-03 12:06:45 -0700 | [diff] [blame] | 70 | public: // Strategy Choice table |
Junxiao Shi | 530cf00 | 2017-01-03 14:43:16 +0000 | [diff] [blame] | 71 | class InsertResult |
| 72 | { |
| 73 | public: |
| 74 | explicit |
| 75 | operator bool() const |
| 76 | { |
| 77 | return m_status == OK; |
| 78 | } |
| 79 | |
| 80 | bool |
| 81 | isRegistered() const |
| 82 | { |
Junxiao Shi | 4e837f8 | 2017-10-02 22:14:43 +0000 | [diff] [blame] | 83 | return m_status == OK || m_status == EXCEPTION; |
Junxiao Shi | 530cf00 | 2017-01-03 14:43:16 +0000 | [diff] [blame] | 84 | } |
| 85 | |
Junxiao Shi | 332783b | 2018-02-04 23:52:46 +0000 | [diff] [blame] | 86 | /** \brief get a status code for use in management command response |
| 87 | */ |
| 88 | int |
| 89 | getStatusCode() const |
| 90 | { |
| 91 | return static_cast<int>(m_status); |
| 92 | } |
| 93 | |
Junxiao Shi | 530cf00 | 2017-01-03 14:43:16 +0000 | [diff] [blame] | 94 | private: |
| 95 | enum Status { |
Junxiao Shi | 332783b | 2018-02-04 23:52:46 +0000 | [diff] [blame] | 96 | OK = 200, |
| 97 | NOT_REGISTERED = 404, |
| 98 | EXCEPTION = 409, |
| 99 | DEPTH_EXCEEDED = 414, |
Junxiao Shi | 530cf00 | 2017-01-03 14:43:16 +0000 | [diff] [blame] | 100 | }; |
| 101 | |
| 102 | // implicitly constructible from Status |
| 103 | InsertResult(Status status, const std::string& exceptionMessage = ""); |
| 104 | |
| 105 | private: |
| 106 | Status m_status; |
| 107 | std::string m_exceptionMessage; |
| 108 | |
| 109 | friend class StrategyChoice; |
| 110 | friend std::ostream& operator<<(std::ostream&, const InsertResult&); |
| 111 | }; |
| 112 | |
| 113 | /** \brief set strategy of \p prefix to be \p strategyName |
| 114 | * \param prefix the name prefix to change strategy |
| 115 | * \param strategyName strategy instance name, may contain version and parameters; |
| 116 | * strategy must have been registered |
| 117 | * \return convertible to true on success; convertible to false on failure |
Junxiao Shi | bb5105f | 2014-03-03 12:06:45 -0700 | [diff] [blame] | 118 | */ |
Junxiao Shi | 530cf00 | 2017-01-03 14:43:16 +0000 | [diff] [blame] | 119 | InsertResult |
Junxiao Shi | bb5105f | 2014-03-03 12:06:45 -0700 | [diff] [blame] | 120 | insert(const Name& prefix, const Name& strategyName); |
| 121 | |
| 122 | /** \brief make prefix to inherit strategy from its parent |
| 123 | * |
| 124 | * not allowed for root prefix (ndn:/) |
| 125 | */ |
| 126 | void |
| 127 | erase(const Name& prefix); |
| 128 | |
| 129 | /** \brief get strategy Name of prefix |
Junxiao Shi | 838c4f1 | 2014-11-03 18:55:24 -0700 | [diff] [blame] | 130 | * \return true and strategyName at exact match, or false |
Junxiao Shi | bb5105f | 2014-03-03 12:06:45 -0700 | [diff] [blame] | 131 | */ |
Junxiao Shi | 838c4f1 | 2014-11-03 18:55:24 -0700 | [diff] [blame] | 132 | std::pair<bool, Name> |
Junxiao Shi | bb5105f | 2014-03-03 12:06:45 -0700 | [diff] [blame] | 133 | get(const Name& prefix) const; |
| 134 | |
Junxiao Shi | b5888d2 | 2014-05-26 07:35:22 -0700 | [diff] [blame] | 135 | public: // effective strategy |
Junxiao Shi | a49a1ab | 2016-07-15 18:24:36 +0000 | [diff] [blame] | 136 | /** \brief get effective strategy for prefix |
| 137 | */ |
Junxiao Shi | bb5105f | 2014-03-03 12:06:45 -0700 | [diff] [blame] | 138 | fw::Strategy& |
| 139 | findEffectiveStrategy(const Name& prefix) const; |
| 140 | |
Junxiao Shi | a49a1ab | 2016-07-15 18:24:36 +0000 | [diff] [blame] | 141 | /** \brief get effective strategy for pitEntry |
Junxiao Shi | b30863e | 2016-08-15 21:32:01 +0000 | [diff] [blame] | 142 | * |
| 143 | * This is equivalent to .findEffectiveStrategy(pitEntry.getName()) |
Junxiao Shi | a49a1ab | 2016-07-15 18:24:36 +0000 | [diff] [blame] | 144 | */ |
Junxiao Shi | bb5105f | 2014-03-03 12:06:45 -0700 | [diff] [blame] | 145 | fw::Strategy& |
| 146 | findEffectiveStrategy(const pit::Entry& pitEntry) const; |
| 147 | |
Junxiao Shi | a49a1ab | 2016-07-15 18:24:36 +0000 | [diff] [blame] | 148 | /** \brief get effective strategy for measurementsEntry |
Junxiao Shi | b30863e | 2016-08-15 21:32:01 +0000 | [diff] [blame] | 149 | * |
| 150 | * This is equivalent to .findEffectiveStrategy(measurementsEntry.getName()) |
Junxiao Shi | a49a1ab | 2016-07-15 18:24:36 +0000 | [diff] [blame] | 151 | */ |
Junxiao Shi | 7bb0151 | 2014-03-05 21:34:09 -0700 | [diff] [blame] | 152 | fw::Strategy& |
| 153 | findEffectiveStrategy(const measurements::Entry& measurementsEntry) const; |
| 154 | |
Junxiao Shi | b5888d2 | 2014-05-26 07:35:22 -0700 | [diff] [blame] | 155 | public: // enumeration |
Junxiao Shi | b30863e | 2016-08-15 21:32:01 +0000 | [diff] [blame] | 156 | typedef boost::transformed_range<name_tree::GetTableEntry<Entry>, const name_tree::Range> Range; |
| 157 | typedef boost::range_iterator<Range>::type const_iterator; |
Junxiao Shi | b5888d2 | 2014-05-26 07:35:22 -0700 | [diff] [blame] | 158 | |
Junxiao Shi | b30863e | 2016-08-15 21:32:01 +0000 | [diff] [blame] | 159 | /** \return an iterator to the beginning |
| 160 | * \note Iteration order is implementation-defined. |
| 161 | * \warning Undefined behavior may occur if a FIB/PIT/Measurements/StrategyChoice entry |
| 162 | * is inserted or erased during enumeration. |
Junxiao Shi | a49a1ab | 2016-07-15 18:24:36 +0000 | [diff] [blame] | 163 | */ |
Junxiao Shi | b5888d2 | 2014-05-26 07:35:22 -0700 | [diff] [blame] | 164 | const_iterator |
Junxiao Shi | b30863e | 2016-08-15 21:32:01 +0000 | [diff] [blame] | 165 | begin() const |
| 166 | { |
| 167 | return this->getRange().begin(); |
| 168 | } |
Junxiao Shi | b5888d2 | 2014-05-26 07:35:22 -0700 | [diff] [blame] | 169 | |
Junxiao Shi | b30863e | 2016-08-15 21:32:01 +0000 | [diff] [blame] | 170 | /** \return an iterator to the end |
| 171 | * \sa begin() |
| 172 | */ |
Junxiao Shi | b5888d2 | 2014-05-26 07:35:22 -0700 | [diff] [blame] | 173 | const_iterator |
Junxiao Shi | b30863e | 2016-08-15 21:32:01 +0000 | [diff] [blame] | 174 | end() const |
| 175 | { |
| 176 | return this->getRange().end(); |
| 177 | } |
Junxiao Shi | b5888d2 | 2014-05-26 07:35:22 -0700 | [diff] [blame] | 178 | |
Junxiao Shi | bb5105f | 2014-03-03 12:06:45 -0700 | [diff] [blame] | 179 | private: |
Junxiao Shi | bb5105f | 2014-03-03 12:06:45 -0700 | [diff] [blame] | 180 | void |
Junxiao Shi | ff10da6 | 2016-07-13 17:57:43 +0000 | [diff] [blame] | 181 | changeStrategy(Entry& entry, |
Junxiao Shi | 838c4f1 | 2014-11-03 18:55:24 -0700 | [diff] [blame] | 182 | fw::Strategy& oldStrategy, |
| 183 | fw::Strategy& newStrategy); |
Junxiao Shi | bb5105f | 2014-03-03 12:06:45 -0700 | [diff] [blame] | 184 | |
Junxiao Shi | dd8f661 | 2016-08-12 15:42:52 +0000 | [diff] [blame] | 185 | /** \tparam K a parameter acceptable to NameTree::findLongestPrefixMatch |
| 186 | */ |
| 187 | template<typename K> |
HangZhang | cb4fc83 | 2014-03-11 16:57:11 +0800 | [diff] [blame] | 188 | fw::Strategy& |
Junxiao Shi | dd8f661 | 2016-08-12 15:42:52 +0000 | [diff] [blame] | 189 | findEffectiveStrategyImpl(const K& key) const; |
HangZhang | cb4fc83 | 2014-03-11 16:57:11 +0800 | [diff] [blame] | 190 | |
Junxiao Shi | b30863e | 2016-08-15 21:32:01 +0000 | [diff] [blame] | 191 | Range |
| 192 | getRange() const; |
| 193 | |
Junxiao Shi | bb5105f | 2014-03-03 12:06:45 -0700 | [diff] [blame] | 194 | private: |
Junxiao Shi | c34d167 | 2016-12-09 15:57:59 +0000 | [diff] [blame] | 195 | Forwarder& m_forwarder; |
Junxiao Shi | bb5105f | 2014-03-03 12:06:45 -0700 | [diff] [blame] | 196 | NameTree& m_nameTree; |
| 197 | size_t m_nItems; |
Junxiao Shi | bb5105f | 2014-03-03 12:06:45 -0700 | [diff] [blame] | 198 | }; |
| 199 | |
Junxiao Shi | 530cf00 | 2017-01-03 14:43:16 +0000 | [diff] [blame] | 200 | std::ostream& |
| 201 | operator<<(std::ostream& os, const StrategyChoice::InsertResult& res); |
| 202 | |
Junxiao Shi | ff10da6 | 2016-07-13 17:57:43 +0000 | [diff] [blame] | 203 | } // namespace strategy_choice |
| 204 | |
| 205 | using strategy_choice::StrategyChoice; |
| 206 | |
Junxiao Shi | bb5105f | 2014-03-03 12:06:45 -0700 | [diff] [blame] | 207 | } // namespace nfd |
| 208 | |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 209 | #endif // NFD_DAEMON_TABLE_STRATEGY_CHOICE_HPP |