Junxiao Shi | e5e2fce | 2014-02-10 20:01:53 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Yumin Xia | ab49745 | 2016-05-10 20:23:24 +0800 | [diff] [blame] | 3 | * Copyright (c) 2014-2016, Regents of the University of California, |
| 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 | |
Junxiao Shi | 5b3feb6 | 2016-08-19 01:51:41 +0000 | [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: |
Junxiao Shi | 39ef261 | 2014-11-29 20:35:19 -0700 | [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> |
| 43 | shared_ptr<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 | } |
| 53 | return static_pointer_cast<T, fw::StrategyInfo>(it->second); |
| 54 | } |
Alexander Afanasyev | 9bcbc7c | 2014-04-06 19:37:37 -0700 | [diff] [blame] | 55 | |
Junxiao Shi | 39ef261 | 2014-11-29 20:35:19 -0700 | [diff] [blame] | 56 | /** \brief set 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 nfd::fw::StrategyInfo |
Junxiao Shi | 39ef261 | 2014-11-29 20:35:19 -0700 | [diff] [blame] | 58 | */ |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 59 | template<typename T> |
Junxiao Shi | 39ef261 | 2014-11-29 20:35:19 -0700 | [diff] [blame] | 60 | void |
Junxiao Shi | 5b3feb6 | 2016-08-19 01:51:41 +0000 | [diff] [blame] | 61 | setStrategyInfo(shared_ptr<T> item) |
| 62 | { |
| 63 | static_assert(std::is_base_of<fw::StrategyInfo, T>::value, |
| 64 | "T must inherit from StrategyInfo"); |
Alexander Afanasyev | 9bcbc7c | 2014-04-06 19:37:37 -0700 | [diff] [blame] | 65 | |
Junxiao Shi | 5b3feb6 | 2016-08-19 01:51:41 +0000 | [diff] [blame] | 66 | if (item == nullptr) { |
| 67 | m_items.erase(T::getTypeId()); |
| 68 | } |
| 69 | else { |
| 70 | m_items[T::getTypeId()] = item; |
| 71 | } |
| 72 | } |
| 73 | |
| 74 | /** \brief insert a StrategyInfo item |
| 75 | * \tparam T type of StrategyInfo, must be a subclass of fw::StrategyInfo |
| 76 | * \return a new or existing StrategyInfo item of type T |
Junxiao Shi | 39ef261 | 2014-11-29 20:35:19 -0700 | [diff] [blame] | 77 | */ |
| 78 | template<typename T, typename ...A> |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 79 | shared_ptr<T> |
Junxiao Shi | 5b3feb6 | 2016-08-19 01:51:41 +0000 | [diff] [blame] | 80 | insertStrategyInfo(A&&... args) |
| 81 | { |
| 82 | static_assert(std::is_base_of<fw::StrategyInfo, T>::value, |
| 83 | "T must inherit from StrategyInfo"); |
| 84 | |
| 85 | shared_ptr<T> item = this->getStrategyInfo<T>(); |
| 86 | if (!static_cast<bool>(item)) { |
| 87 | item = std::make_shared<T>(std::forward<A>(args)...); |
| 88 | this->setStrategyInfo(item); |
| 89 | } |
| 90 | return item; |
| 91 | } |
Alexander Afanasyev | 9bcbc7c | 2014-04-06 19:37:37 -0700 | [diff] [blame] | 92 | |
Junxiao Shi | 39ef261 | 2014-11-29 20:35:19 -0700 | [diff] [blame] | 93 | /** \brief clear all StrategyInfo items |
| 94 | */ |
Junxiao Shi | e5e2fce | 2014-02-10 20:01:53 -0700 | [diff] [blame] | 95 | void |
| 96 | clearStrategyInfo(); |
| 97 | |
| 98 | private: |
Junxiao Shi | 39ef261 | 2014-11-29 20:35:19 -0700 | [diff] [blame] | 99 | std::map<int, shared_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 |