Junxiao Shi | e5e2fce | 2014-02-10 20:01:53 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Davide Pesavento | 50a6af3 | 2019-02-21 00:04:40 -0500 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2014-2019, Regents of the University of California, |
Yumin Xia | ab49745 | 2016-05-10 20:23:24 +0800 | [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 | 39ef261 | 2014-11-29 20:35:19 -0700 | [diff] [blame] | 24 | */ |
Junxiao Shi | e5e2fce | 2014-02-10 20:01:53 -0700 | [diff] [blame] | 25 | |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 26 | #ifndef NFD_DAEMON_TABLE_STRATEGY_INFO_HOST_HPP |
| 27 | #define NFD_DAEMON_TABLE_STRATEGY_INFO_HOST_HPP |
Junxiao Shi | e5e2fce | 2014-02-10 20:01:53 -0700 | [diff] [blame] | 28 | |
| 29 | #include "fw/strategy-info.hpp" |
| 30 | |
| 31 | namespace nfd { |
| 32 | |
Davide Pesavento | 50a6af3 | 2019-02-21 00:04:40 -0500 | [diff] [blame] | 33 | /** \brief Base class for an entity onto which StrategyInfo items may be placed |
Junxiao Shi | e5e2fce | 2014-02-10 20:01:53 -0700 | [diff] [blame] | 34 | */ |
| 35 | class StrategyInfoHost |
| 36 | { |
| 37 | public: |
Davide Pesavento | 50a6af3 | 2019-02-21 00:04:40 -0500 | [diff] [blame] | 38 | /** \brief Get a StrategyInfo item |
Junxiao Shi | 5b3feb6 | 2016-08-19 01:51:41 +0000 | [diff] [blame] | 39 | * \tparam T type of StrategyInfo, must be a subclass of fw::StrategyInfo |
| 40 | * \return an existing StrategyInfo item of type T, or nullptr if it does not exist |
Junxiao Shi | 39ef261 | 2014-11-29 20:35:19 -0700 | [diff] [blame] | 41 | */ |
Junxiao Shi | e5e2fce | 2014-02-10 20:01:53 -0700 | [diff] [blame] | 42 | template<typename T> |
Junxiao Shi | fc02186 | 2016-08-25 21:51:18 +0000 | [diff] [blame] | 43 | T* |
Junxiao Shi | 5b3feb6 | 2016-08-19 01:51:41 +0000 | [diff] [blame] | 44 | getStrategyInfo() const |
| 45 | { |
| 46 | static_assert(std::is_base_of<fw::StrategyInfo, T>::value, |
| 47 | "T must inherit from StrategyInfo"); |
| 48 | |
| 49 | auto it = m_items.find(T::getTypeId()); |
| 50 | if (it == m_items.end()) { |
| 51 | return nullptr; |
| 52 | } |
Junxiao Shi | fc02186 | 2016-08-25 21:51:18 +0000 | [diff] [blame] | 53 | return static_cast<T*>(it->second.get()); |
Junxiao Shi | 5b3feb6 | 2016-08-19 01:51:41 +0000 | [diff] [blame] | 54 | } |
| 55 | |
Davide Pesavento | 50a6af3 | 2019-02-21 00:04:40 -0500 | [diff] [blame] | 56 | /** \brief Insert a StrategyInfo item |
Junxiao Shi | 5b3feb6 | 2016-08-19 01:51:41 +0000 | [diff] [blame] | 57 | * \tparam T type of StrategyInfo, must be a subclass of fw::StrategyInfo |
Junxiao Shi | fc02186 | 2016-08-25 21:51:18 +0000 | [diff] [blame] | 58 | * \return a new or existing StrategyInfo item of type T, |
| 59 | * and true for new item, false for existing item |
Junxiao Shi | 39ef261 | 2014-11-29 20:35:19 -0700 | [diff] [blame] | 60 | */ |
| 61 | template<typename T, typename ...A> |
Junxiao Shi | fc02186 | 2016-08-25 21:51:18 +0000 | [diff] [blame] | 62 | std::pair<T*, bool> |
Junxiao Shi | 5b3feb6 | 2016-08-19 01:51:41 +0000 | [diff] [blame] | 63 | insertStrategyInfo(A&&... args) |
| 64 | { |
| 65 | static_assert(std::is_base_of<fw::StrategyInfo, T>::value, |
| 66 | "T must inherit from StrategyInfo"); |
| 67 | |
Davide Pesavento | 50a6af3 | 2019-02-21 00:04:40 -0500 | [diff] [blame] | 68 | auto& item = m_items[T::getTypeId()]; |
| 69 | bool isNew = item == nullptr; |
Junxiao Shi | fc02186 | 2016-08-25 21:51:18 +0000 | [diff] [blame] | 70 | if (isNew) { |
Davide Pesavento | 50a6af3 | 2019-02-21 00:04:40 -0500 | [diff] [blame] | 71 | item = make_unique<T>(std::forward<A>(args)...); |
Junxiao Shi | 5b3feb6 | 2016-08-19 01:51:41 +0000 | [diff] [blame] | 72 | } |
Junxiao Shi | fc02186 | 2016-08-25 21:51:18 +0000 | [diff] [blame] | 73 | return {static_cast<T*>(item.get()), isNew}; |
| 74 | } |
| 75 | |
Davide Pesavento | 50a6af3 | 2019-02-21 00:04:40 -0500 | [diff] [blame] | 76 | /** \brief Erase a StrategyInfo item |
Junxiao Shi | fc02186 | 2016-08-25 21:51:18 +0000 | [diff] [blame] | 77 | * \tparam T type of StrategyInfo, must be a subclass of fw::StrategyInfo |
| 78 | * \return number of items erased |
| 79 | */ |
| 80 | template<typename T> |
| 81 | size_t |
| 82 | eraseStrategyInfo() |
| 83 | { |
| 84 | static_assert(std::is_base_of<fw::StrategyInfo, T>::value, |
| 85 | "T must inherit from StrategyInfo"); |
| 86 | |
| 87 | return m_items.erase(T::getTypeId()); |
Junxiao Shi | 5b3feb6 | 2016-08-19 01:51:41 +0000 | [diff] [blame] | 88 | } |
Alexander Afanasyev | 9bcbc7c | 2014-04-06 19:37:37 -0700 | [diff] [blame] | 89 | |
Davide Pesavento | 50a6af3 | 2019-02-21 00:04:40 -0500 | [diff] [blame] | 90 | /** \brief Clear all StrategyInfo items |
Junxiao Shi | 39ef261 | 2014-11-29 20:35:19 -0700 | [diff] [blame] | 91 | */ |
Junxiao Shi | e5e2fce | 2014-02-10 20:01:53 -0700 | [diff] [blame] | 92 | void |
Davide Pesavento | 50a6af3 | 2019-02-21 00:04:40 -0500 | [diff] [blame] | 93 | clearStrategyInfo() |
| 94 | { |
| 95 | m_items.clear(); |
| 96 | } |
Junxiao Shi | e5e2fce | 2014-02-10 20:01:53 -0700 | [diff] [blame] | 97 | |
| 98 | private: |
Junxiao Shi | fc02186 | 2016-08-25 21:51:18 +0000 | [diff] [blame] | 99 | std::unordered_map<int, unique_ptr<fw::StrategyInfo>> m_items; |
Junxiao Shi | e5e2fce | 2014-02-10 20:01:53 -0700 | [diff] [blame] | 100 | }; |
| 101 | |
Junxiao Shi | e5e2fce | 2014-02-10 20:01:53 -0700 | [diff] [blame] | 102 | } // namespace nfd |
| 103 | |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 104 | #endif // NFD_DAEMON_TABLE_STRATEGY_INFO_HOST_HPP |